1 | <?php |
||
29 | class Videosphere extends Entity implements EntityInterface |
||
30 | { |
||
31 | |||
32 | /** |
||
33 | * Init <a-video> |
||
34 | * |
||
35 | * The video primitive displays a video on a flat plane as a texture. It is an entity that prescribes the geometry |
||
36 | * with its geometric primitive set to plane. |
||
37 | * |
||
38 | * @return void |
||
39 | */ |
||
40 | 2 | public function reset() |
|
41 | { |
||
42 | 2 | $this->attr('Material')->shader('flat'); |
|
43 | 2 | $this->color('#FFF'); |
|
44 | |||
45 | 2 | $this->attr('Geometry')->primitive('sphere'); |
|
46 | 2 | $this->radius(5000); |
|
47 | 2 | $this->segmentsHeight(64); |
|
48 | 2 | $this->segmentsWidth(20); |
|
49 | |||
50 | 2 | $this->scale(- 1, 1, 1); |
|
51 | 2 | } |
|
52 | |||
53 | /** |
||
54 | * geometry.radius |
||
55 | * |
||
56 | * @param float $radius |
||
57 | * @return Videosphere |
||
58 | */ |
||
59 | 2 | public function radius(float $radius) |
|
64 | |||
65 | /** |
||
66 | * Autoplay video |
||
67 | * |
||
68 | * @param bool $autoplay |
||
69 | * @return Videosphere |
||
70 | */ |
||
71 | 2 | public function autoplay(bool $autoplay = true) |
|
76 | |||
77 | /** |
||
78 | * geometry.segmentsHeight |
||
79 | * |
||
80 | * @param int $segmentsHeigh |
||
81 | * @return Videosphere |
||
82 | */ |
||
83 | 2 | public function segmentsHeight(int $segmentsHeigh) |
|
88 | |||
89 | /** |
||
90 | * geometry.segmentsWidth |
||
91 | * |
||
92 | * @param int $segmentsWidth |
||
93 | * @return Videosphere |
||
94 | */ |
||
95 | 2 | public function segmentsWidth(int $segmentsWidth) |
|
100 | } |
||
101 |