diff options
author | bd <bdunahu@operationnull.com> | 2025-05-22 18:18:46 -0400 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-05-22 18:18:46 -0400 |
commit | b318529cf9c01fca4ac2e1b7c7f7fccd0be4589a (patch) | |
tree | 4554f6c14799372133fd49d7ac7688a17a55fa97 /scenes | |
parent | f9d7b55634049e0ae6533fb94e058c2a368cd49b (diff) |
Use TileMapLayer in MapGenerator to display path
Diffstat (limited to 'scenes')
-rw-r--r-- | scenes/path.tscn | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/scenes/path.tscn b/scenes/path.tscn index 5344e6c..2e11423 100644 --- a/scenes/path.tscn +++ b/scenes/path.tscn @@ -1,6 +1,10 @@ -[gd_scene load_steps=2 format=3 uid="uid://cdgeamr56c0mx"] +[gd_scene load_steps=3 format=3 uid="uid://cdgeamr56c0mx"] -[ext_resource type="Script" uid="uid://unlqpkn1bwel" path="res://scripts/path_tester.gd" id="1_1dods"] +[ext_resource type="Script" uid="uid://unlqpkn1bwel" path="res://scripts/map_generator.gd" id="1_1dods"] +[ext_resource type="TileSet" uid="uid://blp0cbjwav76t" path="res://resources/tiles.tres" id="2_sqppf"] -[node name="Path" type="Node2D"] +[node name="Map" type="Node2D"] script = ExtResource("1_1dods") + +[node name="TileMapLayer" type="TileMapLayer" parent="."] +tile_set = ExtResource("2_sqppf") |