Creates a new Scene attached to this document's Root.
(name = '')
| 218 | |
| 219 | /** Creates a new {@link Scene} attached to this document's {@link Root}. */ |
| 220 | createScene(name = ''): Scene { |
| 221 | return new Scene(this._graph, name); |
| 222 | } |
| 223 | |
| 224 | /** Creates a new {@link Node} attached to this document's {@link Root}. */ |
| 225 | createNode(name = ''): Node { |
no outgoing calls