Update Test.gd
This commit is contained in:
parent
c37f267b31
commit
b739c8ad53
1 changed files with 5 additions and 1 deletions
6
Test.gd
6
Test.gd
|
@ -26,12 +26,16 @@ var config: CoreConfiguration = CoreConfiguration.new()
|
|||
# CORE Object
|
||||
var core: Core
|
||||
|
||||
func _ready() -> void:
|
||||
func _init() -> void:
|
||||
configure_core()
|
||||
# Initialize CORE with custom config
|
||||
core = Core.new(config)
|
||||
|
||||
func _ready() -> void:
|
||||
# Inject CORE
|
||||
await get_tree().process_frame
|
||||
add_child(core)
|
||||
await get_tree().process_frame
|
||||
# Print information about CORE
|
||||
core.logger.info(await core.get_formatted_string("""Version information:
|
||||
Release (semantic) = %release_semantic%
|
||||
|
|
Loading…
Reference in a new issue