mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-26 18:08:27 -05:00
23 lines
940 B
C#
23 lines
940 B
C#
|
using UnityEngine;
|
||
|
using UnityAtoms.BaseAtoms;
|
||
|
using UnityAtoms.MonoHooks;
|
||
|
|
||
|
namespace UnityAtoms.MonoHooks
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Variable Instancer of type `Collider2DGameObject`. Inherits from `AtomVariableInstancer<Collider2DGameObjectVariable, Collider2DGameObjectPair, Collider2DGameObject, Collider2DGameObjectEvent, Collider2DGameObjectPairEvent, Collider2DGameObjectCollider2DGameObjectFunction>`.
|
||
|
/// </summary>
|
||
|
[EditorIcon("atom-icon-hotpink")]
|
||
|
[AddComponentMenu("Unity Atoms/Variable Instancers/Collider2DGameObject Variable Instancer")]
|
||
|
public class Collider2DGameObjectVariableInstancer : AtomVariableInstancer<
|
||
|
Collider2DGameObjectVariable,
|
||
|
Collider2DGameObjectPair,
|
||
|
Collider2DGameObject,
|
||
|
Collider2DGameObjectEvent,
|
||
|
Collider2DGameObjectPairEvent,
|
||
|
Collider2DGameObjectCollider2DGameObjectFunction,
|
||
|
AtomCollection,
|
||
|
AtomList>
|
||
|
{ }
|
||
|
}
|