mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-30 20:02:49 -05:00
9 lines
280 B
C#
9 lines
280 B
C#
|
using UnityEngine;
|
||
|
namespace UnityAtoms.BaseAtoms
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Condition of type `Vector3`. Inherits from `AtomCondition<Vector3>`.
|
||
|
/// </summary>
|
||
|
[EditorIcon("atom-icon-teal")]
|
||
|
public abstract class Vector3Condition : AtomCondition<Vector3> { }
|
||
|
}
|