offset noise generation to create big maps from small ones #3
No reviewers
Labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
scion/agony-noise!3
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "offset-noise"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
The offset can be used to center the map on a specific (x, y) coordinate, or to create multiple maps that fit together at the edges.
The diamond square algorithm unfortunately cannot be used this way. It is possible to create tiled diamond square maps by seeding a new diamond square with data from an adjacent map, but not by simply offsetting the coordinates since you aren't sampling noise like in the FBM generator.