Creates a new Animation attached to this document's Root.
(name = '')
| 269 | |
| 270 | /** Creates a new {@link Animation} attached to this document's {@link Root}. */ |
| 271 | createAnimation(name = ''): Animation { |
| 272 | return new Animation(this._graph, name); |
| 273 | } |
| 274 | |
| 275 | /** |
| 276 | * Creates a new {@link AnimationChannel}. Channels must be attached to an {@link Animation} |
no outgoing calls
no test coverage detected