unity-atoms/Assets/UnityAtoms/GameActions/SetVariableValue/SetGameObjectVariableValue.cs

7 lines
299 B
C#
Raw Normal View History

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