コード例 #1
0
 public override string SetLabel()
 {
     if (director != null)
     {
         return(method.ToString() + " " + director.gameObject.name);
     }
     return(string.Empty);
 }
コード例 #2
0
 public override string SetLabel()
 {
                 #if UNITY_2017_1_OR_NEWER
     if (director != null)
     {
         return(" (" + method.ToString() + " " + director.gameObject.name + ")");
     }
                 #endif
     return("");
 }
コード例 #3
0
 public override string SetLabel()
 {
                 #if CAN_USE_TIMELINE
     if (director != null)
     {
         return(method.ToString() + " " + director.gameObject.name);
     }
                 #endif
     return(string.Empty);
 }