unity-atoms/Packages/BaseAtoms/Runtime/VariableInstancers/FloatVariableInstancer.cs

22 lines
655 B
C#
Raw Normal View History

2020-03-01 20:26:06 -05:00
using UnityEngine;
using UnityAtoms.BaseAtoms;
namespace UnityAtoms.BaseAtoms
{
/// <summary>
/// Variable Instancer of type `float`. Inherits from `AtomVariableInstancer&lt;FloatVariable, FloatPair, float, FloatEvent, FloatPairEvent, FloatFloatFunction&gt;`.
/// </summary>
[EditorIcon("atom-icon-hotpink")]
[AddComponentMenu("Unity Atoms/Variable Instancers/Float Variable Instancer")]
public class FloatVariableInstancer : AtomVariableInstancer<
FloatVariable,
FloatPair,
float,
FloatEvent,
FloatPairEvent,
FloatFloatFunction,
AtomCollection,
AtomList>
{ }
}