This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using Godot; | |
| using System; | |
| public partial class Character : CharacterBody2D | |
| { | |
| [Export] private float JumpHeight; | |
| [Export] private float TimeToApex; | |
| [Export] private float TimeToGround; | |
| private Vector2 NewVelocity; |