Skip to content

Instantly share code, notes, and snippets.

@tsubaki
Created April 2, 2017 15:03
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 tsubaki/541a559a04e5dfce978f8a2477036ecc to your computer and use it in GitHub Desktop.
Save tsubaki/541a559a04e5dfce978f8a2477036ecc to your computer and use it in GitHub Desktop.
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class DisableEnable : MonoBehaviour {
void OnEnable()
{
Debug.Log ("--- enable");
}
void OnDisable()
{
Debug.Log ("--- disable");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment