(path: string)
| 638 | } |
| 639 | |
| 640 | export function loadModelAnimation(path: string): number { |
| 641 | return bloom_load_model_animation(path as any); |
| 642 | } |
| 643 | |
| 644 | export function updateModelAnimation(handle: number, animIndex: number, time: number, scale: number, px: number, py: number, pz: number, rotY: number): void { |
| 645 | bloom_update_model_animation(handle, animIndex, time, scale, px, py, pz, rotY); |
nothing calls this directly
no test coverage detected