mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-22 16:18:24 -05:00
12 lines
413 B
C#
12 lines
413 B
C#
using UnityEngine;
|
|
|
|
namespace UnityAtoms.BaseAtoms
|
|
{
|
|
/// <summary>
|
|
/// Event Instancer of type `Collider`. Inherits from `AtomEventInstancer<Collider, ColliderEvent>`.
|
|
/// </summary>
|
|
[EditorIcon("atom-icon-sign-blue")]
|
|
[AddComponentMenu("Unity Atoms/Event Instancers/Collider Event Instancer")]
|
|
public class ColliderEventInstancer : AtomEventInstancer<Collider, ColliderEvent> { }
|
|
}
|