13 lines
227 B
GDScript3
13 lines
227 B
GDScript3
|
extends Node
|
||
|
|
||
|
const testmode: bool = true
|
||
|
const errortest: bool = true
|
||
|
|
||
|
func _ready() -> void:
|
||
|
if testmode:
|
||
|
Log.info("Starting singleton tests.")
|
||
|
Networking.test()
|
||
|
Log.test()
|
||
|
if errortest:
|
||
|
Log.error("Test", "Test")
|