🔍 Device Information

đŸ–Ĩī¸ System Info

Device Type: Detecting...
Operating System: Detecting...
CPU Performance: Detecting...
Estimated RAM: Detecting...

🌐 Browser Info

Browser: Detecting...
Browser Version: Detecting...
Engine: Detecting...
User Agent: Detecting...

📱 Display Info

Screen Resolution: Detecting...
Viewport Size: Detecting...
Pixel Ratio: Detecting...
Color Depth: Detecting...
Orientation: Detecting...
Preferred Theme: Detecting...

🌍 Network & Location

IP Address: Detecting...
Location: Detecting...
Connection Type: Detecting...
Online Status: Detecting...
VPN Detected: Detecting...

⚡ Performance Info

WebGL Support: Detecting...
WebGL Renderer: Detecting...
Touch Support: Detecting...
Language: Detecting...

🔐 Security Info

HTTPS: Detecting...
Cookies Enabled: Detecting...
Do Not Track: Detecting...
Detected: Detecting...

Echoes of the Continuist

Mobile Download Notice

Windows First

LatticeVeil is not out for Android yet. A mobile version will be developed once the Windows version reaches a stable condition.

GO TO VEILNET

Official Developer Portal

The Art of the Pixel

LatticeVeil is an experimental voxel project focused on performance and aesthetic clarity. Built from scratch in C# using MonoGame, it pushes the boundaries of what a solo dev engine can do.

DOWNLOAD INSTALLER
Checking for latest release...

Available for Windows x64

Engine Architecture

đŸ”ī¸ Infinite Terrain

Procedural generation using multi-layered Simplex noise for realistic biomes and elevations.

var noise = new FastNoise(); float height = noise.GetPerlin(x, z); // Map noise to voxel types if (height > 0.6f) return Block.Stone; return Block.Grass;

🍱 Greedy Meshing

Optimized rendering that merges adjacent faces into single quads to reduce GPU draw calls.

// Combine adjacent faces for (int i = 0; i < width; i++) { if (mask[i] != null) { width++; // Extend quad } } Mesh.AddQuad(start, width, height);

đŸĒ EOS Multiplayer

Built on Epic Online Services for robust P2P networking and seamless lobby management.

var options = new JoinSessionOptions { SessionHandle = searchResult }; _eos.Sessions.JoinSession(options, (ref info) => { Logger.Log("Joined Game!"); });

Standard Block Library

Our textures utilize 16x16 pixel grids with no interpolation, ensuring maximum sharpness.

Natural Resources

Construction & Utilities

Continuist Lore Blocks

Ores & Precious Minerals

Player Textures

Legacy Archive: Experimental Designs

Legacy Archive: V9

Legacy Archive: The HD Era (V1)

THE CONTINUIST PAPERS

READ THE BOOK

Official E-Reader: Echoes of the Continuist

The authoritative record of Caelum Prime.

---

Core Principles

The Rule of Three: Frame / Conduit / Limiter

Every working system in LatticeVeil reality has three parts:

Continuist claim: You can build almost anything if you obey the Rule of Three.

Observed consequence: If you skip the limiter, the system can still run the is collected later.

---

The Veil and the Echo

The Veil

The Veil is the separation between places, states, and routes. Gates and transit systems stretch it.

The Echo

The Echo is not a demon or a god; it is a phenomenon: pressure that seeks completion.

When a system is incomplete when its limiter is missing Echo supplies a counterfeit completion so the system can run.

That counterfeit always has a cost:

Continuist field note: a system functions without a limiter, the limiter is not absent. It has merely become external.

---

Nullrock / Nullblock (Bottom Law)

Nullrock is not stone. It is refusal made physical: the world perfect limiter.

At the bottom of the world (y==0), the rules stop negotiating.

Continuist line: you reach Nullrock, you are not at the void layer. You are at refusal.

---

Main Factions

Continuists - "The Correct Shape of Things"

  • Belief: Reality is buildable if you obey structure.
  • Practice: Survey, regulation, reproducible craft, documentation, stable stations.
  • How right they are: Most correct relative to the world's underlying rules.
  • Failure mode: Arrogance; treating people like components.

Veilkeepers - "Safety Through Sealing"

  • Belief: Most doors should remain closed.
  • Practice: Seals, containment, forbiddance, procedure, classification.
  • How right they are: Very right about risk; can become overly restrictive.
  • Failure mode: Stagnation; preventing progress along with disasters.

Hearthward - "Survival Before Theory"

  • Belief: The world is dangerous; safety is communal discipline.
  • Practice: No gates inside town; salt before sip; listen before digging.
  • How right they are: Practically right; keeps people alive.
  • Failure mode: Distrust of necessary advancement.

Ascendants - "Power Proves Truth"

  • Belief: Limits are lies; pain is payment.
  • Practice: Force systems to work; widen paths; sacrifice the body.
  • How right they are: Wrong long-term; results now, catastrophe later.
  • Failure mode: Confusing "works now" with "works safely."

Echo Faith - "Meaning in the Pressure"

  • Belief: The Echo speaks; patterns are messages.
  • Practice: Shrines, repetition, offerings, interpretation.
  • How right: Occasionally predictive; unreliable.
  • Failure mode: Romanticizing the phenomenon that feeds on mistakes.

---

Death and Pattern Residue (Continuist Classification)

A person is a pattern as well as a body. When the body ends, the pattern may not dissipate cleanly.

Class I Quiet Termination

Starvation, ordinary injury, death far from thin places.

Class II Violent Termination

Falls, drowning, burning, crushing.

Class III Echo-Fed Termination

Death while corrupted, during unstable craft, near shrines or repeating failure loops.

Class IV Transit Termination

Death during gate travel or routing systems.

Class V Nullrock-Adjacent Termination

Death near the bottom law.

Continuist line: death without closure leaves a latch undone. The world will swing the door until it breaks.

---

The Deep Strata (Why the world should feel deeper)

Early worlds felt shallow because upper layers are easy to reconstruct.

Deep layers require:

Deep places feel different because:

Hearthward diagnostic: for quiet. When quiet vanishes, leave.

---

The Mine Networks (Abandoned Mines)

Mines were extraction systems built by people who thought they could outwork reality.

Timber Mines (Shallow)

Fast, practical, recent. Wooden supports, simple corridors.

Stone-Braced Mines (Mid)

Engineered shafts and rooms. Continuist survey markers common.

Echo-Collapsed Mines (Deep)

Collapse that doesn look natural. Rooms that feel repeated.

Veilkeeper warning: not name yourself in the deep. Names linger longer than breath.

---

Important In-Game Anchors (Existing Blocks/Stations)

Artificer Workbench (Existing in-game)

A Continuist-era station for stable craft. It is the canonical / regulator station.

Rule: This pack references it, but does not provide its texture/asset.

Additional Lore Blocks (Texture names)

These names are canonical for texture references:

Nullblock (Existing in-game)

---

Tone Guide (for writing more canon-consistent content)

---

Website Usage Instructions

When updating the website lore page:

1) Use this pack as the ONLY canon.

2) Prefer concise headings + callouts.

3) Link terms (Veil, Echo, Nullrock, Rule of Three) to glossary anchors where available.

Glossary

Scroll down to see sticky navigation

Navigation should be sticky at top

Developer Logs

LatticeVeil Chrono Weaver

🌀 V12.0.0 "Chrono Weaver" - Complete Release

APR 03, 2026

Chrono Weaver is the official V12.0.0 release. A comprehensive update featuring installer-first distribution, self-updating launcher, temporal manipulation branding, and unified website experience.

🚀 Launcher & Update System

  • Launcher Self-Update: The launcher now checks the latest latticeveil/LatticeVeil release and exposes a dedicated UPDATE action when a newer build exists.
  • Safe Apply Flow: Updates download with real progress and hand off replacement to a temp helper copy, then relaunch the updated launcher after swap.
  • Metadata Sync: Live launcher updates now rewrite latticeveil_install_info.txt and refresh uninstall metadata when available so the uninstaller still shows the correct installed release name.

đŸ“Ļ Distribution & Release

  • Release Contract: Official game releases now target LatticeVeilMonoGame.exe for updater integrity.
  • Installer-First Distribution: Public downloads now point users at the installer while keeping installer/uninstaller binaries out of the game release payload.
  • Unified Release Package: Game, Assets, and Website all released as V12.0.0 with synchronized versioning.

🎨 Branding & Website

  • Temporal Branding: Updated all website titles and meta tags to reflect "Chrono Weaver" identity.
  • Installer Priority: Main download button now emphasizes installer distribution for seamless user experience.
  • Game Integration: Product name and descriptions updated to match temporal manipulation theme.
  • Unified Identity: Consistent "Chrono Weaver" branding across website, game, and documentation.

Downloads: Game V12.0.0 | Assets V12.0.0 | Installer V12.0.0

LatticeVeil Maintenance Reforged

đŸ› ī¸ V11.0.0 "Maintenance Reforged" - Cleanup & Distribution

MAR 20, 2026

Maintenance Reforged is the official V11.0.0 release. This update focuses on repository health, metadata stability, and cleaner distribution paths for both official and unofficial builds.

  • Repository Cleanup: Removed AI-related metadata and temporary build artifacts for a smaller, more focused repository footprint.
  • Metadata Stability: Unified versioning and .gitignore policies to protect secrets while ensuring build-readiness.
  • Distribution vNext: Standardized the release of LatticeVeilMonoGame.exe and Assets.zip across official channels.
  • Unofficial Build Compatibility: Improved the structure for developers to build and customize their own versions of the game.

Download: LatticeVeil V11.0.0 | Assets: Assets V11.0.0

LatticeVeil Worldshaper Reforged

🌍 V10.0.0 "Worldshaper Reforged" - Worldgen, Storage, Rendering, and UX vNext

MAR 03, 2026

Worldshaper Reforged is the official V10.0.0 release. This update lands the new terrain-first generation contract, storage/file-format cleanup, stronger rejoin reliability, major transparency fixes, and broad gameplay UX upgrades.

  • Worldgen vNext: Non-flat terrain is now the default, flatlands stays optional, and biome generation/locate logic is deterministic.
  • Biome Expansion: Forest and Hills support was integrated into generation and command locate flows.
  • Stability + Recovery: World creation/rejoin flow was hardened with safer generation-state handling and spawn readiness improvements.
  • Storage Contract: Active worlds now align to canonical vNext storage conventions, with legacy runtime artifact paths removed from normal flow.
  • Rendering Pass: Transparency routing and face-ownership fixes reduce xray artifacts; glass/leaves/held transparency behavior was refined.
  • VeilSeer + Controls: Spectator-style behavior, mode controls, and fly-speed feedback were improved.
  • Artificer Inventory: Smooth catalog scrolling, search, favorites, and clear-inventory UX were added/refined.
  • Public Packaging: Spoiler-sensitive lore data tables were removed from public online source/asset distributions.

Download: LatticeVeil V10.0.0 | Assets: Assets V10.0.0

LatticeVeil Gatekeeper's Fix

đŸ›Ąī¸ V9.0.0 "Gatekeeper's Fix" - Online Stability & Security Hardening

FEB 21, 2026

Gatekeeper's Fix is the official V9.0.0 release. This update hardens online authentication, improves launcher/build reliability, and sharpens core command/input behavior without changing the game's visual identity.

  • Gate Ticket Reliability: EOS secret request flow and ticket validation were fixed to eliminate invalid ticket failures.
  • Backend Stability: Supabase ticket/storage schema and function paths were tightened for more reliable online sessions.
  • Launcher + Build Integrity: Release build channel detection and hash validation now follow the correct production path.
  • Gameplay UX: Command input, tab completion, and control handling were improved for smoother in-game admin workflows.
  • Asset/Screen Refresh: Multiplayer background and UI asset updates were normalized to the current release baseline.

Download: LatticeVeil V9.0.0 | Assets: Assets V9.0.0

LatticeVeil Worldforge Convergence

🌌 V8.0.0 "Worldforge Convergence" - Release Finalization

FEB 12, 2026

Worldforge Convergence is now the official V8.0.0 release identity. This pass finalizes distribution, aligns docs/releases, and keeps official online protected by the gate allowlist workflow.

  • Release Packaging: Standardized artifacts are now LatticeVeilMonoGame.exe, the Worldforge runtime zip, and the safe source zip.
  • Assets Distribution: Assets release is normalized to Assets.zip only for launcher install/reset workflows.
  • Online Integrity: Official online remains server-gated; unverified builds continue to fall back to LAN-only.
  • Cross-Repo Alignment: Main release, assets release, and website references now point to the same Worldforge release target.
  • Compatibility Notice: Older multiplayer worlds may fail or desync due to worldgen/sync pipeline changes.

Download: LatticeVeil V8.0.0 | Assets: Assets V8.0.0

LatticeVeil Main Menu

🚀 V8.0.0 "Cacheforge Update" - Instant Spawn, Mesh Cache, and Texture Refresh

FEB 09, 2026

Cacheforge is live: V8.0.0 now combines spawn-first world generation, disk mesh caching, and a full texture pass so both loading flow and visual presentation ship as one unified update.

  • Instant Spawn & Mesh Cache: Spawn-area chunk and mesh pregen now runs up front, and disk-cached meshes make re-joins feel immediate when cache data exists.
  • Prewarm Streaming Budgets: Streaming limits and visibility gates reduce frame spikes and hitching while chunks come online.
  • Create World Expansion: New toggles prepare Structures, Caves, Ores, and Multiple Homes slot cycling for upcoming worldgen module extensions.
  • Infrastructure: Versioned cache format plus freshness checks prevents stale mesh data from leaking into active worlds.
  • Texture Pack Refresh: Release texture content was synced from current development defaults, including updated menu/GUI frames, selected-state buttons, and gamemode icon art.
  • Live Asset Distribution: Refreshed `Assets.zip` is published in the latest Assets release and installs to Documents/LatticeVeil/Assets.
  • Gameplay Rule Preserved: Block edits still update visuals immediately, and priority meshing remains consistent with normal meshing output.

Download: LatticeVeil V8.0.0 | Assets: Latest Assets.zip

LatticeVeil Main Menu

🚀 V7.0.0 "Quantum Genesis" - Revolutionary World Generation

JAN 28, 2026

Complete world generation revolution with advanced plugin architecture and research-based algorithms.

  • World Generation Overhaul: Revolutionary new generation system with research-based techniques from major voxel games.
  • Advanced Plugin Architecture: Modular plugin system with 5 integrated plugins (SharpNoise, Advanced Terrain, Biome Diversity, Performance, Safety).
  • Quantum Chunk Loading: Next-generation chunk loading with zero missing chunks and research-proven methods.
  • Enhanced Biome System: Natural, organic biome generation with advanced noise algorithms.
  • Professional World Builder: Industrial-strength world generation with SharpNoise integration.
  • Research-Based Algorithms: Proven techniques from major voxel games for maximum stability.
  • Performance Optimization: Hardware-adaptive systems and emergency fallback protections.

Download: LatticeVeil V7.0.0

LatticeVeil Main Menu

THE LORE & LAUNCHER UPDATE (v6.1.1)

JAN 19, 2026

This release aligns lore presentation and refreshes the launcher experience.

  • Lore & Canon: Canon alignment pass with bench roles clarified.
  • Launcher & UI: Launcher layout refinements; reticle + outline options added.
  • Distribution: Single-file EXE release; textures-only assets package.

