24 lines
549 B
GDScript
24 lines
549 B
GDScript
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
|