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
# world.gd | |
extends Node2D | |
class_name World | |
const TILE_SIZE = 32 | |
const SEA_LEVEL = 0.0 | |
const RENDER_DISTANCE = 16.0 | |
@export var altitude_noise: FastNoiseLite |
OlderNewer