Example:
- Code: Select all
<Group> character {
<Dart> { 1 }
<Group> sphere {
<VertexPool> sphere.verts {
...
I have to manually remove the dart tags If I want to access the inner nodes of my models (for example to change a texture of my character shirt only, but not his face).
- Code: Select all
self.sphere = loader.loadModel("sphere")
self.sphere.reparentTo(render)
self.sphere.find('**/character/sphere').setTexture(self.sphere_tex,1)
This doesn't work if the <Dart> tag is present on the .egg
So what is that tag for and how do I export without it so I don't have to manually do it every time?
