unity-atoms/Packages/BaseAtoms/Runtime/VariableInstancers/GameObjectVariableInstancer.cs

22 lines
758 B
C#
Raw Normal View History

2020-03-02 02:26:06 +01:00
using UnityAtoms.BaseAtoms;
using UnityEngine;
namespace UnityAtoms.BaseAtoms
{
/// <summary>
/// Variable Instancer of type `GameObject`. Inherits from `AtomVariableInstancer&lt;GameObjectVariable, GameObjectPair, GameObject, GameObjectEvent, GameObjectPairEvent, GameObjectGameObjectFunction&gt;`.
/// </summary>
[EditorIcon("atom-icon-hotpink")]
[AddComponentMenu("Unity Atoms/Variable Instancers/GameObject Variable Instancer")]
public class GameObjectVariableInstancer : AtomVariableInstancer<
GameObjectVariable,
GameObjectPair,
GameObject,
GameObjectEvent,
GameObjectPairEvent,
2020-03-02 02:26:06 +01:00
GameObjectGameObjectFunction,
2020-03-18 00:17:33 +01:00
AtomCollectionReference,
AtomListReference>
2020-03-02 02:26:06 +01:00
{ }
}