Files
GameJam2023/Levels/Scripts/FinalLevel.cs
GameJammer 54b044142d fun stuff
2023-09-14 14:17:27 -07:00

12 lines
253 B
C#

using Godot;
public partial class FinalLevel : Node3D
{
public override void _Ready()
{
var bgmPlayer = GetTree().Root.GetNode<BGMPlayer>("BgmPlayer");
bgmPlayer.SetBGMFromFilepath("Audio/BGM/BossTheme.ogg");
bgmPlayer.PlayBGM();
}
}