Firstborn/Assets/RPG Creation Kit/Scripts/BehaviourTrees/Variables/BT_Bool.cs
Schaken-Mods 959e80cf72 assets upload
assets upload description.
2023-03-28 12:16:30 -05:00

30 lines
629 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using RPGCreationKit;
using RPGCreationKit.BehaviourTree;
namespace RPGCreationKit.BehaviourTree.Data
{
[System.Serializable]
public class BT_Bool : BTVariable
{
[SerializeField] public bool value;
public override object GetValue()
{
return value;
}
public override void SetValue(object _obj)
{
value = (bool)_obj;
}
public override void SetDefaultValue()
{
base.SetDefaultValue();
value = false;
}
}
}