示例#1
0
 public static void DispatchInt(this GlobalDispatcher self, DispatcherEvent key, int arg)
 {
     self.Dispatch <int>(key, arg);
 }
示例#2
0
 public static void DispatchBool(this GlobalDispatcher self, DispatcherEvent key, bool arg)
 {
     self.Dispatch <bool>(key, arg);
 }
示例#3
0
 public static void RemoveListenerInt(this GlobalDispatcher self, DispatcherEvent key, System.Action <int> action)
 {
     self.RemoveListener <int>(key, action);
 }
示例#4
0
 public static void RemoveListenerBool(this GlobalDispatcher self, DispatcherEvent key, System.Action <bool> action)
 {
     self.RemoveListener <bool>(key, action);
 }
示例#5
0
 public static void DispatchVector3(this GlobalDispatcher self, DispatcherEvent key, Vector3 arg)
 {
     self.Dispatch <Vector3>(key, arg);
 }
示例#6
0
 public static void RemoveListenerVector3(this GlobalDispatcher self, DispatcherEvent key, System.Action <Vector3> action)
 {
     self.RemoveListener <Vector3>(key, action);
 }
示例#7
0
 public static void DispatchFloat(this GlobalDispatcher self, DispatcherEvent key, float arg)
 {
     self.Dispatch <float>(key, arg);
 }
示例#8
0
 public static void AddListenerFloat(this GlobalDispatcher self, DispatcherEvent key, System.Action <float> action)
 {
     self.AddListener <float>(key, action);
 }