Skip to content

Instantly share code, notes, and snippets.

@kuanyingchou
Last active January 1, 2016 19:59
Show Gist options
  • Save kuanyingchou/8193823 to your computer and use it in GitHub Desktop.
Save kuanyingchou/8193823 to your computer and use it in GitHub Desktop.
using UnityEngine;
using System.Collections;
public class Target : MonoBehaviour {
public void Awake() {
Debug.Log(this.GetType().Name + ".Awake() at frame " +
Time.frameCount);
}
public void Start() {
Debug.Log(this.GetType().Name + ".Start() at frame " +
Time.frameCount);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment