* Creates a new AnimationSampler. Samplers must be attached to an Animation * for use and export; they are not otherwise associated with a Root.
(name = '')
| 285 | * for use and export; they are not otherwise associated with a {@link Root}. |
| 286 | */ |
| 287 | createAnimationSampler(name = ''): AnimationSampler { |
| 288 | return new AnimationSampler(this._graph, name); |
| 289 | } |
| 290 | |
| 291 | /** Creates a new {@link Accessor} attached to this document's {@link Root}. */ |
| 292 | createAccessor(name = '', buffer: Buffer | null = null): Accessor { |
no outgoing calls
no test coverage detected