1 | <?php |
||
28 | final class Aframe |
||
29 | { |
||
30 | |||
31 | /** |
||
32 | * A-Frame Scenes |
||
33 | * |
||
34 | * All scenes will be in this array as Scene objects with index of custom identifier. |
||
35 | * |
||
36 | * @var $scenes |
||
37 | */ |
||
38 | private $scenes; |
||
39 | |||
40 | /** |
||
41 | * Constructor |
||
42 | */ |
||
43 | 10 | public function __construct() |
|
48 | |||
49 | /** |
||
50 | * Scene |
||
51 | * |
||
52 | * Work with untitled scene or scene by name |
||
53 | * |
||
54 | * @param string $name |
||
55 | * @return Scene |
||
56 | */ |
||
57 | 9 | public function scene(string $name = 'untitled'): Scene |
|
61 | } |
||
62 |