canto/Assets/Scripts/Item/Atoms/Actions/SetVariableValue/SetItemVariableValue.cs
2025-10-02 15:28:03 -04:00

23 lines
789 B
C#

using UnityEngine;
using UnityAtoms.BaseAtoms;
using KitsuneCafe.ItemSystem;
namespace UnityAtoms.KitsuneCafe.Atom.ItemSystem
{
/// <summary>
/// Set variable value Action of type `Item`. Inherits from `SetVariableValue&lt;Item, ItemPair, ItemVariable, ItemConstant, ItemReference, ItemEvent, ItemPairEvent, ItemVariableInstancer&gt;`.
/// </summary>
[EditorIcon("atom-icon-purple")]
[CreateAssetMenu(menuName = "Unity Atoms/Actions/Set Variable Value/Item", fileName = "SetItemVariableValue")]
public sealed class SetItemVariableValue : SetVariableValue<
Item,
ItemPair,
ItemVariable,
ItemConstant,
ItemReference,
ItemEvent,
ItemPairEvent,
ItemItemFunction,
ItemVariableInstancer>
{ }
}