mirror of
https://github.com/Relintai/pandemonium_demo_projects.git
synced 2024-12-21 13:56:50 +01:00
68 lines
1.6 KiB
GDScript3
68 lines
1.6 KiB
GDScript3
|
extends Node
|
||
|
|
||
|
|
||
|
var _tests = [
|
||
|
{
|
||
|
"id": "Functional Tests/Shapes",
|
||
|
"path": "res://tests/functional/test_shapes.tscn",
|
||
|
},
|
||
|
{
|
||
|
"id": "Functional Tests/Compound Shapes",
|
||
|
"path": "res://tests/functional/test_compound_shapes.tscn",
|
||
|
},
|
||
|
{
|
||
|
"id": "Functional Tests/Friction",
|
||
|
"path": "res://tests/functional/test_friction.tscn",
|
||
|
},
|
||
|
{
|
||
|
"id": "Functional Tests/Box Stack",
|
||
|
"path": "res://tests/functional/test_stack.tscn",
|
||
|
},
|
||
|
{
|
||
|
"id": "Functional Tests/Box Pyramid",
|
||
|
"path": "res://tests/functional/test_pyramid.tscn",
|
||
|
},
|
||
|
{
|
||
|
"id": "Functional Tests/Collision Pairs",
|
||
|
"path": "res://tests/functional/test_collision_pairs.tscn",
|
||
|
},
|
||
|
{
|
||
|
"id": "Functional Tests/Joints",
|
||
|
"path": "res://tests/functional/test_joints.tscn",
|
||
|
},
|
||
|
{
|
||
|
"id": "Functional Tests/Raycasting",
|
||
|
"path": "res://tests/functional/test_raycasting.tscn",
|
||
|
},
|
||
|
{
|
||
|
"id": "Functional Tests/RigidBody Impact",
|
||
|
"path": "res://tests/functional/test_rigidbody_impact.tscn",
|
||
|
},
|
||
|
{
|
||
|
"id": "Functional Tests/RigidBody Ground Check",
|
||
|
"path": "res://tests/functional/test_rigidbody_ground_check.tscn",
|
||
|
},
|
||
|
{
|
||
|
"id": "Functional Tests/Moving Platform",
|
||
|
"path": "res://tests/functional/test_moving_platform.tscn",
|
||
|
},
|
||
|
{
|
||
|
"id": "Performance Tests/Broadphase",
|
||
|
"path": "res://tests/performance/test_perf_broadphase.tscn",
|
||
|
},
|
||
|
{
|
||
|
"id": "Performance Tests/Contacts",
|
||
|
"path": "res://tests/performance/test_perf_contacts.tscn",
|
||
|
},
|
||
|
{
|
||
|
"id" : "Performance Tests/Contact Islands",
|
||
|
"path" : "res://tests/performance/test_perf_contact_islands.tscn",
|
||
|
},
|
||
|
]
|
||
|
|
||
|
|
||
|
func _ready():
|
||
|
var test_menu = $TestsMenu
|
||
|
for test in _tests:
|
||
|
test_menu.add_test(test.id, test.path)
|