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