first commit
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
using NodeCanvas.Framework;
|
||||
using NodeCanvas.Framework.Internal;
|
||||
using ParadoxNotion.Design;
|
||||
|
||||
|
||||
namespace NodeCanvas.Tasks.Conditions
|
||||
{
|
||||
|
||||
[Category("✫ Blackboard")]
|
||||
public class CheckEnum : ConditionTask
|
||||
{
|
||||
|
||||
[BlackboardOnly]
|
||||
public BBObjectParameter valueA = new BBObjectParameter(typeof(System.Enum));
|
||||
public BBObjectParameter valueB = new BBObjectParameter(typeof(System.Enum));
|
||||
|
||||
protected override string info {
|
||||
get { return valueA + " == " + valueB; }
|
||||
}
|
||||
|
||||
protected override bool OnCheck() {
|
||||
return Equals(valueA.value, valueB.value);
|
||||
}
|
||||
|
||||
///----------------------------------------------------------------------------------------------
|
||||
///---------------------------------------UNITY EDITOR-------------------------------------------
|
||||
#if UNITY_EDITOR
|
||||
|
||||
protected override void OnTaskInspectorGUI() {
|
||||
DrawDefaultInspector();
|
||||
if ( valueB.varType != valueA.refType ) { valueB.SetType(valueA.refType); }
|
||||
}
|
||||
|
||||
#endif
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user