This file contains 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
extends Node2D | |
export var __CHUNK_SIZE = Vector2(32, 32) | |
export var __SIMPLEX: OpenSimplexNoise = OpenSimplexNoise.new() | |
var __tile_weight = {} | |
# | |
# World Generation | |
# |