thedivergentai/gd-agentic-skills

godot-physics-3d

Expert patterns for Godot 3D physics (Jolt/PhysX), including Ragdolls, PhysicalBones, Joint3D constraints, RayCasting optimizations, and collision layers.

First seen Feb 10, 2026

Installation

$ npx skills add thedivergentai/gd-agentic-skills --skill godot-physics-3d

Summary

  • Expert patterns for Godot 3D physics (Jolt/PhysX), including Ragdolls, PhysicalBones, Joint3D constraints, RayCasting optimizations, and collision layers.
  • Use for rigid body simulations, character physics, or complex interactions.
  • Trigger keywords: RigidBody3D, PhysicalBone3D, Jolt, Ragdoll, Skeleton3D, Joint3D, PinJoint3D, HingeJoint3D, Generic6DOFJoint3D, RayCast3D, PhysicsDirectSpaceState3D.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from thedivergentai/gd-agentic-skills · top by installs.

npx skills add thedivergentai/gd-agentic-skills

Browse all from thedivergentai/gd-agentic-skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 678
License LICENSE
Default branch main
Open issues 0
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 13,107 B
  • docs SUMMARY.md 3,997 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 303 installs

SKILL.md

3D Physics (Jolt/Native)

High-performance 3D simulation: body choice, CCD, stairs, vehicles, ragdolls, SoftBody — routed through scripts.

NEVER Do

  • NEVER move PhysicsBody3D nodes in process() — Use physics_process(). Moving bodies outside the physics step causes visual jitter and unreliable collision detection [12, 13].
  • NEVER scale collision shapes directly — Scaling physics shapes causes instability, inaccurate normals, and jitter. Use the shape properties (height, radius, size) instead.
  • NEVER modify RigidBody3D transforms directly — This ignores the physics solver. Use applyimpulse(), applytorque(), or the integrateforces() callback for safe manipulation [17].
  • NEVER use RigidBody3D for platformer player controllers — RigidBody is for objects driven by physics. For refined movement, use CharacterBody3D with moveandslide() [moveandslide].
  • NEVER leave Continuous CD (CCD) enabled for static meshes — It adds heavy CPU cost. Reserve it for high-speed small objects (bullets) to prevent them from passing through walls.
  • NEVER use PhysicsServer3D RIDs without manual cleanup — RIDs are not garbage collected. If you create bodies via the server, you MUST call free_rid() when done to avoid memory leaks.
  • NEVER use RayCast3D for precise ground detection on stairs — A single ray is too thin. Use ShapeCast3D with a cylinder or sphere shape to detect walkable steps reliably [Stair Logic].
  • NEVER rely on VehicleBody3D for non-racing arcade vehicles — It's a complex sim. For arcade hovercraft or simple cars, a custom CharacterBody3D with Raycasts is often easier to tune.
  • NEVER forget to set collisionlayer and collisionmask properly — If everything is on layer 1, performance will tank from redundant checks. Categorize your world.
  • NEVER use Area3D for high-frequency blocking — Areas are for detection. For walls/barriers, use StaticBody3D to ensure immediate, robust containment.

Body / Symptom Decision Tree

MANDATORY — load the script for the chosen row before writing movement or sim code.

Do NOT Load every physics script for one controller.

Need / symptom Body / API Script
Player locomotion, stairs, slopes CharacterBody3D MANDATORY [kinematic3dstairslogic.gd](scripts/kinematic3dstairslogic.gd) + [shapecast3dgroundcheck.gd](scripts/shapecast3dgroundcheck.gd)
Debris, props, impulse-driven objects RigidBody3D NEVER + impulses; layers via [physicslayers3dconfig.gd](scripts/physicslayers3dconfig.gd)
Racing / wheeled sim VehicleBody3D MANDATORY [vehiclesimulationtuning.gd](scripts/vehiclesimulationtuning.gd)
Arcade hover / simple cars Custom CharacterBody3D + rays Prefer stairs/ray scripts; avoid full VehicleBody
Death / blend to physics pose PhysicalBone3D / Skeleton MANDATORY [ragdollmanager.gd](scripts/ragdollmanager.gd)
Cloaks, soft cloth, foliage soft SoftBody3D MANDATORY [softbody3dinteraction.gd](scripts/softbody3dinteraction.gd)
Tunneling bullets CCD / server bullets MANDATORY [physicsccd3dprojectile.gd](scripts/physicsccd3dprojectile.gd) or [physicsserver3dbullets.gd](scripts/physicsserver3dbullets.gd)
Joint snap / destructibles Joint3D stress [joint3dbreakagelogic.gd](scripts/joint3dbreakagelogic.gd)
Gravity wells / zero-G Area priority [customgravitywell3d.gd](scripts/customgravitywell3d.gd)
LOS / AI vision Direct space state [rayquery3dvision.gd](scripts/rayquery3dvision.gd)
Debug hit normals visualizer [raycastvisualizer.gd](scripts/raycastvisualizer.gd)

3D Layer Pitfalls (not a 2D primer)

  • Layer = what the object is; mask = what it hits. Name bits in [physicslayers3dconfig.gd](scripts/physicslayers3dconfig.gd).
  • Do not dump a same-as-2D layers tutorial here; Official Docs cover the shared mental model.

Available Scripts

[kinematic3dstairslogic.gd](scripts/kinematic3dstairslogic.gd)

Procedural stair-step + snap for CharacterBody3D.

[shapecast3dgroundcheck.gd](scripts/shapecast3dgroundcheck.gd)

Volume ground/stair detection (rays tunnel).

[ragdollmanager.gd](scripts/ragdollmanager.gd)

Animation → PhysicalBone simulation transition, impulses, cleanup.

