mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-09 01:35:53 +00:00
Music visualizer resource
This commit is contained in:
parent
34ed3bbc9a
commit
e8b884f54b
10 changed files with 82 additions and 19 deletions
20
Scripts/Resources/MusicResource.cs
Normal file
20
Scripts/Resources/MusicResource.cs
Normal 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; }
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue