SetParentScene() private method

private SetParentScene ( Scene pParentScene ) : void
pParentScene Scene
return void
コード例 #1
0
ファイル: Scene.cs プロジェクト: slagusev/AndEngine.net
 public void SetChildScene(/* final */ Scene pChildScene, /* final */ bool pModalDraw, /* final */ bool pModalUpdate, /* final */ bool pModalTouch)
 {
     pChildScene.SetParentScene(this);
     this.mChildScene            = pChildScene;
     this.mChildSceneModalDraw   = pModalDraw;
     this.mChildSceneModalUpdate = pModalUpdate;
     this.mChildSceneModalTouch  = pModalTouch;
 }
コード例 #2
0
ファイル: Scene.cs プロジェクト: jamesburton/AndEngine.net
 public void SetChildScene(/* final */ Scene pChildScene, /* final */ bool pModalDraw, /* final */ bool pModalUpdate, /* final */ bool pModalTouch)
 {
     pChildScene.SetParentScene(this);
     this.mChildScene = pChildScene;
     this.mChildSceneModalDraw = pModalDraw;
     this.mChildSceneModalUpdate = pModalUpdate;
     this.mChildSceneModalTouch = pModalTouch;
 }