deliver guests kinda works a bit

This commit is contained in:
mightypanders 2021-06-12 19:59:12 +02:00
parent 36b2292cba
commit 7db501c114
4 changed files with 41 additions and 39 deletions

View File

@ -2,7 +2,7 @@ extends RigidBody2D
onready var pickUpArea = $PickUpArea onready var pickUpArea = $PickUpArea
export var guestName = "Dieter" export var guestName = "Dieter"
export var PICKUPTRESHOLD = 80 export var PICKUPTRESHOLD = 100
export var destinationColor = Color.yellow export var destinationColor = Color.yellow
signal picked_up(color,name) signal picked_up(color,name)
signal dropped_off_success signal dropped_off_success

View File

@ -3,10 +3,10 @@
[ext_resource path="res://assets/placeholder_white.png" type="Texture" id=1] [ext_resource path="res://assets/placeholder_white.png" type="Texture" id=1]
[ext_resource path="res://Guest.gd" type="Script" id=2] [ext_resource path="res://Guest.gd" type="Script" id=2]
[sub_resource type="CircleShape2D" id=4] [sub_resource type="CircleShape2D" id=1]
radius = 124.702 radius = 124.702
[sub_resource type="CapsuleShape2D" id=3] [sub_resource type="CapsuleShape2D" id=2]
radius = 6.04475 radius = 6.04475
height = 3.32129 height = 3.32129
@ -27,19 +27,20 @@ __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( 4 ) shape = SubResource( 1 )
disabled = true
[node name="Sprite" type="Sprite" parent="."] [node name="Sprite" type="Sprite" parent="."]
texture = ExtResource( 1 ) texture = ExtResource( 1 )
[node name="CollisionShape2D" type="CollisionShape2D" parent="."] [node name="CollisionShape2D" type="CollisionShape2D" parent="."]
shape = SubResource( 3 ) shape = SubResource( 2 )
disabled = true disabled = true
[node name="PickUpArea" type="Area2D" parent="."] [node name="PickUpArea" type="Area2D" parent="."]
[node name="CollisionShape2D" type="CollisionShape2D" parent="PickUpArea"] [node name="CollisionShape2D" type="CollisionShape2D" parent="PickUpArea"]
shape = SubResource( 3 ) shape = SubResource( 2 )
[node name="Anchor" type="Position2D" parent="."] [node name="Anchor" type="Position2D" parent="."]

View File

@ -13,8 +13,8 @@ onready var guestListNode = $GuestList
var guests = [] var guests = []
func _ready(): func _ready():
last_in_line = $Anchor last_in_line = self
guests.append(last_in_line.get_parent()) guests.append(last_in_line)
pass # Replace with function body. pass # Replace with function body.
func add_Guest_to_Line(parent,guest): func add_Guest_to_Line(parent,guest):
@ -28,29 +28,30 @@ func add_Guest_to_Line(parent,guest):
springJoint.stiffness = 64 springJoint.stiffness = 64
springJoint.damping = 1.0 springJoint.damping = 1.0
springJoint.disable_collision =false springJoint.disable_collision =false
springJoint.node_a =parent.get_parent().get_path() springJoint.node_a =parent.get_path()
springJoint.node_b =guest.get_path() springJoint.node_b =guest.get_path()
springJoint.add_child(guest) springJoint.add_child(guest)
parent.add_child(springJoint) parent.add_child(springJoint)
var pua = guest.get_node("PickUpArea") var pua = guest.get_node("PickUpArea")
pua.monitoring = false
pua.monitorable = false pua.monitorable = false
var guestAnchor = guest.get_node("Anchor") var guestAnchor = guest.get_node("Anchor")
springJoint.rotation = -rotation #springJoint.rotation = -rotation
return guestAnchor return guestAnchor
func remove_Guests_from_Line(color): func remove_Guests_from_Line(color):
var colorPositions = [] var colormatches = []
for g in range(guests.size()): for g in range(guests.size()):
if guests[g]!= null:
if guests[g].destinationColor == color: if guests[g].destinationColor == color:
guests[g].queue_free() colormatches.append(guests[g])
colorPositions.append(g)
for i in colorPositions: for i in colormatches:
guests.remove(i) var pos = guests.find(i)
i.queue_free()
guests.remove(pos)
return guests.back() return guests.back()
func _on_PickupCheckArea_area_entered(area): func _on_PickupCheckArea_area_entered(area):

