mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-23 00:28:23 -05:00
12 lines
410 B
C#
12 lines
410 B
C#
|
using UnityEngine;
|
||
|
|
||
|
namespace UnityAtoms.BaseAtoms
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Value List of type `Vector3`. Inherits from `AtomValueList<Vector3, Vector3Event>`.
|
||
|
/// </summary>
|
||
|
[EditorIcon("atom-icon-piglet")]
|
||
|
[CreateAssetMenu(menuName = "Unity Atoms/Value Lists/Vector3", fileName = "Vector3ValueList")]
|
||
|
public sealed class Vector3ValueList : AtomValueList<Vector3, Vector3Event> { }
|
||
|
}
|