mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-24 00:58:59 -05:00
25 lines
827 B
C#
25 lines
827 B
C#
|
using UnityEngine;
|
||
|
using UnityAtoms.BaseAtoms;
|
||
|
|
||
|
namespace UnityAtoms.BaseAtoms
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Set variable value Action of type `string`. Inherits from `SetVariableValue<string, StringPair, StringVariable, StringConstant, StringReference, StringEvent, StringPairEvent, StringVariableInstancer>`.
|
||
|
/// </summary>
|
||
|
[EditorIcon("atom-icon-purple")]
|
||
|
[CreateAssetMenu(menuName = "Unity Atoms/Actions/Set Variable Value/String", fileName = "SetStringVariableValue")]
|
||
|
public sealed class SetStringVariableValue : SetVariableValue<
|
||
|
string,
|
||
|
StringPair,
|
||
|
StringVariable,
|
||
|
StringConstant,
|
||
|
StringReference,
|
||
|
StringEvent,
|
||
|
StringPairEvent,
|
||
|
StringStringFunction,
|
||
|
StringVariableInstancer,
|
||
|
AtomCollection,
|
||
|
AtomList>
|
||
|
{ }
|
||
|
}
|