new file: .DS_Store

new file:   Audio/track.mp3
	new file:   Audio/track.mp3.import
	modified:   Charts/track.json
	modified:   Scenes/Game/level.tscn
	new file:   Scripts/.DS_Store
	modified:   Scripts/Core/GameManager.cs
	modified:   Scripts/Core/MusicClock.cs
	modified:   Scripts/Core/TrackGenerator.cs
	modified:   Scripts/Data/ChartEvent.cs
	modified:   Scripts/Data/TrackData.cs
	modified:   Scripts/GameObjects/NoteObject.cs
This commit is contained in:
CrbnsCat10n
2026-04-12 17:24:27 +08:00
parent 0e6bf1dcad
commit 778d68fd00
14 changed files with 154 additions and 38 deletions

View File

@@ -1,30 +1,52 @@
{
"MusicPath": "res://Audio/track.mp3",
"BPM": 120,
"Offset": 0.5,
"TicksPerBeat": 480,
"Offset": 0.0,
"TicksPerBeat": 480.0,
"TempoPoints": [
{
"Tick": 0,
"BPM": 120
}
],
"RelativeSpeedPoints": [
{
"Tick": 0,
"Speed": 20.0,
"IsLinear": false
}
],
"AbsoluteSpeedPoints": [
{
"Tick": 0,
"Speed": 1.0,
"IsLinear": false
}
],
"Events": [
{
"$type": "Onrinto.Chart.ChartEvent",
"Type": "Beat",
"Tick": 1000,
"Position": {"x": 1.0, "y": 0.0}
"Tick": 0,
"Position": { "X": 0.0, "Y": 0.0 }
},
{
"$type": "Onrinto.Chart.AnimatedEvent",
"Type": "Catch",
"Tick": 2000,
"Position": {"x": 0.0, "y": 0.0},
"AniType": "Sin",
"In_Out": 1,
"AniStartTime": 1500,
"AniEndTime": 2000,
"RelativeSpeed": 1.5,
"StartPosition": {"x": -2.0, "y": 4.0},
"EndPosition": {"x": 2.0, "y": 3.0}
"$type": "Onrinto.Chart.ChartEvent",
"Type": "Beat",
"Tick": 480,
"Position": { "X": -2.0, "Y": 0.0 }
},
{
"$type": "Onrinto.Chart.ChartEvent",
"Type": "Beat",
"Tick": 960,
"Position": { "X": 2.0, "Y": 0.0 }
},
{
"$type": "Onrinto.Chart.ChartEvent",
"Type": "Beat",
"Tick": 1440,
"Position": { "X": 0.0, "Y": 0.0 }
}
],
"RelativeSpeedPoints": [
{ "Tick": 0, "Speed": 1.0 , "IsLinear": false},
{ "Tick": 5000, "Speed": 2.0, "IsLinear": true }
]
}