mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-26 18:08:27 -05:00
22 lines
742 B
C#
22 lines
742 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>
|
||
|
{ }
|
||
|
}
|