원클릭으로
games-physics
Physics & collision — AABB, spatial hash, raycast, response. Tối ưu cho hàng ngàn object, không overshoot.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Physics & collision — AABB, spatial hash, raycast, response. Tối ưu cho hàng ngàn object, không overshoot.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Expert in building 3D experiences for the web - Three.js, React Three Fiber, Spline, WebGL, and interactive 3D scenes. Covers product configurators, 3D portfolios, immersive websites, and bringing depth to web experiences. Use when: 3D website, three.js, WebGL, react three fiber, 3D experience.
Game art principles — art style, color theory, animation principles, asset pipeline
Game design principles — core loop, GDD, player psychology, difficulty balancing, progression
Orchestrator game — route to implementation skill (pxhopencode) + principle-based sub-skill (agent-skills-hub)
Mobile game principles — touch input, battery, thermal, app stores, monetization
Multiplayer game principles — networking architecture, synchronization, security, matchmaking
| name | games-physics |
| description | Physics & collision — AABB, spatial hash, raycast, response. Tối ưu cho hàng ngàn object, không overshoot. |
aabbOverlap cho kiểm tra nhanh, sweptAABB chống xuyên object khi di chuyển nhanh.
Xem: templates/aabb-collision.ts
Chia grid, chỉ kiểm tra object trong cell liền kề. Insert bằng AABB, query trả về Set.
Xem: templates/spatial-hash.ts
Duyệt objects, tìm giao điểm sớm nhất với AABB dùng ray vs box test.
Xem: templates/raycast.ts
Phân giải x và y riêng theo overlap nhỏ nhất, zero vận tốc khi chạm.
Xem: templates/collision-response.ts
| Excuse | Reality |
|---|---|
| "AABB đơn giản là đủ, không cần swept" | Bullet bay nhanh xuyên object |
| "Spatial hash cho game nhỏ tốn thời gian" | 100 object mỗi frame check nhau = 4950 phép tính |
| "Raycast không cần" | Không aim, không bắn, không phát hiện va chạm xa |