mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-24 00:58:59 -05:00
22 lines
708 B
C#
22 lines
708 B
C#
|
using UnityAtoms.BaseAtoms;
|
||
|
using UnityEngine;
|
||
|
|
||
|
namespace UnityAtoms.BaseAtoms
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Variable Instancer of type `Collider`. Inherits from `AtomVariableInstancer<ColliderVariable, ColliderPair, Collider, ColliderEvent, ColliderPairEvent, ColliderColliderFunction>`.
|
||
|
/// </summary>
|
||
|
[EditorIcon("atom-icon-hotpink")]
|
||
|
[AddComponentMenu("Unity Atoms/Variable Instancers/Collider Variable Instancer")]
|
||
|
public class ColliderVariableInstancer : AtomVariableInstancer<
|
||
|
ColliderVariable,
|
||
|
ColliderPair,
|
||
|
Collider,
|
||
|
ColliderEvent,
|
||
|
ColliderPairEvent,
|
||
|
ColliderColliderFunction,
|
||
|
AtomCollection,
|
||
|
AtomList>
|
||
|
{ }
|
||
|
}
|