I am creating a project wherein I want to start the animation when the image is detected. However, when the image is detected, the model does get displayed but the animation is played quite a few frames in. And it also loops all the time. Any help is appreciated.
You’ll need to edit the xrextras-named-image-target component to reset the animationClip time to 0 and disable looping. The source code for the component can be found here:
you’ll want to remove the animation-mixer component from the entity in body.html and only add it to the entity in javascript once the image is found. timeScale should probably not be set to 0, instead you probably want to set loop: false. see the animation-mixer documentation here:
this is what I assume you want me to do. However, once I remove the animation-mixer component from body.html, the model simply does not show up. I commented out the timescale: 0 part of the code for the time being.
I would suggest adding some logs to help debug - for example, add a log to see the value of model.hasLoaded. Based on the code provided, if this evaluated to false then playAnimation() is never called.
You are assigning this entity the id="model" then trying to pass the same entity to the gltf-model component. You should be passing this either an id of a loaded 3D model or a URL to a 3D model to the gltf-model component.
Leveraging the asset management system also ensures your models are loaded before dismissing the loading screen, so you don’t need to check if the model is loaded in your custom component in this case.