add bgm playback, scrolling based on bgm time

This commit is contained in:
msk
2023-09-29 16:16:44 -07:00
parent 02b7f023fd
commit 2a6e64dbfd
6 changed files with 131 additions and 44 deletions
+15
View File
@@ -0,0 +1,15 @@
using Godot;
using System;
public partial class SFX : Node
{
// Called when the node enters the scene tree for the first time.
public override void _Ready()
{
}
// Called every frame. 'delta' is the elapsed time since the previous frame.
public override void _Process(double delta)
{
}
}