unity-atoms/Packages/Core/Runtime/Actions/SetVariableValue/SetGameObjectVariableValue.cs
2019-10-02 17:36:20 +02:00

15 lines
422 B
C#

using UnityEngine;
namespace UnityAtoms
{
[UseIcon("atom-icon-purple")]
[CreateAssetMenu(menuName = "Unity Atoms/Actions/Set Variable Value/GameObject", fileName = "SetGameObjectVariableValue")]
public sealed class SetGameObjectVariableValue : SetVariableValue<
GameObject,
GameObjectVariable,
GameObjectReference,
GameObjectEvent,
GameObjectGameObjectEvent>
{ }
}