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