mirror of
				https://github.com/mightypanders/GMTKJam2021.git
				synced 2025-11-04 02:59:50 +01:00 
			
		
		
		
	Added game timer and endscreen with score
This commit is contained in:
		
							
								
								
									
										55
									
								
								GUIIngameBot.tscn
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										55
									
								
								GUIIngameBot.tscn
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,55 @@
 | 
				
			|||||||
 | 
					[gd_scene load_steps=5 format=2]
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ext_resource path="res://assets/ui/bg.png" type="Texture" id=1]
 | 
				
			||||||
 | 
					[ext_resource path="res://assets/ui/clock.png" type="Texture" id=2]
 | 
				
			||||||
 | 
					[ext_resource path="res://assets/MonoRaccoon.ttf" type="DynamicFontData" id=4]
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[sub_resource type="DynamicFont" id=1]
 | 
				
			||||||
 | 
					size = 29
 | 
				
			||||||
 | 
					outline_color = Color( 0.996078, 0.996078, 0.996078, 1 )
 | 
				
			||||||
 | 
					font_data = ExtResource( 4 )
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[node name="GUI" type="MarginContainer"]
 | 
				
			||||||
 | 
					margin_right = 1282.0
 | 
				
			||||||
 | 
					margin_bottom = 40.0
 | 
				
			||||||
 | 
					__meta__ = {
 | 
				
			||||||
 | 
					"_edit_use_anchors_": false
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[node name="HBoxContainer" type="HBoxContainer" parent="."]
 | 
				
			||||||
 | 
					margin_right = 1282.0
 | 
				
			||||||
 | 
					margin_bottom = 80.0
 | 
				
			||||||
 | 
					rect_pivot_offset = Vector2( 187.174, 395.14 )
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[node name="Time" type="MarginContainer" parent="HBoxContainer"]
 | 
				
			||||||
 | 
					margin_right = 140.0
 | 
				
			||||||
 | 
					margin_bottom = 80.0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[node name="Background" type="NinePatchRect" parent="HBoxContainer/Time"]
 | 
				
			||||||
 | 
					margin_right = 140.0
 | 
				
			||||||
 | 
					margin_bottom = 80.0
 | 
				
			||||||
 | 
					rect_min_size = Vector2( 140, 80 )
 | 
				
			||||||
 | 
					texture = ExtResource( 1 )
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[node name="TextureRect" type="TextureRect" parent="HBoxContainer/Time/Background"]
 | 
				
			||||||
 | 
					margin_left = 70.4431
 | 
				
			||||||
 | 
					margin_top = 6.93062
 | 
				
			||||||
 | 
					margin_right = 130.443
 | 
				
			||||||
 | 
					margin_bottom = 66.9306
 | 
				
			||||||
 | 
					rect_min_size = Vector2( 60, 60 )
 | 
				
			||||||
 | 
					texture = ExtResource( 2 )
 | 
				
			||||||
 | 
					__meta__ = {
 | 
				
			||||||
 | 
					"_edit_use_anchors_": false
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[node name="Number" type="Label" parent="HBoxContainer/Time/Background"]
 | 
				
			||||||
 | 
					margin_left = -5.57492
 | 
				
			||||||
 | 
					margin_top = 25.5749
 | 
				
			||||||
 | 
					margin_right = 72.4251
 | 
				
			||||||
 | 
					margin_bottom = 55.5749
 | 
				
			||||||
 | 
					custom_fonts/font = SubResource( 1 )
 | 
				
			||||||
 | 
					custom_colors/font_color = Color( 0, 0, 0, 1 )
 | 
				
			||||||
 | 
					align = 2
 | 
				
			||||||
 | 
					__meta__ = {
 | 
				
			||||||
 | 
					"_edit_use_anchors_": false
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
							
								
								
									
										9
									
								
								GameEnd.gd
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										9
									
								
								GameEnd.gd
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,9 @@
 | 
				
			|||||||
 | 
					extends Node
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					var score
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func _ready():
 | 
				
			||||||
 | 
						$ColorRect/VBoxContainer/value.text = String(score)
 | 
				
			||||||
 | 
						
 | 
				
			||||||
 | 
					func _on_New_Game_pressed():
 | 
				
			||||||
 | 
						get_tree().change_scene("res://World.tscn")
 | 
				
			||||||
							
								
								
									
										99
									
								
								GameEnd.tscn
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										99
									
								
								GameEnd.tscn
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,99 @@
 | 
				
			|||||||
 | 
					[gd_scene load_steps=5 format=2]
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[ext_resource path="res://assets/MonoRaccoon.ttf" type="DynamicFontData" id=1]
 | 
				
			||||||
 | 
					[ext_resource path="res://GameEnd.gd" type="Script" id=2]
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[sub_resource type="DynamicFont" id=1]
 | 
				
			||||||
 | 
					size = 58
 | 
				
			||||||
 | 
					outline_color = Color( 0.0313726, 0.0313726, 0.0313726, 1 )
 | 
				
			||||||
 | 
					font_data = ExtResource( 1 )
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[sub_resource type="DynamicFont" id=2]
 | 
				
			||||||
 | 
					size = 22
 | 
				
			||||||
 | 
					font_data = ExtResource( 1 )
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[node name="MarginContainer" type="MarginContainer"]
 | 
				
			||||||
 | 
					margin_top = -8.0
 | 
				
			||||||
 | 
					margin_right = 1280.0
 | 
				
			||||||
 | 
					margin_bottom = 739.0
 | 
				
			||||||
 | 
					script = ExtResource( 2 )
 | 
				
			||||||
 | 
					__meta__ = {
 | 
				
			||||||
 | 
					"_edit_use_anchors_": false
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[node name="ColorRect" type="ColorRect" parent="."]
 | 
				
			||||||
 | 
					margin_right = 1280.0
 | 
				
			||||||
 | 
					margin_bottom = 747.0
 | 
				
			||||||
 | 
					color = Color( 1, 1, 1, 0.447059 )
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[node name="VBoxContainer" type="VBoxContainer" parent="ColorRect"]
 | 
				
			||||||
 | 
					margin_top = 164.0
 | 
				
			||||||
 | 
					margin_right = 1280.0
 | 
				
			||||||
 | 
					margin_bottom = 516.0
 | 
				
			||||||
 | 
					__meta__ = {
 | 
				
			||||||
 | 
					"_edit_use_anchors_": false
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[node name="Game Over" type="Label" parent="ColorRect/VBoxContainer"]
 | 
				
			||||||
 | 
					margin_right = 1280.0
 | 
				
			||||||
 | 
					margin_bottom = 59.0
 | 
				
			||||||
 | 
					size_flags_horizontal = 3
 | 
				
			||||||
 | 
					custom_fonts/font = SubResource( 1 )
 | 
				
			||||||
 | 
					custom_colors/font_color = Color( 0, 0, 0, 1 )
 | 
				
			||||||
 | 
					text = "GAME OVER"
 | 
				
			||||||
 | 
					align = 1
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[node name="MarginContainer" type="MarginContainer" parent="ColorRect/VBoxContainer"]
 | 
				
			||||||
 | 
					margin_top = 63.0
 | 
				
			||||||
 | 
					margin_right = 1280.0
 | 
				
			||||||
 | 
					margin_bottom = 122.0
 | 
				
			||||||
 | 
					__meta__ = {
 | 
				
			||||||
 | 
					"_edit_use_anchors_": false
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[node name="You got" type="Label" parent="ColorRect/VBoxContainer/MarginContainer"]
 | 
				
			||||||
 | 
					margin_right = 1280.0
 | 
				
			||||||
 | 
					margin_bottom = 59.0
 | 
				
			||||||
 | 
					size_flags_horizontal = 3
 | 
				
			||||||
 | 
					custom_fonts/font = SubResource( 1 )
 | 
				
			||||||
 | 
					custom_colors/font_color = Color( 0, 0, 0, 1 )
 | 
				
			||||||
 | 
					text = "You got"
 | 
				
			||||||
 | 
					align = 1
 | 
				
			||||||
 | 
					__meta__ = {
 | 
				
			||||||
 | 
					"_edit_use_anchors_": false
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[node name="value" type="Label" parent="ColorRect/VBoxContainer"]
 | 
				
			||||||
 | 
					margin_top = 126.0
 | 
				
			||||||
 | 
					margin_right = 1280.0
 | 
				
			||||||
 | 
					margin_bottom = 185.0
 | 
				
			||||||
 | 
					size_flags_horizontal = 3
 | 
				
			||||||
 | 
					custom_fonts/font = SubResource( 1 )
 | 
				
			||||||
 | 
					custom_colors/font_color = Color( 0, 0, 0, 1 )
 | 
				
			||||||
 | 
					text = "test"
 | 
				
			||||||
 | 
					align = 1
 | 
				
			||||||
 | 
					__meta__ = {
 | 
				
			||||||
 | 
					"_edit_use_anchors_": false
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[node name="Points" type="Label" parent="ColorRect/VBoxContainer"]
 | 
				
			||||||
 | 
					margin_top = 189.0
 | 
				
			||||||
 | 
					margin_right = 1280.0
 | 
				
			||||||
 | 
					margin_bottom = 248.0
 | 
				
			||||||
 | 
					size_flags_horizontal = 3
 | 
				
			||||||
 | 
					custom_fonts/font = SubResource( 1 )
 | 
				
			||||||
 | 
					custom_colors/font_color = Color( 0, 0, 0, 1 )
 | 
				
			||||||
 | 
					text = "Points"
 | 
				
			||||||
 | 
					align = 1
 | 
				
			||||||
 | 
					__meta__ = {
 | 
				
			||||||
 | 
					"_edit_use_anchors_": false
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[node name="New Game" type="Button" parent="ColorRect/VBoxContainer"]
 | 
				
			||||||
 | 
					margin_top = 252.0
 | 
				
			||||||
 | 
					margin_right = 1280.0
 | 
				
			||||||
 | 
					margin_bottom = 281.0
 | 
				
			||||||
 | 
					custom_fonts/font = SubResource( 2 )
 | 
				
			||||||
 | 
					text = "New Game"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[connection signal="pressed" from="ColorRect/VBoxContainer/New Game" to="." method="_on_New_Game_pressed"]
 | 
				
			||||||
							
								
								
									
										12
									
								
								Guest.tscn
									
									
									
									
									
								
							
							
						
						
									
										12
									
								
								Guest.tscn
									
									
									
									
									
								
							@@ -4,17 +4,17 @@
 | 
				
			|||||||
[ext_resource path="res://Guest.gd" type="Script" id=2]
 | 
					[ext_resource path="res://Guest.gd" type="Script" id=2]
 | 
				
			||||||
[ext_resource path="res://assets/Sam.png" type="Texture" id=3]
 | 
					[ext_resource path="res://assets/Sam.png" type="Texture" id=3]
 | 
				
			||||||
 | 
					
 | 
				
			||||||
[sub_resource type="PhysicsMaterial" id=7]
 | 
					[sub_resource type="PhysicsMaterial" id=1]
 | 
				
			||||||
absorbent = true
 | 
					absorbent = true
 | 
				
			||||||
 | 
					
 | 
				
			||||||
[sub_resource type="CircleShape2D" id=5]
 | 
					[sub_resource type="CircleShape2D" id=2]
 | 
				
			||||||
radius = 124.702
 | 
					radius = 124.702
 | 
				
			||||||
 | 
					
 | 
				
			||||||
[sub_resource type="CapsuleShape2D" id=3]
 | 
					[sub_resource type="CapsuleShape2D" id=3]
 | 
				
			||||||
radius = 6.0
 | 
					radius = 6.0
 | 
				
			||||||
height = 9.75
 | 
					height = 9.75
 | 
				
			||||||
 | 
					
 | 
				
			||||||
[sub_resource type="CapsuleShape2D" id=6]
 | 
					[sub_resource type="CapsuleShape2D" id=4]
 | 
				
			||||||
radius = 8.02541
 | 
					radius = 8.02541
 | 
				
			||||||
height = 10.5115
 | 
					height = 10.5115
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -24,7 +24,7 @@ height = 10.5115
 | 
				
			|||||||
collision_layer = 3
 | 
					collision_layer = 3
 | 
				
			||||||
collision_mask = 3
 | 
					collision_mask = 3
 | 
				
			||||||
mass = 10.0
 | 
					mass = 10.0
 | 
				
			||||||
physics_material_override = SubResource( 7 )
 | 
					physics_material_override = SubResource( 1 )
 | 
				
			||||||
gravity_scale = 0.0
 | 
					gravity_scale = 0.0
 | 
				
			||||||
angular_damp = 100.0
 | 
					angular_damp = 100.0
 | 
				
			||||||
script = ExtResource( 2 )
 | 
					script = ExtResource( 2 )
 | 
				
			||||||
@@ -37,7 +37,7 @@ __meta__ = {
 | 
				
			|||||||
[node name="CollisionShape2D" type="CollisionShape2D" parent="ExclusionZone"]
 | 
					[node name="CollisionShape2D" type="CollisionShape2D" parent="ExclusionZone"]
 | 
				
			||||||
modulate = Color( 0.0823529, 1, 0.027451, 1 )
 | 
					modulate = Color( 0.0823529, 1, 0.027451, 1 )
 | 
				
			||||||
show_behind_parent = true
 | 
					show_behind_parent = true
 | 
				
			||||||
shape = SubResource( 5 )
 | 
					shape = SubResource( 2 )
 | 
				
			||||||
disabled = true
 | 
					disabled = true
 | 
				
			||||||
 | 
					
 | 
				
			||||||
[node name="SpriteMarkus" type="Sprite" parent="."]
 | 
					[node name="SpriteMarkus" type="Sprite" parent="."]
 | 
				
			||||||
@@ -59,7 +59,7 @@ modulate = Color( 1, 0, 0.984314, 1 )
 | 
				
			|||||||
scale = Vector2( 2.76, 2.6 )
 | 
					scale = Vector2( 2.76, 2.6 )
 | 
				
			||||||
 | 
					
 | 
				
			||||||
[node name="CollisionShape2D" type="CollisionShape2D" parent="PickUpArea"]
 | 
					[node name="CollisionShape2D" type="CollisionShape2D" parent="PickUpArea"]
 | 
				
			||||||
shape = SubResource( 6 )
 | 
					shape = SubResource( 4 )
 | 
				
			||||||
 | 
					
 | 
				
			||||||
[node name="Anchor" type="Position2D" parent="."]
 | 
					[node name="Anchor" type="Position2D" parent="."]
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										14
									
								
								World.gd
									
									
									
									
									
								
							
							
						
						
									
										14
									
								
								World.gd
									
									
									
									
									
								
							@@ -20,6 +20,9 @@ export var max_guests = 10
 | 
				
			|||||||
func _on_Guest_picked_up(destinationColor,name):
 | 
					func _on_Guest_picked_up(destinationColor,name):
 | 
				
			||||||
	print('Picked Up %s with name %s' % [destinationColor,name])
 | 
						print('Picked Up %s with name %s' % [destinationColor,name])
 | 
				
			||||||
	
 | 
						
 | 
				
			||||||
 | 
					func _process(delta):
 | 
				
			||||||
 | 
						$GUI2/HBoxContainer/Time/Background/Number.text = String(int($GameTime.time_left))
 | 
				
			||||||
 | 
					
 | 
				
			||||||
func _ready():
 | 
					func _ready():
 | 
				
			||||||
	rng.randomize()
 | 
						rng.randomize()
 | 
				
			||||||
	print(radius_guests)
 | 
						print(radius_guests)
 | 
				
			||||||
@@ -63,3 +66,14 @@ func _on_Playa_scored(value:int):
 | 
				
			|||||||
	print('Its a score of %s'% String(value))
 | 
						print('Its a score of %s'% String(value))
 | 
				
			||||||
	player_score += value
 | 
						player_score += value
 | 
				
			||||||
	money_label.update_text(player_score)
 | 
						money_label.update_text(player_score)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func _on_GameTime_timeout():
 | 
				
			||||||
 | 
						#get_tree().change_scene("res://GameEnd.tscn")
 | 
				
			||||||
 | 
						var world = get_tree().root.get_node("World")
 | 
				
			||||||
 | 
						var end_screen_resource = load("res://GameEnd.tscn")
 | 
				
			||||||
 | 
						var end_screen = end_screen_resource.instance()
 | 
				
			||||||
 | 
						end_screen.score = player_score
 | 
				
			||||||
 | 
						get_tree().root.add_child(end_screen)
 | 
				
			||||||
 | 
						get_tree().root.remove_child(world)
 | 
				
			||||||
 | 
						world.queue_free()
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										64
									
								
								World.tscn
									
									
									
									
									
								
							
							
						
						
									
										64
									
								
								World.tscn
									
									
									
									
									
								
							@@ -1,4 +1,4 @@
 | 
				
			|||||||
[gd_scene load_steps=103 format=2]
 | 
					[gd_scene load_steps=104 format=2]
 | 
				
			||||||
 | 
					
 | 
				
			||||||
[ext_resource path="res://assets/city_tiles/Street.png" type="Texture" id=1]
 | 
					[ext_resource path="res://assets/city_tiles/Street.png" type="Texture" id=1]
 | 
				
			||||||
[ext_resource path="res://assets/city_tiles/Buildings.png" type="Texture" id=2]
 | 
					[ext_resource path="res://assets/city_tiles/Buildings.png" type="Texture" id=2]
 | 
				
			||||||
@@ -40,6 +40,7 @@
 | 
				
			|||||||
[ext_resource path="res://assets/city_tiles/Tür 16 RO.png" type="Texture" id=38]
 | 
					[ext_resource path="res://assets/city_tiles/Tür 16 RO.png" type="Texture" id=38]
 | 
				
			||||||
[ext_resource path="res://assets/city_tiles/Tür 16 LU.png" type="Texture" id=39]
 | 
					[ext_resource path="res://assets/city_tiles/Tür 16 LU.png" type="Texture" id=39]
 | 
				
			||||||
[ext_resource path="res://assets/city_tiles/Fenster 16.png" type="Texture" id=40]
 | 
					[ext_resource path="res://assets/city_tiles/Fenster 16.png" type="Texture" id=40]
 | 
				
			||||||
 | 
					[ext_resource path="res://GUIIngameBot.tscn" type="PackedScene" id=41]
 | 
				
			||||||
 | 
					
 | 
				
			||||||
[sub_resource type="ConvexPolygonShape2D" id=1]
 | 
					[sub_resource type="ConvexPolygonShape2D" id=1]
 | 
				
			||||||
points = PoolVector2Array( 0, 0, 16, 0, 16, 16, 0, 16 )
 | 
					points = PoolVector2Array( 0, 0, 16, 0, 16, 16, 0, 16 )
 | 
				
			||||||
@@ -203,22 +204,22 @@ points = PoolVector2Array( 0, 0, 16, 0, 16, 16, 0, 16 )
 | 
				
			|||||||
[sub_resource type="ConvexPolygonShape2D" id=54]
 | 
					[sub_resource type="ConvexPolygonShape2D" id=54]
 | 
				
			||||||
points = PoolVector2Array( 32, 32, 0, 32, 0, 0, 32, 0 )
 | 
					points = PoolVector2Array( 32, 32, 0, 32, 0, 0, 32, 0 )
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[sub_resource type="ConvexPolygonShape2D" id=55]
 | 
				
			||||||
 | 
					points = PoolVector2Array( 0, 0, 16, 0, 16, 16, 0, 16 )
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[sub_resource type="ConvexPolygonShape2D" id=56]
 | 
				
			||||||
 | 
					points = PoolVector2Array( 0, 0, 16, 0, 16, 16, 0, 16 )
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[sub_resource type="ConvexPolygonShape2D" id=57]
 | 
				
			||||||
 | 
					points = PoolVector2Array( 0, 0, 16, 0, 16, 16, 0, 16 )
 | 
				
			||||||
 | 
					
 | 
				
			||||||
[sub_resource type="ConvexPolygonShape2D" id=58]
 | 
					[sub_resource type="ConvexPolygonShape2D" id=58]
 | 
				
			||||||
points = PoolVector2Array( 0, 0, 16, 0, 16, 16, 0, 16 )
 | 
					points = PoolVector2Array( 0, 0, 16, 0, 16, 16, 0, 16 )
 | 
				
			||||||
 | 
					
 | 
				
			||||||
[sub_resource type="ConvexPolygonShape2D" id=59]
 | 
					[sub_resource type="ConvexPolygonShape2D" id=59]
 | 
				
			||||||
points = PoolVector2Array( 0, 0, 16, 0, 16, 16, 0, 16 )
 | 
					points = PoolVector2Array( 0, 0, 16, 0, 16, 16, 0, 16 )
 | 
				
			||||||
 | 
					
 | 
				
			||||||
[sub_resource type="ConvexPolygonShape2D" id=60]
 | 
					[sub_resource type="TileSet" id=60]
 | 
				
			||||||
points = PoolVector2Array( 0, 0, 16, 0, 16, 16, 0, 16 )
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
[sub_resource type="ConvexPolygonShape2D" id=61]
 | 
					 | 
				
			||||||
points = PoolVector2Array( 0, 0, 16, 0, 16, 16, 0, 16 )
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
[sub_resource type="ConvexPolygonShape2D" id=62]
 | 
					 | 
				
			||||||
points = PoolVector2Array( 0, 0, 16, 0, 16, 16, 0, 16 )
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
[sub_resource type="TileSet" id=55]
 | 
					 | 
				
			||||||
0/name = "Buildings.png 0"
 | 
					0/name = "Buildings.png 0"
 | 
				
			||||||
0/texture = ExtResource( 2 )
 | 
					0/texture = ExtResource( 2 )
 | 
				
			||||||
0/tex_offset = Vector2( 0, 0 )
 | 
					0/tex_offset = Vector2( 0, 0 )
 | 
				
			||||||
@@ -632,14 +633,14 @@ points = PoolVector2Array( 0, 0, 16, 0, 16, 16, 0, 16 )
 | 
				
			|||||||
5/navigation_offset = Vector2( 0, 0 )
 | 
					5/navigation_offset = Vector2( 0, 0 )
 | 
				
			||||||
5/shape_offset = Vector2( 0, 0 )
 | 
					5/shape_offset = Vector2( 0, 0 )
 | 
				
			||||||
5/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
 | 
					5/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
 | 
				
			||||||
5/shape = SubResource( 58 )
 | 
					5/shape = SubResource( 55 )
 | 
				
			||||||
5/shape_one_way = false
 | 
					5/shape_one_way = false
 | 
				
			||||||
5/shape_one_way_margin = 1.0
 | 
					5/shape_one_way_margin = 1.0
 | 
				
			||||||
5/shapes = [ {
 | 
					5/shapes = [ {
 | 
				
			||||||
"autotile_coord": Vector2( 0, 0 ),
 | 
					"autotile_coord": Vector2( 0, 0 ),
 | 
				
			||||||
"one_way": false,
 | 
					"one_way": false,
 | 
				
			||||||
"one_way_margin": 1.0,
 | 
					"one_way_margin": 1.0,
 | 
				
			||||||
"shape": SubResource( 58 ),
 | 
					"shape": SubResource( 55 ),
 | 
				
			||||||
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
 | 
					"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
 | 
				
			||||||
} ]
 | 
					} ]
 | 
				
			||||||
5/z_index = 0
 | 
					5/z_index = 0
 | 
				
			||||||
@@ -653,14 +654,14 @@ points = PoolVector2Array( 0, 0, 16, 0, 16, 16, 0, 16 )
 | 
				
			|||||||
6/navigation_offset = Vector2( 0, 0 )
 | 
					6/navigation_offset = Vector2( 0, 0 )
 | 
				
			||||||
6/shape_offset = Vector2( 0, 0 )
 | 
					6/shape_offset = Vector2( 0, 0 )
 | 
				
			||||||
6/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
 | 
					6/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
 | 
				
			||||||
6/shape = SubResource( 59 )
 | 
					6/shape = SubResource( 56 )
 | 
				
			||||||
6/shape_one_way = false
 | 
					6/shape_one_way = false
 | 
				
			||||||
6/shape_one_way_margin = 1.0
 | 
					6/shape_one_way_margin = 1.0
 | 
				
			||||||
6/shapes = [ {
 | 
					6/shapes = [ {
 | 
				
			||||||
"autotile_coord": Vector2( 0, 0 ),
 | 
					"autotile_coord": Vector2( 0, 0 ),
 | 
				
			||||||
"one_way": false,
 | 
					"one_way": false,
 | 
				
			||||||
"one_way_margin": 1.0,
 | 
					"one_way_margin": 1.0,
 | 
				
			||||||
"shape": SubResource( 59 ),
 | 
					"shape": SubResource( 56 ),
 | 
				
			||||||
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
 | 
					"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
 | 
				
			||||||
} ]
 | 
					} ]
 | 
				
			||||||
6/z_index = 0
 | 
					6/z_index = 0
 | 
				
			||||||
@@ -674,14 +675,14 @@ points = PoolVector2Array( 0, 0, 16, 0, 16, 16, 0, 16 )
 | 
				
			|||||||
7/navigation_offset = Vector2( 0, 0 )
 | 
					7/navigation_offset = Vector2( 0, 0 )
 | 
				
			||||||
7/shape_offset = Vector2( 0, 0 )
 | 
					7/shape_offset = Vector2( 0, 0 )
 | 
				
			||||||
7/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
 | 
					7/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
 | 
				
			||||||
7/shape = SubResource( 60 )
 | 
					7/shape = SubResource( 57 )
 | 
				
			||||||
7/shape_one_way = false
 | 
					7/shape_one_way = false
 | 
				
			||||||
7/shape_one_way_margin = 1.0
 | 
					7/shape_one_way_margin = 1.0
 | 
				
			||||||
7/shapes = [ {
 | 
					7/shapes = [ {
 | 
				
			||||||
"autotile_coord": Vector2( 0, 0 ),
 | 
					"autotile_coord": Vector2( 0, 0 ),
 | 
				
			||||||
"one_way": false,
 | 
					"one_way": false,
 | 
				
			||||||
"one_way_margin": 1.0,
 | 
					"one_way_margin": 1.0,
 | 
				
			||||||
"shape": SubResource( 60 ),
 | 
					"shape": SubResource( 57 ),
 | 
				
			||||||
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
 | 
					"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
 | 
				
			||||||
} ]
 | 
					} ]
 | 
				
			||||||
7/z_index = 0
 | 
					7/z_index = 0
 | 
				
			||||||
@@ -695,14 +696,14 @@ points = PoolVector2Array( 0, 0, 16, 0, 16, 16, 0, 16 )
 | 
				
			|||||||
8/navigation_offset = Vector2( 0, 0 )
 | 
					8/navigation_offset = Vector2( 0, 0 )
 | 
				
			||||||
8/shape_offset = Vector2( 0, 0 )
 | 
					8/shape_offset = Vector2( 0, 0 )
 | 
				
			||||||
8/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
 | 
					8/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
 | 
				
			||||||
8/shape = SubResource( 61 )
 | 
					8/shape = SubResource( 58 )
 | 
				
			||||||
8/shape_one_way = false
 | 
					8/shape_one_way = false
 | 
				
			||||||
8/shape_one_way_margin = 1.0
 | 
					8/shape_one_way_margin = 1.0
 | 
				
			||||||
8/shapes = [ {
 | 
					8/shapes = [ {
 | 
				
			||||||
"autotile_coord": Vector2( 0, 0 ),
 | 
					"autotile_coord": Vector2( 0, 0 ),
 | 
				
			||||||
"one_way": false,
 | 
					"one_way": false,
 | 
				
			||||||
"one_way_margin": 1.0,
 | 
					"one_way_margin": 1.0,
 | 
				
			||||||
"shape": SubResource( 61 ),
 | 
					"shape": SubResource( 58 ),
 | 
				
			||||||
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
 | 
					"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
 | 
				
			||||||
} ]
 | 
					} ]
 | 
				
			||||||
8/z_index = 0
 | 
					8/z_index = 0
 | 
				
			||||||
@@ -716,19 +717,19 @@ points = PoolVector2Array( 0, 0, 16, 0, 16, 16, 0, 16 )
 | 
				
			|||||||
9/navigation_offset = Vector2( 0, 0 )
 | 
					9/navigation_offset = Vector2( 0, 0 )
 | 
				
			||||||
9/shape_offset = Vector2( 0, 0 )
 | 
					9/shape_offset = Vector2( 0, 0 )
 | 
				
			||||||
9/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
 | 
					9/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
 | 
				
			||||||
9/shape = SubResource( 62 )
 | 
					9/shape = SubResource( 59 )
 | 
				
			||||||
9/shape_one_way = false
 | 
					9/shape_one_way = false
 | 
				
			||||||
9/shape_one_way_margin = 1.0
 | 
					9/shape_one_way_margin = 1.0
 | 
				
			||||||
9/shapes = [ {
 | 
					9/shapes = [ {
 | 
				
			||||||
"autotile_coord": Vector2( 0, 0 ),
 | 
					"autotile_coord": Vector2( 0, 0 ),
 | 
				
			||||||
"one_way": false,
 | 
					"one_way": false,
 | 
				
			||||||
"one_way_margin": 1.0,
 | 
					"one_way_margin": 1.0,
 | 
				
			||||||
"shape": SubResource( 62 ),
 | 
					"shape": SubResource( 59 ),
 | 
				
			||||||
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
 | 
					"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
 | 
				
			||||||
} ]
 | 
					} ]
 | 
				
			||||||
9/z_index = 0
 | 
					9/z_index = 0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
[sub_resource type="TileSet" id=56]
 | 
					[sub_resource type="TileSet" id=61]
 | 
				
			||||||
0/name = "Street.png 0"
 | 
					0/name = "Street.png 0"
 | 
				
			||||||
0/texture = ExtResource( 1 )
 | 
					0/texture = ExtResource( 1 )
 | 
				
			||||||
0/tex_offset = Vector2( 0, 0 )
 | 
					0/tex_offset = Vector2( 0, 0 )
 | 
				
			||||||
@@ -774,7 +775,7 @@ points = PoolVector2Array( 0, 0, 16, 0, 16, 16, 0, 16 )
 | 
				
			|||||||
1/shapes = [  ]
 | 
					1/shapes = [  ]
 | 
				
			||||||
1/z_index = 0
 | 
					1/z_index = 0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
[sub_resource type="TileSet" id=57]
 | 
					[sub_resource type="TileSet" id=62]
 | 
				
			||||||
0/name = "Street.png 0"
 | 
					0/name = "Street.png 0"
 | 
				
			||||||
0/texture = ExtResource( 1 )
 | 
					0/texture = ExtResource( 1 )
 | 
				
			||||||
0/tex_offset = Vector2( 0, 0 )
 | 
					0/tex_offset = Vector2( 0, 0 )
 | 
				
			||||||
@@ -1189,7 +1190,7 @@ __meta__ = {
 | 
				
			|||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
[node name="TileMap" type="TileMap" parent="."]
 | 
					[node name="TileMap" type="TileMap" parent="."]
 | 
				
			||||||
tile_set = SubResource( 55 )
 | 
					tile_set = SubResource( 60 )
 | 
				
			||||||
cell_size = Vector2( 16, 16 )
 | 
					cell_size = Vector2( 16, 16 )
 | 
				
			||||||
cell_custom_transform = Transform2D( 64, 16, 16, 64, 0, 0 )
 | 
					cell_custom_transform = Transform2D( 64, 16, 16, 64, 0, 0 )
 | 
				
			||||||
show_collision = true
 | 
					show_collision = true
 | 
				
			||||||
@@ -1201,7 +1202,7 @@ __meta__ = {
 | 
				
			|||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
[node name="curbs" type="TileMap" parent="."]
 | 
					[node name="curbs" type="TileMap" parent="."]
 | 
				
			||||||
tile_set = SubResource( 56 )
 | 
					tile_set = SubResource( 61 )
 | 
				
			||||||
cell_size = Vector2( 16, 16 )
 | 
					cell_size = Vector2( 16, 16 )
 | 
				
			||||||
format = 1
 | 
					format = 1
 | 
				
			||||||
tile_data = PoolIntArray( 393226, 1, 1, 393227, 1, 2, 393228, 1, 2, 393229, 1, 2, 393230, 1, 2, 393231, 1, 2, 393232, 1, 2, 393233, 1, 2, 393234, 1, 2, 393235, 1, 2, 393236, 1, 2, 393237, 1, 2, 393238, 1, 2, 393239, 1, 2, 393240, 1, 2, 393241, 1, 2, 393242, 1, 2, 393243, 1, 2, 393244, 1, 2, 393245, 1, 2, 393246, 1, 2, 393247, 1, 2, 393248, 1, 2, 393249, 1, 2, 393250, 1, 2, 393251, 1, 2, 393252, 1, 2, 393253, 1, 5, 393256, 1, 1, 393257, 1, 2, 393258, 1, 2, 393259, 1, 2, 393260, 1, 2, 393261, 1, 2, 393262, 1, 2, 393263, 1, 5, 393266, 1, 1, 393267, 1, 2, 393268, 1, 2, 393269, 1, 2, 393270, 1, 2, 393271, 1, 2, 393272, 1, 2, 393273, 1, 5, 458762, 1, 65537, 458789, 1, 65541, 458792, 1, 196609, 458799, 1, 65541, 458802, 1, 65537, 458809, 1, 65541, 524298, 1, 65537, 524305, 1, 65539, 524306, 1, 65539, 524313, 1, 65539, 524325, 1, 65541, 524328, 1, 196609, 524335, 1, 65541, 524338, 1, 65537, 524345, 1, 65541, 589834, 1, 65537, 589842, 1, 65539, 589849, 1, 65539, 589861, 1, 65541, 589864, 1, 196609, 589871, 1, 65541, 589874, 1, 65537, 589881, 1, 65541, 655370, 1, 65537, 655378, 1, 65539, 655385, 1, 65539, 655397, 1, 65541, 655400, 1, 196609, 655407, 1, 65541, 655410, 1, 65537, 655417, 1, 131073, 655418, 1, 2, 655419, 1, 2, 655420, 1, 2, 655421, 1, 2, 655422, 1, 2, 655423, 1, 2, 655424, 1, 2, 655425, 1, 2, 655426, 1, 2, 655427, 1, 2, 655428, 1, 2, 655429, 1, 2, 655430, 1, 2, 655431, 1, 2, 655432, 1, 2, 655433, 1, 2, 655434, 1, 2, 655435, 1, 5, 720906, 1, 65537, 720914, 1, 65539, 720921, 1, 65539, 720925, 1, 0, 720926, 1, 262148, 720927, 1, 262148, 720928, 1, 262148, 720929, 1, 262148, 720930, 1, 262148, 720931, 1, 262148, 720932, 1, 262148, 720933, 1, 262149, 720936, 1, 196609, 720943, 1, 65541, 720946, 1, 262145, 720947, 1, 2, 720948, 1, 2, 720949, 1, 2, 720950, 1, 2, 720951, 1, 3, 720952, 1, 3, 720971, 1, 65541, 786442, 1, 65537, 786450, 1, 65539, 786457, 1, 65539, 786461, 1, 65541, 786472, 1, 196609, 786479, 1, 65541, 786488, 1, 196613, 786507, 1, 65541, 851978, 1, 65537, 851986, 1, 65539, 851997, 1, 65541, 852008, 1, 196609, 852015, 1, 65541, 852024, 1, 65539, 852043, 1, 65541, 917514, 1, 65537, 917521, 1, 65539, 917522, 1, 65539, 917533, 1, 65541, 917536, 1, 1, 917537, 1, 2, 917538, 1, 2, 917539, 1, 2, 917540, 1, 2, 917541, 1, 2, 917542, 1, 2, 917543, 1, 2, 917544, 1, 262147, 917551, 1, 65541, 917560, 1, 65539, 917579, 1, 65541, 983050, 1, 65537, 983057, 1, 65539, 983058, 1, 65539, 983069, 1, 65541, 983072, 1, 196609, 983087, 1, 65541, 983096, 1, 262145, 983097, 1, 262146, 983098, 1, 262146, 983099, 1, 262146, 983100, 1, 262146, 983101, 1, 262146, 983102, 1, 262146, 983103, 1, 262146, 983104, 1, 262146, 983113, 1, 0, 983114, 1, 262146, 983115, 1, 262149, 1048586, 1, 65537, 1048605, 1, 65541, 1048608, 1, 196609, 1048623, 1, 65541, 1048640, 1, 196609, 1048649, 1, 65537, 1114122, 1, 262145, 1114123, 1, 262148, 1114124, 1, 262148, 1114125, 1, 262148, 1114126, 1, 262148, 1114127, 1, 262148, 1114128, 1, 262148, 1114129, 1, 262148, 1114130, 1, 262148, 1114131, 1, 262148, 1114132, 1, 262148, 1114133, 1, 262148, 1114134, 1, 262148, 1114135, 1, 262148, 1114136, 1, 262148, 1114137, 1, 262148, 1114138, 1, 262148, 1114139, 1, 262148, 1114140, 1, 262148, 1114141, 1, 262149, 1114144, 1, 196609, 1114159, 1, 65541, 1114176, 1, 196609, 1114185, 1, 65537, 1179680, 1, 196609, 1179695, 1, 65541, 1179712, 1, 196609, 1179721, 1, 65537, 1245216, 1, 196609, 1245231, 1, 65541, 1245248, 1, 196609, 1245253, 1, 0, 1245254, 1, 262146, 1245255, 1, 262146, 1245256, 1, 262148, 1245257, 1, 262149, 1310744, 1, 1, 1310745, 1, 2, 1310746, 1, 2, 1310747, 1, 2, 1310748, 1, 2, 1310749, 1, 2, 1310750, 1, 2, 1310751, 1, 2, 1310752, 1, 262147, 1310767, 1, 65541, 1310784, 1, 196609, 1310789, 1, 65537, 1376280, 1, 196609, 1376303, 1, 65541, 1376320, 1, 262145, 1376321, 1, 262146, 1376322, 1, 262146, 1376323, 1, 262146, 1376324, 1, 262146, 1376325, 1, 262149, 1441816, 1, 196609, 1441839, 1, 65541, 1507352, 1, 262145, 1507353, 1, 262146, 1507354, 1, 262146, 1507355, 1, 262146, 1507356, 1, 262146, 1507357, 1, 262146, 1507358, 1, 262146, 1507359, 1, 262146, 1507360, 1, 262146, 1507361, 1, 262146, 1507362, 1, 262146, 1507363, 1, 262146, 1507364, 1, 262146, 1507365, 1, 262146, 1507366, 1, 262146, 1507367, 1, 262146, 1507368, 1, 262146, 1507369, 1, 262146, 1507370, 1, 262146, 1507371, 1, 262146, 1507372, 1, 262146, 1507373, 1, 262146, 1507374, 1, 262146, 1507375, 1, 262149 )
 | 
					tile_data = PoolIntArray( 393226, 1, 1, 393227, 1, 2, 393228, 1, 2, 393229, 1, 2, 393230, 1, 2, 393231, 1, 2, 393232, 1, 2, 393233, 1, 2, 393234, 1, 2, 393235, 1, 2, 393236, 1, 2, 393237, 1, 2, 393238, 1, 2, 393239, 1, 2, 393240, 1, 2, 393241, 1, 2, 393242, 1, 2, 393243, 1, 2, 393244, 1, 2, 393245, 1, 2, 393246, 1, 2, 393247, 1, 2, 393248, 1, 2, 393249, 1, 2, 393250, 1, 2, 393251, 1, 2, 393252, 1, 2, 393253, 1, 5, 393256, 1, 1, 393257, 1, 2, 393258, 1, 2, 393259, 1, 2, 393260, 1, 2, 393261, 1, 2, 393262, 1, 2, 393263, 1, 5, 393266, 1, 1, 393267, 1, 2, 393268, 1, 2, 393269, 1, 2, 393270, 1, 2, 393271, 1, 2, 393272, 1, 2, 393273, 1, 5, 458762, 1, 65537, 458789, 1, 65541, 458792, 1, 196609, 458799, 1, 65541, 458802, 1, 65537, 458809, 1, 65541, 524298, 1, 65537, 524305, 1, 65539, 524306, 1, 65539, 524313, 1, 65539, 524325, 1, 65541, 524328, 1, 196609, 524335, 1, 65541, 524338, 1, 65537, 524345, 1, 65541, 589834, 1, 65537, 589842, 1, 65539, 589849, 1, 65539, 589861, 1, 65541, 589864, 1, 196609, 589871, 1, 65541, 589874, 1, 65537, 589881, 1, 65541, 655370, 1, 65537, 655378, 1, 65539, 655385, 1, 65539, 655397, 1, 65541, 655400, 1, 196609, 655407, 1, 65541, 655410, 1, 65537, 655417, 1, 131073, 655418, 1, 2, 655419, 1, 2, 655420, 1, 2, 655421, 1, 2, 655422, 1, 2, 655423, 1, 2, 655424, 1, 2, 655425, 1, 2, 655426, 1, 2, 655427, 1, 2, 655428, 1, 2, 655429, 1, 2, 655430, 1, 2, 655431, 1, 2, 655432, 1, 2, 655433, 1, 2, 655434, 1, 2, 655435, 1, 5, 720906, 1, 65537, 720914, 1, 65539, 720921, 1, 65539, 720925, 1, 0, 720926, 1, 262148, 720927, 1, 262148, 720928, 1, 262148, 720929, 1, 262148, 720930, 1, 262148, 720931, 1, 262148, 720932, 1, 262148, 720933, 1, 262149, 720936, 1, 196609, 720943, 1, 65541, 720946, 1, 262145, 720947, 1, 2, 720948, 1, 2, 720949, 1, 2, 720950, 1, 2, 720951, 1, 3, 720952, 1, 3, 720971, 1, 65541, 786442, 1, 65537, 786450, 1, 65539, 786457, 1, 65539, 786461, 1, 65541, 786472, 1, 196609, 786479, 1, 65541, 786488, 1, 196613, 786507, 1, 65541, 851978, 1, 65537, 851986, 1, 65539, 851997, 1, 65541, 852008, 1, 196609, 852015, 1, 65541, 852024, 1, 65539, 852043, 1, 65541, 917514, 1, 65537, 917521, 1, 65539, 917522, 1, 65539, 917533, 1, 65541, 917536, 1, 1, 917537, 1, 2, 917538, 1, 2, 917539, 1, 2, 917540, 1, 2, 917541, 1, 2, 917542, 1, 2, 917543, 1, 2, 917544, 1, 262147, 917551, 1, 65541, 917560, 1, 65539, 917579, 1, 65541, 983050, 1, 65537, 983057, 1, 65539, 983058, 1, 65539, 983069, 1, 65541, 983072, 1, 196609, 983087, 1, 65541, 983096, 1, 262145, 983097, 1, 262146, 983098, 1, 262146, 983099, 1, 262146, 983100, 1, 262146, 983101, 1, 262146, 983102, 1, 262146, 983103, 1, 262146, 983104, 1, 262146, 983113, 1, 0, 983114, 1, 262146, 983115, 1, 262149, 1048586, 1, 65537, 1048605, 1, 65541, 1048608, 1, 196609, 1048623, 1, 65541, 1048640, 1, 196609, 1048649, 1, 65537, 1114122, 1, 262145, 1114123, 1, 262148, 1114124, 1, 262148, 1114125, 1, 262148, 1114126, 1, 262148, 1114127, 1, 262148, 1114128, 1, 262148, 1114129, 1, 262148, 1114130, 1, 262148, 1114131, 1, 262148, 1114132, 1, 262148, 1114133, 1, 262148, 1114134, 1, 262148, 1114135, 1, 262148, 1114136, 1, 262148, 1114137, 1, 262148, 1114138, 1, 262148, 1114139, 1, 262148, 1114140, 1, 262148, 1114141, 1, 262149, 1114144, 1, 196609, 1114159, 1, 65541, 1114176, 1, 196609, 1114185, 1, 65537, 1179680, 1, 196609, 1179695, 1, 65541, 1179712, 1, 196609, 1179721, 1, 65537, 1245216, 1, 196609, 1245231, 1, 65541, 1245248, 1, 196609, 1245253, 1, 0, 1245254, 1, 262146, 1245255, 1, 262146, 1245256, 1, 262148, 1245257, 1, 262149, 1310744, 1, 1, 1310745, 1, 2, 1310746, 1, 2, 1310747, 1, 2, 1310748, 1, 2, 1310749, 1, 2, 1310750, 1, 2, 1310751, 1, 2, 1310752, 1, 262147, 1310767, 1, 65541, 1310784, 1, 196609, 1310789, 1, 65537, 1376280, 1, 196609, 1376303, 1, 65541, 1376320, 1, 262145, 1376321, 1, 262146, 1376322, 1, 262146, 1376323, 1, 262146, 1376324, 1, 262146, 1376325, 1, 262149, 1441816, 1, 196609, 1441839, 1, 65541, 1507352, 1, 262145, 1507353, 1, 262146, 1507354, 1, 262146, 1507355, 1, 262146, 1507356, 1, 262146, 1507357, 1, 262146, 1507358, 1, 262146, 1507359, 1, 262146, 1507360, 1, 262146, 1507361, 1, 262146, 1507362, 1, 262146, 1507363, 1, 262146, 1507364, 1, 262146, 1507365, 1, 262146, 1507366, 1, 262146, 1507367, 1, 262146, 1507368, 1, 262146, 1507369, 1, 262146, 1507370, 1, 262146, 1507371, 1, 262146, 1507372, 1, 262146, 1507373, 1, 262146, 1507374, 1, 262146, 1507375, 1, 262149 )
 | 
				
			||||||
@@ -1210,7 +1211,7 @@ __meta__ = {
 | 
				
			|||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
[node name="Streets" type="TileMap" parent="."]
 | 
					[node name="Streets" type="TileMap" parent="."]
 | 
				
			||||||
tile_set = SubResource( 57 )
 | 
					tile_set = SubResource( 62 )
 | 
				
			||||||
cell_size = Vector2( 32, 32 )
 | 
					cell_size = Vector2( 32, 32 )
 | 
				
			||||||
format = 1
 | 
					format = 1
 | 
				
			||||||
tile_data = PoolIntArray( 131076, 12, 0, 131077, 4, 0, 131078, 4, 0, 131079, 4, 0, 131080, 4, 0, 131081, 4, 0, 131082, 4, 0, 131083, 4, 0, 131084, 4, 0, 131085, 4, 0, 131086, 4, 0, 131087, 4, 0, 131088, 4, 0, 131089, 4, 0, 131090, 4, 0, 131091, 16, 0, 131092, 4, 0, 131093, 4, 0, 131094, 4, 0, 131095, 4, 0, 131096, 16, 0, 131097, 4, 0, 131098, 4, 0, 131099, 4, 0, 131100, 4, 0, 131101, 16, 0, 131102, 4, 0, 131103, 4, 0, 131104, 4, 0, 131105, 4, 0, 131106, 4, 0, 131107, 4, 0, 131108, 4, 0, 131109, 4, 0, 131110, 9, 0, 196612, 3, 0, 196627, 3, 0, 196632, 3, 0, 196633, 2, 0, 196634, 2, 3, 196635, 2, 0, 196637, 3, 0, 196646, 3, 0, 262148, 3, 0, 262163, 3, 0, 262168, 3, 0, 262173, 10, 0, 262174, 4, 0, 262175, 4, 0, 262176, 4, 0, 262177, 4, 0, 262178, 4, 0, 262179, 4, 0, 262180, 4, 0, 262181, 4, 0, 262182, 15, 0, 327684, 3, 0, 327699, 3, 0, 327704, 3, 0, 327718, 3, 0, 393220, 3, 0, 393231, 12, 0, 393232, 4, 0, 393233, 4, 0, 393234, 4, 0, 393235, 11, 0, 393240, 20, 0, 393241, 5, 0, 393242, 5, 0, 393243, 9, 0, 393254, 3, 0, 458756, 3, 0, 458767, 3, 0, 458776, 3, 0, 458779, 3, 0, 458790, 3, 0, 524292, 3, 0, 524303, 3, 0, 524312, 3, 0, 524315, 10, 0, 524316, 4, 0, 524317, 4, 0, 524318, 4, 0, 524319, 9, 0, 524325, 12, 0, 524326, 11, 0, 589828, 20, 0, 589829, 4, 0, 589830, 4, 0, 589831, 4, 0, 589832, 4, 0, 589833, 4, 0, 589834, 4, 0, 589835, 16, 0, 589836, 4, 0, 589837, 4, 0, 589838, 4, 0, 589839, 11, 0, 589848, 3, 0, 589855, 3, 0, 589861, 3, 0, 655364, 3, 0, 655371, 3, 0, 655384, 3, 0, 655391, 3, 0, 655395, 12, 0, 655396, 5, 0, 655397, 15, 0, 720900, 3, 0, 720907, 3, 0, 720920, 3, 0, 720927, 20, 0, 720928, 4, 0, 720929, 4, 0, 720930, 4, 0, 720931, 15, 0, 720933, 3, 0, 786436, 3, 0, 786443, 20, 0, 786444, 4, 0, 786445, 4, 0, 786446, 4, 0, 786447, 4, 0, 786448, 4, 0, 786449, 4, 0, 786450, 4, 0, 786451, 4, 0, 786452, 16, 0, 786453, 4, 0, 786454, 4, 0, 786455, 4, 0, 786456, 15, 0, 786463, 3, 0, 786467, 3, 0, 786469, 3, 0, 851972, 3, 0, 851979, 3, 0, 851988, 3, 0, 851992, 3, 0, 851999, 3, 0, 852003, 3, 0, 852005, 3, 0, 917508, 20, 0, 917509, 4, 0, 917510, 4, 0, 917511, 4, 0, 917512, 16, 0, 917513, 4, 0, 917514, 4, 0, 917515, 11, 0, 917524, 3, 0, 917528, 3, 0, 917534, 12, 0, 917535, 11, 0, 917539, 3, 0, 917541, 3, 0, 983044, 3, 0, 983048, 3, 0, 983060, 3, 0, 983064, 3, 0, 983070, 3, 0, 983075, 3, 0, 983077, 3, 0, 1048580, 3, 0, 1048584, 10, 0, 1048585, 4, 0, 1048586, 4, 0, 1048587, 4, 0, 1048588, 4, 0, 1048589, 4, 0, 1048590, 16, 0, 1048591, 4, 0, 1048592, 4, 0, 1048593, 4, 0, 1048594, 4, 0, 1048595, 4, 0, 1048596, 22, 0, 1048597, 4, 0, 1048598, 4, 0, 1048599, 4, 0, 1048600, 15, 0, 1048606, 3, 0, 1048611, 3, 0, 1048613, 3, 0, 1114116, 3, 0, 1114126, 3, 0, 1114136, 3, 0, 1114142, 3, 0, 1114147, 3, 0, 1114149, 3, 0, 1179652, 3, 0, 1179662, 3, 0, 1179672, 3, 0, 1179678, 3, 0, 1179683, 20, 0, 1179684, 4, 0, 1179685, 11, 0, 1245188, 10, 0, 1245189, 4, 0, 1245190, 4, 0, 1245191, 4, 0, 1245192, 4, 0, 1245193, 4, 0, 1245194, 4, 0, 1245195, 4, 0, 1245196, 4, 0, 1245197, 4, 0, 1245198, 23, 0, 1245199, 4, 0, 1245200, 4, 0, 1245201, 4, 0, 1245202, 4, 0, 1245203, 4, 0, 1245204, 4, 0, 1245205, 4, 0, 1245206, 4, 0, 1245207, 4, 0, 1245208, 23, 0, 1245209, 4, 0, 1245210, 4, 0, 1245211, 4, 0, 1245212, 4, 0, 1245213, 4, 0, 1245214, 23, 0, 1245215, 4, 0, 1245216, 4, 0, 1245217, 4, 0, 1245218, 4, 0, 1245219, 11, 0 )
 | 
					tile_data = PoolIntArray( 131076, 12, 0, 131077, 4, 0, 131078, 4, 0, 131079, 4, 0, 131080, 4, 0, 131081, 4, 0, 131082, 4, 0, 131083, 4, 0, 131084, 4, 0, 131085, 4, 0, 131086, 4, 0, 131087, 4, 0, 131088, 4, 0, 131089, 4, 0, 131090, 4, 0, 131091, 16, 0, 131092, 4, 0, 131093, 4, 0, 131094, 4, 0, 131095, 4, 0, 131096, 16, 0, 131097, 4, 0, 131098, 4, 0, 131099, 4, 0, 131100, 4, 0, 131101, 16, 0, 131102, 4, 0, 131103, 4, 0, 131104, 4, 0, 131105, 4, 0, 131106, 4, 0, 131107, 4, 0, 131108, 4, 0, 131109, 4, 0, 131110, 9, 0, 196612, 3, 0, 196627, 3, 0, 196632, 3, 0, 196633, 2, 0, 196634, 2, 3, 196635, 2, 0, 196637, 3, 0, 196646, 3, 0, 262148, 3, 0, 262163, 3, 0, 262168, 3, 0, 262173, 10, 0, 262174, 4, 0, 262175, 4, 0, 262176, 4, 0, 262177, 4, 0, 262178, 4, 0, 262179, 4, 0, 262180, 4, 0, 262181, 4, 0, 262182, 15, 0, 327684, 3, 0, 327699, 3, 0, 327704, 3, 0, 327718, 3, 0, 393220, 3, 0, 393231, 12, 0, 393232, 4, 0, 393233, 4, 0, 393234, 4, 0, 393235, 11, 0, 393240, 20, 0, 393241, 5, 0, 393242, 5, 0, 393243, 9, 0, 393254, 3, 0, 458756, 3, 0, 458767, 3, 0, 458776, 3, 0, 458779, 3, 0, 458790, 3, 0, 524292, 3, 0, 524303, 3, 0, 524312, 3, 0, 524315, 10, 0, 524316, 4, 0, 524317, 4, 0, 524318, 4, 0, 524319, 9, 0, 524325, 12, 0, 524326, 11, 0, 589828, 20, 0, 589829, 4, 0, 589830, 4, 0, 589831, 4, 0, 589832, 4, 0, 589833, 4, 0, 589834, 4, 0, 589835, 16, 0, 589836, 4, 0, 589837, 4, 0, 589838, 4, 0, 589839, 11, 0, 589848, 3, 0, 589855, 3, 0, 589861, 3, 0, 655364, 3, 0, 655371, 3, 0, 655384, 3, 0, 655391, 3, 0, 655395, 12, 0, 655396, 5, 0, 655397, 15, 0, 720900, 3, 0, 720907, 3, 0, 720920, 3, 0, 720927, 20, 0, 720928, 4, 0, 720929, 4, 0, 720930, 4, 0, 720931, 15, 0, 720933, 3, 0, 786436, 3, 0, 786443, 20, 0, 786444, 4, 0, 786445, 4, 0, 786446, 4, 0, 786447, 4, 0, 786448, 4, 0, 786449, 4, 0, 786450, 4, 0, 786451, 4, 0, 786452, 16, 0, 786453, 4, 0, 786454, 4, 0, 786455, 4, 0, 786456, 15, 0, 786463, 3, 0, 786467, 3, 0, 786469, 3, 0, 851972, 3, 0, 851979, 3, 0, 851988, 3, 0, 851992, 3, 0, 851999, 3, 0, 852003, 3, 0, 852005, 3, 0, 917508, 20, 0, 917509, 4, 0, 917510, 4, 0, 917511, 4, 0, 917512, 16, 0, 917513, 4, 0, 917514, 4, 0, 917515, 11, 0, 917524, 3, 0, 917528, 3, 0, 917534, 12, 0, 917535, 11, 0, 917539, 3, 0, 917541, 3, 0, 983044, 3, 0, 983048, 3, 0, 983060, 3, 0, 983064, 3, 0, 983070, 3, 0, 983075, 3, 0, 983077, 3, 0, 1048580, 3, 0, 1048584, 10, 0, 1048585, 4, 0, 1048586, 4, 0, 1048587, 4, 0, 1048588, 4, 0, 1048589, 4, 0, 1048590, 16, 0, 1048591, 4, 0, 1048592, 4, 0, 1048593, 4, 0, 1048594, 4, 0, 1048595, 4, 0, 1048596, 22, 0, 1048597, 4, 0, 1048598, 4, 0, 1048599, 4, 0, 1048600, 15, 0, 1048606, 3, 0, 1048611, 3, 0, 1048613, 3, 0, 1114116, 3, 0, 1114126, 3, 0, 1114136, 3, 0, 1114142, 3, 0, 1114147, 3, 0, 1114149, 3, 0, 1179652, 3, 0, 1179662, 3, 0, 1179672, 3, 0, 1179678, 3, 0, 1179683, 20, 0, 1179684, 4, 0, 1179685, 11, 0, 1245188, 10, 0, 1245189, 4, 0, 1245190, 4, 0, 1245191, 4, 0, 1245192, 4, 0, 1245193, 4, 0, 1245194, 4, 0, 1245195, 4, 0, 1245196, 4, 0, 1245197, 4, 0, 1245198, 23, 0, 1245199, 4, 0, 1245200, 4, 0, 1245201, 4, 0, 1245202, 4, 0, 1245203, 4, 0, 1245204, 4, 0, 1245205, 4, 0, 1245206, 4, 0, 1245207, 4, 0, 1245208, 23, 0, 1245209, 4, 0, 1245210, 4, 0, 1245211, 4, 0, 1245212, 4, 0, 1245213, 4, 0, 1245214, 23, 0, 1245215, 4, 0, 1245216, 4, 0, 1245217, 4, 0, 1245218, 4, 0, 1245219, 11, 0 )
 | 
				
			||||||
@@ -1244,6 +1245,17 @@ position = Vector2( 337.119, 100.387 )
 | 
				
			|||||||
[node name="GUI" parent="." instance=ExtResource( 33 )]
 | 
					[node name="GUI" parent="." instance=ExtResource( 33 )]
 | 
				
			||||||
margin_bottom = 80.0
 | 
					margin_bottom = 80.0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[node name="GameTime" type="Timer" parent="."]
 | 
				
			||||||
 | 
					wait_time = 45.0
 | 
				
			||||||
 | 
					autostart = true
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[node name="GUI2" parent="." instance=ExtResource( 41 )]
 | 
				
			||||||
 | 
					margin_left = -0.840881
 | 
				
			||||||
 | 
					margin_top = 640.763
 | 
				
			||||||
 | 
					margin_right = 1281.16
 | 
				
			||||||
 | 
					margin_bottom = 720.763
 | 
				
			||||||
 | 
					
 | 
				
			||||||
[connection signal="scored" from="Playa" to="." method="_on_Playa_scored"]
 | 
					[connection signal="scored" from="Playa" to="." method="_on_Playa_scored"]
 | 
				
			||||||
[connection signal="timeout" from="GuestTimer" to="." method="_on_GuestTimer_timeout"]
 | 
					[connection signal="timeout" from="GuestTimer" to="." method="_on_GuestTimer_timeout"]
 | 
				
			||||||
[connection signal="picked_up" from="Guests/Guest" to="." method="_on_Guest_picked_up"]
 | 
					[connection signal="picked_up" from="Guests/Guest" to="." method="_on_Guest_picked_up"]
 | 
				
			||||||
 | 
					[connection signal="timeout" from="GameTime" to="." method="_on_GameTime_timeout"]
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										
											BIN
										
									
								
								assets/ui/clock.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								assets/ui/clock.png
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							| 
		 After Width: | Height: | Size: 6.7 KiB  | 
							
								
								
									
										34
									
								
								assets/ui/clock.png.import
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										34
									
								
								assets/ui/clock.png.import
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,34 @@
 | 
				
			|||||||
 | 
					[remap]
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					importer="texture"
 | 
				
			||||||
 | 
					type="StreamTexture"
 | 
				
			||||||
 | 
					path="res://.import/clock.png-c96fd86cfd00f296da2f0b8771d30337.stex"
 | 
				
			||||||
 | 
					metadata={
 | 
				
			||||||
 | 
					"vram_texture": false
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[deps]
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					source_file="res://assets/ui/clock.png"
 | 
				
			||||||
 | 
					dest_files=[ "res://.import/clock.png-c96fd86cfd00f296da2f0b8771d30337.stex" ]
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[params]
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					compress/mode=0
 | 
				
			||||||
 | 
					compress/lossy_quality=0.7
 | 
				
			||||||
 | 
					compress/hdr_mode=0
 | 
				
			||||||
 | 
					compress/bptc_ldr=0
 | 
				
			||||||
 | 
					compress/normal_map=0
 | 
				
			||||||
 | 
					flags/repeat=0
 | 
				
			||||||
 | 
					flags/filter=true
 | 
				
			||||||
 | 
					flags/mipmaps=false
 | 
				
			||||||
 | 
					flags/anisotropic=false
 | 
				
			||||||
 | 
					flags/srgb=2
 | 
				
			||||||
 | 
					process/fix_alpha_border=true
 | 
				
			||||||
 | 
					process/premult_alpha=false
 | 
				
			||||||
 | 
					process/HDR_as_SRGB=false
 | 
				
			||||||
 | 
					process/invert_color=false
 | 
				
			||||||
 | 
					stream=false
 | 
				
			||||||
 | 
					size_limit=0
 | 
				
			||||||
 | 
					detect_3d=true
 | 
				
			||||||
 | 
					svg/scale=1.0
 | 
				
			||||||
		Reference in New Issue
	
	Block a user