SaveGame
Complete API reference for SaveGame, including constructors, attributes, virtual attributes, and methods.
Package: JAVARuntime
Category: SaveGame
Component: no
public class SaveGame
Static Methods
| Signature | Returns | Description |
|---|---|---|
saveString(String, String) | void | Saves string from the object. |
loadString(String) | String | Loads string into the object. |
deleteString(String) | void | Removes string from the collection. |
saveFloat(String, float) | void | Saves float from the object. |
loadFloat(String) | float | Loads float into the object. |
deleteFloat(String) | void | Removes float from the collection. |
saveInt(String, int) | void | Saves int from the object. |
loadInt(String) | int | Loads int into the object. |
deleteInt(String) | void | Removes int from the collection. |
saveVector3(String, Vector3) | void | Saves vector3 from the object. |
loadVector3(String) | Vector3 | Loads vector3 into the object. |
deleteVector3(String) | void | Removes vector3 from the collection. |
saveVector2(String, Vector2) | void | Saves vector2 from the object. |
loadVector2(String) | Vector2 | Loads vector2 into the object. |
deleteVector2(String) | void | Removes vector2 from the collection. |
saveQuaternion(String, Quaternion) | void | Saves quaternion from the object. |
loadQuaternion(String) | Quaternion | Loads quaternion into the object. |
deleteQuaternion(String) | void | Removes quaternion from the collection. |
saveColor(String, Color) | void | Saves color from the object. |
loadColor(String) | Color | Loads color into the object. |
deleteColor(String) | void | Removes color from the collection. |
saveBoolean(String, boolean) | void | Saves boolean from the object. |
loadBoolean(String) | boolean | Loads boolean into the object. |
deleteBoolean(String) | void | Removes boolean from the collection. |
deleteAll() | void | Removes all from the collection. |