I have a gltf model, he has three actions, namely idle, attack, die, I created 1000 clones using thin instance, but these are all playing the same action, like idle. Is there a way to manage the actions of these clones separately? What I probably want is some in idle, some in attack, some in die. I checked some articles and it seems that all thin instances can only play the same action
This method seems a bit difficult. It seems that the animation data of the model needs to be converted. The animation of the model relies on the time variable for unified management, and does not manage its own actions separately.
Is it possible to switch instances when the object changes its motion? For example, I start to create an idle instance, delete the idle instance when it needs to become an attack, and create a new attack instance in the original idle place. If they can trick the glasses when switching, that’s a nice touch. At present, I have created 1000 models with examples, and the frame rate can be kept at 140. If the clone method is implemented, the frame rate may not be so high
There exist a trick to substitute instance with clone on the fly in case of need, but I haven’t seen examples of such animated models. For usual static meshes it is quite simple; with animations one need to consider also how animations will blend with each other so the substitution would be smooth.