CapersProject/Assets/Behavior Designer/Runtime/Object Drawers/ColliderVector3Attribute.cs

17 lines
428 B
C#
Raw Normal View History

2024-06-03 18:26:03 +00:00
using BehaviorDesigner.Runtime.Tasks;
using UnityEngine;
namespace BehaviorDesigner.Runtime.ObjectDrawers
{
public class ColliderVector3Attribute : ObjectDrawerAttribute
{
public Collider collider;
public Vector3 vector3;
public ColliderVector3Attribute(Collider collider, Vector3 vector3)
{
this.collider = collider;
this.vector3 = vector3;
}
}
}