GDTKStatValue.Matches
Declaration#
public virtual bool Matches(T source)Parameters#
| Name | Description |
|---|---|
| source | Object to check against |
Description#
Check if this objects data matches that of another object
Usage#
Example
using NullSave.GDTK.Stats;using UnityEngine;
public class CodeSample : MonoBehaviour{
public void Example(GDTKStatValue target, GDTKStatValue other) { bool result = target.Matches(other); }
}