Related assets release: Assets v6.1.1

Assets Main Menu

ASSETS v6.1.1 — THE LORE & LAUNCHER UPDATE

JAN 19, 2026

Textures refreshed to align with the launcher and menu polish pass.

  • Packaging: Assets.zip regenerated from textures/ only.
  • New Visuals: Create World, Profile, and World Generation backgrounds.

Game release: LatticeVeil v6.1.1

LatticeVeil Main Menu

🧭 THE LATTICEVEIL TRANSITION (v6.1.0)

JAN 19, 2026

This release finalizes the LatticeVeil rebrand and hardens build and packaging flow.

  • Branding & Paths: Window title, assemblies, and repo links updated; Documents paths now under Documents\\LatticeVeil\\...
  • Build & Tooling: Builder task execution and progress reporting stabilized; dev flags renamed.
  • Assets & Distribution: Asset endpoints now point to latticeveil/Assets.

Related assets release: Assets v6.1

Assets Main Menu

đŸ“Ļ ASSETS v6.1 — THE LATTICEVEIL TRANSITION

JAN 19, 2026

Assets were refreshed to align with the LatticeVeil transition and current release packaging.

  • Packaging: Assets.zip regenerated from textures/ only.
  • Cleanup: Non-asset documentation removed from the bundle.

Game release: LatticeVeil v6.1.0

📜 The Continuist Papers

JAN 13, 2026

A massive update to our world documentation! The lore page has been fully populated with the Continuist Papers.

  • Rule of Three: Frame / Conduit / Limiter
  • Nullrock: The world's perfect limiter at the bottom (refusal made physical).
  • The Echo: Pressure that completes incomplete systems; always with a cost.
  • Deep Strata: Deeper places amplify repetition and residue.
  • Abandoned Mines: Timber (shallow), Stone-Braced (mid/deep), and Echo-Collapsed (deep).

Dive deep into the history of the Ancient Architects on the Lore Page.

THE ARTIFICER UPDATE (v6.0.0)

JAN 13, 2026

The Artificer Update is here! This major release (v6.0.0) consolidates all assets and features into a unified, high-performance voxel experience.

  • Nullblock: The world's final layer is now canonically Nullblock, unbreakable and enforced at Y=0.
  • Full Lore Integration: Discover the secrets of the Ancient Architects with the new inscription and tablet fragment systems.
  • Artificer's Workbench: A new dedicated station for advanced gatecraft and rule-driven creation.
  • New Blocks & Textures: High-fidelity textures for Runestone, Veinstone, Veilglass, and Resonance Cores.
  • Engine Synchronization: Major version alignment across game and assets for seamless updates.

Check out the latest files on the GitHub Repository.

The Continuist Papers - Lore Pack v1.1d

JAN 13, 2026

A major lore drop focused on the Continuists, the Veil, and the rules that hold the world together. This update ships new lore data, block IDs, and texture sheets while preserving existing worlds.

  • Lore Systems: inscriptions, fragments, structures, loot tables, and story updates.
  • World Rule: Nullblock is enforced at y==0 and cannot be broken in Survival.
  • Gatecraft: Artificer's Workbench is the canonical station for advanced recipes.
  • Textures: runestone, veinstone, veilglass, resonance core, waybound frame, transit regulator.

LatticeVeil v0.1.2 EOS Recovery Patch

JAN 12, 2026

Multiplayer reliability has been significantly improved. This patch addresses a race condition where the Epic Online Services (EOS) configuration would sometimes fail to initialize if the remote configuration loaded after the game engine's startup sequence.

  • Dynamic Polling: Integrated a background system to detect EOS config availability post-startup.
  • Async Initialization: Multi-threaded connection logic ensures zero-hang engine responsiveness.
  • Session Persistence: Automatic recovery logic keeps your lobby active without requiring a relaunch.

