DoopelPonger
|
Top level serialization class used to save/read information to move Schmitty Doop. More...
Public Member Functions | |
void | Awake () |
![]() | |
List< string > | ConvertPropertiesToStrings () |
Convert each property into a string. Each element of the list should be a single property in the json like structure of <property name>:<value> with no comma or curly brackets. More... | |
void | FillPropertiesFromString (string objectString) |
Convert a string with all properties into this object. The parameter objectString is generated from calling the ConvertPropertiesToString method, and has each element of the array concatenated with a ,. More... | |
abstract CoopActionInformation | ToCoopActionInformation () |
Convert this object from the Inspector information into the data that is used during gameplay. More... | |
Protected Member Functions | |
override List< string > | ConvertChildPropertiesToStrings () |
Convert all properties of the implementation class that should be serialized to a string. See the method ConvertPropertiesToString for more information. That method is the public method that calls this method when serializing. More... | |
abstract CoopMovementInformation.MovementType | GetMovementType () |
Return the type of movement the child class serializes. More... | |
abstract List< string > | ConvertMovementPropertiesToStrings () |
Return the child fields that should be serialized to a file. More... | |
![]() | |
abstract void | FillChildPropertiesFromString (string objectString) |
Construct the child class based on the string that was serialized. See the method FillPropertiesFromString for more information. That method is the public method that calls this method when serializing. More... | |
Protected Attributes | |
CoopMovementInformation.MovementType | movementType |
![]() | |
CoopActionInformation.ActionType | actionType |
Additional Inherited Members | |
![]() | |
GameObject | m_gameObject |
Range | delayBetweenActions |
Top level serialization class used to save/read information to move Schmitty Doop.
void EditorMovementInformation.Awake | ( | ) |
|
protectedvirtual |
Convert all properties of the implementation class that should be serialized to a string. See the method ConvertPropertiesToString for more information. That method is the public method that calls this method when serializing.
Implements EditorActionInformation.
|
protectedpure virtual |
Return the child fields that should be serialized to a file.
Implemented in EditorLinearMovementInformation, EditorSmoothStepMovementInformation, EditorAlphaChangeMovementInformation, and EditorPositionRotationChangeMovementInformation.
|
protectedpure virtual |
Return the type of movement the child class serializes.
Implemented in EditorLinearMovementInformation, EditorSmoothStepMovementInformation, EditorPositionRotationChangeMovementInformation, EditorAlphaUpMovementInformation, and EditorAlphaDownMovementInformation.
|
protected |
The type of movement object of the child class.