Created
September 20, 2016 07:07
-
-
Save sugi-cho/0e53783fb37943b1edbe947e7818cc29 to your computer and use it in GitHub Desktop.
UnityのInvokeの拡張。メソッド名を文字列指定しなくてよくなるので、タイプミスによるエラーが無くなる!
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using UnityEngine; | |
using System.Collections; | |
public class InvokeMethod : MonoBehaviour | |
{ | |
void Start() | |
{ | |
this.Invoke(SomeMethod, 5f); | |
} | |
void SomeMethod() | |
{ | |
print("this is some method"); | |
} | |
} | |
static class Extensions | |
{ | |
public static void Invoke(this MonoBehaviour behaviour, System.Action method, float time) | |
{ | |
behaviour.Invoke(method.Method.Name, time); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment