lvtd-llc/skills

rust-tilemap-camera-rendering

Design and review Rust tile maps, map indexing, collision checks, map builders, camera-relative rendering, layered drawing, and tile themes. Use when building 2D grid worlds, roguelike maps, tile cameras, or bracket-lib style rendering systems.

First seen Jun 22, 2026

Installation

$ npx skills add lvtd-llc/skills --skill rust-tilemap-camera-rendering

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from lvtd-llc/skills · top by installs.

npx skills add lvtd-llc/skills

Browse all from lvtd-llc/skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Declared
Cursor Not declared
Codex Declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 1
License LICENSE
Default branch main
Open issues 0
Status Active

Skill metadata

Parsed from SKILL.md frontmatter.

Version0.1.0
LicenseMIT
CompatibilityCodex, Claude Code, and other Agent Skills-compatible clients.
Declared agents claude-code codex
More metadata
version
0.1.0
displayName
Rust Tilemap Camera Rendering
category
Rust
tags
rust,gamedev,tilemap,camera,rendering

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,574 B
  • docs SUMMARY.md 281 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 54 installs

SKILL.md

Rust Tilemap Camera Rendering

Use this skill to build grid-based maps and camera-relative rendering in Rust. Keep map storage, coordinate conversion, movement validation, and draw order explicit before adding richer art or themes.

Core Workflow

  1. Define map dimensions, tile types, and coordinate/index conversion.
  2. Add bounds and walkability checks before player or entity movement.
  3. Keep map generation behind a builder or constructor boundary.
  4. Render visible tiles through a camera-relative coordinate transform.
  5. Draw layers in deterministic order: base terrain, entities, effects, UI.
  6. Add themes only after the map and camera rules are stable.

Read Next

Read references/tilemap-camera-patterns.md for data shapes, render order, camera math, and review checks.

Source Notes

Guidance is transformed and paraphrased from Hands-On Rust Chapters 5 and 12 and from the official companion source repository. The examples are original teaching skeletons derived from the architecture, not copied book listings.