Add demo: Physics Tests 2D

Similar to its 3D counterpart, with tests using 2D physics.
This commit is contained in:
PouleyKetchoupp
2020-12-09 20:01:30 -07:00
parent 3147c6c5bd
commit 8241be5817
37 changed files with 1465 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
extends Label
var test_name setget _set_test_name
func _ready():
set_text("Select a test from the menu to start it")
func _set_test_name(value):
test_name = value
set_text("Test: %s" % test_name)