Music visualizer resource

This commit is contained in:
Maddo 2025-02-27 09:14:00 +01:00
commit e8b884f54b
10 changed files with 82 additions and 19 deletions

View file

@ -0,0 +1,20 @@
using System;
using Godot;
namespace Cirno.Scripts.Resources;
[GlobalClass]
public partial class MusicResource : Resource
{
[Export]
public string TrackName { get; set; }
[Export]
public string AuthorName { get; set; }
[Export]
public bool ShowAuthor { get; set; }
[Export]
public AudioStream Track { get; set; }
}