| 
				
				problem with female clothes
			 
 
			
			hello,i'm having a problem with my clothes for females. i can't seem
 to change the female's shoes.
 
 the thing is, with the same type of code i actually get the men's shoes to work. but i'm thinking maybe it has to do with the jpeg i'm using, i was wondering if you guys have a template jpeg i can
 use w/ the female. if you want i can also attach the current jpeg
 i'm using, maybe there's a problem with it (?)
 
 thanks,
 shai
 
 
 this is the code i am using:
 
 import viz
 
 viz.go()
 foptions_avatar=viz.add('objects/Female.cfg')
 body = ['ArmLL','ArmLR','ArmUL','ArmUR', 'LegLL','LegLR','LegUL', 'LegUR','Pelvis', 'Torso', 'FootLeft', 'FootRight']
 fbodyparts = []
 for x in body:
 partf = 'f_' + x + '.cmx'
 fbodyparts.append(partf)
 
 femaleclothes = ['objects/Female/clothes/female1.jpg']
 fclothes = []
 
 for i in range(1):
 temp = viz.add(femaleclothes[i])
 fclothes.append(temp)
 
 for j in fbodyparts:
 foptions_avatar.texture(fclothes[0],j)
 |