[vehiclesimulationtuning.gd](scripts/vehiclesimulationtuning.gd)

VehicleBody3D / VehicleWheel3D arcade vs sim knobs.

[softbody3dinteraction.gd](scripts/softbody3dinteraction.gd)

SoftBody3D flags, pinning, and Jolt mass/stiffness tuning.

[physicsccd3dprojectile.gd](scripts/physicsccd3dprojectile.gd)

CCD / sub-step anti-tunneling for small fast bodies.

[physicsserver3dbullets.gd](scripts/physicsserver3dbullets.gd)

RID bullets at scale with mandatory free_rid().

[physicslayers3dconfig.gd](scripts/physicslayers3dconfig.gd)

Named 3D collision matrix architecture.

[customgravitywell3d.gd](scripts/customgravitywell3d.gd)

Planet / zero-G Area3D gravity priority.

[joint3dbreakagelogic.gd](scripts/joint3dbreakagelogic.gd)

Joint stress monitoring and procedural snaps.

[rayquery3dvision.gd](scripts/rayquery3dvision.gd)

Low-level LOS / AI vision queries.

[raycastvisualizer.gd](scripts/raycastvisualizer.gd)

In-game ray hit/normal debug draw.

Expert Pointers (Jolt)

  • Prefer Generic6DOFJoint3D over stacking specialized joints unless you need a specific node UX.
  • Ragdoll/vehicle/soft samples live in scripts above — do not expand Create Physical Skeleton editor tutorials in this body.
  • Version-specific Jolt/soft-body upgrade steps: [migration-notes.md](references/migration-notes.md).

Deep dives (on demand)

  • Hover ray constraints, Jolt suspension tuning, ragdoll influence blend → [expert-3d-constraints.md](references/expert-3d-constraints.md)
  • Scripts: [hoverconstraint3d.gd](scripts/hoverconstraint3d.gd), [ragdollblender.gd](scripts/ragdollblender.gd)

Reference

Progressive disclosure: open Official Documentation links only when researching a specific API;
load Related Skills when routing work to a peer domain — do not preload the whole lattice.

Official Documentation

  • Physics introduction — Layers vs masks, body types, and the shared 2D/3D collision mental model every 3D setup depends on.
  • Collision shapes (3D) — Primitive vs convex/concave shapes and why scaling CollisionShape3D breaks normals and contacts.
  • Using Jolt Physics — Engine switch, joint-property gaps vs Godot Physics, and project-setting caveats for stable 3D sims.
  • Using RigidBody — Safe control via forces, impulses, and integrate_forces instead of fighting the solver with per-frame transforms.
  • Ragdoll systemPhysicalBoneSimulator3D / PhysicalBone3D setup for death sims and animation↔physics handoff.
  • Using SoftBody3D — Cloth/flag deformation, pinning, and why Jolt is preferred for soft-body robustness.
  • Ray-castingRayCast3D vs PhysicsDirectSpaceState3D queries, exclusions, and space access during the physics tick.
  • Troubleshooting physics issues — Tunneling, jitter, CCD misuse, and common layer/mask misconfigurations.
  • Physics interpolation introduction — Why fixed physics ticks stutter on high-refresh displays and when interpolation smooths 3D motion.
  • PhysicsServer3D — RID-based body/shape APIs for swarm-scale projectiles with mandatory freerid cleanup.
  • PhysicsDirectSpaceState3D — Ray/shape/point queries for LOS, hover constraints, and custom suspensions without permanent query nodes.
  • ShapeCast3D — Volume casts for stair/ground detection when a thin RayCast3D misses ledges or uneven floors.

Related Skills

Prerequisites

  • godot-project-foundations — 3D physics engine choice, tick rate, gravity, and named layer bits must be set before matrices and Jolt tuning stay sane.
  • godot-gdscript-mastery — Typed RIDs, bitmask enums, and physicsprocess discipline underpin server-side and CharacterBody3D patterns here.
  • godot-signal-architecturebody_entered / contact-monitor wiring needs clean ownership so Area3D gravity wells and CCD hits do not spam.

Complements

  • godot-2d-physics — Parallel layer/mask and body-type contracts when sharing policy across dimensions or porting mechanics.
  • godot-raycasting-queries — Deeper query-parameter recipes (masks, exclusions, shape casts) when vision/hitscan systems outgrow the basics.
  • godot-3d-world-building — Static collision from GridMap/CSG/meshes must match the same 3D layer matrix used by characters and projectiles.
  • godot-animation-tree-mastery — AnimationTree poses and state machines feed ragdoll start/stop and influence blending on PhysicalBoneSimulator3D.
  • godot-performance-optimization — Profiling and pooling guidance when PhysicsServer3D swarms, soft bodies, or CCD counts become bottlenecks.
  • godot-debugging-profiling — Visible collision shapes, contact normals, and profiler traps when diagnosing jitter, tunneling, or missed stairs.

Downstream / consumers

  • godot-combat-system — 3D hitboxes/hurtboxes and projectile CCD inherit layer/mask and space-query choices from this domain.
  • godot-genre-racingVehicleBody3D suspension/friction tuning and drift feel consume the vehicle and Jolt guidance here.
  • godot-genre-shooter-fps — Hitscan rays, CharacterBody3D movement, and high-speed projectile CCD are direct consumers of these contracts.
  • godot-navigation-pathfinding — Agents still need physics layers for blockers and LOS; keep nav meshes and the collision world consistent.
  • godot-monte-carlo-balancer — Gravity, CCD, joint break thresholds, and hitbox size change win-rates; simulate those physics knobs instead of guessing.

Master

  • godot-master — Library router and mirrored entry point for discovering 3D physics alongside sibling domains.