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

22 lines
742 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,
GameObjectGameObjectFunction,
AtomCollection,
AtomList>
{ }
}