mirror of
https://github.com/Relintai/pandemonium_demo_projects.git
synced 2025-01-02 14:39:37 +01:00
13 lines
372 B
GDScript3
13 lines
372 B
GDScript3
|
extends Label
|
||
|
|
||
|
|
||
|
func _process(_delta):
|
||
|
var engine_name = ""
|
||
|
match System.get_physics_engine():
|
||
|
System.PhysicsEngine.GODOT_PHYSICS:
|
||
|
engine_name = "Godot Physics"
|
||
|
System.PhysicsEngine.OTHER:
|
||
|
var engine_setting = ProjectSettings.get_setting("physics/2d/physics_engine")
|
||
|
engine_name = "Other (%s)" % engine_setting
|
||
|
set_text("Physics engine: %s" % engine_name)
|