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
|
# CORE Object
|
||||||
var core: Core
|
var core: Core
|
||||||
|
|
||||||
func _ready() -> void:
|
func _init() -> void:
|
||||||
configure_core()
|
configure_core()
|
||||||
# Initialize CORE with custom config
|
# Initialize CORE with custom config
|
||||||
core = Core.new(config)
|
core = Core.new(config)
|
||||||
|
|
||||||
|
func _ready() -> void:
|
||||||
# Inject CORE
|
# Inject CORE
|
||||||
|
await get_tree().process_frame
|
||||||
add_child(core)
|
add_child(core)
|
||||||
|
await get_tree().process_frame
|
||||||
# Print information about CORE
|
# Print information about CORE
|
||||||
core.logger.info(await core.get_formatted_string("""Version information:
|
core.logger.info(await core.get_formatted_string("""Version information:
|
||||||
Release (semantic) = %release_semantic%
|
Release (semantic) = %release_semantic%
|
||||||
|
|
Loading…
Reference in a new issue