mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-22 16:18:24 -05:00
20 lines
647 B
C#
20 lines
647 B
C#
using UnityAtoms.BaseAtoms;
|
|
using UnityEngine;
|
|
|
|
namespace UnityAtoms.BaseAtoms
|
|
{
|
|
/// <summary>
|
|
/// Variable Instancer of type `Vector3`. Inherits from `AtomVariableInstancer<Vector3Variable, Vector3Pair, Vector3, Vector3Event, Vector3PairEvent, Vector3Vector3Function>`.
|
|
/// </summary>
|
|
[EditorIcon("atom-icon-hotpink")]
|
|
[AddComponentMenu("Unity Atoms/Variable Instancers/Vector3 Variable Instancer")]
|
|
public class Vector3VariableInstancer : AtomVariableInstancer<
|
|
Vector3Variable,
|
|
Vector3Pair,
|
|
Vector3,
|
|
Vector3Event,
|
|
Vector3PairEvent,
|
|
Vector3Vector3Function>
|
|
{ }
|
|
}
|