Helper Scripts Collection 1.3.1
API documentation for the helper scripts compatible with Unity3D
|
A general UnityEngine.UnityEngine.Object extension helper class More...
Static Public Member Functions | |
static T | CloneSerializable< T > (this T source) |
Perform a deep Copy of the object. Binary Serialization is used to perform the copy More... | |
static T | CloneScriptableObject< T > (this T scriptableObject) |
Creates and returns a clone of any given scriptable object. More... | |
A general UnityEngine.UnityEngine.Object extension helper class
|
static |
Creates and returns a clone of any given scriptable object.
T | : | ScriptableObject |
|
static |
Perform a deep Copy of the object. Binary Serialization is used to perform the copy
Reference Article http://www.codeproject.com/KB/tips/SerializedObjectCloner.aspx Very Expensive!!
T | The type of object being copied |
source | The object instance to copy |