unity-atoms/Packages/BaseAtoms/Runtime/VariableInstancers/FloatVariableInstancer.cs
Adam Ramberg c3bc59259f More WIP
2020-03-02 02:26:06 +01:00

22 lines
655 B
C#

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>
{ }
}