WuhuIslandTesting/Library/PackageCache/com.stresslevelzero.marrow.sdk@1.2.0/Scripts/SLZ.Marrow/SLZ.Marrow.Circuits/ValueCircuit.cs

23 lines
609 B
C#
Raw Permalink Normal View History

2025-01-07 02:06:59 +01:00
using UnityEngine;
namespace SLZ.Marrow.Circuits
{
[AddComponentMenu("MarrowSDK/Circuits/Nodes/Value Node")]
public class ValueCircuit : Circuit
{
[Tooltip("The Value Node outputs the specified constant value")]
[SerializeField]
private float _value = 1f;
public float Value
{
get => _value;
set
{
UnityEngine.Debug.Log("Hollowed Property Setter: SLZ.Marrow.Circuits.ValueCircuit.Value");
throw new System.NotImplementedException();
}
}
#if UNITY_EDITOR
#endif
}
}