コード例 #1
0
ファイル: Primitives.php プロジェクト: mkungla/aframe-php
 /**
  * Add all used primitevs to the scene
  *
  * @return void
  */
 protected function preparePrimitives()
 {
     /* Primitive collections */
     $this->aframeDomObj->appendEntities($this->childrens);
     /* Primitives which only one can be present */
     !$this->sky ?: $this->aframeDomObj->appendEntity($this->sky);
     !$this->videosphere ?: $this->aframeDomObj->appendEntity($this->videosphere);
 }