mirror of
https://github.com/godotengine/godot-demo-projects.git
synced 2026-01-04 06:09:46 +03:00
Add Functional Test / Stack & Pyramid For testing stack stability. Add Functional Test / Raycasts Visually test raycast on different shapes. Add Performance Test / Broadphase Add/move/remove lots of non-colliding objects and measure time. Fix leaks on exit Some Nodes are copied and removed from the scene to be used as templates, they need to be freed manually on exit. Fix Performance Test / Contacts Positions adjusted, some shape types were not created at the center.
17 lines
584 B
Plaintext
17 lines
584 B
Plaintext
[gd_scene load_steps=4 format=2]
|
|
|
|
[ext_resource path="res://tests/functional/test_stack.gd" type="Script" id=1]
|
|
[ext_resource path="res://tests/static_scene_plane.tscn" type="PackedScene" id=2]
|
|
[ext_resource path="res://utils/camera_orbit.gd" type="Script" id=4]
|
|
|
|
[node name="Test" type="Spatial"]
|
|
script = ExtResource( 1 )
|
|
|
|
[node name="Stack" type="Spatial" parent="."]
|
|
|
|
[node name="StaticBodyPlane" parent="." instance=ExtResource( 2 )]
|
|
|
|
[node name="Camera" type="Camera" parent="."]
|
|
transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 4.53602, 12.2684 )
|
|
script = ExtResource( 4 )
|