コード例 #1
0
ファイル: Observer.cs プロジェクト: rhllasag/ControllerUnity
 public MeshObject(GameObject gobj1, GameObject gobj2, GameObject gobj3, GameObject boxObj, MeshEvents boxEvent)
 {
     this.boxObj       = boxObj;
     this.landingObj   = gobj1;
     this.takeOffObj   = gobj2;
     this.rTHObj       = gobj3;
     this.messegsEvent = boxEvent;
 }
コード例 #2
0
ファイル: Observer.cs プロジェクト: rhllasag/ControllerUnity
 public MeshObject(GameObject boxObj, GameObject map, GameObject zoomMap, GameObject locationHome, GameObject locationAircraft, MeshEvents boxEvent)
 {
     this.locationAircraft = locationAircraft;
     this.locationHome     = locationHome;
     this.zoomMap          = zoomMap;
     this.map          = map;
     this.boxObj       = boxObj;
     this.messegsEvent = boxEvent;
 }
コード例 #3
0
ファイル: Observer.cs プロジェクト: rhllasag/ControllerUnity
 public MeshObject(GameObject boxObj, MeshEvents boxEvent)
 {
     this.boxObj       = boxObj;
     this.messegsEvent = boxEvent;
 }
コード例 #4
0
ファイル: Observer.cs プロジェクト: rhllasag/ControllerUnity
 public MeshObject(GameObject boxObj, GameObject statusPanel, MeshEvents boxEvent)
 {
     this.boxObj       = boxObj;
     this.statusPanel  = statusPanel;
     this.messegsEvent = boxEvent;
 }
コード例 #5
0
ファイル: Observer.cs プロジェクト: rhllasag/ControllerUnity
 // HandleTextFile handleText= new HandleTextFile();
 public MeshObject(MeshEvents boxEvent)
 {
     this.messegsEvent = boxEvent;
 }