Engine: Infrastructure & SDK Cleanup

JAN 12, 2026

Streamlined the engine's core dependencies and networking infrastructure to improve build stability and connectivity.

  • Service Migration: Standardized all network traffic through Supabase Edge Functions.
  • Credential Fallback: Implemented robust local-to-remote fallback logic for uninterrupted P2P authentication.
  • SDK Optimization: Removed redundant SDK binaries to reduce the repository footprint while preserving critical runtime DLLs.

Developer Update: Unified Build Pipeline

JAN 11, 2026

Revolutionized the development workflow with a new Unified Build GUI. The engine now supports automated single-file publishing, integrated project cleanup, and simplified source distribution. We also updated the ThirdParty SDK tracking to ensure community builders can compile the game directly from the source zip without missing dependencies.

Launcher: Distribution & Asset Skip Logic

JAN 10, 2026

Refined the launcher's asset synchronization protocol to reduce bandwidth overhead and improve startup times for existing users.

  • Smart Sync: Improved skipping logic ensures users with the latest assets aren't forced into redundant downloads.
  • Legacy Cleanup: Removed the deprecated blocks_cubenet_atlas.png from the mandatory asset manifest.

World: Environmental UI Rendering

JAN 10, 2026

Restored UI consistency by synchronizing environmental backgrounds across all distribution channels. This fix ensures the Screenshots management page correctly renders its backdrop during runtime.

Multiplayer: EOS Integration Phase I

JAN 05, 2026

Completed the integration of Epic Online Services (EOS). The engine now supports cross-platform P2P networking, friend lists, and seamless session joining via host codes, alongside the classic LAN discovery system.

🍱 Greedy Meshing

DEC 20, 2025

Implemented an optimized Greedy Meshing algorithm. This significantly reduces draw calls by combining adjacent voxel faces into larger quads, resulting in a 400% performance increase in complex terrain.

Project Start: MonoGame Architecture

DEC 01, 2025

Officially transitioned the project to a modern C# and MonoGame foundation. This architecture provides superior stability, easier asset management, and a robust platform for future gameplay features.

Website: V12.0.0 "Portal Weaver" - Unified Docs + Navigation Overhaul

APR 03, 2026

The current live V12.0.0 website established the unified docs/navigation foundation. The current local V12.0.0 build expands that release with a rebuilt asset viewing flow, a dedicated roadmap page with clearer public planning detail, stronger mobile behavior, and cleaner platform-aware download handling.

  • Live V12.0.0 Foundation: GUI docs integration, shareable query-based tab URLs, top-of-page tab switching, centered portal navigation, Veilnet/header layering fixes, dev log image fallback handling, Echoes reader isolation, and installer-first homepage delivery are all part of the current live release.
  • Local Asset Viewer Expansion: The local V12.0.0 build adds a reusable 3D asset viewer, corrected player rendering with a proper humanoid model, centered model staging, zoom/reset support, and more stable 2D/3D asset routing.
  • Catalog + Navigation Cleanup: Asset arrows now follow the documented visual order of the textures/models page, URL cleanup is more reliable when closing asset views, hidden/skipped catalog behavior has been removed, and the player entry now stays separate from normal block rendering.
  • Assets Page Readability: Section headers now stand out more clearly, the player card is renamed to PLAYER, browsing-card descriptions were removed from the grid view, and full descriptions remain available once an item is opened.
  • Legacy/HD Archive Pass: HD archive descriptions were added for selected-view context and HD block mapping/render behavior was corrected for the local viewer work.
  • Roadmap Route + Structure: Added a dedicated public roadmap page at /roadmap with its own clean route, roadmap action buttons instead of a new main tab, roadmap section tabs for readability, color-coded planning states, and clearer build-order chains.
  • Roadmap Content Expansion: The roadmap now reflects detailed game-side planning more specifically, including updater status as added but not yet tested, the health-then-hunger validation slice, first-pass fall damage planning, and later Veilnet account-linked skin syncing on the website and in-game.
  • Mobile Navigation Pass: The local build replaces the stacked mobile top tabs with a dropdown-style selector, converts the mobile novel/donate/roadmap actions into a compact circular quick-actions menu, repositions the floating utility buttons/logo for small screens, and keeps the desktop layout unchanged.
  • Mobile Download Messaging: Download actions on mobile now surface platform-aware notices before the installer/TOS flow, including Android and iOS messaging, a donate path for iOS users, and a guarded DOWNLOAD ANYWAYS option that still routes through the TOS/privacy flow.
  • Mobile Utility Placement: The device-info button has been moved tighter into the bottom-left corner on mobile, and the mobile Veilnet/logo and quick-action controls were rebalanced to sit more cleanly under the mobile page selector.
  • Current Difference Summary: Live V12.0.0 is the stable public portal baseline; the current local V12.0.0 build is the expanded website pass with roadmap detail, improved mobile handling, and a more complete asset-viewing/catalog experience.

