mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-23 08:38:23 -05:00
23 lines
906 B
C#
23 lines
906 B
C#
|
using UnityEngine;
|
||
|
using UnityAtoms.BaseAtoms;
|
||
|
using UnityAtoms.MonoHooks;
|
||
|
|
||
|
namespace UnityAtoms.MonoHooks
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Variable Instancer of type `ColliderGameObject`. Inherits from `AtomVariableInstancer<ColliderGameObjectVariable, ColliderGameObjectPair, ColliderGameObject, ColliderGameObjectEvent, ColliderGameObjectPairEvent, ColliderGameObjectColliderGameObjectFunction>`.
|
||
|
/// </summary>
|
||
|
[EditorIcon("atom-icon-hotpink")]
|
||
|
[AddComponentMenu("Unity Atoms/Variable Instancers/ColliderGameObject Variable Instancer")]
|
||
|
public class ColliderGameObjectVariableInstancer : AtomVariableInstancer<
|
||
|
ColliderGameObjectVariable,
|
||
|
ColliderGameObjectPair,
|
||
|
ColliderGameObject,
|
||
|
ColliderGameObjectEvent,
|
||
|
ColliderGameObjectPairEvent,
|
||
|
ColliderGameObjectColliderGameObjectFunction,
|
||
|
AtomCollection,
|
||
|
AtomList>
|
||
|
{ }
|
||
|
}
|