Untitled

Anonymous
plain_text
12/31/2023 9:43 PM
264 B
17
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