Website: V11.0.0 "Maintenance Reforged" Release Sync

MAR 20, 2026

Synchronized website downloads and log entries with the official V11.0.0 release.

  • Latest Download: Updated direct download link to point to the v11.0.0 executable.
  • Log Sync: Added V11.0.0 "Maintenance Reforged" entries to the Game and Website update feeds.
  • Asset Redirects: Updated repository and zip download links to point to the newest release tags.

Website feeds and texture library metadata were synchronized with the official V10.0.0 release set.

  • Game Updates Feed: Added the detailed V10.0.0 "Worldshaper Reforged" entry at the top of release history.
  • Release Links: Updated references to point to game and assets v10.0.0 tags.
  • Texture Curation: Prior glass/veilglass/leaves/ore visuals were archived to the legacy section.
  • Current Texture Set: Promoted updated transparency-era textures (including glass family updates) into active texture listings.
  • Catalog Metadata: Updated ore naming and texture descriptions to align with current in-game naming.

Website: V9.0.0 "Gatekeeper's Fix" Release Sync

FEB 21, 2026

Updated the website logs to match the latest official release and source-of-truth notes from the main project repository.

  • Game Updates Feed: Added the new V9.0.0 "Gatekeeper's Fix" release entry as the top update.
  • Release Links: Updated the new entry to point directly to the game and assets v9.0.0 tags.
  • Version Tracking: Website update history now explicitly records the V9 release sync pass.

Website: Download Flow + Worldforge Update Log Pass

FEB 12, 2026

Updated website download UX and aligned the update feeds with the Worldforge Convergence release state.

  • Main Download Button: Now downloads LatticeVeilMonoGame.exe directly.
  • Secondary Link: Renamed from direct EXE wording to a cleaner REPO LINK target.
  • Game Updates Feed: Added the Worldforge Convergence release finalization entry.
  • Version Metadata: Updated site release label to V8.0.0 "Worldforge Convergence".

Website: V7.0.0 "Quantum Genesis" Release Update

JAN 28, 2026

Updated website to reflect the revolutionary V7.0.0 "Quantum Genesis" release with complete world generation overhaul, advanced plugin architecture, and security improvements.

  • Version Update: Updated to V7.0.0 "Quantum Genesis" with revolutionary new generation system.
  • Plugin Architecture: Added documentation for the new modular plugin system with 5 integrated plugins.
  • Release Information: Updated all references to reflect the quantum leap in world generation technology.
  • Technical Specifications: Added comprehensive plugin specifications and architecture details.
  • Security Enhancements: Implemented security improvements including lore file removal and clean source distribution.
  • Release Optimization: Provided standalone executable and optimized release distribution.

Website: New Logo Implementation

JAN 28, 2026

