HeavenStudioPlus/Assets/Scripts/Beatmap.cs

30 lines
897 B
C#
Raw Normal View History

2021-12-23 00:08:35 +00:00
using System;
2021-12-22 00:42:01 +00:00
using System.Collections.Generic;
2022-01-15 22:52:53 +00:00
using Newtonsoft.Json;
2021-12-22 00:42:01 +00:00
2021-12-23 00:08:35 +00:00
namespace RhythmHeavenMania
2021-12-22 00:42:01 +00:00
{
2021-12-23 00:08:35 +00:00
[Serializable]
public class Beatmap
2021-12-22 00:42:01 +00:00
{
2021-12-23 02:28:05 +00:00
public float bpm;
2022-01-08 16:42:48 +00:00
public List<Entity> entities = new List<Entity>();
2021-12-22 00:42:01 +00:00
2021-12-23 00:08:35 +00:00
[Serializable]
public class Entity : ICloneable
{
public float beat;
public int track;
2022-01-15 22:52:53 +00:00
[JsonProperty(DefaultValueHandling = DefaultValueHandling.Ignore)] public float length;
[JsonProperty(DefaultValueHandling = DefaultValueHandling.Ignore)] public float valA;
[JsonProperty(DefaultValueHandling = DefaultValueHandling.Ignore)] public int type;
2021-12-23 00:08:35 +00:00
public string datamodel;
2022-01-15 22:52:53 +00:00
[JsonIgnore] public Editor.TimelineEventObj eventObj;
2021-12-23 00:08:35 +00:00
public object Clone()
{
return this.MemberwiseClone();
}
}
2021-12-22 00:42:01 +00:00
}
2021-12-23 00:08:35 +00:00
}