8 lines
172 B
GDScript3
8 lines
172 B
GDScript3
|
extends SceneTree
|
||
|
|
||
|
# godot --headless --no-header -s tools/get_version.gd
|
||
|
|
||
|
func _init() -> void:
|
||
|
print(ProjectSettings.get_setting("application/config/version"))
|
||
|
quit(0)
|