Untitled
unknown
plain_text
2 years ago
196 B
5
Indexable
public float timer; public float jumpCD; public void Jump() { if(timer>jumpCD) { timer = 0; // DO THE JUMP } } public void Update() { timer += Time.DeltaTime; }
Editor is loading...
Leave a Comment