Fixed add player process where name can be set. Added signals for points. Added settings file. Changed some shortcuts.
This commit is contained in:
23
Settings.gd
Normal file
23
Settings.gd
Normal 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
|
||||
Reference in New Issue
Block a user