25 lines
359 B
C#
25 lines
359 B
C#
using System;
|
|
|
|
namespace DarkTonic.MasterAudio
|
|
{
|
|
[Serializable]
|
|
public class RealTimeParameter
|
|
{
|
|
public string ParameterName = "YourParameter";
|
|
|
|
public float Value;
|
|
|
|
public bool IsExpanded = true;
|
|
|
|
public bool IsEditing;
|
|
|
|
public string ProspectiveName;
|
|
|
|
public float MinValue;
|
|
|
|
public float MaxValue = 1000f;
|
|
|
|
public bool IsTemporary;
|
|
}
|
|
}
|