unity-atoms/Packages/BaseAtoms/Runtime/VariableInstancers/FloatVariableInstancer.cs
2020-03-19 08:39:43 +01:00

20 lines
613 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>
{ }
}