mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-23 08:38:23 -05:00
299dc195e2
- Added the option to use a Constant in Atom References. Related to #58
19 lines
667 B
C#
19 lines
667 B
C#
using UnityEngine;
|
|
|
|
namespace UnityAtoms
|
|
{
|
|
/// <summary>
|
|
/// Set variable value Action of type `Collider`. Inherits from `SetVariableValue<Collider, ColliderVariable, ColliderConstant, ColliderReference, ColliderEvent, ColliderColliderEvent>`.
|
|
/// </summary>
|
|
[EditorIcon("atom-icon-purple")]
|
|
[CreateAssetMenu(menuName = "Unity Atoms/Actions/Set Variable Value/Collider", fileName = "SetColliderVariableValue")]
|
|
public sealed class SetColliderVariableValue : SetVariableValue<
|
|
Collider,
|
|
ColliderVariable,
|
|
ColliderConstant,
|
|
ColliderReference,
|
|
ColliderEvent,
|
|
ColliderColliderEvent>
|
|
{ }
|
|
}
|