36 lines
650 B
C#
36 lines
650 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace DarkTonic.MasterAudio
|
|
{
|
|
[Serializable]
|
|
public class ParameterCommand
|
|
{
|
|
public string CommandName = "YourEvent";
|
|
|
|
public bool IsExpanded = true;
|
|
|
|
public bool IsEditing;
|
|
|
|
public string ProspectiveName;
|
|
|
|
public string ParameterName = "[None]";
|
|
|
|
public List<ParameterCommandElement> Elements = new List<ParameterCommandElement>();
|
|
|
|
public bool IsTemporary;
|
|
|
|
public float MinDisplayCurveX;
|
|
|
|
public float MaxDisplayCurveX = 1000f;
|
|
|
|
public bool StopCmdOutOfRange;
|
|
|
|
public float ValidRangeMin;
|
|
|
|
public float ValidRangeMax = 1000f;
|
|
|
|
public int NumberOfTimesInvoked;
|
|
}
|
|
}
|