View File

@ -33,6 +33,9 @@
[ext_resource path="res://assets/city_tiles/streets/3-Wege 2.png" type="Texture" id=31] [ext_resource path="res://assets/city_tiles/streets/3-Wege 2.png" type="Texture" id=31]
[ext_resource path="res://assets/city_tiles/Bäume.png" type="Texture" id=32] [ext_resource path="res://assets/city_tiles/Bäume.png" type="Texture" id=32]
[sub_resource type="ConvexPolygonShape2D" id=1]
points = PoolVector2Array( 0, 0, 16, 0, 16, 16, 0, 16 )
[sub_resource type="ConvexPolygonShape2D" id=2] [sub_resource type="ConvexPolygonShape2D" id=2]
points = PoolVector2Array( 0, 0, 16, 0, 16, 16, 0, 16 ) points = PoolVector2Array( 0, 0, 16, 0, 16, 16, 0, 16 )
@ -66,10 +69,7 @@ points = PoolVector2Array( 0, 0, 16, 0, 16, 16, 0, 16 )
[sub_resource type="ConvexPolygonShape2D" id=12] [sub_resource type="ConvexPolygonShape2D" id=12]
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=13] [sub_resource type="TileSet" id=13]
points = PoolVector2Array( 0, 0, 16, 0, 16, 16, 0, 16 )
[sub_resource type="TileSet" id=14]
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 )
@ -87,80 +87,80 @@ points = PoolVector2Array( 0, 0, 16, 0, 16, 16, 0, 16 )
0/navigation_offset = Vector2( 0, 0 ) 0/navigation_offset = Vector2( 0, 0 )
0/shape_offset = Vector2( 0, 0 ) 0/shape_offset = Vector2( 0, 0 )
0/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 ) 0/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 )
0/shape = SubResource( 2 ) 0/shape = SubResource( 1 )
0/shape_one_way = false 0/shape_one_way = false
0/shape_one_way_margin = 1.0 0/shape_one_way_margin = 1.0
0/shapes = [ { 0/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( 2 ), "shape": SubResource( 1 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 ) "shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, { }, {
"autotile_coord": Vector2( 1, 0 ), "autotile_coord": Vector2( 1, 0 ),
"one_way": false, "one_way": false,
"one_way_margin": 1.0, "one_way_margin": 1.0,
"shape": SubResource( 3 ), "shape": SubResource( 2 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 ) "shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, { }, {
"autotile_coord": Vector2( 2, 0 ), "autotile_coord": Vector2( 2, 0 ),
"one_way": false, "one_way": false,
"one_way_margin": 1.0, "one_way_margin": 1.0,
"shape": SubResource( 4 ), "shape": SubResource( 3 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 ) "shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, { }, {
"autotile_coord": Vector2( 0, 1 ), "autotile_coord": Vector2( 0, 1 ),
"one_way": false, "one_way": false,
"one_way_margin": 1.0, "one_way_margin": 1.0,
"shape": SubResource( 5 ), "shape": SubResource( 4 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 ) "shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, { }, {
"autotile_coord": Vector2( 1, 1 ), "autotile_coord": Vector2( 1, 1 ),
"one_way": false, "one_way": false,
"one_way_margin": 1.0, "one_way_margin": 1.0,
"shape": SubResource( 6 ), "shape": SubResource( 5 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 ) "shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, { }, {
"autotile_coord": Vector2( 2, 2 ), "autotile_coord": Vector2( 2, 2 ),
"one_way": false, "one_way": false,
"one_way_margin": 1.0, "one_way_margin": 1.0,
"shape": SubResource( 7 ), "shape": SubResource( 6 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 ) "shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, { }, {
"autotile_coord": Vector2( 2, 1 ), "autotile_coord": Vector2( 2, 1 ),
"one_way": false, "one_way": false,
"one_way_margin": 1.0, "one_way_margin": 1.0,
"shape": SubResource( 8 ), "shape": SubResource( 7 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 ) "shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, { }, {
"autotile_coord": Vector2( 0, 2 ), "autotile_coord": Vector2( 0, 2 ),
"one_way": false, "one_way": false,
"one_way_margin": 1.0, "one_way_margin": 1.0,
"shape": SubResource( 9 ), "shape": SubResource( 8 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 ) "shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, { }, {
"autotile_coord": Vector2( 1, 2 ), "autotile_coord": Vector2( 1, 2 ),
"one_way": false, "one_way": false,
"one_way_margin": 1.0, "one_way_margin": 1.0,
"shape": SubResource( 10 ), "shape": SubResource( 9 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 ) "shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, { }, {
"autotile_coord": Vector2( 0, 3 ), "autotile_coord": Vector2( 0, 3 ),
"one_way": false, "one_way": false,
"one_way_margin": 1.0, "one_way_margin": 1.0,
"shape": SubResource( 11 ), "shape": SubResource( 10 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 ) "shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, { }, {
"autotile_coord": Vector2( 1, 3 ), "autotile_coord": Vector2( 1, 3 ),
"one_way": false, "one_way": false,
"one_way_margin": 1.0, "one_way_margin": 1.0,
"shape": SubResource( 12 ), "shape": SubResource( 11 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 ) "shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
}, { }, {
"autotile_coord": Vector2( 2, 3 ), "autotile_coord": Vector2( 2, 3 ),
"one_way": false, "one_way": false,
"one_way_margin": 1.0, "one_way_margin": 1.0,
"shape": SubResource( 13 ), "shape": SubResource( 12 ),
"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 ) "shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 )
} ] } ]
0/z_index = 0 0/z_index = 0
@ -179,7 +179,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=15] [sub_resource type="TileSet" id=14]
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 )
@ -225,7 +225,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=1] [sub_resource type="TileSet" id=15]
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 )
@ -640,7 +640,7 @@ __meta__ = {
} }
[node name="TileMap" type="TileMap" parent="."] [node name="TileMap" type="TileMap" parent="."]
tile_set = SubResource( 14 ) tile_set = SubResource( 13 )
cell_size = Vector2( 16, 16 ) cell_size = Vector2( 16, 16 )
show_collision = true show_collision = true
collision_bounce = 1.0 collision_bounce = 1.0
@ -651,7 +651,7 @@ __meta__ = {
} }
[node name="curbs" type="TileMap" parent="."] [node name="curbs" type="TileMap" parent="."]
tile_set = SubResource( 15 ) tile_set = SubResource( 14 )
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, 524325, 1, 65541, 524328, 1, 196609, 524335, 1, 65541, 524338, 1, 65537, 524345, 1, 65541, 589834, 1, 65537, 589861, 1, 65541, 589864, 1, 196609, 589871, 1, 65541, 589874, 1, 65537, 589881, 1, 65541, 655370, 1, 65537, 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, 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, 786461, 1, 65541, 786472, 1, 196609, 786479, 1, 65541, 786488, 1, 196613, 786507, 1, 65541, 851978, 1, 65537, 851997, 1, 65541, 852008, 1, 196609, 852015, 1, 65541, 852024, 1, 65539, 852043, 1, 65541, 917514, 1, 65537, 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, 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, 524325, 1, 65541, 524328, 1, 196609, 524335, 1, 65541, 524338, 1, 65537, 524345, 1, 65541, 589834, 1, 65537, 589861, 1, 65541, 589864, 1, 196609, 589871, 1, 65541, 589874, 1, 65537, 589881, 1, 65541, 655370, 1, 65537, 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, 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, 786461, 1, 65541, 786472, 1, 196609, 786479, 1, 65541, 786488, 1, 196613, 786507, 1, 65541, 851978, 1, 65537, 851997, 1, 65541, 852008, 1, 196609, 852015, 1, 65541, 852024, 1, 65539, 852043, 1, 65541, 917514, 1, 65537, 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, 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 )
@ -660,7 +660,7 @@ __meta__ = {
} }
[node name="Streets" type="TileMap" parent="."] [node name="Streets" type="TileMap" parent="."]
tile_set = SubResource( 1 ) tile_set = SubResource( 15 )
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 )