<xr-asset-load type="gltf" asset-id="{{modelitem.uid}}" src="{{modelitem.url}}"/><xr-gltf id="{{modelitem.uid}}" model="{{modelitem.uid}}" position="{{modelitem.position}}" scale="{{modelitem.scale}}" bind:gltf-loaded="handleGLTFLoaded" bind:anim-stop="handleAnimationStop"/>我有个需求是监听animator播放,暂停和停止状态,目前只知道在动画组件绑定anim-stop方法还有其他监听状态的实现方法吗
animator中有个私有属性_currents对象,通过这个对象可以获取到当播放动画的状态(动画播放中通过帧循环获取)
const playState = animator._currents[animName];
console.log(’onTick‘, deltaTime, data);
})你使用过该方法吗,这个方法我一直没有效果
scene.event.add("tick",onTick);