Skip to content

Instantly share code, notes, and snippets.

@sugi-cho
Created September 20, 2016 07:07
Show Gist options
  • Save sugi-cho/0e53783fb37943b1edbe947e7818cc29 to your computer and use it in GitHub Desktop.
Save sugi-cho/0e53783fb37943b1edbe947e7818cc29 to your computer and use it in GitHub Desktop.
UnityのInvokeの拡張。メソッド名を文字列指定しなくてよくなるので、タイプミスによるエラーが無くなる!
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