UnityEngine.MonoBehaviour.Invoke C# (CSharp) Method

Invoke() public method

public Invoke ( string methodName, float time ) : void
methodName string
time float
return void
        public void Invoke(string methodName, float time)
        {
            AssertNull();
            throw new NotImplementedException();
        }
        public void InvokeRepeating(string methodName, float time, float repeatRate)

Usage Example

コード例 #1
0
 static public int Invoke(IntPtr l)
 {
     try {
                     #if DEBUG
         var    method     = System.Reflection.MethodBase.GetCurrentMethod();
         string methodName = GetMethodName(method);
                     #if UNITY_5_5_OR_NEWER
         UnityEngine.Profiling.Profiler.BeginSample(methodName);
                     #else
         Profiler.BeginSample(methodName);
                     #endif
                     #endif
         UnityEngine.MonoBehaviour self = (UnityEngine.MonoBehaviour)checkSelf(l);
         System.String             a1;
         checkType(l, 2, out a1);
         System.Single a2;
         checkType(l, 3, out a2);
         self.Invoke(a1, a2);
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
             #if DEBUG
     finally {
                     #if UNITY_5_5_OR_NEWER
         UnityEngine.Profiling.Profiler.EndSample();
                     #else
         Profiler.EndSample();
                     #endif
     }
             #endif
 }
All Usage Examples Of UnityEngine.MonoBehaviour::Invoke