c# - Java Update Function -
im trying crate countdown function in java.
to start counting looking update method in unity c#, calls script every frame can decrease countdown value every frame.
is there function/method or way create similar function in java.
e.g.
float countdown = 30.0f; update() { countdown -= time.deltatime; } thanks
Comments
Post a Comment