Update Test.gd

This commit is contained in:
JeremyStar™ 2024-03-03 19:07:59 +01:00
parent c37f267b31
commit b739c8ad53

View file

@ -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%