[Closed] Class parameters in scripted plugins
Does anyone have experiences with “class parameters” in scripted plugins? That is creating a parameter block with “type:#class” which allows all instances of this plugin class to share the same parameters.
Max crashes, if I use them…
Cheers,
Andreas
You’re reading the help file wrong.
You’re probably talking about this section:
parameters <name> [type:#class] [rollout:<name>]
(
{ <param_defs> }+
{ <event_handler> }
)
[type:#class] wants to be one of the following classes:
#float animatable
#integer animatable
#index animatable
#color animatable
#rgb animatable
#frgba animatable
#point3 animatable
#point4 animatable
#boolean animatable
#angle animatable
#percent animatable
#worldUnits animatable
#matrix3
#string
#filename
#colorChannel animatable
#time animatable
#radiobtnIndex
#material
#texturemap
#bitmap
#node
#maxObject
#floatTab
#intTab
#indexTab
#colorTab
#rgbTab
#frgbaTab
#point3Tab
#point4Tab
#boolTab
#angleTab
#percentTab
#worldUnitsTab
#matrix3Tab
#stringTab
#filenameTab
#colorChannelTab
#timeTab
#radiobtnIndexTab
#materialTab
#texturemapTab
#bitmapTab
#nodeTab
#maxObjectTab
-Dave