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 boolean
canConvertFrom(java.lang.String string)
void
clear()
java.lang.String
getKey()
AnimationVariableType
getType()
boolean
getValueBool()
float
getValueFloat()
java.lang.String
getValueString()
default boolean
isReadOnly()
void
setValue(boolean boolean1)
void
setValue(float float1)
void
setValue(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()
-