Updated the main LatticeVeil logo with a new visual identity reflecting the v7.0.0 release.

  • New Logo Design: Implemented updated logo artwork with enhanced visual appeal.
  • Asset Optimization: Optimized logo file for faster loading and better quality.
  • Brand Consistency: Aligned logo with the new release branding and visual identity.

Website: Visual Artifact Cleanup

JAN 19, 2026

Polished the dev log visuals to match the new release styling and eliminate rendering artifacts.

  • Update banners: Added release-style header imagery for the latest Game and Assets entries.
  • Log cleanup: Removed duplicate/corrupted update blocks and normalized typography.
  • Image rendering: Smoothed large update images to reduce blocky artifacts.

Website: Repo Rename & Link Cleanup

JAN 19, 2026

Public links were aligned with the renamed project and organization.

  • Project repo: github.com/latticeveil/(previous) → github.com/latticeveil/LatticeVeil
  • Org landing: github.com/latticeveil/(repo) → github.com/latticeveil/
  • Assets repo owner: (previous)/Assets → latticeveil/Assets
  • Site title: LatticeVeil | Official Site → LatticeVeil | Official Website

UX: Touch-Optimized 3D Inspection

JAN 12, 2026

Optimized the 3D block inspector for mobile browsers. Implemented touch-and-drag gesture support for real-time model rotation, bringing full feature parity between desktop and mobile environments.

Legal: Privacy & Terms Implementation

JAN 11, 2026

Added styled pages for the Privacy Policy and Terms of Service. These pages provide essential transparency regarding EOS integration and data handling, ensuring a compliant foundation for community growth.

Assets: Texture Rotation (Artificer Bench)

JAN 11, 2026

Moved the original Crafting Table design to the legacy archive. It has been replaced by the Artificer Bench design to better align with the project's evolving lore and technical requirements.

Asset Browser: Massive Preview & UI Overhaul

JAN 11, 2026

Significantly upgraded the Asset Browser. The texture viewer now features a massive 512px pixel-perfect preview with transparency support and integrated download triggers for community creators.

Repository: Migration to GitHub Organization

JAN 10, 2026

Migrated all project repositories to the official @LatticeVeil organization. This unified our URL structure to latticeveil.github.io and streamlined our open-source contributor workflow.

đŸ•¯ī¸ Engine: Three.js Model Inspector

JAN 10, 2026

Integrated Three.js to create a real-time web-based 3D model viewer. This tool utilizes the engine's internal UV mapping logic to allow users to preview block designs in 3D directly from the browser.

GUI Tools Documentation

Complete documentation for LatticeVeil development and deployment tools with tabbed interface and on-brand styling.

🔨

BUILD GUI

Build and package LatticeVeil for distribution with optimized configurations

🔑

GATEHASH GUI

Visual interface for updating live gate hashes and managing deployment targets

🔄

GATEHASH CLI

Command-line automation tool for CI/CD pipelines and scripting

â„šī¸

GENERAL INFO

Security, troubleshooting, and configuration management

🔑 Key Features

Solo Development

LatticeVeil is a passion project developed entirely solo. The goal is to build a modern, high-performance foundation for voxel games that respects the retro aesthetic of the past.

🔗 Connect with Redacted

💝 Support Development

Enjoying LatticeVeil? Your support helps me continue developing free tools and content like this. Every donation is greatly appreciated!

Donate with PayPal

GUI Tools Documentation

Complete guide for using LatticeVeil development and deployment tools

Build GUI

Purpose: Build and package LatticeVeil for distribution. Creates optimized builds for different platforms and configurations.

Location: Tools/BuildGUI.ps1

How to Use:

  1. Launch the Build GUI - Navigate to the Tools folder and run: .\BuildGUI.ps1
  2. Select Build Configuration - Choose between DEBUG, RELEASE, or custom builds
  3. Configure Build Options - Set optimization level, target platform, and output directory
  4. Start Build Process - Click "Build" to compile and package your LatticeVeil build
  5. Verify Output - Check the build log for any errors or warnings

Features:

Troubleshooting: