mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-23 00:28:23 -05:00
20 lines
613 B
C#
20 lines
613 B
C#
using UnityEngine;
|
|
using UnityAtoms.BaseAtoms;
|
|
|
|
namespace UnityAtoms.BaseAtoms
|
|
{
|
|
/// <summary>
|
|
/// Variable Instancer of type `float`. Inherits from `AtomVariableInstancer<FloatVariable, FloatPair, float, FloatEvent, FloatPairEvent, FloatFloatFunction>`.
|
|
/// </summary>
|
|
[EditorIcon("atom-icon-hotpink")]
|
|
[AddComponentMenu("Unity Atoms/Variable Instancers/Float Variable Instancer")]
|
|
public class FloatVariableInstancer : AtomVariableInstancer<
|
|
FloatVariable,
|
|
FloatPair,
|
|
float,
|
|
FloatEvent,
|
|
FloatPairEvent,
|
|
FloatFloatFunction>
|
|
{ }
|
|
}
|