GDTKIncrementSettings.CopyFrom
Declaration#
public void CopyFrom(GDTKIncrementSettings data)Parameters#
| Name | Description |
|---|---|
| data | Data source |
Description#
Copy data from another object to this one
Usage#
Example
using NullSave.GDTK.Stats;using UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(GDTKIncrementSettings target, GDTKIncrementSettings other) { target.CopyFrom(other); }
}