setting-up-physics

Configure Rigidbody components, Colliders, and Physics Materials for object interactions.

1|Updated Feb 24, 2026
One-click install
npx skills add https://github.com/definitelygames/ClownCar --skill setting-up-physics-definitelygames
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: setting-up-physics
Source: https://github.com/definitelygames/ClownCar/tree/main/.claude/skills/setting-up-physics
Command: npx skills add https://github.com/definitelygames/ClownCar --skill setting-up-physics-definitelygames

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill enables the implementation of realistic physical behaviors for objects in a scene, such as falling, bouncing, and colliding.

Core Features & Use Cases

  • Rigidbody Configuration: Set up objects to be affected by gravity, forces, and collisions.
  • Collider Setup: Define the physical boundaries of objects for interaction detection.
  • Physics Materials: Customize properties like bounciness and friction.
  • Use Case: Make game characters jump and land realistically, or ensure virtual objects stack and tumble as expected.

Quick Start

Add a Rigidbody component to the selected object and enable gravity.

Frequently Asked Questions about setting-up-physics

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

FAQPage Schema
How do I set up physics collisions and gravity for objects in Unity?

To set up Unity physics collisions and gravity, you add a Rigidbody component to your selected object and enable the useGravity property. You also need to add Colliders to define physical boundaries for interaction detection.

What's the best way to make game objects bounce realistically in a simulation?

To make game objects bounce realistically in a simulation, you apply Physics Materials to their Colliders. Customizing Physics Material properties like bounciness and friction controls how objects react when hitting surfaces.

How do I configure a Rigidbody for force-based movement instead of automatic falling?

To configure a Rigidbody for force-based movement without automatic falling, you enable the isKinematic property. This disables physics-driven gravity and collisions, allowing scripts to drive the object while still detecting interactions.

When do I need mesh Colliders versus primitive Colliders for physical interactions?

You need mesh Colliders for complex physical boundaries that match an object's exact shape, whereas primitive Colliders like boxes or spheres are used for simple objects to optimize physical interaction detection.

Does applying a Physics Material affect both bounciness and friction during collisions?

Yes, applying a Physics Material affects both bounciness and friction during collisions. It allows you to customize the surface properties of Colliders to define how objects slide and tumble upon impact.

Why does my Unity Rigidbody fall through other objects during a collision?

A Unity Rigidbody falls through other objects during a collision if it lacks a Collider component. Defining physical boundaries with primitive or mesh Colliders ensures that interaction detection works and prevents overlapping.