2D Game Development

← Back to skills

> Principles for 2D game systems. Pair with `game-development/web-games` / `game-development/engine-selection` for framework choice.

Category: Game Development & 3D
Repo: antigravity-awesome-skills
Path: skills/game-development/2d-games/SKILL.md
Updated: 7/19/2026, 7:47:10 PM

AI Summary

> Principles for 2D game systems. Pair with `game-development/web-games` / `game-development/engine-selection` for framework choice. It is useful for game engines, 3D graphics, Unity, Unreal, and interactive media. Source: antigravity-awesome-skills (skills/game-development/2d-games/SKILL.md).

2D Game Development

Principles for 2D game systems. Pair with game-development/web-games / game-development/engine-selection for framework choice.


Shell vs guest (web)

Setup2D systems live…
Full-screen 2D gameEntire app (Phaser/Kaplay/Pixi/Canvas)
Hybrid DOM + challengesOnly inside guest viewports; tear down when done

1. Sprite Systems

ComponentPurpose
AtlasCombine textures, reduce draw calls
AnimationFrame sequences (often 8-24 FPS)
PivotRotation/scale origin
LayeringZ-order control

Animation Principles

  • Squash and stretch for impact
  • Anticipation before action
  • Follow-through after action

2. Tilemap Design

FactorRecommendation
Size16x16, 32x32, 64x64
Auto-tilingUse for terrain
CollisionSimplified shapes
LayerContent
BackgroundNon-interactive scenery
TerrainWalkable ground
PropsInteractive objects
ForegroundParallax overlay

3. 2D Physics

ShapeUse Case
BoxRectangular objects
CircleBalls, rounded
CapsuleCharacters
PolygonComplex shapes
  • Pixel-perfect vs physics-based: pick one approach per game
  • Fixed timestep for consistency
  • Layers for filtering

4. Camera Systems

TypeUse
FollowTrack player
Look-aheadAnticipate movement
Multi-targetTwo-player
Room-basedMetroidvania
StaticBoard games, modal skill-checks

Screen Shake

  • Short duration (50-200ms)
  • Diminishing intensity
  • Use sparingly

5. Genre Patterns

Platformer

  • Coyote time (leniency after edge)
  • Jump buffering
  • Variable jump height

Top-down

  • 8-directional or free movement
  • Aim-based or auto-aim
  • Decide whether rotation matters

6. Anti-Patterns

❌ Don't✅ Do
Separate texturesUse atlases
Complex collision shapesSimplified collision
Jittery cameraSmooth following
Pixel-perfect on physicsChoose one approach
Orphaned RAF/listeners after a guest closesFull teardown

Remember: 2D is about clarity. Every pixel should communicate.

When to Use

Use for canvas/Phaser/Kaplay/Pixi 2D systems, or guest viewports inside hybrid web apps.

Limitations

  • Use this skill only when the task clearly matches the scope described above.
  • Do not treat the output as a substitute for environment-specific validation, testing, or expert review.
  • Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.

Related skills