pub enum Parameter {
Float(FloatParameter),
Int(IntParameter),
String(StringParameter),
Button(IntParameter),
Other(BaseParameter),
}Expand description
Enum of different parameter types.
Variants§
Float(FloatParameter)
ParmType::Float | ParmType::Color
Int(IntParameter)
ParmType::Int | ParmType::Toggle
String(StringParameter)
ParmType::String | ParmType::Node | ParmType::PathFile | ParmType::PathFileDir | ParmType::PathFileGeo | ParmType::PathFileImage
Button(IntParameter)
ParmType::Int
Other(BaseParameter)
Other ParmType::_