Message 1 of 4
Change Handlers and modifier attributes (MaxScript)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
seems like Change Handlers is broken in max 2021.1 for modifiers attribute - "name" (in max 2016 - 2019 works)
example:
obj = box()
deleteAllChangeHandlers id: #CH_test
modif = Bend()
when name modif change id:#CH_test do
(
print "1"
)
addModifier obj modif
select obj
-----------
Changing modifier name from modpanel not trigger change handler. With objects works - ok, but not with modifiers.