Skip to content

Instantly share code, notes, and snippets.

View Intrivus's full-sized avatar
🪐

Intrivus Intrivus

🪐
View GitHub Profile
using Godot;
using System;
public partial class Character : CharacterBody2D
{
[Export] private float JumpHeight;
[Export] private float TimeToApex;
[Export] private float TimeToGround;
private Vector2 NewVelocity;