mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-23 08:38:23 -05:00
12 lines
578 B
C#
12 lines
578 B
C#
using UnityEngine;
|
|
|
|
namespace UnityAtoms
|
|
{
|
|
/// <summary>
|
|
/// Variable Instancer of type `GameObject`. Inherits from `AtomVariableInstancer<GameObjectVariable, GameObject, GameObjectEvent, GameObjectGameObjectEvent, GameObjectGameObjectFunction>`.
|
|
/// </summary>
|
|
[EditorIcon("atom-icon-hotpink")]
|
|
[AddComponentMenu("Unity Atoms/Variable Instancers/GameObject Instancer")]
|
|
public class GameObjectVariableInstancer : AtomVariableInstancer<GameObjectVariable, GameObject, GameObjectEvent, GameObjectGameObjectEvent, GameObjectGameObjectFunction> { }
|
|
}
|