Skip to main content
GameDev.net gamedev.net

PRO Tired of ads? Read GameDev.net ad-free and help keep the community independent with GameDev Pro — $3/month.

World Scale Matters

World Scale Matters

FallAlis
FallAlis
ALIS · · 1 min read
1,232 0

World Material works as a universal, flexible wrapper for static objects, where textures keep a constant scale in world space. No more stretched or tiny texture patterns when scaling a model - they fit properly both on a tiny screw and on a building roof. Any model rotation angle is handled as well.

All channels are synchronized with each other (color, height/relief, metalness, roughness), using a single coordinate system and scale.

One World Material - with every pixel used as efficiently as possible - instead of dozens of one-off solutions where a unique texture bloats memory, increases project size, and complicates development focus. We use simple yet flexible controls - toggles to add gloss or remove metalness, and intensity parameters that adjust the strength (how pronounced the relief will be) - allowing quick assembly of any variations, from plastic to rusty metal.

This approach speeds up the entire development process and opens the door to a multilayer material system, where you can add dust, dirt, and wear effects layer by layer.

Recommended resources

Graphics Programming Resources

See full guide
Real-Time Rendering, Fourth Edition cover
Editor pick Community pick

Real-Time Rendering, Fourth Edition

Amazon · Book

Real-Time Rendering combines fundamental principles with guidance on the latest techniques to provide a complete reference on three-dimensional interactive computer graphics. It will help you increase speed and improve image quality and learn the features and limitations of acceleration algorithms and graphics APIs. This latest fourth edition has been updated to include a chapter on virtual reality and augmented reality and covers new topics such as visual appearance, global illumination, and curves and curved surfaces. It is for anyone serious about computer graphics who wants to learn about algorithms that create synthetic images fast enough that the viewer can interact with a virtual environment.

GameDev.net may earn a commission if you purchase through these links. This helps fund the site at no extra cost to you.

Programming with wgpu in Rust cover
Editor pick

Programming with wgpu in Rust

Amazon · Book

Unlock the full power of modern graphics programming with wgpu and Rust. This comprehensive guide takes you from foundational GPU concepts to advanced real-time rendering and compute techniques—equipping you to build fast, safe, and cross-platform graphics applications. Written for intermediate to advanced Rust developers, this book provides clear explanations, hands-on examples, and detailed insights into how GPUs process and render data. You’ll explore everything from the fundamentals of buffers, shaders, and pipelines to advanced topics like deferred rendering, shadow mapping, and GPU compute workloads.

GameDev.net may earn a commission if you purchase through these links. This helps fund the site at no extra cost to you.

GameDev.net may earn a commission if you purchase through these links. This helps fund the site at no extra cost to you.

Discussion

Loading comments...