Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - PsychoTodd

Pages: [1]
1
Bones / [resolved] How to use bones to load models without animation.
« on: November 19, 2015, 11:43:41 pm »
Hi guys,

I think it is good to share some of my experience here regarding using the animation library to load and display some static model. In certain case, you may want to use the same bones library to handle both static object and animated character. However, when you convert a static model to collada format and try to use the Bones script to convert the mesh, it throws exception complaining that there is no skins : "ColladaStorage contains no skins". It is not that difficult to update your static model in Maya to create a new dae file which can be accepted by the script.

Pre: If you are not familiar with Maya rigging, just have a look of lesson 3 and 4 from this youtube link: https://www.youtube.com/watch?v=Vgs9uiCC3eA.

The idea is to add a very simple skeleton to the whole meshes in your original format meshes and do certain minimum steps so that the Bones script is happy. All these description is in Maya 2016.

1. Make sure your menu is in Rigging, choose skeleton menu -> create joint.
2. Create one joint at the root of your meshes (the base joint), and another one at the top (joint 2)(similar like what is shown in the youtube video).
3. Select one of the meshes in your scene, and Shift + select the base joint of the skeleton. Then click key 'p', to bind them. Do Step 3 for all the meshes in the scene with the base joint.
4. Now in the tree list view, you should see that Joint 2 and all the meshes are branches at the same level to Joint 1 (the base joint).
5. Select joint 1 and all the meshes, and go to Skin menu, choose binding skin.
6. Finally, choose the joint 1 (which will select everything since joint 1 is the root). Then export the selection through OpenCOLLADA plugin for Maya.

This dae file now can be convert by the Bones script ardorCollada2Bones.bat / ardorCollada2Bones.sh with some warning and you should have a bones that can be loaded in the engine. However, since there is no animation inside, do not try to animate it.

Hope it helps.

2
Hello everyone,

currently I would like to use the Bones' function to load the animated files. It works nice. So thank you for providing this tools for android.

However, after I animated the  model based on time to a certain pose (AnimatedGroup:: animate(index, animation)), I need to use openGL ES to draw the mesh by myself in my rendering context. I may not be able to call World::renderScene and draw since I have already set up the OpenGL ES rendering in my program.

So my question is: how can I access the animated vertices, texture coordinate and normal (if there is any) so I can apply them to " GLES20.glVertexAttribPointer" to draw by myself? Is there any example I can look into?

Thank you so much!

Pages: [1]