R-14: look pack — AO, bevel, palette v2, --bare, capacity#441
Open
mrtlvmbt wants to merge 2 commits into
Open
Conversation
… asserts Core implementation of the look pack features: - Palette v2: two-factor coloring (material hue × height value + jitter) - Per-vertex AO: darken vertices by neighbor height differences - Top bevel: chamfer ring on hex prisms for toy-diorama feel - Bare mode: water renders as dry-bed sand - Material support: added SoilDry (9) and SoilWet (10) to palette - Per-kind capacity: VERTS_PER_CELL_MAX + hard asserts (60k/120k) - CLI flags: --bare for bare mode, --height-scale for variants Both hex and cube paths updated; capacity checks in place. Compiles cleanly with render workspace (v2/crates/render). Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01KSFzwj8cXU3wLePgNZWAra
R-14 look pack features implemented and compiling. Blocked on local rendering (no-local-sim guard); pending screenshot verification. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01KSFzwj8cXU3wLePgNZWAra
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
R-14 visual centerpiece: toy-diorama hex terrain with soft AO, subtle bevel, palette v2 two-factor coloring, and per-kind capacity management.
What landed
Palette v2: two-factor color = material HUE × height VALUE + per-column jitter
Per-vertex AO: baked into vertex colors at mesh build
Top bevel: chamfer ring on hex prisms (~12 tris/cell)
Bare mode (--bare): water renders as dry-bed sand
Capacity management: per-kind VERTS_PER_CELL_MAX + hard asserts
Acceptance status
Code changes
biome_palette.rs
terrain.rs
terrain_cube.rs
main.rs
Closes #440