Ambiera ForumDiscussions, Help and Support. |
|
|
|||||
|
Is there a practical-rational choice, specific for Coppercube architecture (compared to for example Unity) with having all animations of a character in one single file, instead of having individual files preloaded for a character (walk, idle, run, etc)? I am asking because i am since a while back engaged in making a workaround "shadow interface" for Coppercube. Its a separate browser based app. The aim is to make a smoother, quicker and more visual experience for creating game-logic and changing parameters. It generates actions and behaviors that can easily be run in Coppercube. Will make it available to the community later on. So, one of the functions of this app is a better way to handle these character animations - preferably individually - if that's a smart thing to do - or am i doomed to fail? |
||||
|
can you explain more please what i know is when you can split an animation into newer ones which is inbuilt already |
||||
|
Yes, that is the current default way in Coppercube. Most other engines does not do this, so i am wondering if the opposite way would work, and using proper scripts for that (or with changes to the engine code / custom binary) |
||||
|
ccbSetAnimationFromSceneNode(node1, node2, animationname) have you tried this command? you can have your animations individually and use this command to apply animations to the model, it will work if the model has same Armature. It may increase the load though as it will store data as a new armature for each animation. |
||||
|
|