SonicAudioTools/Source/CsbBuilder/BuilderNodes/BuilderAisacGraphNode.cs

41 lines
1.2 KiB
C#
Raw Normal View History

2017-01-26 23:40:46 +03:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.ComponentModel;
namespace CsbBuilder.BuilderNodes
2017-01-26 23:40:46 +03:00
{
public class BuilderAisacGraphNode : BuilderBaseNode
{
[Category("General")]
[Description("Type of this graph. Values are unknown.")]
2017-01-26 23:40:46 +03:00
public byte Type { get; set; }
[Category("Vector"), DisplayName("Maximum X")]
[Description("End X position of this graph.")]
2017-01-26 23:40:46 +03:00
public float MaximumX { get; set; }
[Category("Vector"), DisplayName("Minimum X")]
[Description("Begin X position of this graph.")]
2017-01-26 23:40:46 +03:00
public float MinimumX { get; set; }
[Category("Vector"), DisplayName("Maximum Y")]
[Description("End Y position of this graph.")]
2017-01-26 23:40:46 +03:00
public float MaximumY { get; set; }
[Category("Vector"), DisplayName("Minimum Y")]
[Description("End X position of this graph.")]
2017-01-26 23:40:46 +03:00
public float MinimumY { get; set; }
[Category("Vector"), DisplayName("Points")]
public List<BuilderAisacPointNode> Points { get; set; }
public BuilderAisacGraphNode()
{
Points = new List<BuilderAisacPointNode>();
}
}
}