diff options
| author | realtradam <[email protected]> | 2020-03-15 15:16:39 -0400 |
|---|---|---|
| committer | realtradam <[email protected]> | 2020-03-15 15:16:39 -0400 |
| commit | feb18d37762eb8f4414625175576f8fe9debd992 (patch) | |
| tree | cd7d7409f0cc67f846b33f4fb9d9a329ec207883 | |
| parent | c65f6805081e999fa231f71b231dba6dc05286ea (diff) | |
| download | optimal-direction-feb18d37762eb8f4414625175576f8fe9debd992.tar.gz optimal-direction-feb18d37762eb8f4414625175576f8fe9debd992.zip | |
refactoring complete close #4
36 files changed, 303 insertions, 546 deletions
diff --git a/Racing-Game/.import/biggerTest.png-91cb2ffe7b23923ed67ed7c66ada11b7.md5 b/Racing-Game/.import/biggerTest.png-91cb2ffe7b23923ed67ed7c66ada11b7.md5 index e754421..9f20e7c 100644 --- a/Racing-Game/.import/biggerTest.png-91cb2ffe7b23923ed67ed7c66ada11b7.md5 +++ b/Racing-Game/.import/biggerTest.png-91cb2ffe7b23923ed67ed7c66ada11b7.md5 @@ -1,3 +1,3 @@ -source_md5="479a607356b4fd015c499a9ca547a329" -dest_md5="5db1dd5db0bbdd06012c827bd693829b" +source_md5="c01ec4d3932fed52385433f9eb1b772a" +dest_md5="c126029e93429c80c8600405eb8c50d2" diff --git a/Racing-Game/.import/biggerTest.png-91cb2ffe7b23923ed67ed7c66ada11b7.stex b/Racing-Game/.import/biggerTest.png-91cb2ffe7b23923ed67ed7c66ada11b7.stex Binary files differindex 5e3d3fd..044f8c5 100644 --- a/Racing-Game/.import/biggerTest.png-91cb2ffe7b23923ed67ed7c66ada11b7.stex +++ b/Racing-Game/.import/biggerTest.png-91cb2ffe7b23923ed67ed7c66ada11b7.stex diff --git a/Racing-Game/.import/cone_straight.png-e76001e67856c989a73d18cee1067f5e.stex b/Racing-Game/.import/cone_straight.png-e76001e67856c989a73d18cee1067f5e.stex Binary files differdeleted file mode 100644 index 7831e38..0000000 --- a/Racing-Game/.import/cone_straight.png-e76001e67856c989a73d18cee1067f5e.stex +++ /dev/null diff --git a/Racing-Game/.import/digital_font_sheet.png-e7658b4e98f74a9f4927c4684cb3dbda.md5 b/Racing-Game/.import/digital_font_sheet.png-e7658b4e98f74a9f4927c4684cb3dbda.md5 new file mode 100644 index 0000000..84cdd52 --- /dev/null +++ b/Racing-Game/.import/digital_font_sheet.png-e7658b4e98f74a9f4927c4684cb3dbda.md5 @@ -0,0 +1,3 @@ +source_md5="cfbcc81102f59c5cbb2e7044946e34f7" +dest_md5="96a3a31b2b65502c007b00a0941f9eed" + diff --git a/Racing-Game/.import/sun_sedan_car_red_1.png-7b7f8945561c5c94feb559aa2ef705c3.stex b/Racing-Game/.import/sun_sedan_car_red_1.png-7b7f8945561c5c94feb559aa2ef705c3.stex Binary files differdeleted file mode 100644 index 8f80b70..0000000 --- a/Racing-Game/.import/sun_sedan_car_red_1.png-7b7f8945561c5c94feb559aa2ef705c3.stex +++ /dev/null diff --git a/Racing-Game/.import/test.png-2b0b935732229e5bd5e655f2644b2498.stex b/Racing-Game/.import/test.png-2b0b935732229e5bd5e655f2644b2498.stex Binary files differdeleted file mode 100644 index 03f54ec..0000000 --- a/Racing-Game/.import/test.png-2b0b935732229e5bd5e655f2644b2498.stex +++ /dev/null diff --git a/Racing-Game/.import/test.png-527ceaf852287f416271d08868b54be3.stex b/Racing-Game/.import/test.png-527ceaf852287f416271d08868b54be3.stex Binary files differdeleted file mode 100644 index 03f54ec..0000000 --- a/Racing-Game/.import/test.png-527ceaf852287f416271d08868b54be3.stex +++ /dev/null diff --git a/Racing-Game/4WheelCar/4WheelCar.tscn b/Racing-Game/4WheelCar/4WheelCar.tscn index 84b4549..958cc39 100644 --- a/Racing-Game/4WheelCar/4WheelCar.tscn +++ b/Racing-Game/4WheelCar/4WheelCar.tscn @@ -3,9 +3,10 @@ [ext_resource path="res://4WheelCar/CarBody.gd" type="Script" id=1] [ext_resource path="res://Art(non-orig)/PNG/Cars/big/blue/car_blue_2.png" type="Texture" id=2] [ext_resource path="res://4WheelCar/FrontWheel.gd" type="Script" id=3] -[ext_resource path="res://4WheelCar/SkidController.gd" type="Script" id=4] +[ext_resource path="res://4WheelCar/Skid/SkidController.gd" type="Script" id=4] [ext_resource path="res://4WheelCar/BackWheel.gd" type="Script" id=5] + [sub_resource type="RectangleShape2D" id=1] [sub_resource type="RectangleShape2D" id=2] diff --git a/Racing-Game/4WheelCar/FrontWheel.gd b/Racing-Game/4WheelCar/FrontWheel.gd index 280a8a3..d4e5af4 100644 --- a/Racing-Game/4WheelCar/FrontWheel.gd +++ b/Racing-Game/4WheelCar/FrontWheel.gd @@ -10,7 +10,7 @@ var velAngle var carAngle var delay = 0 -onready var skidObj = preload("res://4WheelCar/Skidmark.tscn") +onready var skidObj = preload("res://4WheelCar/Skid/Skidmark.tscn") var steerDamp = 1 diff --git a/Racing-Game/4WheelCar/FrontWheelSprite.gd b/Racing-Game/4WheelCar/FrontWheelSprite.gd deleted file mode 100644 index e0426d4..0000000 --- a/Racing-Game/4WheelCar/FrontWheelSprite.gd +++ /dev/null @@ -1,17 +0,0 @@ -extends Sprite - -# Declare member variables here. Examples: -# var a = 2 -# var b = "text" - -# Called when the node enters the scene tree for the first time. -func _ready(): - pass # Replace with function body. - -# Called every frame. 'delta' is the elapsed time since the previous frame. -func _process(delta): -# if Input.is_key_pressed(KEY_A): -# set_rotation(get_node("../../../../CarBody").get_rotation()-PI/4) -# if Input.is_key_pressed(KEY_D): -# set_rotation(get_node("../../../../CarBody").get_rotation()+PI/4) - pass diff --git a/Racing-Game/4WheelCar/RemoteTransform2D.gd b/Racing-Game/4WheelCar/RemoteTransform2D.gd deleted file mode 100644 index b18f706..0000000 --- a/Racing-Game/4WheelCar/RemoteTransform2D.gd +++ /dev/null @@ -1,16 +0,0 @@ -extends RemoteTransform2D - -# Declare member variables here. Examples: -# var a = 2 -# var b = "text" -var camera - -# Called when the node enters the scene tree for the first time. -func _ready(): - var camera = get_node("/root/World/Camera2D") - -# Called every frame. 'delta' is the elapsed time since the previous frame. -func _process(delta): - #camera.global_position = global_position - #camera.global_rotation = global_rotation; - pass diff --git a/Racing-Game/4WheelCar/BLLine.gd b/Racing-Game/4WheelCar/Skid/BLLine.gd index 042b034..042b034 100644 --- a/Racing-Game/4WheelCar/BLLine.gd +++ b/Racing-Game/4WheelCar/Skid/BLLine.gd diff --git a/Racing-Game/4WheelCar/BRLine.gd b/Racing-Game/4WheelCar/Skid/BRLine.gd index 16578e3..16578e3 100644 --- a/Racing-Game/4WheelCar/BRLine.gd +++ b/Racing-Game/4WheelCar/Skid/BRLine.gd diff --git a/Racing-Game/4WheelCar/FLLine.gd b/Racing-Game/4WheelCar/Skid/FLLine.gd index fffcf04..fffcf04 100644 --- a/Racing-Game/4WheelCar/FLLine.gd +++ b/Racing-Game/4WheelCar/Skid/FLLine.gd diff --git a/Racing-Game/4WheelCar/FRLine.gd b/Racing-Game/4WheelCar/Skid/FRLine.gd index e1fbc0f..e1fbc0f 100644 --- a/Racing-Game/4WheelCar/FRLine.gd +++ b/Racing-Game/4WheelCar/Skid/FRLine.gd diff --git a/Racing-Game/4WheelCar/SkidController.gd b/Racing-Game/4WheelCar/Skid/SkidController.gd index 745b195..b1d8233 100644 --- a/Racing-Game/4WheelCar/SkidController.gd +++ b/Racing-Game/4WheelCar/Skid/SkidController.gd @@ -11,7 +11,7 @@ var deleteme = 0; # Called when the node enters the scene tree for the first time. func _ready(): - skidFile = load("res://4WheelCar/Skidmark.tscn") + skidFile = load("res://4WheelCar/Skid/Skidmark.tscn") skidRecent = skidFile.instance() add_child(skidRecent) @@ -25,7 +25,7 @@ func _process(delta): # create new skidding child, and set skid to true skidSwitch = true - skidFile = load("res://4WheelCar/Skidmark.tscn") + skidFile = load("res://4WheelCar/Skid/Skidmark.tscn") skidRecent = skidFile.instance() add_child(skidRecent) #set to run diff --git a/Racing-Game/4WheelCar/Skidmark.tscn b/Racing-Game/4WheelCar/Skid/Skidmark.tscn index 46c5d40..17ecee0 100644 --- a/Racing-Game/4WheelCar/Skidmark.tscn +++ b/Racing-Game/4WheelCar/Skid/Skidmark.tscn @@ -1,11 +1,11 @@ [gd_scene load_steps=3 format=2] -[ext_resource path="res://Art(non-orig)/PNG/Objects/skidmark_short_1.png" type="Texture" id=1] -[ext_resource path="res://4WheelCar/Skidmarks.gd" type="Script" id=2] +[ext_resource path="res://4WheelCar/Skid/Skidmarks.gd" type="Script" id=1] +[ext_resource path="res://Art(non-orig)/PNG/Objects/skidmark_short_1.png" type="Texture" id=2] [node name="Skidmark" type="Line2D"] position = Vector2( -21.2326, -38.4176 ) default_color = Color( 0.4, 0.501961, 1, 1 ) -texture = ExtResource( 1 ) +texture = ExtResource( 2 ) texture_mode = 192263440 -script = ExtResource( 2 ) +script = ExtResource( 1 ) diff --git a/Racing-Game/4WheelCar/Skidmarks.gd b/Racing-Game/4WheelCar/Skid/Skidmarks.gd index 4c662b4..4c662b4 100644 --- a/Racing-Game/4WheelCar/Skidmarks.gd +++ b/Racing-Game/4WheelCar/Skid/Skidmarks.gd diff --git a/Racing-Game/Art(non-orig)/biggerTest.png b/Racing-Game/Art(non-orig)/biggerTest.png Binary files differindex 24b7ed5..470fc6a 100644 --- a/Racing-Game/Art(non-orig)/biggerTest.png +++ b/Racing-Game/Art(non-orig)/biggerTest.png diff --git a/Racing-Game/Art(non-orig)/test.png b/Racing-Game/Art(non-orig)/test.png Binary files differdeleted file mode 100644 index d5c1710..0000000 --- a/Racing-Game/Art(non-orig)/test.png +++ /dev/null diff --git a/Racing-Game/Art(non-orig)/test.png.import b/Racing-Game/Art(non-orig)/test.png.import deleted file mode 100644 index e446a1a..0000000 --- a/Racing-Game/Art(non-orig)/test.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="StreamTexture" -path="res://.import/test.png-527ceaf852287f416271d08868b54be3.stex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://Art(non-orig)/test.png" -dest_files=[ "res://.import/test.png-527ceaf852287f416271d08868b54be3.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 diff --git a/Racing-Game/Interface/Camera2D.tscn b/Racing-Game/Interface/Camera2D.tscn index 31a2ec2..21a0e87 100644 --- a/Racing-Game/Interface/Camera2D.tscn +++ b/Racing-Game/Interface/Camera2D.tscn @@ -4,9 +4,7 @@ [ext_resource path="res://Art(non-orig)/LCDMonoWinTT/LCDML___.TTF" type="DynamicFontData" id=2] [ext_resource path="res://Interface/RichTextLabel.gd" type="Script" id=3] - - -[sub_resource type="DynamicFont" id=9] +[sub_resource type="DynamicFont" id=1] size = 200 font_data = ExtResource( 2 ) @@ -15,8 +13,6 @@ position = Vector2( -895.896, -973.722 ) rotating = true current = true zoom = Vector2( 2, 2 ) -drag_margin_h_enabled = false -drag_margin_v_enabled = false drag_margin_left = 0.05 drag_margin_top = 0.05 drag_margin_right = 0.05 @@ -38,7 +34,7 @@ margin_left = 44.7994 margin_top = 34.9523 margin_right = 386.135 margin_bottom = 212.952 -custom_fonts/normal_font = SubResource( 9 ) +custom_fonts/normal_font = SubResource( 1 ) custom_colors/default_color = Color( 0.0784314, 1, 0, 1 ) text = "123" scroll_active = false diff --git a/Racing-Game/Interface/Interface.tscn b/Racing-Game/Interface/HUD.tscn index f5abbeb..2c66f00 100644 --- a/Racing-Game/Interface/Interface.tscn +++ b/Racing-Game/Interface/HUD.tscn @@ -14,6 +14,9 @@ font_data = ExtResource( 1 ) [node name="Interface" type="Control"] anchor_right = 1.0 anchor_bottom = 1.0 +__meta__ = { +"_edit_use_anchors_": false +} [node name="RichTextLabel" type="RichTextLabel" parent="."] modulate = Color( 0.290196, 1, 0, 1 ) diff --git a/Racing-Game/World.tscn b/Racing-Game/World.tscn index 9140f57..481bcee 100644 --- a/Racing-Game/World.tscn +++ b/Racing-Game/World.tscn @@ -1,11 +1,10 @@ [gd_scene load_steps=32 format=2] -[ext_resource path="res://biggerTest.png" type="Texture" id=1] +[ext_resource path="res://Art(non-orig)/biggerTest.png" type="Texture" id=1] [ext_resource path="res://4WheelCar/4WheelCar.tscn" type="PackedScene" id=2] [ext_resource path="res://Old/Small.gd" type="Script" id=3] +[ext_resource path="res://Art(non-orig)/PNG/Objects/cone_straight.png" type="Texture" id=4] [ext_resource path="res://Old/Big.gd" type="Script" id=5] -[ext_resource path="res://sun_sedan_car_red_1.png" type="Texture" id=6] -[ext_resource path="res://cone_straight.png" type="Texture" id=8] [ext_resource path="res://Obstacles/ ObstacleBarrier.gd" type="Script" id=9] [ext_resource path="res://Art(non-orig)/PNG/Objects/barrier_white.png" type="Texture" id=10] [ext_resource path="res://Art(non-orig)/PNG/Objects/barrier_red.png" type="Texture" id=11] @@ -17,21 +16,23 @@ [ext_resource path="res://Art(non-orig)/LCDMonoWinTT/LCDML___.TTF" type="DynamicFontData" id=17] [ext_resource path="res://Interface/RichTextLabel.gd" type="Script" id=18] [ext_resource path="res://Art(non-orig)/PNG/Objects/skidmark_short_2.png" type="Texture" id=19] -[ext_resource path="res://4WheelCar/BRLine.gd" type="Script" id=20] -[ext_resource path="res://4WheelCar/BLLine.gd" type="Script" id=21] +[ext_resource path="res://4WheelCar/Skid/BRLine.gd" type="Script" id=20] +[ext_resource path="res://4WheelCar/Skid/BLLine.gd" type="Script" id=21] [ext_resource path="res://Art(non-orig)/PNG/Objects/skidmark_short_1.png" type="Texture" id=22] -[ext_resource path="res://4WheelCar/FRLine.gd" type="Script" id=23] -[ext_resource path="res://4WheelCar/FLLine.gd" type="Script" id=24] +[ext_resource path="res://4WheelCar/Skid/FRLine.gd" type="Script" id=23] +[ext_resource path="res://4WheelCar/Skid/FLLine.gd" type="Script" id=24] [ext_resource path="res://Surfaces/Area2D.gd" type="Script" id=25] -[sub_resource type="StreamTexture" id=8] +[sub_resource type="StreamTexture" id=1] flags = 4 -load_path = "res://.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex" -[sub_resource type="RectangleShape2D" id=1] +[sub_resource type="StreamTexture" id=2] +flags = 4 + +[sub_resource type="RectangleShape2D" id=3] extents = Vector2( 32, 32 ) -[sub_resource type="GDScript" id=2] +[sub_resource type="GDScript" id=4] script/source = "extends RigidBody2D # Declare member variables here. Examples: @@ -49,20 +50,20 @@ func _ready(): " -[sub_resource type="RectangleShape2D" id=3] +[sub_resource type="RectangleShape2D" id=5] extents = Vector2( 22.4795, 22.3936 ) -[sub_resource type="RectangleShape2D" id=4] +[sub_resource type="RectangleShape2D" id=6] extents = Vector2( 104.998, 31.134 ) -[sub_resource type="CircleShape2D" id=5] +[sub_resource type="CircleShape2D" id=7] radius = 28.3155 -[sub_resource type="DynamicFont" id=6] +[sub_resource type="DynamicFont" id=8] size = 200 font_data = ExtResource( 17 ) -[sub_resource type="RectangleShape2D" id=7] +[sub_resource type="RectangleShape2D" id=9] extents = Vector2( 795.282, 251.806 ) [node name="World" type="Node"] @@ -94,7 +95,7 @@ __meta__ = { visible = false modulate = Color( 0.545098, 0.0627451, 0.0627451, 1 ) scale = Vector2( 0.8, 0.8 ) -texture = SubResource( 8 ) +texture = SubResource( 1 ) [node name="Big" type="RigidBody2D" parent="Cars/OldSimpleCar"] visible = false @@ -109,7 +110,7 @@ script = ExtResource( 5 ) visible = false position = Vector2( 32, 0 ) rotation = 1.5708 -texture = ExtResource( 6 ) +texture = SubResource( 2 ) __meta__ = { "_edit_group_": true } @@ -134,11 +135,11 @@ __meta__ = { [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/SolidOuterWalls/Wall27"] position = Vector2( 0, 10 ) scale = Vector2( 1, 85 ) -shape = SubResource( 1 ) +shape = SubResource( 3 ) [node name="Sprite" type="Sprite" parent=" Obstacles/SolidOuterWalls/Wall27"] scale = Vector2( 1, 85 ) -texture = SubResource( 8 ) +texture = SubResource( 1 ) __meta__ = { "_edit_group_": true } @@ -153,11 +154,11 @@ __meta__ = { [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/SolidOuterWalls/Wall28"] position = Vector2( 0, 10 ) scale = Vector2( 1, 85 ) -shape = SubResource( 1 ) +shape = SubResource( 3 ) [node name="Sprite" type="Sprite" parent=" Obstacles/SolidOuterWalls/Wall28"] scale = Vector2( 1, 85 ) -texture = SubResource( 8 ) +texture = SubResource( 1 ) __meta__ = { "_edit_group_": true } @@ -172,11 +173,11 @@ __meta__ = { [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/SolidOuterWalls/Wall29"] position = Vector2( 0, 10 ) scale = Vector2( 85, 1 ) -shape = SubResource( 1 ) +shape = SubResource( 3 ) [node name="Sprite" type="Sprite" parent=" Obstacles/SolidOuterWalls/Wall29"] scale = Vector2( 85, 1 ) -texture = SubResource( 8 ) +texture = SubResource( 1 ) __meta__ = { "_edit_group_": true } @@ -191,11 +192,11 @@ __meta__ = { [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/SolidOuterWalls/Wall30"] position = Vector2( 0, 10 ) scale = Vector2( 85, 1 ) -shape = SubResource( 1 ) +shape = SubResource( 3 ) [node name="Sprite" type="Sprite" parent=" Obstacles/SolidOuterWalls/Wall30"] scale = Vector2( 85, 1 ) -texture = SubResource( 8 ) +texture = SubResource( 1 ) __meta__ = { "_edit_group_": true } @@ -207,64 +208,64 @@ position = Vector2( 787.795, -1237.5 ) mass = 0.5 linear_damp = 1.5 angular_damp = 3.0 -script = SubResource( 2 ) +script = SubResource( 4 ) __meta__ = { "_edit_group_": true } [node name="Sprite" type="Sprite" parent=" Obstacles/Cones/Cone"] -texture = ExtResource( 8 ) +texture = ExtResource( 4 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Cones/Cone"] -shape = SubResource( 3 ) +shape = SubResource( 5 ) [node name="Cone2" type="RigidBody2D" parent=" Obstacles/Cones"] position = Vector2( 812.627, -1181.67 ) mass = 0.5 linear_damp = 1.5 angular_damp = 3.0 -script = SubResource( 2 ) +script = SubResource( 4 ) __meta__ = { "_edit_group_": true } [node name="Sprite" type="Sprite" parent=" Obstacles/Cones/Cone2"] -texture = ExtResource( 8 ) +texture = ExtResource( 4 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Cones/Cone2"] -shape = SubResource( 3 ) +shape = SubResource( 5 ) [node name="Cone3" type="RigidBody2D" parent=" Obstacles/Cones"] position = Vector2( 832, -1127.68 ) mass = 0.5 linear_damp = 1.5 angular_damp = 3.0 -script = SubResource( 2 ) +script = SubResource( 4 ) __meta__ = { "_edit_group_": true } [node name="Sprite" type="Sprite" parent=" Obstacles/Cones/Cone3"] -texture = ExtResource( 8 ) +texture = ExtResource( 4 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Cones/Cone3"] -shape = SubResource( 3 ) +shape = SubResource( 5 ) [node name="Cone4" type="RigidBody2D" parent=" Obstacles/Cones"] position = Vector2( 851.828, -1072.86 ) mass = 0.5 linear_damp = 1.5 angular_damp = 3.0 -script = SubResource( 2 ) +script = SubResource( 4 ) __meta__ = { "_edit_group_": true } [node name="Sprite" type="Sprite" parent=" Obstacles/Cones/Cone4"] -texture = ExtResource( 8 ) +texture = ExtResource( 4 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Cones/Cone4"] -shape = SubResource( 3 ) +shape = SubResource( 5 ) [node name="Walls" type="Node" parent=" Obstacles"] @@ -285,7 +286,7 @@ __meta__ = { } [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Walls/Wall"] -shape = SubResource( 4 ) +shape = SubResource( 6 ) __meta__ = { "_edit_group_": true } @@ -307,7 +308,7 @@ __meta__ = { } [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Walls/Wall12"] -shape = SubResource( 4 ) +shape = SubResource( 6 ) __meta__ = { "_edit_group_": true } @@ -329,7 +330,7 @@ __meta__ = { } [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Walls/Wall15"] -shape = SubResource( 4 ) +shape = SubResource( 6 ) __meta__ = { "_edit_group_": true } @@ -352,7 +353,7 @@ __meta__ = { } [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Walls/Wall18"] -shape = SubResource( 4 ) +shape = SubResource( 6 ) __meta__ = { "_edit_group_": true } @@ -375,7 +376,7 @@ __meta__ = { } [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Walls/Wall23"] -shape = SubResource( 4 ) +shape = SubResource( 6 ) __meta__ = { "_edit_group_": true } @@ -398,7 +399,7 @@ __meta__ = { } [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Walls/Wall25"] -shape = SubResource( 4 ) +shape = SubResource( 6 ) __meta__ = { "_edit_group_": true } @@ -421,7 +422,7 @@ __meta__ = { } [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Walls/Wall24"] -shape = SubResource( 4 ) +shape = SubResource( 6 ) __meta__ = { "_edit_group_": true } @@ -444,7 +445,7 @@ __meta__ = { } [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Walls/Wall28"] -shape = SubResource( 4 ) +shape = SubResource( 6 ) __meta__ = { "_edit_group_": true } @@ -467,7 +468,7 @@ __meta__ = { } [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Walls/Wall20"] -shape = SubResource( 4 ) +shape = SubResource( 6 ) __meta__ = { "_edit_group_": true } @@ -489,7 +490,7 @@ __meta__ = { } [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Walls/Wall8"] -shape = SubResource( 4 ) +shape = SubResource( 6 ) __meta__ = { "_edit_group_": true } @@ -511,7 +512,7 @@ __meta__ = { } [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Walls/Wall11"] -shape = SubResource( 4 ) +shape = SubResource( 6 ) __meta__ = { "_edit_group_": true } @@ -533,7 +534,7 @@ __meta__ = { } [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Walls/Wall2"] -shape = SubResource( 4 ) +shape = SubResource( 6 ) __meta__ = { "_edit_group_": true } @@ -555,7 +556,7 @@ __meta__ = { } [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Walls/Wall7"] -shape = SubResource( 4 ) +shape = SubResource( 6 ) __meta__ = { "_edit_group_": true } @@ -577,7 +578,7 @@ __meta__ = { } [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Walls/Wall10"] -shape = SubResource( 4 ) +shape = SubResource( 6 ) __meta__ = { "_edit_group_": true } @@ -599,7 +600,7 @@ __meta__ = { } [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Walls/Wall14"] -shape = SubResource( 4 ) +shape = SubResource( 6 ) __meta__ = { "_edit_group_": true } @@ -622,7 +623,7 @@ __meta__ = { } [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Walls/Wall17"] -shape = SubResource( 4 ) +shape = SubResource( 6 ) __meta__ = { "_edit_group_": true } @@ -645,7 +646,7 @@ __meta__ = { } [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Walls/Wall21"] -shape = SubResource( 4 ) +shape = SubResource( 6 ) __meta__ = { "_edit_group_": true } @@ -668,7 +669,7 @@ __meta__ = { } [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Walls/Wall27"] -shape = SubResource( 4 ) +shape = SubResource( 6 ) __meta__ = { "_edit_group_": true } @@ -691,7 +692,7 @@ __meta__ = { } [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Walls/Wall22"] -shape = SubResource( 4 ) +shape = SubResource( 6 ) __meta__ = { "_edit_group_": true } @@ -714,7 +715,7 @@ __meta__ = { } [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Walls/Wall26"] -shape = SubResource( 4 ) +shape = SubResource( 6 ) __meta__ = { "_edit_group_": true } @@ -737,7 +738,7 @@ __meta__ = { } [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Walls/Wall19"] -shape = SubResource( 4 ) +shape = SubResource( 6 ) __meta__ = { "_edit_group_": true } @@ -759,7 +760,7 @@ __meta__ = { } [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Walls/Wall6"] -shape = SubResource( 4 ) +shape = SubResource( 6 ) __meta__ = { "_edit_group_": true } @@ -781,7 +782,7 @@ __meta__ = { } [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Walls/Wall9"] -shape = SubResource( 4 ) +shape = SubResource( 6 ) __meta__ = { "_edit_group_": true } @@ -800,7 +801,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D85" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -529.853, -973.722 ) @@ -814,7 +815,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D85"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D37" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 1856.86, -2047.19 ) @@ -828,7 +829,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D37"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D102" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 3040.86, 1664.81 ) @@ -842,7 +843,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D102"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D211" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 128, 1557.48 ) @@ -856,7 +857,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D211"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D214" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 129, 1441.77 ) @@ -870,7 +871,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D214"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D220" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 12.9599, -978.241 ) @@ -884,7 +885,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D220"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D173" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 1884, 1344.81 ) @@ -898,7 +899,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D173"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D177" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 1952.78, 1472.81 ) @@ -912,7 +913,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D177"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D181" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 2080, 1473.63 ) @@ -926,7 +927,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D181"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D185" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 2208, 1474.44 ) @@ -940,7 +941,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D185"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D190" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 2336, 1475.26 ) @@ -954,7 +955,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D190"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D196" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 1884, 1216.81 ) @@ -968,7 +969,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D196"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D200" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 1884, 1089.63 ) @@ -982,7 +983,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D200"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D202" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 2108.69, -280.35 ) @@ -996,7 +997,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D202"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D206" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 1983.73, -282.622 ) @@ -1010,7 +1011,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D206"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D109" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 3040.86, 1901.09 ) @@ -1024,7 +1025,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D109"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D117" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 3040.86, 2141.66 ) @@ -1038,7 +1039,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D117"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D121" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 3042.29, 2382.23 ) @@ -1052,7 +1053,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D121"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D129" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -1917.71, 2467.72 ) @@ -1066,7 +1067,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D129"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D143" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -1915.42, 2108.83 ) @@ -1080,7 +1081,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D143"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D59" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 1859.61, -1567.19 ) @@ -1094,7 +1095,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D59"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D13" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -1184, -2175.19 ) @@ -1109,7 +1110,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D13"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D75" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -692.905, -2173.89 ) @@ -1124,7 +1125,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D75"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D18" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -532.109, -1211.54 ) @@ -1138,7 +1139,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D18"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D89" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -527.099, -737.208 ) @@ -1152,7 +1153,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D89"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D41" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 1859.61, -1810.67 ) @@ -1166,7 +1167,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D41"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D56" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 1862.37, -1330.67 ) @@ -1180,7 +1181,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D56"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D28" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -937.426, -2172.59 ) @@ -1195,7 +1196,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D28"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D67" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -446.331, -2171.3 ) @@ -1210,7 +1211,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D67"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D8" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -532.967, -1329.74 ) @@ -1224,7 +1225,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D8"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D90" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -530.71, -855.404 ) @@ -1238,7 +1239,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D90"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D42" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 1856, -1928.87 ) @@ -1252,7 +1253,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D42"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D99" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 3040, 1783.13 ) @@ -1266,7 +1267,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D99"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D106" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 3040, 2019.41 ) @@ -1280,7 +1281,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D106"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D120" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 3040, 2259.98 ) @@ -1294,7 +1295,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D120"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D134" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -1920, 2345.46 ) @@ -1308,7 +1309,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D134"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D147" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -1917.71, 1986.57 ) @@ -1322,7 +1323,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D147"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D155" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -1216, 1541.77 ) @@ -1336,7 +1337,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D155"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D160" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -1344, 1539.33 ) @@ -1350,7 +1351,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D160"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D162" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -1472, 1540.15 ) @@ -1364,7 +1365,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D162"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D166" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -1600, 1541.77 ) @@ -1378,7 +1379,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D166"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D124" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 3041.43, 2500.55 ) @@ -1392,7 +1393,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D124"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D132" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -1918.57, 2586.03 ) @@ -1406,7 +1407,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D132"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D145" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -1916.28, 2227.15 ) @@ -1420,7 +1421,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D145"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D53" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 1858.75, -1448.87 ) @@ -1434,7 +1435,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D53"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D14" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -1060.79, -2174.47 ) @@ -1449,7 +1450,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D14"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D77" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -569.696, -2173.18 ) @@ -1464,7 +1465,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D77"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D23" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -532.967, -1093.22 ) @@ -1478,7 +1479,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D23"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D87" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -527.956, -618.89 ) @@ -1492,7 +1493,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D87"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D39" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 1858.75, -1692.35 ) @@ -1506,7 +1507,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D39"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D61" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 1861.51, -1212.35 ) @@ -1520,7 +1521,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D61"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D26" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -815.51, -2173.17 ) @@ -1535,7 +1536,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D26"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D71" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -324.415, -2171.88 ) @@ -1550,7 +1551,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D71"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D4" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -469.698, -1391.38 ) @@ -1564,7 +1565,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D4"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D83" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -464.688, -918.681 ) @@ -1578,7 +1579,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D83"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D35" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 1919.27, -1990.52 ) @@ -1592,7 +1593,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D35"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D97" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 3103.27, 1721.48 ) @@ -1606,7 +1607,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D97"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D209" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 190.411, 1614.97 ) @@ -1620,7 +1621,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D209"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D213" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 191.411, 1498.44 ) @@ -1634,7 +1635,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D213"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D218" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 75.371, -921.571 ) @@ -1648,7 +1649,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D218"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D169" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 1946.41, 1401.48 ) @@ -1662,7 +1663,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D169"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D180" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 2015.19, 1529.48 ) @@ -1676,7 +1677,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D180"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D184" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 2142.41, 1530.3 ) @@ -1690,7 +1691,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D184"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D188" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 2270.41, 1531.11 ) @@ -1704,7 +1705,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D188"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D192" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 2398.41, 1531.93 ) @@ -1718,7 +1719,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D192"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D193" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 1946.41, 1273.48 ) @@ -1732,7 +1733,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D193"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D199" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 1946.41, 1146.3 ) @@ -1746,7 +1747,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D199"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D201" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 2171.1, -223.68 ) @@ -1760,7 +1761,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D201"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D208" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 2046.14, -225.952 ) @@ -1774,7 +1775,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D208"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D105" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 3103.27, 1957.76 ) @@ -1788,7 +1789,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D105"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D113" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 3103.27, 2198.33 ) @@ -1802,7 +1803,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D113"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D125" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 3104.7, 2438.9 ) @@ -1816,7 +1817,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D125"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D137" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -1855.3, 2524.39 ) @@ -1830,7 +1831,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D137"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D150" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -1853.01, 2165.5 ) @@ -1844,7 +1845,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D150"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D51" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 1922.02, -1510.52 ) @@ -1858,7 +1859,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D51"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D11" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -1120.73, -2118.52 ) @@ -1873,7 +1874,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D11"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D69" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -629.636, -2117.22 ) @@ -1888,7 +1889,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D69"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D20" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -466.944, -1154.87 ) @@ -1902,7 +1903,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D20"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D94" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -464.688, -680.539 ) @@ -1916,7 +1917,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D94"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D46" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 1922.02, -1754 ) @@ -1930,7 +1931,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D46"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D64" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 1924.78, -1274 ) @@ -1944,7 +1945,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D64"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D32" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -875.015, -2115.92 ) @@ -1959,7 +1960,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D32"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D80" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -383.92, -2114.63 ) @@ -1974,7 +1975,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D80"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D7" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -470.555, -1273.07 ) @@ -1988,7 +1989,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D7"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D95" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -469.156, -800.364 ) @@ -2002,7 +2003,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D95"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D47" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 1918.41, -1872.2 ) @@ -2016,7 +2017,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D47"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D103" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 3102.41, 1839.8 ) @@ -2030,7 +2031,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D103"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D108" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 3102.41, 2076.08 ) @@ -2044,7 +2045,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D108"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D116" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 3102.41, 2316.65 ) @@ -2058,7 +2059,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D116"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D133" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -1857.59, 2402.13 ) @@ -2072,7 +2073,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D133"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D146" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -1855.3, 2043.24 ) @@ -2086,7 +2087,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D146"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D156" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -1153.59, 1598.44 ) @@ -2100,7 +2101,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D156"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D157" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -1281.59, 1599.26 ) @@ -2114,7 +2115,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D157"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D161" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -1409.59, 1598.44 ) @@ -2128,7 +2129,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D161"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D168" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -1537.59, 1600.07 ) @@ -2142,7 +2143,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D168"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D171" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -1473.59, 1468.81 ) @@ -2156,7 +2157,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D171"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D175" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -1347.18, 1468.81 ) @@ -2170,7 +2171,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D175"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D123" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 3103.84, 2557.22 ) @@ -2184,7 +2185,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D123"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D139" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -1856.16, 2642.7 ) @@ -2198,7 +2199,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D139"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D152" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -1853.87, 2283.81 ) @@ -2212,7 +2213,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D152"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D62" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 1921.17, -1392.2 ) @@ -2226,7 +2227,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D62"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D15" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -997.522, -2117.8 ) @@ -2241,7 +2242,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D15"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D79" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -506.427, -2116.51 ) @@ -2256,7 +2257,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D79"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D24" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -467.802, -1037.37 ) @@ -2270,7 +2271,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D24"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D86" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -465.545, -562.221 ) @@ -2284,7 +2285,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D86"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D38" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 1921.17, -1635.68 ) @@ -2298,7 +2299,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D38"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D60" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 1923.92, -1155.68 ) @@ -2312,7 +2313,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D60"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D25" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -753.098, -2116.5 ) @@ -2327,7 +2328,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D25"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D65" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -262.003, -2115.21 ) @@ -2342,7 +2343,7 @@ __meta__ = { texture = ExtResource( 13 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D65"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D2" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -532.109, -1391.38 ) @@ -2356,7 +2357,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D2"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D81" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -529.853, -917.052 ) @@ -2370,7 +2371,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D81"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D33" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 1856.86, -1990.52 ) @@ -2384,7 +2385,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D33"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D101" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 3040.86, 1721.48 ) @@ -2398,7 +2399,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D101"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D210" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 128, 1614.97 ) @@ -2412,7 +2413,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D210"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D215" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 129, 1498.44 ) @@ -2426,7 +2427,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D215"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D219" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 12.9599, -921.571 ) @@ -2440,7 +2441,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D219"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D172" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 1884, 1401.48 ) @@ -2454,7 +2455,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D172"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D179" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 1952.78, 1529.48 ) @@ -2468,7 +2469,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D179"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D183" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 2080, 1530.3 ) @@ -2482,7 +2483,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D183"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D187" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 2208, 1531.11 ) @@ -2496,7 +2497,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D187"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D191" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 2336, 1531.93 ) @@ -2510,7 +2511,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D191"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D194" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 1884, 1273.48 ) @@ -2524,7 +2525,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D194"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D197" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 1884, 1146.3 ) @@ -2538,7 +2539,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D197"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D203" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 2108.69, -223.68 ) @@ -2552,7 +2553,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D203"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D207" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 1983.73, -225.952 ) @@ -2566,7 +2567,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D207"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D107" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 3040.86, 1957.76 ) @@ -2580,7 +2581,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D107"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D114" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 3040.86, 2198.33 ) @@ -2594,7 +2595,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D114"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D122" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 3042.29, 2438.9 ) @@ -2608,7 +2609,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D122"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D136" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -1917.71, 2524.39 ) @@ -2622,7 +2623,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D136"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D149" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -1915.42, 2165.5 ) @@ -2636,7 +2637,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D149"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D57" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 1859.61, -1510.52 ) @@ -2650,7 +2651,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D57"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D9" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -1183.14, -2118.52 ) @@ -2665,7 +2666,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D9"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D66" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -692.048, -2117.22 ) @@ -2680,7 +2681,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D66"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D19" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -532.109, -1154.87 ) @@ -2694,7 +2695,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D19"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D91" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -527.099, -680.539 ) @@ -2708,7 +2709,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D91"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D43" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 1859.61, -1754 ) @@ -2722,7 +2723,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D43"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D54" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 1862.37, -1274 ) @@ -2736,7 +2737,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D54"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D29" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -937.426, -2115.92 ) @@ -2751,7 +2752,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D29"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D73" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -446.331, -2114.63 ) @@ -2766,7 +2767,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D73"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D5" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -532.967, -1273.07 ) @@ -2780,7 +2781,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D5"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D84" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -530.71, -798.735 ) @@ -2794,7 +2795,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D84"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D36" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 1856, -1872.2 ) @@ -2808,7 +2809,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D36"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D98" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 3040, 1839.8 ) @@ -2822,7 +2823,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D98"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D111" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 3040, 2076.08 ) @@ -2836,7 +2837,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D111"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D119" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 3040, 2316.65 ) @@ -2850,7 +2851,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D119"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D135" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -1920, 2402.13 ) @@ -2864,7 +2865,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D135"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D148" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -1917.71, 2043.24 ) @@ -2878,7 +2879,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D148"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D153" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -1216, 1598.44 ) @@ -2892,7 +2893,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D153"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D159" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -1344, 1599.26 ) @@ -2906,7 +2907,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D159"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D163" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -1472, 1598.44 ) @@ -2920,7 +2921,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D163"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D167" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -1600, 1604.96 ) @@ -2934,7 +2935,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D167"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D170" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -1536, 1468.81 ) @@ -2948,7 +2949,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D170"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D174" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -1409.59, 1468.81 ) @@ -2962,7 +2963,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D174"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D126" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 3041.43, 2557.22 ) @@ -2976,7 +2977,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D126"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D140" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -1918.57, 2642.7 ) @@ -2990,7 +2991,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D140"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D151" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -1916.28, 2283.81 ) @@ -3004,7 +3005,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D151"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D52" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 1858.75, -1392.2 ) @@ -3018,7 +3019,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D52"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D12" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -1059.93, -2117.8 ) @@ -3033,7 +3034,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D12"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D70" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -568.839, -2116.51 ) @@ -3048,7 +3049,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D70"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D17" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -532.967, -1036.55 ) @@ -3062,7 +3063,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D17"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D93" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -527.956, -562.221 ) @@ -3076,7 +3077,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D93"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D45" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 1858.75, -1635.68 ) @@ -3090,7 +3091,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D45"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D49" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 1861.51, -1155.68 ) @@ -3104,7 +3105,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D49"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D31" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -815.51, -2116.5 ) @@ -3119,7 +3120,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D31"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D74" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -324.415, -2115.21 ) @@ -3134,7 +3135,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D74"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D3" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -469.698, -1448.87 ) @@ -3148,7 +3149,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D3"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D82" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -464.688, -975.351 ) @@ -3162,7 +3163,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D82"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D34" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 1919.27, -2048 ) @@ -3176,7 +3177,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D34"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D100" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 3103.27, 1664 ) @@ -3190,7 +3191,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D100"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D212" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 190.411, 1557.48 ) @@ -3204,7 +3205,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D212"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D216" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 191.411, 1440.96 ) @@ -3218,7 +3219,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D216"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D217" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 75.371, -979.055 ) @@ -3232,7 +3233,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D217"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D176" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 1946.41, 1344 ) @@ -3246,7 +3247,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D176"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D178" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 2015.19, 1472 ) @@ -3260,7 +3261,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D178"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D182" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 2142.41, 1472.81 ) @@ -3274,7 +3275,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D182"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D186" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 2270.41, 1473.63 ) @@ -3288,7 +3289,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D186"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D189" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 2398.41, 1474.44 ) @@ -3302,7 +3303,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D189"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D195" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 1946.41, 1216 ) @@ -3316,7 +3317,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D195"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D198" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 1946.41, 1088.81 ) @@ -3330,7 +3331,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D198"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D204" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 2171.1, -281.164 ) @@ -3344,7 +3345,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D204"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D205" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 2046.14, -283.436 ) @@ -3358,7 +3359,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D205"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D110" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 3103.27, 1900.28 ) @@ -3372,7 +3373,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D110"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D115" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 3103.27, 2140.85 ) @@ -3386,7 +3387,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D115"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D127" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 3104.7, 2381.42 ) @@ -3400,7 +3401,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D127"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D131" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -1855.3, 2466.9 ) @@ -3414,7 +3415,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D131"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D141" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -1853.01, 2108.01 ) @@ -3428,7 +3429,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D141"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D55" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 1922.02, -1568 ) @@ -3442,7 +3443,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D55"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D10" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -1121.59, -2176 ) @@ -3457,7 +3458,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D10"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D68" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -630.494, -2174.71 ) @@ -3472,7 +3473,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D68"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D21" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -466.944, -1212.35 ) @@ -3486,7 +3487,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D21"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D92" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -464.688, -739.652 ) @@ -3500,7 +3501,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D92"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D44" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 1922.02, -1811.49 ) @@ -3514,7 +3515,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D44"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D58" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 1924.78, -1331.49 ) @@ -3528,7 +3529,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D58"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D30" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -875.015, -2173.4 ) @@ -3543,7 +3544,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D30"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D76" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -383.92, -2172.11 ) @@ -3558,7 +3559,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D76"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D6" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -470.555, -1330.55 ) @@ -3572,7 +3573,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D6"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D96" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -469.156, -857.847 ) @@ -3586,7 +3587,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D96"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D48" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 1918.41, -1929.68 ) @@ -3600,7 +3601,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D48"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D104" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 3102.41, 1782.32 ) @@ -3614,7 +3615,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D104"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D112" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 3102.41, 2018.59 ) @@ -3628,7 +3629,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D112"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D118" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 3102.41, 2259.16 ) @@ -3642,7 +3643,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D118"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D138" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -1857.59, 2344.65 ) @@ -3656,7 +3657,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D138"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D142" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -1855.3, 1985.76 ) @@ -3670,7 +3671,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D142"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D154" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -1153.59, 1540.96 ) @@ -3684,7 +3685,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D154"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D158" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -1281.59, 1540.15 ) @@ -3698,7 +3699,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D158"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D164" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -1409.59, 1539.33 ) @@ -3712,7 +3713,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D164"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D165" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -1537.59, 1540.96 ) @@ -3726,7 +3727,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D165"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D128" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 3103.84, 2499.74 ) @@ -3740,7 +3741,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D128"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D130" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -1856.16, 2585.22 ) @@ -3754,7 +3755,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D130"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D144" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -1853.87, 2226.33 ) @@ -3768,7 +3769,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D144"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D63" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 1921.17, -1449.68 ) @@ -3782,7 +3783,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D63"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D16" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -997.522, -2175.29 ) @@ -3797,7 +3798,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D16"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D78" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -506.427, -2174 ) @@ -3812,7 +3813,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D78"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D22" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -467.802, -1094.85 ) @@ -3826,7 +3827,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D22"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D88" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -465.545, -619.705 ) @@ -3840,7 +3841,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D88"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D40" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 1921.17, -1693.17 ) @@ -3854,7 +3855,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D40"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D50" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( 1923.92, -1213.17 ) @@ -3868,7 +3869,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D50"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D27" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -753.098, -2173.98 ) @@ -3883,7 +3884,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D27"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="RigidBody2D72" type="RigidBody2D" parent=" Obstacles/Tires"] position = Vector2( -262.003, -2172.69 ) @@ -3898,7 +3899,7 @@ __meta__ = { texture = ExtResource( 14 ) [node name="CollisionShape2D" type="CollisionShape2D" parent=" Obstacles/Tires/RigidBody2D72"] -shape = SubResource( 5 ) +shape = SubResource( 7 ) [node name="SlowdownAreas" type="Node" parent="."] @@ -3941,7 +3942,7 @@ margin_left = 44.7994 margin_top = 34.9523 margin_right = 386.135 margin_bottom = 212.952 -custom_fonts/normal_font = SubResource( 6 ) +custom_fonts/normal_font = SubResource( 8 ) custom_colors/default_color = Color( 0.0784314, 1, 0, 1 ) text = "123" scroll_active = false @@ -3989,4 +3990,4 @@ script = ExtResource( 25 ) [node name="CollisionShape2D" type="CollisionShape2D" parent="Area2D"] position = Vector2( -627.433, 382.855 ) -shape = SubResource( 7 ) +shape = SubResource( 9 ) diff --git a/Racing-Game/biggerTest.png b/Racing-Game/biggerTest.png Binary files differdeleted file mode 100644 index 470fc6a..0000000 --- a/Racing-Game/biggerTest.png +++ /dev/null diff --git a/Racing-Game/biggerTest.png.import b/Racing-Game/biggerTest.png.import deleted file mode 100644 index 4a71da6..0000000 --- a/Racing-Game/biggerTest.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="StreamTexture" -path="res://.import/biggerTest.png-4dc5f259851a6a67caaeada5f6c4c5c4.stex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://biggerTest.png" -dest_files=[ "res://.import/biggerTest.png-4dc5f259851a6a67caaeada5f6c4c5c4.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 diff --git a/Racing-Game/cone_straight.png b/Racing-Game/cone_straight.png Binary files differdeleted file mode 100644 index 1bfd9bc..0000000 --- a/Racing-Game/cone_straight.png +++ /dev/null diff --git a/Racing-Game/cone_straight.png.import b/Racing-Game/cone_straight.png.import deleted file mode 100644 index cd47400..0000000 --- a/Racing-Game/cone_straight.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="StreamTexture" -path="res://.import/cone_straight.png-e76001e67856c989a73d18cee1067f5e.stex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://cone_straight.png" -dest_files=[ "res://.import/cone_straight.png-e76001e67856c989a73d18cee1067f5e.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 diff --git a/Racing-Game/digital.tsx b/Racing-Game/digital.tsx deleted file mode 100644 index 9922759..0000000 --- a/Racing-Game/digital.tsx +++ /dev/null @@ -1,5 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?>
-<tileset version="1.2" tiledversion="1.2.4" name="digital" tilewidth="16" tileheight="32" tilecount="285" columns="18">
- <grid orientation="orthogonal" width="100" height="100"/>
- <image source="../Platform Game Test/digital_font_sheet.png" width="288" height="384"/>
-</tileset>
diff --git a/Racing-Game/digital.xml b/Racing-Game/digital.xml deleted file mode 100644 index 9922759..0000000 --- a/Racing-Game/digital.xml +++ /dev/null @@ -1,5 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?>
-<tileset version="1.2" tiledversion="1.2.4" name="digital" tilewidth="16" tileheight="32" tilecount="285" columns="18">
- <grid orientation="orthogonal" width="100" height="100"/>
- <image source="../Platform Game Test/digital_font_sheet.png" width="288" height="384"/>
-</tileset>
diff --git a/Racing-Game/digital_font_sheet.png b/Racing-Game/digital_font_sheet.png Binary files differdeleted file mode 100644 index c03ad3a..0000000 --- a/Racing-Game/digital_font_sheet.png +++ /dev/null diff --git a/Racing-Game/digital_font_sheet.png.import b/Racing-Game/digital_font_sheet.png.import deleted file mode 100644 index cd7fea5..0000000 --- a/Racing-Game/digital_font_sheet.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="StreamTexture" -path="res://.import/digital_font_sheet.png-8db89fafd39e368b0c86a810df7bb61c.stex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://digital_font_sheet.png" -dest_files=[ "res://.import/digital_font_sheet.png-8db89fafd39e368b0c86a810df7bb61c.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 diff --git a/Racing-Game/sun_sedan_car_red_1.png b/Racing-Game/sun_sedan_car_red_1.png Binary files differdeleted file mode 100644 index e642793..0000000 --- a/Racing-Game/sun_sedan_car_red_1.png +++ /dev/null diff --git a/Racing-Game/sun_sedan_car_red_1.png.import b/Racing-Game/sun_sedan_car_red_1.png.import deleted file mode 100644 index b0ca6c0..0000000 --- a/Racing-Game/sun_sedan_car_red_1.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="StreamTexture" -path="res://.import/sun_sedan_car_red_1.png-7b7f8945561c5c94feb559aa2ef705c3.stex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://sun_sedan_car_red_1.png" -dest_files=[ "res://.import/sun_sedan_car_red_1.png-7b7f8945561c5c94feb559aa2ef705c3.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 diff --git a/Racing-Game/test.png b/Racing-Game/test.png Binary files differdeleted file mode 100644 index d5c1710..0000000 --- a/Racing-Game/test.png +++ /dev/null diff --git a/Racing-Game/test.png.import b/Racing-Game/test.png.import deleted file mode 100644 index 8802b6a..0000000 --- a/Racing-Game/test.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="StreamTexture" -path="res://.import/test.png-2b0b935732229e5bd5e655f2644b2498.stex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://test.png" -dest_files=[ "res://.import/test.png-2b0b935732229e5bd5e655f2644b2498.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 |
