2021-04-23 20:16:43 +00:00
|
|
|
extends Node2D
|
|
|
|
|
|
|
|
func load_scene(map_data):
|
2021-04-25 10:36:01 +00:00
|
|
|
$background.tile_set = load("base_tilemap/tilesets/background_ts.tres")
|
|
|
|
$vegetation.tile_set = load("res://river_intersection_home2.tscn::1")
|
2021-05-26 20:02:51 +00:00
|
|
|
|
2021-04-23 20:16:43 +00:00
|
|
|
for x in range(map_data.width):
|
|
|
|
for y in range(map_data.height):
|
|
|
|
$background.set_cell(x, y, map_data.background_map[x][y])
|
2021-05-26 20:02:51 +00:00
|
|
|
$vegetation.set_cell(x, y, -1)
|
2021-04-25 10:36:01 +00:00
|
|
|
$interaction_map.set_cell(x, y, -1)
|
|
|
|
$player_interaction.set_cell(x, y, -1)
|
|
|
|
|
2021-04-23 20:16:43 +00:00
|
|
|
func _ready():
|
|
|
|
pass # Replace with function body.
|