コード例 #1
0
 public override void OnValidate(ITaskSystem ownerSystem)
 {
     if (functionWrapper != null && functionWrapper.HasChanged())
     {
         SetMethod(functionWrapper.GetMethod());
     }
 }
コード例 #2
0
ファイル: SetProperty.cs プロジェクト: Zarkana/ufo-game-svg
 public override void OnValidate(ITaskSystem ownerSystem)
 {
     if (functionWrapper != null && functionWrapper.HasChanged())
     {
         SetMethod(functionWrapper.GetMethod());
     }
     if (functionWrapper != null && targetMethod == null)
     {
         Error(string.Format("Missing Property '{0}'", functionWrapper.GetMethodString()));
     }
 }