Fixed add player process where name can be set. Added signals for points. Added settings file. Changed some shortcuts.

This commit is contained in:
2023-09-07 21:55:31 +02:00
parent 5b6169ed6c
commit 050d19039c
7 changed files with 134 additions and 28 deletions

23
Settings.gd Normal file
View File

@@ -0,0 +1,23 @@
extends Node
var default_path: String = "http://192.168.86.100:8085"
#var default_path: String = "https://music.sanplex.tech"
var is_local: bool = false
var stop_after_current: bool = false
var hide_next_track: bool = false
var add_to_stats: bool = false
var use_low_played_mode: bool = false
var winning_score: int = 20
# Called when the node enters the scene tree for the first time.
func _ready():
pass # Replace with function body.
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta):
pass