Skip to content

Instantly share code, notes, and snippets.

@imthemonster
Created April 1, 2017 16:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save imthemonster/1c89b0e510c42fcfb1726eba1ef7b5f7 to your computer and use it in GitHub Desktop.
Save imthemonster/1c89b0e510c42fcfb1726eba1ef7b5f7 to your computer and use it in GitHub Desktop.
debug Update e Fixed Update
public class UpdateAndFixedUpdate: Mono Behaviour {
void FixedUpdate()
{
Debug.Log("FixedUpdate time:" + Time.deltaTime);
}
void Update()
{
Debug.Log("Update time:" + Time.deltaTime);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment