Skip to content

Instantly share code, notes, and snippets.

@anchan828
Created March 8, 2012 05:49
Show Gist options
  • Save anchan828/1998980 to your computer and use it in GitHub Desktop.
Save anchan828/1998980 to your computer and use it in GitHub Desktop.
using UnityEngine;
using UnityEditor;
using System.Collections;
[InitializeOnLoad]
public class UpdateCheck : MonoBehaviour
{
static UpdateCheck ()
{
if (EditorApplication.timeSinceStartup < 10)
Debug.Log ("CheckStart() ");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment