GDTKStatModifier.Clone
Declaration#
public GDTKStatModifier Clone()Description#
Create a clone of this object
Usage#
Example
using NullSave.GDTK.Stats;using UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(GDTKStatModifier target) { GDTKStatModifier result = target.Clone(); }
}