mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-22 16:18:24 -05:00
20 lines
630 B
C#
20 lines
630 B
C#
|
using UnityEngine;
|
||
|
using UnityAtoms.BaseAtoms;
|
||
|
|
||
|
namespace UnityAtoms.BaseAtoms
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Variable Instancer of type `double`. Inherits from `AtomVariableInstancer<DoubleVariable, DoublePair, double, DoubleEvent, DoublePairEvent, DoubleDoubleFunction>`.
|
||
|
/// </summary>
|
||
|
[EditorIcon("atom-icon-hotpink")]
|
||
|
[AddComponentMenu("Unity Atoms/Variable Instancers/Double Variable Instancer")]
|
||
|
public class DoubleVariableInstancer : AtomVariableInstancer<
|
||
|
DoubleVariable,
|
||
|
DoublePair,
|
||
|
double,
|
||
|
DoubleEvent,
|
||
|
DoublePairEvent,
|
||
|
DoubleDoubleFunction>
|
||
|
{ }
|
||
|
}
|