camerapick/loadanimmesh

Blitz3D Forums/Blitz3D Programming/camerapick/loadanimmesh

GIMPY73(Posted 2003) [#1]
ok i need help on this

i can load a 3ds/X model and texture it with LoadMesh command but it dont animate

so i use Loadanimmesh the model loads and animates but has no texture and a cant use camerapick on it

any ideas

Thanks
GIMPY :)


jhocking(Posted 2003) [#2]
The lack of texture is odd but your picking problem is routine. The trouble is that you need to set the pickmode for each entity (you can't just set the pickmode for the parent entity and have that pickmode propogate to all the children.) You will need to walk through all the children using CountChildren and GetChild to set the pickmodes. It's a pretty simple recursion.


GIMPY73(Posted 2003) [#3]
ahh thanks jhocking ill look up those commands


Thanks
GIMPY :)