mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-29 19:32:51 -05:00
20 lines
664 B
C#
20 lines
664 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>
|
|
{ }
|
|
}
|