unity-atoms/Packages/Core/Runtime/VariableInstancers/GameObjectVariableInstancer.cs
2020-02-23 23:13:30 +01:00

12 lines
578 B
C#

using UnityEngine;
namespace UnityAtoms
{
/// <summary>
/// Variable Instancer of type `GameObject`. Inherits from `AtomVariableInstancer&lt;GameObjectVariable, GameObject, GameObjectEvent, GameObjectGameObjectEvent, GameObjectGameObjectFunction&gt;`.
/// </summary>
[EditorIcon("atom-icon-hotpink")]
[AddComponentMenu("Unity Atoms/Variable Instancers/GameObject Instancer")]
public class GameObjectVariableInstancer : AtomVariableInstancer<GameObjectVariable, GameObject, GameObjectEvent, GameObjectGameObjectEvent, GameObjectGameObjectFunction> { }
}