예제 #1
0
 public PhysicsPropertiesVO(PhysicsPropertiesVO physicsPropertiesVO)
 {
     this.gravityX      = physicsPropertiesVO.gravityX;
     this.gravityY      = physicsPropertiesVO.gravityY;
     this.sleepVelocity = physicsPropertiesVO.sleepVelocity;
     this.enabled       = physicsPropertiesVO.enabled;
 }
예제 #2
0
파일: SceneVO.cs 프로젝트: Pyxlre/Nez
 public SceneVO(SceneVO vo)
 {
     sceneName           = vo.sceneName;
     composite           = new CompositeVO(vo.composite);
     ambientColor        = vo.ambientColor;
     physicsPropertiesVO = new PhysicsPropertiesVO(vo.physicsPropertiesVO);
     lightSystemEnabled  = vo.lightSystemEnabled;
 }