Interface IAnimationVariableSlot
- All Known Implementing Classes:
AnimationVariableGenericSlot,AnimationVariableSlot,AnimationVariableSlotBool,AnimationVariableSlotCallback,AnimationVariableSlotCallbackBool,AnimationVariableSlotCallbackFloat,AnimationVariableSlotCallbackInt,AnimationVariableSlotCallbackString,AnimationVariableSlotFloat,AnimationVariableSlotString
public interface IAnimationVariableSlot
-
Method Summary
Modifier and Type Method Description booleancanConvertFrom(java.lang.String string)voidclear()java.lang.StringgetKey()AnimationVariableTypegetType()booleangetValueBool()floatgetValueFloat()java.lang.StringgetValueString()default booleanisReadOnly()voidsetValue(boolean boolean1)voidsetValue(float float1)voidsetValue(java.lang.String string)
-
Method Details
-
getKey
java.lang.String getKey() -
getValueString
java.lang.String getValueString() -
getValueFloat
float getValueFloat() -
getValueBool
boolean getValueBool() -
setValue
void setValue(java.lang.String string) -
setValue
void setValue(float float1) -
setValue
void setValue(boolean boolean1) -
getType
AnimationVariableType getType() -
canConvertFrom
boolean canConvertFrom(java.lang.String string) -
clear
void clear() -
isReadOnly
default boolean isReadOnly()
-