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