mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-30 20:02:49 -05:00
12 lines
398 B
C#
12 lines
398 B
C#
using UnityEngine;
|
|||
|
|||
namespace UnityAtoms.BaseAtoms
|
|||
{
|
|||
/// <summary>
|
|||
/// Constant of type `Quaternion`. Inherits from `AtomBaseVariable<Quaternion>`.
|
|||
/// </summary>
|
|||
[EditorIcon("atom-icon-teal")]
|
|||
[CreateAssetMenu(menuName = "Unity Atoms/Constants/Quaternion", fileName = "QuaternionConstant")]
|
|||
public sealed class QuaternionConstant : AtomBaseVariable<Quaternion> { }
|
|||
}
|