Ссылка на анимацию сохраняется в свойстве компонента gltf-model
: model.animations
( source ). Как KostasX написал в своем комментарии, вы можете просто получить свойство:
// better to check the glft-model, as it is responsible for loading the model
document.getElementById("GLB3D614").components['gltf-model'].model.animations
, чтобы убедиться, что свойства не undefined
, вам следует подождать, пока не будет выдано событие model-loaded
:
// custom component of the entity with the gltf-model
this.el.addEventListener('model-loaded', e => {
console.log(this.el.components['gltf-model'].model.animations
})