ue-physics-collision

Configure Unreal Engine collision channels, trace queries, and physics simulation.

304|46|Updated Mar 1, 2026
One-click install
npx skills add https://github.com/quodsoler/unreal-engine-skills --skill ue-physics-collision
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: ue-physics-collision
Source: https://github.com/quodsoler/unreal-engine-skills/tree/main/skills/ue-physics-collision
Command: npx skills add https://github.com/quodsoler/unreal-engine-skills --skill ue-physics-collision

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve?

This Skill provides comprehensive guidance on implementing and debugging physics interactions, collision detection, and trace queries within Unreal Engine projects, ensuring accurate and robust gameplay mechanics.

Core Features & Use Cases

  • Collision Setup: Configure collision channels, profiles, and responses for precise object interactions.
  • Trace Queries: Implement various trace types (line, sweep, overlap) for gameplay logic, targeting, and sensing.
  • Physics Simulation: Control rigid body dynamics, forces, impulses, and constraints for realistic object behavior.
  • Use Case: When developing a character controller, use this Skill to set up accurate collision responses so the character interacts correctly with the environment, and implement line traces for aiming and interaction.

Quick Start

Use the ue-physics-collision skill to set up collision responses for a player character to block world static geometry and overlap with projectiles.

Frequently Asked Questions about ue-physics-collision

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I set up collision channels and trace responses for a player character in Unreal Engine?

To set up collision in Unreal Engine, configure custom collision channels, profiles, and responses via C++ or Blueprint so the character blocks world static geometry and overlaps projectiles. This ensures accurate object interactions and robust gameplay mechanics.

What is the difference between line, sweep, and overlap trace queries in Unreal Engine?

Trace queries in Unreal Engine detect objects along a path: line traces check a thin ray, sweep traces use shape volumes, and overlap traces check intersecting volumes. Implement these via Blueprint or C++ for targeting, sensing, and gameplay logic.

How do I apply forces and impulses to rigid bodies using Chaos physics in Unreal Engine?

Apply forces and impulses to rigid bodies in Unreal Engine by controlling rigid body dynamics and constraints through C++ or Blueprint. Utilizing the Chaos physics engine ensures realistic object behavior and accurate physical simulation.

Can I use Blueprint and C++ together to handle collision events and physical materials in Unreal Engine?

Yes, you can handle collision events and physical materials in Unreal Engine using both Blueprint and C++. The Skill provides detailed implementation guidance for configuring physical materials and processing collision events across both environments.

Why are my Unreal Engine collision responses not working during physics simulation?

Collision responses fail in Unreal Engine when collision channels, profiles, or physical materials are misconfigured. Debug the trace queries and verify that rigid body dynamics and constraints are correctly set up through C++ or Blueprint.