unity-atoms/Packages/Core/Runtime/Actions/SetVariableValue/SetGameObjectVariableValue.cs
2019-10-14 16:51:54 +02:00

15 lines
425 B
C#

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