infinite_level.tscn 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. [gd_scene load_steps=8 format=3 uid="uid://7ivipmwaw24t"]
  2. [ext_resource type="Script" path="res://run/levels/camera_tracker.gd" id="1_qdm47"]
  3. [ext_resource type="PackedScene" uid="uid://b10k58capm04o" path="res://component/entity/walker/walker.tscn" id="1_x0026"]
  4. [ext_resource type="PackedScene" uid="uid://bk0s5bn8k08bc" path="res://flow/control/local_input/local_input.tscn" id="2_0i5t8"]
  5. [ext_resource type="PackedScene" uid="uid://bcpri2x5afoyb" path="res://component/entity/box/box.tscn" id="2_e8xto"]
  6. [ext_resource type="PackedScene" uid="uid://dao17ylietgyl" path="res://component/entity/vehicles/plane/tiny_plane.tscn" id="4_tbpfc"]
  7. [sub_resource type="WorldBoundaryShape3D" id="WorldBoundaryShape3D_2xulb"]
  8. [sub_resource type="QuadMesh" id="QuadMesh_dt8nl"]
  9. size = Vector2(500, 500)
  10. orientation = 1
  11. [node name="InfiniteLevel" type="Node3D"]
  12. [node name="Ground" type="StaticBody3D" parent="."]
  13. transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -1, 0)
  14. collision_mask = 0
  15. [node name="InfinitePlan" type="CollisionShape3D" parent="Ground"]
  16. shape = SubResource("WorldBoundaryShape3D_2xulb")
  17. [node name="MeshInstance3D" type="MeshInstance3D" parent="Ground"]
  18. mesh = SubResource("QuadMesh_dt8nl")
  19. [node name="DirectionalLight3D" type="DirectionalLight3D" parent="."]
  20. transform = Transform3D(1, 0, 0, 0, 0.734358, 0.678762, 0, -0.678762, 0.734358, -33.1669, 12.6773, 15.7238)
  21. shadow_enabled = true
  22. [node name="CameraTracker" type="Camera3D" parent="."]
  23. transform = Transform3D(1, 0, 0, 0, 0.944949, 0.327218, 0, -0.327218, 0.944949, -10, 11.1852, 3.2779)
  24. current = true
  25. script = ExtResource("1_qdm47")
  26. max_distance = 6.0
  27. camera_height = 2.0
  28. [node name="MainWalker" parent="." instance=ExtResource("1_x0026")]
  29. transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -10, 9, 0)
  30. [node name="Control" parent="MainWalker" instance=ExtResource("2_0i5t8")]
  31. [node name="NpcWalker1" parent="." instance=ExtResource("1_x0026")]
  32. transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2.0621, 6.0173, -4.87909)
  33. [node name="Boxes" type="Node3D" parent="."]
  34. [node name="Box1" parent="Boxes" instance=ExtResource("2_e8xto")]
  35. transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -0.5, 0)
  36. [node name="Box2" parent="Boxes" instance=ExtResource("2_e8xto")]
  37. transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -6.2632, -0.5, -7.95074)
  38. [node name="Box3" parent="Boxes" instance=ExtResource("2_e8xto")]
  39. transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -5.53697, 1.42774, -11.1883)
  40. [node name="TinyPlane" parent="." instance=ExtResource("4_tbpfc")]
  41. transform = Transform3D(0.477312, 0.527326, -0.702923, -0.741391, 0.671074, 0, 0.471713, 0.521141, 0.711266, -76.6685, 15.7672, 53.8067)
  42. [node name="TinyPlane2" parent="." instance=ExtResource("4_tbpfc")]
  43. transform = Transform3D(-0.589079, -0.650805, -0.478999, -0.741391, 0.671074, 1.34747e-08, 0.321443, 0.355125, -0.877816, -10.5959, 3.94108, -6.48481)
  44. [connection signal="focus_required" from="MainWalker" to="CameraTracker" method="_on_focus_required"]
  45. [connection signal="dir_changed" from="MainWalker/Control" to="MainWalker" method="_on_dir_changed"]
  46. [connection signal="get_in_action" from="MainWalker/Control" to="MainWalker" method="_on_get_in_action"]
  47. [connection signal="main_action" from="MainWalker/Control" to="MainWalker" method="_on_main_action"]