ActionSequenceWrapper.Matches
Declaration#
public bool Matches(ActionSequenceWrapper other)Parameters#
| Name | Description |
|---|---|
| other | Copy to compare |
Description#
Compare object to another copy
Usage#
Example
using NullSave.GDTK;using UnityEngine;
public class CodeSample : MonoBehaviour{
public void ExampleMethod(ActionSequenceWrapper target, ActionSequenceWrapper other) { bool result = target.Matches(other); }
}