egg-optchar and blender model

Buddies

I´ve a animated model in blender, rigged and ready to go. This model got two meshes: the robot-boy and your separated right_arm (cos i wanna change the arm of model in the game). In blender , in object´s name robot-boy named… robot-boy, and the right_arm name is right_arm ( :open_mouth: ).

Ok. Export->chicken91
-pview clicked
-egg-optchar clicked
in Params:

-d ../models -flag right_arm=robot_arm robot_boy.egg robot_boy-idle.egg

Ok. In Pview everything is ok.
Right then i begin py-code:

robot_boy=Actor("robot_boy",{"idle":"robot_boy-idle.egg"})

robot_arm=robot_boy.find("/**robot_arm")
print robot_arm

In response i got : not found
Whatta hell ? :open_mouth:

Try:

robot_arm=robot_boy.find("**/robot_arm") 

If that still doesn’t work, try:

robot_boy.ls()

David

Wonderful! Thanx David