unity-atoms/Packages/BaseAtoms/Runtime/Actions/SetVariableValue/SetFloatVariableValue.cs
2020-03-18 00:17:33 +01:00

25 lines
823 B
C#

using UnityEngine;
using UnityAtoms.BaseAtoms;
namespace UnityAtoms.BaseAtoms
{
/// <summary>
/// Set variable value Action of type `float`. Inherits from `SetVariableValue&lt;float, FloatPair, FloatVariable, FloatConstant, FloatReference, FloatEvent, FloatPairEvent, FloatVariableInstancer&gt;`.
/// </summary>
[EditorIcon("atom-icon-purple")]
[CreateAssetMenu(menuName = "Unity Atoms/Actions/Set Variable Value/Float", fileName = "SetFloatVariableValue")]
public sealed class SetFloatVariableValue : SetVariableValue<
float,
FloatPair,
FloatVariable,
FloatConstant,
FloatReference,
FloatEvent,
FloatPairEvent,
FloatFloatFunction,
FloatVariableInstancer,
AtomCollectionReference,
AtomListReference>
{ }
}