Design and review Bevy fixed-step 2D physics loops with velocity components, deterministic movement, collision prediction, interpolation, impulses, and tweened presentation.
Use when movement depends on frame rate, collision misses appear at high speed, physics and animation are tangled, or Bevy gameplay needs stable simulation steps.
Similar popular skills
Related neighbors and high-traction skills in the same topics — useful to compare before installing.
Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.
Claude CodeDeclared
CursorNot declared
CodexDeclared
GitHub CopilotNot declared
WindsurfNot declared
Gemini CLINot declared
ClineNot declared
OpenCodeNot declared
Repository health
Stars1
LicenseLICENSE
Default branchmain
Open issues0
Status
Active
Skill metadata
Parsed from SKILL.md frontmatter.
Version0.1.0
LicenseMIT
CompatibilityCodex, Claude Code, and other Agent Skills-compatible clients.
Declared agentsclaude-codecodex
More metadata
version
0.1.0
displayName
Rust Bevy Fixed Step Physics
category
Rust
tags
rust,bevy,gamedev,physics,simulation
Package contents
Files included with this skill beyond the listing page.
skill mdSKILL.md1,719 B
docsSUMMARY.md372 B
History
First seen on skills.sh
First recorded snapshot · 42 installs
SKILL.md
Rust Bevy Fixed Step Physics
Use this skill to separate deterministic simulation from frame-rate-dependent presentation in Bevy games.
Core Workflow
Identify which movement must be deterministic and collision-safe.
Sample input in update systems, then apply movement in fixed-step systems.
Store velocity, acceleration, and intent explicitly in components/resources.
Predict or sweep movement before committing positions.
Emit physics/collision events; keep animation and particles as presentation.
Interpolate or tween visuals when fixed simulation looks choppy.
Read Next
Task
Load
Fix frame-rate-dependent movement
guidelines.md, workflows/stabilize-physics.md
Add fixed movement and collision prediction
references/fixed-step-patterns.md
Separate animation from physics
references/fixed-step-patterns.md
Source Notes
Guidance is transformed and paraphrased from Herbert Wolverson, Advanced Hands-On Rust, especially Chapters 7 through 9 on movement, collision, and smoothing. Examples are original skeletons.