forked from benc-uk/super-dungeon-delve
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMain.tscn
38 lines (32 loc) · 1.03 KB
/
Main.tscn
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[gd_scene load_steps=4 format=2]
[ext_resource path="res://lib/dungeon-tiles.tres" type="TileSet" id=1]
[ext_resource path="res://map.gd" type="Script" id=2]
[ext_resource path="res://actors/Player.tscn" type="PackedScene" id=3]
[node name="Map" type="TileMap"]
position = Vector2( -1, 0 )
tile_set = ExtResource( 1 )
cell_size = Vector2( 16, 16 )
collision_use_kinematic = true
collision_friction = 0.0
collision_bounce = 0.8
collision_mask = 0
format = 1
script = ExtResource( 2 )
[node name="Player" parent="." instance=ExtResource( 3 )]
z_index = 5
[node name="CanvasModulate" type="CanvasModulate" parent="."]
visible = false
color = Color( 0.0431373, 0.0431373, 0.0431373, 1 )
[node name="CanvasLayer" type="CanvasLayer" parent="."]
[node name="VersionLabel" type="Label" parent="CanvasLayer"]
show_behind_parent = true
anchor_top = 1.0
anchor_bottom = 1.0
margin_left = 9.25986
margin_top = -32.4094
margin_right = 56.2599
margin_bottom = -18.4094
rect_scale = Vector2( 2, 2 )
size_flags_vertical = 1
text = "v0.0.03"
max_lines_visible = 1