コード例 #1
0
ファイル: MaxTime.cs プロジェクト: fjmygame/SkynetXILFrontend
 public override void Initialize(Behavior3NodeCfg cfg)
 {
     base.Initialize(cfg);
     this.maxTime = cfg.GetInt32("maxTime", 0);
     this.name    = "MaxTime";
     this.title   = "Max <maxTime>ms";
 }
コード例 #2
0
ファイル: Wait.cs プロジェクト: fjmygame/SkynetXILFrontend
 public override void Initialize(Behavior3NodeCfg cfg)
 {
     base.Initialize(cfg);
     this.endTime = cfg.GetInt32("milliseconds", 0);
     this.name    = "Wait";
     this.title   = "Wait <milliseconds>ms ";
 }