Esempio n. 1
0
 public PhysicsPropertiesVO(PhysicsPropertiesVO physicsPropertiesVO)
 {
     this.gravityX      = physicsPropertiesVO.gravityX;
     this.gravityY      = physicsPropertiesVO.gravityY;
     this.sleepVelocity = physicsPropertiesVO.sleepVelocity;
     this.enabled       = physicsPropertiesVO.enabled;
 }
Esempio n. 2
0
 public SceneVO(SceneVO vo)
 {
     sceneName           = vo.sceneName;
     composite           = new CompositeVO(vo.composite);
     ambientColor        = vo.ambientColor;
     physicsPropertiesVO = new PhysicsPropertiesVO(vo.physicsPropertiesVO);
     lightSystemEnabled  = vo.lightSystemEnabled;
 }