Notifications
Clear all

[Closed] Can't find modifier's gizmo

This has me mystified, I must be doing something dumb, so if anyone sees what it is, please let me know.

  1. Create a sphere

Run this code…

 for b in selection do 
 
(
 
addmodifier b (Uvwmap ())
 
print b.modifiers[1].gizmo
 
)
 

  1. Now make 2 spheres, select both, and run the same code. It can’t find the gizmo (Unknown property: “gizmo” in Uvwmap:UVW Mapping). Any idea what’s going on here?

Max 8 BTW.

  • Neil
2 Replies

Just tried in Max8 sp3 and it looks like it is not adding the modifier and/or updating for some reason. However, this seems to work:

for b in selection do
(
addmodifier b (uvwmap())
validmodifier b uvwmap
print b.modifiers[1].gizmo
)

-Eric

Ok, looks like it’s a max bug then. Thanks for the workaround.

  • Neil