mirror of
https://github.com/jcreek/CosmicClash.git
synced 2026-09-11 22:13:44 +00:00
c75e142c8a
Adds a [layer_names] section to project.godot (Ships/Ball/Arena/
GoalSensor) and sets collision_layer/collision_mask on the 4 physics
body roots (Ship, Ball, Goal Area3D, ArenaBoundary StaticBody3D),
which previously all sat on the default layer 1 / mask 1 so every
body broadphase-tested against every other.
Ships collide with ships/ball/arena but no longer test against the
goal sensor; the goal's mask (Ball only) is the physics-level fix for
what goal.gd's is_in_group("ball") check was doing defensively in
code (left in place, now a no-op guard). ArenaBoundary's runtime-
generated CollisionShape3D children inherit layer/mask from the
StaticBody3D root automatically.
Verified live via godot-mcp under Jolt Physics: ship-vs-ship and
ship-vs-ball collisions still transfer momentum, the ball still
bounces off arena walls, a ball entering a goal still fires
goal_scored (score updates / HUD reset), and a ship teleported into a
goal recess produces zero overlapping bodies on the goal Area3D (was
reachable before, physics-level fix confirmed, not just the code
guard). Headless smoke test (free_play.tscn) is clean.
32 lines
1.1 KiB
Plaintext
32 lines
1.1 KiB
Plaintext
[gd_scene load_steps=13 format=3 uid="uid://p07epxnh8wwp"]
|
|
|
|
[ext_resource type="Script" uid="uid://dyq1n7q1bqjps" path="res://scripts/ship.gd" id="1_efag7"]
|
|
[ext_resource type="ArrayMesh" path="res://assets/models/ship_nose.res" id="3_nose"]
|
|
[ext_resource type="ArrayMesh" path="res://assets/models/ship_tailfin.res" id="5_talfin"]
|
|
|
|
[sub_resource type="PhysicsMaterial" id="PhysicsMaterial_ship"]
|
|
friction = 0.1
|
|
bounce = 0.15
|
|
|
|
[sub_resource type="BoxShape3D" id="BoxShape3D_dsjou"]
|
|
size = Vector3(1, 1, 4)
|
|
|
|
[node name="Ship" type="RigidBody3D"]
|
|
collision_layer = 1
|
|
collision_mask = 7
|
|
mass = 5.0
|
|
physics_material_override = SubResource("PhysicsMaterial_ship")
|
|
inertia = Vector3(1, 1, 1)
|
|
script = ExtResource("1_efag7")
|
|
|
|
[node name="Nose" type="MeshInstance3D" parent="."]
|
|
transform = Transform3D(-1, 0, 0, 0, 1, 0, 0, 0, -1, 0, 0, 0)
|
|
mesh = ExtResource("3_nose")
|
|
|
|
[node name="TailFin" type="MeshInstance3D" parent="."]
|
|
transform = Transform3D(-1, 0, 0, 0, 1, 0, 0, 0, -1, 0, 0.24, 0.72)
|
|
mesh = ExtResource("5_talfin")
|
|
|
|
[node name="CollisionShape3D" type="CollisionShape3D" parent="."]
|
|
shape = SubResource("BoxShape3D_dsjou")
|