diff --git a/AllCapsEntry.gd b/AllCapsEntry.gd new file mode 100644 index 0000000..c2edea3 --- /dev/null +++ b/AllCapsEntry.gd @@ -0,0 +1,13 @@ +extends LineEdit + +func _ready() -> void: + text_changed.connect(_on_text_changed) + text_submitted.connect(_on_text_submitted) + +func _on_text_changed(new_text : String) -> void: + var caret_pos = caret_column + text = new_text.to_upper().replace(" ", "") + caret_column = caret_pos + +func _on_text_submitted(new_text : String) -> void: + release_focus() diff --git a/BackgroundSelector.gd b/BackgroundSelector.gd new file mode 100644 index 0000000..0775f5c --- /dev/null +++ b/BackgroundSelector.gd @@ -0,0 +1,29 @@ +extends OptionButton + +func _ready() -> void: + update_background_list() + +func update_background_list() -> void: + clear() + var i : int = 0 + for file in DirAccess.get_files_at("res://Backgrounds"): + if file.ends_with(".png"): + add_item(file.left(-4), i) + set_item_metadata(i, "res://Backgrounds/%s" % file) + i += 1 + for file in DirAccess.get_files_at("user://Backgrounds"): + if file.ends_with(".png"): + add_item(file.left(-4), i) + set_item_metadata(i, "user://Backgrounds/%s" % file) + i += 1 + +func select_by_name(name : String) -> void: + for i in item_count: + if get_item_text(i) == name: + selected = i + +func get_selected_filename() -> String: + return get_item_metadata(selected) + +func get_selected_text() -> String: + return get_item_text(selected) diff --git a/Backgrounds/BlueSlash.png b/Backgrounds/BlueSlash.png new file mode 100644 index 0000000..350f486 Binary files /dev/null and b/Backgrounds/BlueSlash.png differ diff --git a/Backgrounds/BlueSlash.png.import b/Backgrounds/BlueSlash.png.import new file mode 100644 index 0000000..8713052 --- /dev/null +++ b/Backgrounds/BlueSlash.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://3r13ufv5sq3w" +path="res://.godot/imported/BlueSlash.png-b043db7a6beee50529c61e02eea87f62.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Backgrounds/BlueSlash.png" +dest_files=["res://.godot/imported/BlueSlash.png-b043db7a6beee50529c61e02eea87f62.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/Backgrounds/RedBoxes.png b/Backgrounds/RedBoxes.png new file mode 100644 index 0000000..5853c3f Binary files /dev/null and b/Backgrounds/RedBoxes.png differ diff --git a/Backgrounds/RedBoxes.png.import b/Backgrounds/RedBoxes.png.import new file mode 100644 index 0000000..f350ea3 --- /dev/null +++ b/Backgrounds/RedBoxes.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://briorms3qq7mh" +path="res://.godot/imported/RedBoxes.png-8607ec446d3d18810384ce2e953df6ab.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Backgrounds/RedBoxes.png" +dest_files=["res://.godot/imported/RedBoxes.png-8607ec446d3d18810384ce2e953df6ab.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/Ball/Ball.gd b/Ball/Ball.gd index 454e497..a93e358 100644 --- a/Ball/Ball.gd +++ b/Ball/Ball.gd @@ -1,6 +1,7 @@ extends RigidBody2D -const MIN_SPEED = 100.0 +const MIN_SPEED = 50.0 +const MAX_SPEED = 500.0 signal hit_brick(ball : Node, brick : Node) signal hit_paddle(ball : Node) @@ -10,9 +11,11 @@ signal hit_wall(ball : Node) var captured : bool = false var capture_object : Node2D var capture_offset : Vector2 = Vector2.ZERO + +var speed : float = 100 func _physics_process(delta: float) -> void: - angular_velocity = 0 +# angular_velocity = 0 rotation = 0 if captured: PhysicsServer2D.body_set_state( @@ -23,39 +26,13 @@ func _physics_process(delta: float) -> void: linear_velocity = Vector2.ZERO angular_velocity = 0 else: - if linear_velocity.length() < MIN_SPEED: - linear_damp = 0 - linear_velocity = linear_velocity.normalized() * MIN_SPEED + if linear_velocity.length() != speed: + linear_velocity = linear_velocity.normalized() * speed + + func _on_body_entered(body: Node) -> void: - if body is Brick: - if not body.visible: - return - #linear_velocity = (linear_velocity.normalized() + (Vector2(randf() - 0.5, randf() - 0.5) / 2.0)).normalized() * linear_velocity.length() - $BrickSound.play() - body.hit() - hit_brick.emit(self, body) - return - if body is Paddle: - var diff = (position.x - body.position.x) / (body.width/2) - linear_velocity = (Vector2(diff, -1).normalized()) * linear_velocity.length() - $PaddleSound.play() - body.hit() - hit_paddle.emit(self) - return - if body is Wall: - if abs(linear_velocity.y) < 0.01: - linear_velocity.y = randf() * 10.0 - elif abs(linear_velocity.y) < 1: - linear_velocity.y *= 10.0 - #linear_velocity = (linear_velocity.normalized() + (Vector2(randf() - 0.5, randf() - 0.5) / 5.0)).normalized() * linear_velocity.length() - $WallSound.play() - hit_wall.emit(self) - return - if body is Floor: - #$FloorSound.play() - hit_floor.emit(self) - return + pass func capture(ob : Node2D, offset : Vector2 = Vector2.ZERO) -> void: captured = true @@ -65,7 +42,40 @@ func capture(ob : Node2D, offset : Vector2 = Vector2.ZERO) -> void: func release() -> void: global_position = capture_object.global_position - capture_offset var diff = (global_position.x - capture_object.global_position.x) / (capture_object.width/2) - linear_velocity = Vector2(diff, -1).normalized() * 100 +# linear_velocity = Vector2(diff, -1).normalized() * 100 + apply_central_impulse(Vector2(diff, -1).normalized() * 1) captured = false capture_object = null + + +func _on_body_exited(body: Node) -> void: + if body is Brick: + if not body.visible: + return + $BrickSound.play() + body.hit() + hit_brick.emit(self, body) + speed += 1 + return + if body is Paddle: + var diff = (position.x - body.position.x) / (body.width/2) + linear_velocity = (Vector2(diff, -1).normalized()) * speed + $PaddleSound.play() + body.hit() + hit_paddle.emit(self) + return + if body is Wall: + if abs(linear_velocity.y) < 0.01: + linear_velocity.y = randf() * 10.0 + elif abs(linear_velocity.y) < 1: + linear_velocity.y *= 10.0 + $WallSound.play() + hit_wall.emit(self) + return + if body is Floor: + hit_floor.emit(self) + return + +func slowdown() -> void: + speed = 100 diff --git a/Ball/Ball.tscn b/Ball/Ball.tscn index c19bfbd..9b4acdc 100644 --- a/Ball/Ball.tscn +++ b/Ball/Ball.tscn @@ -1,23 +1,21 @@ [gd_scene load_steps=8 format=3 uid="uid://clfo2nrropg8y"] [ext_resource type="Script" path="res://Ball/Ball.gd" id="1_2xu4j"] +[ext_resource type="PhysicsMaterial" uid="uid://cql6t5hd40fgn" path="res://CorePhysics.tres" id="1_vk3rj"] [ext_resource type="Texture2D" uid="uid://wye1kea3ts48" path="res://Ball/Ball.png" id="2_cpnep"] [ext_resource type="AudioStream" uid="uid://7kjt62y3t8lc" path="res://Sounds/WallHit.wav" id="3_bwkax"] [ext_resource type="AudioStream" uid="uid://b6vosap1la1ts" path="res://Sounds/BrickHit.wav" id="4_ly8mo"] [ext_resource type="AudioStream" uid="uid://d3g30x1n2ncjj" path="res://Sounds/PaddleHit.wav" id="5_f8nt3"] -[sub_resource type="PhysicsMaterial" id="PhysicsMaterial_tqihs"] -rough = true -bounce = 1.0 - [sub_resource type="CircleShape2D" id="CircleShape2D_nwcsc"] radius = 3.0 [node name="Ball" type="RigidBody2D"] collision_layer = 0 -physics_material_override = SubResource("PhysicsMaterial_tqihs") +mass = 0.01 +physics_material_override = ExtResource("1_vk3rj") gravity_scale = 0.0 -continuous_cd = 1 +continuous_cd = 2 max_contacts_reported = 5 contact_monitor = true script = ExtResource("1_2xu4j") @@ -49,3 +47,4 @@ max_polyphony = 5 stream = ExtResource("5_f8nt3") [connection signal="body_entered" from="." to="." method="_on_body_entered"] +[connection signal="body_exited" from="." to="." method="_on_body_exited"] diff --git a/Brick/BlankBrick.png b/Brick/BlankBrick.png new file mode 100644 index 0000000..03b6c76 Binary files /dev/null and b/Brick/BlankBrick.png differ diff --git a/Brick/BlankBrick.png.import b/Brick/BlankBrick.png.import new file mode 100644 index 0000000..75885fe --- /dev/null +++ b/Brick/BlankBrick.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cvqjlacpxf5j8" +path="res://.godot/imported/BlankBrick.png-437494e4b1c26cf61ba26e02c818b979.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Brick/BlankBrick.png" +dest_files=["res://.godot/imported/BlankBrick.png-437494e4b1c26cf61ba26e02c818b979.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/Brick/Brick.gd b/Brick/Brick.gd index 64dbb3e..5878e04 100644 --- a/Brick/Brick.gd +++ b/Brick/Brick.gd @@ -3,7 +3,8 @@ class_name Brick enum { NORMAL, - SHINY, + SILVER, + GOLD, INVULNERABLE } @@ -32,8 +33,8 @@ func hit() -> void: get_tree().create_timer(5).timeout.connect(_show_block) return brick_destroyed.emit(self) - get_parent().remove_child(self) - queue_free() + get_parent().call_deferred("remove_child", self) + call_deferred("queue_free") else: var tween = create_tween() $TextureRect.modulate = Color(1, 1, 1) @@ -56,11 +57,16 @@ func type(base : int, color : Color) -> void: $TextureRect.modulate = color hits = 1 value = 100 - SHINY: + SILVER: $TextureRect.texture = load("res://Brick/ShinyBrick.png") $TextureRect.modulate = color hits = 2 value = 200 + GOLD: + $TextureRect.texture = load("res://Brick/ShinyBrick.png") + $TextureRect.modulate = color + hits = 3 + value = 500 INVULNERABLE: $TextureRect.texture = load("res://Brick/InvulBrick.png") $TextureRect.modulate = color diff --git a/Brick/Brick.tscn b/Brick/Brick.tscn index 8671b32..7559e3c 100644 --- a/Brick/Brick.tscn +++ b/Brick/Brick.tscn @@ -1,19 +1,15 @@ [gd_scene load_steps=5 format=3 uid="uid://wld2y5cseki8"] [ext_resource type="Script" path="res://Brick/Brick.gd" id="1_eylhu"] +[ext_resource type="PhysicsMaterial" uid="uid://cql6t5hd40fgn" path="res://CorePhysics.tres" id="1_it5u2"] [ext_resource type="Texture2D" uid="uid://cipjurqgguse7" path="res://Brick/BaseBrick.png" id="2_v230s"] -[sub_resource type="PhysicsMaterial" id="PhysicsMaterial_s6ufd"] -rough = true -bounce = 10.0 - [sub_resource type="RectangleShape2D" id="RectangleShape2D_xxkpg"] size = Vector2(32, 16) [node name="Brick" type="StaticBody2D"] input_pickable = true -physics_material_override = SubResource("PhysicsMaterial_s6ufd") -constant_linear_velocity = Vector2(0, 50) +physics_material_override = ExtResource("1_it5u2") script = ExtResource("1_eylhu") [node name="Shadow" type="ColorRect" parent="."] diff --git a/Brick/ShinyBrick.png b/Brick/ShinyBrick.png index 4d864d3..885fe2e 100644 Binary files a/Brick/ShinyBrick.png and b/Brick/ShinyBrick.png differ diff --git a/CorePhysics.tres b/CorePhysics.tres new file mode 100644 index 0000000..06a637c --- /dev/null +++ b/CorePhysics.tres @@ -0,0 +1,5 @@ +[gd_resource type="PhysicsMaterial" format=3 uid="uid://cql6t5hd40fgn"] + +[resource] +friction = 0.0 +bounce = 0.5 diff --git a/Dunkanoid.gd b/Dunkanoid.gd index a03d40d..3f91fa2 100644 --- a/Dunkanoid.gd +++ b/Dunkanoid.gd @@ -15,87 +15,9 @@ enum { } var mode = MODE_WAIT - +var round : int = 0 signal update_lives -const levels = { - "TEST": { - "data": [ - " ", - " ", - " R ", - ], - "left": "RAINBOW", - "right": "SATERRANOID", - "round": 1 - }, - "DUNKANOID": { - "data": [ - " ", - " ", - "sssssssssssss", - "YYYBYYsCCRCCC", - "YYBBYYsCCRRCC", - "YBBBBBsRRRRRC", - "BBBBBBsRRRRRR", - "YBBBBBsRRRRRC", - "YYBBYYsCCRRCC", - "YYYBYYsCCRCCC", - "ssisssssssiss" - ], - "left": "RAINBOW", - "right": "SATERRANOID", - "round": 1 - }, - "RAINBOW": { - "data": [ - " ", - " ", - " RRRRR ", - " RRRRRRR ", - " RROOOOORR ", - " RROOOOORR ", - " RROOYYYOORR ", - " ROOYBBBYOOR ", - " ROYBBBBBYOR ", - "RROYB BYORR", - "ROYBg gBYOR", - "ROYB BYOR", - "ROYB BYOR", - "ROYB BYOR", - "ROYB BYOR", - "ROYB BYOR", - "sssss s sssss" - ], - "left": "DUNKANOID", - "right": "DUNKANOID", - "round": 2 - }, - "SATERRANOID": { - "data": [ - " ", - " ", - "WWOOCCgGGRRBB", - "WWOOCCgGGRRBB", - "OOCCGGgRRBBMM", - "OOCCGGgRRBBMM", - "CCGGRRgBBMMYY", - "CCGGRRgBBMMYY", - "GGRRBBgMMYYWW", - "GGRRBBgMMYYWW", - "RRBBMMgYYWWOO", - "RRBBMMgYYWWOO", - "BBMMYYgWWOOCC", - "BBMMYYgWWOOCC", - "MMYYWWgOOCCGG", - "MMYYWWgOOCCGG" - ], - "left": "DUNKANOID", - "right": "DUNKANOID", - "round": 2 - } -} - var capture_mode : bool = false var lives : int = 3 : set(x): @@ -104,25 +26,35 @@ var lives : int = 3 : var level : String = "DUNKANOID" +var level_data : Dictionary = {} + var leave_direction : int = 0 +var paused : bool = false + func _ready() -> void: Input.set_mouse_mode(Input.MOUSE_MODE_CONFINED_HIDDEN) EventBus.update_score.connect(_on_update_score) new_level() func _process(delta : float) -> void: + + if OS.has_feature("editor"): + if Input.is_action_just_pressed("cheat"): + for i in 10: + add_ball() + if mode == MODE_EXIT: - if $Paddle.global_position.x == 32: - level = levels[level].left + if $Paddle.global_position.x - ($Paddle.width / 2) <= 20: + level = level_data.left leave(-1) - if $Paddle.global_position.x == 416: - level = levels[level].right + if $Paddle.global_position.x + ($Paddle.width / 2) >= 412: + level = level_data.right leave(+1) if mode == MODE_LEAVE: $Paddle.global_position.x += (delta * leave_direction * 20.0) - if $Paddle.global_position.x < -16 or $Paddle.global_position.x > 448: + if $Paddle.global_position.x < -16 or $Paddle.global_position.x > 428: if not $Sounds/RoundWon.playing: new_level() @@ -132,6 +64,7 @@ func leave(dir : int) -> void: leave_direction = dir func new_level() -> void: + $Paddle.normal() mode = MODE_WAIT $Exits.visible = false for ball in balls: @@ -142,10 +75,13 @@ func new_level() -> void: remove_child(brick) brick.queue_free() bricks.clear() - + round += 1 + level_data = load_level_from_disk(level) + $Start/Title.text = level - $Start/Round.text = "ROUND %3d" % [levels[level].round] - load_level(levels[level].data) + $Start/Round.text = "ROUND %3d" % [round] + $Background.texture = load("res://Backgrounds/%s.png" % level_data.background) + load_level(level_data.data) var ball = _Ball.instantiate() ball.capture($Paddle, Vector2((randf() * 32) - 16, 8)) ball.hit_paddle.connect(_on_hit_paddle) @@ -163,13 +99,17 @@ func _brick_destroyed(brick) -> void: var upgrade = _Upgrade.instantiate() upgrade.position = brick.position upgrade.upgrade_collected.connect(_on_upgrade_collected) - match randi() % 3: + match randi() % 5: 0: upgrade.set_upgrade("C", Color.BLUE) 1: upgrade.set_upgrade("T", Color.GREEN) 2: - upgrade.set_upgrade("X", Color.RED) + upgrade.set_upgrade("S", Color.CYAN) + 3: + upgrade.set_upgrade("E", Color.DARK_SEA_GREEN) + 4: + upgrade.set_upgrade("R", Color.LIGHT_CORAL) add_child(upgrade) bricks.erase(brick) var brick_count = 0 @@ -194,9 +134,11 @@ func _brick_destroyed(brick) -> void: func _input(event: InputEvent) -> void: + if paused: + return if event is InputEventMouseMotion: if mode != MODE_LEAVE: - $Paddle.position = Vector2(min(max(32, event.position.x), 432-16), 340) + $Paddle.position = Vector2(min(max(16 + $Paddle.width/2, event.position.x), 432-$Paddle.width/2), 340) if event is InputEventMouseButton: if mode != MODE_PLAY: return @@ -251,19 +193,24 @@ func _on_upgrade_collected(code : String) -> void: "T": add_ball() add_ball() - "X": - for i in 10: - add_ball() + "S": + for ball in balls: + ball.slowdown() + "E": + $Paddle.big() + "R": + $Paddle.small() func add_ball() -> void: if balls.size() == 0: return var newball = _Ball.instantiate() newball.position = balls[0].position - newball.linear_velocity = (balls[0].linear_velocity - Vector2((randf() - 0.5) * 100 , 0)).normalized() * balls[0].linear_velocity.length() + newball.linear_velocity = (balls[0].linear_velocity - Vector2((randf() - 0.5) * 180 , 0)).normalized() * balls[0].linear_velocity.length() newball.angular_velocity = 0 newball.hit_paddle.connect(_on_hit_paddle) newball.hit_floor.connect(_on_hit_floor) + newball.speed = balls[0].speed if balls[0].captured: newball.capture($Paddle, Vector2((randf() - 0.5) * 32, 8)) add_child(newball) @@ -293,7 +240,7 @@ func load_level(data) -> void: "Y": brick.type(Brick.NORMAL, Color.YELLOW) "B": - brick.type(Brick.NORMAL, Color.BLUE) + brick.type(Brick.NORMAL, Color.ROYAL_BLUE) "M": brick.type(Brick.NORMAL, Color.MAGENTA) "C": @@ -303,9 +250,9 @@ func load_level(data) -> void: "O": brick.type(Brick.NORMAL, Color.ORANGE) "s": - brick.type(Brick.SHINY, Color.SILVER) + brick.type(Brick.SILVER, Color.SILVER) "g": - brick.type(Brick.SHINY, Color.GOLD) + brick.type(Brick.GOLD, Color.GOLD) "i": brick.type(Brick.INVULNERABLE, Color.GRAY) @@ -323,3 +270,10 @@ func _on_start_round_finished() -> void: func _on_update_lives() -> void: $LivesBox.text = "%d" % lives + +func load_level_from_disk(name : String) -> Dictionary: + if FileAccess.file_exists("user://Levels/%s.json" % name): + return JSON.parse_string(FileAccess.get_file_as_string("user://Levels/%s.json" % name)) + if FileAccess.file_exists("res://Levels/%s.json" % name): + return JSON.parse_string(FileAccess.get_file_as_string("res://Levels/%s.json" % name)) + return JSON.parse_string(FileAccess.get_file_as_string("res://Levels/NOTFOUND.json")) diff --git a/Dunkanoid.tscn b/Dunkanoid.tscn index f2a9b11..eb3bb19 100644 --- a/Dunkanoid.tscn +++ b/Dunkanoid.tscn @@ -1,20 +1,18 @@ -[gd_scene load_steps=17 format=3 uid="uid://4q0epdnb0x4s"] +[gd_scene load_steps=18 format=3 uid="uid://4q0epdnb0x4s"] [ext_resource type="Script" path="res://Dunkanoid.gd" id="1_kv4if"] [ext_resource type="PackedScene" uid="uid://dndemjw7up2r6" path="res://Paddle/Paddle.tscn" id="2_26c5i"] -[ext_resource type="Texture2D" uid="uid://14rcfdux2hkr" path="res://Backgrounds/dark-green-2790337_640.png" id="2_ke5lc"] [ext_resource type="Script" path="res://Wall.gd" id="4_evt42"] +[ext_resource type="Texture2D" uid="uid://3r13ufv5sq3w" path="res://Backgrounds/BlueSlash.png" id="5_j5mmn"] [ext_resource type="AudioStream" uid="uid://bkw4xksukx0dd" path="res://Sounds/Fail.wav" id="5_p5ta8"] [ext_resource type="Script" path="res://Floor.gd" id="5_sravy"] [ext_resource type="AudioStream" uid="uid://818gpo5mes22" path="res://Sounds/Start.wav" id="6_s0pha"] +[ext_resource type="PhysicsMaterial" uid="uid://cql6t5hd40fgn" path="res://CorePhysics.tres" id="7_300m5"] [ext_resource type="AudioStream" uid="uid://bh2blx1uovmyt" path="res://Sounds/Win.wav" id="7_xrjor"] [ext_resource type="AudioStream" uid="uid://bojc0es7165ed" path="res://Sounds/Collected.wav" id="8_fpbsr"] [ext_resource type="Theme" uid="uid://cfvww0geatnnk" path="res://MainTheme.tres" id="8_wcf7g"] [ext_resource type="Material" uid="uid://bv4vhjg83fqpn" path="res://ArkanoidMaterial.tres" id="9_ouuij"] - -[sub_resource type="PhysicsMaterial" id="PhysicsMaterial_yf4r2"] -rough = true -bounce = 1.0 +[ext_resource type="Script" path="res://Paused.gd" id="12_8qv0d"] [sub_resource type="WorldBoundaryShape2D" id="WorldBoundaryShape2D_jsudl"] normal = Vector2(0, 1) @@ -35,22 +33,44 @@ distance = -360.0 texture_filter = 1 script = ExtResource("1_kv4if") +[node name="Paused" type="Node2D" parent="."] +process_mode = 3 +visible = false +z_index = 2 +script = ExtResource("12_8qv0d") + +[node name="ColorRect" type="ColorRect" parent="Paused"] +offset_right = 448.0 +offset_bottom = 360.0 +color = Color(0, 0, 0, 0.247059) + +[node name="Label" type="Label" parent="Paused"] +material = ExtResource("9_ouuij") +offset_right = 448.0 +offset_bottom = 360.0 +theme = ExtResource("8_wcf7g") +theme_type_variation = &"Arkanoid" +text = "PAUSED" +horizontal_alignment = 1 +vertical_alignment = 1 + [node name="Background" type="TextureRect" parent="."] z_index = -2 texture_repeat = 2 clip_contents = true offset_right = 640.0 -offset_bottom = 640.0 +offset_bottom = 514.0 scale = Vector2(0.7, 0.7) -texture = ExtResource("2_ke5lc") +texture = ExtResource("5_j5mmn") stretch_mode = 1 [node name="Paddle" parent="." instance=ExtResource("2_26c5i")] position = Vector2(39, 340) input_pickable = false -physics_material_override = SubResource("PhysicsMaterial_yf4r2") +physics_material_override = null [node name="Wall" type="StaticBody2D" parent="."] +physics_material_override = ExtResource("7_300m5") script = ExtResource("4_evt42") [node name="Top" type="CollisionShape2D" parent="Wall"] @@ -174,7 +194,6 @@ horizontal_alignment = 1 vertical_alignment = 1 [node name="Exits" type="Node2D" parent="."] -visible = false [node name="Left" type="ColorRect" parent="Exits"] offset_top = 312.0 @@ -189,6 +208,13 @@ offset_right = 448.0 offset_bottom = 360.0 color = Color(0, 0, 1, 1) +[node name="ColorRect4" type="ColorRect" parent="."] +offset_left = 448.0 +offset_top = 312.0 +offset_right = 641.0 +offset_bottom = 360.0 +color = Color(0, 0, 0, 1) + [connection signal="update_lives" from="." to="." method="_on_update_lives"] [connection signal="finished" from="Sounds/StartRound" to="." method="_on_start_round_finished"] [connection signal="finished" from="Sounds/RoundWon" to="." method="_on_round_won_finished"] diff --git a/Fonts/Ac437_Trident_9x16.ttf b/Fonts/Ac437_Trident_9x16.ttf new file mode 100644 index 0000000..3025c55 Binary files /dev/null and b/Fonts/Ac437_Trident_9x16.ttf differ diff --git a/Fonts/arkanoid/ARKANOID.TTF.import b/Fonts/Ac437_Trident_9x16.ttf.import similarity index 58% rename from Fonts/arkanoid/ARKANOID.TTF.import rename to Fonts/Ac437_Trident_9x16.ttf.import index df09178..98feeaa 100644 --- a/Fonts/arkanoid/ARKANOID.TTF.import +++ b/Fonts/Ac437_Trident_9x16.ttf.import @@ -2,18 +2,18 @@ importer="font_data_dynamic" type="FontFile" -uid="uid://mduic7knx6ys" -path="res://.godot/imported/ARKANOID.TTF-e56b7bb26971286406fa1fd81ff60299.fontdata" +uid="uid://by778rb8miy2e" +path="res://.godot/imported/Ac437_Trident_9x16.ttf-0d70ff9fe9bf5cfb2ba2856958a74f71.fontdata" [deps] -source_file="res://Fonts/arkanoid/ARKANOID.TTF" -dest_files=["res://.godot/imported/ARKANOID.TTF-e56b7bb26971286406fa1fd81ff60299.fontdata"] +source_file="res://Fonts/Ac437_Trident_9x16.ttf" +dest_files=["res://.godot/imported/Ac437_Trident_9x16.ttf-0d70ff9fe9bf5cfb2ba2856958a74f71.fontdata"] [params] Rendering=null -antialiasing=1 +antialiasing=0 generate_mipmaps=false multichannel_signed_distance_field=false msdf_pixel_range=8 diff --git a/Fonts/arkanoid/ARKANOID.TTF b/Fonts/arkanoid/ARKANOID.TTF deleted file mode 100644 index 829a780..0000000 Binary files a/Fonts/arkanoid/ARKANOID.TTF and /dev/null differ diff --git a/Fonts/arkanoid/Arka_solid.ttf.import b/Fonts/arkanoid/Arka_solid.ttf.import index 46c68cd..2075e65 100644 --- a/Fonts/arkanoid/Arka_solid.ttf.import +++ b/Fonts/arkanoid/Arka_solid.ttf.import @@ -13,7 +13,7 @@ dest_files=["res://.godot/imported/Arka_solid.ttf-ab8598b9789dfaf2a40c59663eefac [params] Rendering=null -antialiasing=1 +antialiasing=0 generate_mipmaps=false multichannel_signed_distance_field=false msdf_pixel_range=8 diff --git a/Fonts/arkanoid/Readme.txt b/Fonts/arkanoid/Readme.txt deleted file mode 100644 index f09535c..0000000 --- a/Fonts/arkanoid/Readme.txt +++ /dev/null @@ -1,27 +0,0 @@ -"Arkanoid" - TrueType Font -(c) 2000 by ck! [Freaky Fonts] - -The personal, non-commercial use of my font is free. -But Donations are accepted and highly appreciated! -The use of my fonts for commercial and profit purposes is prohibited, -unless a small donation is send to me. -Contact: ck@freakyfonts.de -These font files may not be modified or renamed. -This readme file must be included with each font, unchanged. -Redistribute? Sure, but send me an e-mail. - -If you like the font, please mail: -ck@freakyfonts.de - -Visit .:Freaky Fonts:. for updates and new fonts (PC & MAC) : -http://www.freakyfonts.de -http://www.geocities.com/Area51/Shadowlands/7677/ - -Thanks to {ths} for the Mac conversion. -ths@higoto.de or visit: http://www.higoto.de/ths - -Note: -Font based on the ARKANOID Logo, the #1 arcade breakout game, by TAITO Corporation -http://www.taito.co.jp -play some JAVA Arkanoid Games: -http://www.arkanoid.net diff --git a/Fonts/arkanoid/copy.txt b/Fonts/arkanoid/copy.txt deleted file mode 100644 index 1382eeb..0000000 --- a/Fonts/arkanoid/copy.txt +++ /dev/null @@ -1,6 +0,0 @@ -Arkanoid vs. Iomanoid - -During the development of this font the well known fontdesigner Ray Larabie -http://www.larabiefonts.com -also published an Arkanoid related font: Imanoid. -Sadly only some days before i finished my own independent font-creation. ;( \ No newline at end of file diff --git a/Fonts/fonts-DSEG_v046/DSEG-LICENSE.txt b/Fonts/fonts-DSEG_v046/DSEG-LICENSE.txt deleted file mode 100755 index a6c8ffd..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG-LICENSE.txt +++ /dev/null @@ -1,95 +0,0 @@ -Copyright (c) 2017, keshikan (http://www.keshikan.net), -with Reserved Font Name "DSEG". - - -This Font Software is licensed under the SIL Open Font License, Version 1.1. -This license is copied below, and is also available with a FAQ at: -http://scripts.sil.org/OFL - - ------------------------------------------------------------ -SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 ------------------------------------------------------------ - -PREAMBLE -The goals of the Open Font License (OFL) are to stimulate worldwide -development of collaborative font projects, to support the font creation -efforts of academic and linguistic communities, and to provide a free and -open framework in which fonts may be shared and improved in partnership -with others. - -The OFL allows the licensed fonts to be used, studied, modified and -redistributed freely as long as they are not sold by themselves. The -fonts, including any derivative works, can be bundled, embedded, -redistributed and/or sold with any software provided that any reserved -names are not used by derivative works. The fonts and derivatives, -however, cannot be released under any other type of license. The -requirement for fonts to remain under this license does not apply -to any document created using the fonts or their derivatives. - -DEFINITIONS -"Font Software" refers to the set of files released by the Copyright -Holder(s) under this license and clearly marked as such. This may -include source files, build scripts and documentation. - -"Reserved Font Name" refers to any names specified as such after the -copyright statement(s). - -"Original Version" refers to the collection of Font Software components as -distributed by the Copyright Holder(s). - -"Modified Version" refers to any derivative made by adding to, deleting, -or substituting -- in part or in whole -- any of the components of the -Original Version, by changing formats or by porting the Font Software to a -new environment. - -"Author" refers to any designer, engineer, programmer, technical -writer or other person who contributed to the Font Software. - -PERMISSION & CONDITIONS -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Font Software, to use, study, copy, merge, embed, modify, -redistribute, and sell modified and unmodified copies of the Font -Software, subject to the following conditions: - -1) Neither the Font Software nor any of its individual components, -in Original or Modified Versions, may be sold by itself. - -2) Original or Modified Versions of the Font Software may be bundled, -redistributed and/or sold with any software, provided that each copy -contains the above copyright notice and this license. These can be -included either as stand-alone text files, human-readable headers or -in the appropriate machine-readable metadata fields within text or -binary files as long as those fields can be easily viewed by the user. - -3) No Modified Version of the Font Software may use the Reserved Font -Name(s) unless explicit written permission is granted by the corresponding -Copyright Holder. This restriction only applies to the primary font name as -presented to the users. - -4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font -Software shall not be used to promote, endorse or advertise any -Modified Version, except to acknowledge the contribution(s) of the -Copyright Holder(s) and the Author(s) or with their explicit written -permission. - -5) The Font Software, modified or unmodified, in part or in whole, -must be distributed entirely under this license, and must not be -distributed under any other license. The requirement for fonts to -remain under this license does not apply to any document created -using the Font Software. - -TERMINATION -This license becomes null and void if any of the above conditions are -not met. - -DISCLAIMER -THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT -OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE -COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL -DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM -OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Bold.ttf b/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Bold.ttf deleted file mode 100644 index 23227fc..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Bold.ttf and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Bold.ttf.import b/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Bold.ttf.import deleted file mode 100644 index d2e264c..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Bold.ttf.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://cobyqxhsqftha" -path="res://.godot/imported/DSEG14ClassicMini-Bold.ttf-2aeb16d7b66a0c0ba94070e065135877.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Bold.ttf" -dest_files=["res://.godot/imported/DSEG14ClassicMini-Bold.ttf-2aeb16d7b66a0c0ba94070e065135877.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Bold.woff b/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Bold.woff deleted file mode 100644 index 663e904..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Bold.woff and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Bold.woff.import b/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Bold.woff.import deleted file mode 100644 index 179525e..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Bold.woff.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://dxnufkr2hj46m" -path="res://.godot/imported/DSEG14ClassicMini-Bold.woff-cd4e9ff9bb9ae5c1d280dfcf5f91eaa8.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Bold.woff" -dest_files=["res://.godot/imported/DSEG14ClassicMini-Bold.woff-cd4e9ff9bb9ae5c1d280dfcf5f91eaa8.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Bold.woff2 b/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Bold.woff2 deleted file mode 100644 index 09a8ed4..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Bold.woff2 and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Bold.woff2.import b/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Bold.woff2.import deleted file mode 100644 index 033b8c5..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Bold.woff2.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://dv3w1lifc3cgl" -path="res://.godot/imported/DSEG14ClassicMini-Bold.woff2-b7142feef94a2aee158ceead12bef48e.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Bold.woff2" -dest_files=["res://.godot/imported/DSEG14ClassicMini-Bold.woff2-b7142feef94a2aee158ceead12bef48e.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-BoldItalic.ttf b/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-BoldItalic.ttf deleted file mode 100644 index f434c83..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-BoldItalic.ttf and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-BoldItalic.ttf.import b/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-BoldItalic.ttf.import deleted file mode 100644 index b973429..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-BoldItalic.ttf.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://c0mbpn17iqnyh" -path="res://.godot/imported/DSEG14ClassicMini-BoldItalic.ttf-4a644e69ae4b5b09773e71c38d978759.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-BoldItalic.ttf" -dest_files=["res://.godot/imported/DSEG14ClassicMini-BoldItalic.ttf-4a644e69ae4b5b09773e71c38d978759.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-BoldItalic.woff b/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-BoldItalic.woff deleted file mode 100644 index b0b339a..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-BoldItalic.woff and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-BoldItalic.woff.import b/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-BoldItalic.woff.import deleted file mode 100644 index c5aee38..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-BoldItalic.woff.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://cl8kaev1sqwer" -path="res://.godot/imported/DSEG14ClassicMini-BoldItalic.woff-f7b5e7d086746ddc6252e27b24d14582.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-BoldItalic.woff" -dest_files=["res://.godot/imported/DSEG14ClassicMini-BoldItalic.woff-f7b5e7d086746ddc6252e27b24d14582.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-BoldItalic.woff2 b/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-BoldItalic.woff2 deleted file mode 100644 index e15222e..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-BoldItalic.woff2 and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-BoldItalic.woff2.import b/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-BoldItalic.woff2.import deleted file mode 100644 index 4f7fead..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-BoldItalic.woff2.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://4kiy78f2ncmv" -path="res://.godot/imported/DSEG14ClassicMini-BoldItalic.woff2-a9934b33d0dda4cb82769d003daf6586.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-BoldItalic.woff2" -dest_files=["res://.godot/imported/DSEG14ClassicMini-BoldItalic.woff2-a9934b33d0dda4cb82769d003daf6586.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Italic.ttf b/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Italic.ttf deleted file mode 100644 index d22bb71..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Italic.ttf and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Italic.ttf.import b/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Italic.ttf.import deleted file mode 100644 index f7fd88e..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Italic.ttf.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://cv0n5wvf5u5qo" -path="res://.godot/imported/DSEG14ClassicMini-Italic.ttf-11f63e7c980bc15ff821e0db233f8cc4.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Italic.ttf" -dest_files=["res://.godot/imported/DSEG14ClassicMini-Italic.ttf-11f63e7c980bc15ff821e0db233f8cc4.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Italic.woff b/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Italic.woff deleted file mode 100644 index b82ea95..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Italic.woff and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Italic.woff.import b/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Italic.woff.import deleted file mode 100644 index 10186f2..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Italic.woff.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://bn0csq0lkour5" -path="res://.godot/imported/DSEG14ClassicMini-Italic.woff-5c3fc1914aeefef468e29d2ef6014638.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Italic.woff" -dest_files=["res://.godot/imported/DSEG14ClassicMini-Italic.woff-5c3fc1914aeefef468e29d2ef6014638.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Italic.woff2 b/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Italic.woff2 deleted file mode 100644 index b67aa16..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Italic.woff2 and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Italic.woff2.import b/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Italic.woff2.import deleted file mode 100644 index f6b4258..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Italic.woff2.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://cq8ok275hf5x" -path="res://.godot/imported/DSEG14ClassicMini-Italic.woff2-89a992f4f5a124df5f82e72b48b06967.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Italic.woff2" -dest_files=["res://.godot/imported/DSEG14ClassicMini-Italic.woff2-89a992f4f5a124df5f82e72b48b06967.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Light.ttf b/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Light.ttf deleted file mode 100644 index a245f56..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Light.ttf and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Light.ttf.import b/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Light.ttf.import deleted file mode 100644 index 9bbdc47..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Light.ttf.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://0hqcdgxq76hb" -path="res://.godot/imported/DSEG14ClassicMini-Light.ttf-8055b882d1f40bc0e8e46f678db0d7b5.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Light.ttf" -dest_files=["res://.godot/imported/DSEG14ClassicMini-Light.ttf-8055b882d1f40bc0e8e46f678db0d7b5.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Light.woff b/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Light.woff deleted file mode 100644 index 26d84b2..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Light.woff and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Light.woff.import b/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Light.woff.import deleted file mode 100644 index 8bfae3b..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Light.woff.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://dye111jk4d7ao" -path="res://.godot/imported/DSEG14ClassicMini-Light.woff-7a005975230a5fb480ec76d4ad8f26e1.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Light.woff" -dest_files=["res://.godot/imported/DSEG14ClassicMini-Light.woff-7a005975230a5fb480ec76d4ad8f26e1.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Light.woff2 b/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Light.woff2 deleted file mode 100644 index 232bc2d..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Light.woff2 and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Light.woff2.import b/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Light.woff2.import deleted file mode 100644 index 8ee8811..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Light.woff2.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://851uei0bbqmg" -path="res://.godot/imported/DSEG14ClassicMini-Light.woff2-fbf02b64bc13748671a41e83c14e8ccf.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Light.woff2" -dest_files=["res://.godot/imported/DSEG14ClassicMini-Light.woff2-fbf02b64bc13748671a41e83c14e8ccf.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-LightItalic.ttf b/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-LightItalic.ttf deleted file mode 100644 index ecc0272..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-LightItalic.ttf and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-LightItalic.ttf.import b/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-LightItalic.ttf.import deleted file mode 100644 index 6adba01..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-LightItalic.ttf.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://rkk01gknjsh1" -path="res://.godot/imported/DSEG14ClassicMini-LightItalic.ttf-a88f4af040247dc21b8744c5e5c5c8fb.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-LightItalic.ttf" -dest_files=["res://.godot/imported/DSEG14ClassicMini-LightItalic.ttf-a88f4af040247dc21b8744c5e5c5c8fb.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-LightItalic.woff b/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-LightItalic.woff deleted file mode 100644 index 53a0221..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-LightItalic.woff and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-LightItalic.woff.import b/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-LightItalic.woff.import deleted file mode 100644 index 48175f4..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-LightItalic.woff.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://dcgrs37hppnon" -path="res://.godot/imported/DSEG14ClassicMini-LightItalic.woff-73e2c4f964c03a1702962d494c25b405.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-LightItalic.woff" -dest_files=["res://.godot/imported/DSEG14ClassicMini-LightItalic.woff-73e2c4f964c03a1702962d494c25b405.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-LightItalic.woff2 b/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-LightItalic.woff2 deleted file mode 100644 index 41a42e8..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-LightItalic.woff2 and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-LightItalic.woff2.import b/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-LightItalic.woff2.import deleted file mode 100644 index 6f4dbcc..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-LightItalic.woff2.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://b8a1dmlp8qppi" -path="res://.godot/imported/DSEG14ClassicMini-LightItalic.woff2-68fc6a76a0a5119cc2092ee9df7349c8.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-LightItalic.woff2" -dest_files=["res://.godot/imported/DSEG14ClassicMini-LightItalic.woff2-68fc6a76a0a5119cc2092ee9df7349c8.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Regular.ttf b/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Regular.ttf deleted file mode 100644 index bea0bae..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Regular.ttf and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Regular.ttf.import b/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Regular.ttf.import deleted file mode 100644 index 15d98c9..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Regular.ttf.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://brt33er1w2wpj" -path="res://.godot/imported/DSEG14ClassicMini-Regular.ttf-d098b0cd4eacdbe8219b973f9cc6832e.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Regular.ttf" -dest_files=["res://.godot/imported/DSEG14ClassicMini-Regular.ttf-d098b0cd4eacdbe8219b973f9cc6832e.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Regular.woff b/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Regular.woff deleted file mode 100644 index 3444c9d..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Regular.woff and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Regular.woff.import b/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Regular.woff.import deleted file mode 100644 index 213c728..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Regular.woff.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://dfe0ppdufmq4l" -path="res://.godot/imported/DSEG14ClassicMini-Regular.woff-e3b29f82dfde9bbed1ef8a75703497b1.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Regular.woff" -dest_files=["res://.godot/imported/DSEG14ClassicMini-Regular.woff-e3b29f82dfde9bbed1ef8a75703497b1.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Regular.woff2 b/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Regular.woff2 deleted file mode 100644 index 67300b8..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Regular.woff2 and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Regular.woff2.import b/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Regular.woff2.import deleted file mode 100644 index 5e95961..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Regular.woff2.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://bdev6ecp0nfet" -path="res://.godot/imported/DSEG14ClassicMini-Regular.woff2-76a4250be98e72613f3e85d3b751c2bc.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG14-Classic-MINI/DSEG14ClassicMini-Regular.woff2" -dest_files=["res://.godot/imported/DSEG14ClassicMini-Regular.woff2-76a4250be98e72613f3e85d3b751c2bc.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Bold.ttf b/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Bold.ttf deleted file mode 100644 index 9e5a423..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Bold.ttf and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Bold.ttf.import b/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Bold.ttf.import deleted file mode 100644 index f8607ae..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Bold.ttf.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://7a6g5bik3tn8" -path="res://.godot/imported/DSEG14Classic-Bold.ttf-e15281b8dbd39206510b5cdd564f0eb1.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Bold.ttf" -dest_files=["res://.godot/imported/DSEG14Classic-Bold.ttf-e15281b8dbd39206510b5cdd564f0eb1.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Bold.woff b/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Bold.woff deleted file mode 100644 index 63d9408..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Bold.woff and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Bold.woff.import b/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Bold.woff.import deleted file mode 100644 index 242d593..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Bold.woff.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://dlabau46xrxj" -path="res://.godot/imported/DSEG14Classic-Bold.woff-42d06ab0854ea0599d90731d6df21488.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Bold.woff" -dest_files=["res://.godot/imported/DSEG14Classic-Bold.woff-42d06ab0854ea0599d90731d6df21488.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Bold.woff2 b/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Bold.woff2 deleted file mode 100644 index fb86d7a..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Bold.woff2 and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Bold.woff2.import b/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Bold.woff2.import deleted file mode 100644 index dba407c..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Bold.woff2.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://b7hrwaajgkneo" -path="res://.godot/imported/DSEG14Classic-Bold.woff2-7e7f70b4233225f379e7c4d2cfee7f24.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Bold.woff2" -dest_files=["res://.godot/imported/DSEG14Classic-Bold.woff2-7e7f70b4233225f379e7c4d2cfee7f24.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-BoldItalic.ttf b/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-BoldItalic.ttf deleted file mode 100644 index 8e8ce78..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-BoldItalic.ttf and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-BoldItalic.ttf.import b/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-BoldItalic.ttf.import deleted file mode 100644 index 95059c0..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-BoldItalic.ttf.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://chuws7xyfhb80" -path="res://.godot/imported/DSEG14Classic-BoldItalic.ttf-d878dd0ea4ae014f6d2ee48f58edb213.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-BoldItalic.ttf" -dest_files=["res://.godot/imported/DSEG14Classic-BoldItalic.ttf-d878dd0ea4ae014f6d2ee48f58edb213.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-BoldItalic.woff b/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-BoldItalic.woff deleted file mode 100644 index d18b325..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-BoldItalic.woff and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-BoldItalic.woff.import b/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-BoldItalic.woff.import deleted file mode 100644 index fb0f508..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-BoldItalic.woff.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://ba0vkonb0xeru" -path="res://.godot/imported/DSEG14Classic-BoldItalic.woff-2159d869c2f3f88abebee6c7502b12c8.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-BoldItalic.woff" -dest_files=["res://.godot/imported/DSEG14Classic-BoldItalic.woff-2159d869c2f3f88abebee6c7502b12c8.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-BoldItalic.woff2 b/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-BoldItalic.woff2 deleted file mode 100644 index b828392..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-BoldItalic.woff2 and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-BoldItalic.woff2.import b/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-BoldItalic.woff2.import deleted file mode 100644 index 18db148..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-BoldItalic.woff2.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://r6sk3sadfx6b" -path="res://.godot/imported/DSEG14Classic-BoldItalic.woff2-32a228482c94fb16a5e394ad2f870b37.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-BoldItalic.woff2" -dest_files=["res://.godot/imported/DSEG14Classic-BoldItalic.woff2-32a228482c94fb16a5e394ad2f870b37.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Italic.ttf b/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Italic.ttf deleted file mode 100644 index 61a8261..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Italic.ttf and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Italic.ttf.import b/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Italic.ttf.import deleted file mode 100644 index 675f4f0..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Italic.ttf.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://chh1qkhlqt7n3" -path="res://.godot/imported/DSEG14Classic-Italic.ttf-9fffae1ef45277e0d618e5a8300ae101.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Italic.ttf" -dest_files=["res://.godot/imported/DSEG14Classic-Italic.ttf-9fffae1ef45277e0d618e5a8300ae101.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Italic.woff b/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Italic.woff deleted file mode 100644 index 6321d0b..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Italic.woff and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Italic.woff.import b/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Italic.woff.import deleted file mode 100644 index 31d9643..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Italic.woff.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://dudx3gnhyjtfq" -path="res://.godot/imported/DSEG14Classic-Italic.woff-c93889ddbfa92212a842be1785ed2aae.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Italic.woff" -dest_files=["res://.godot/imported/DSEG14Classic-Italic.woff-c93889ddbfa92212a842be1785ed2aae.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Italic.woff2 b/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Italic.woff2 deleted file mode 100644 index 4271825..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Italic.woff2 and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Italic.woff2.import b/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Italic.woff2.import deleted file mode 100644 index f5cea8d..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Italic.woff2.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://cq03xf2xlrnp4" -path="res://.godot/imported/DSEG14Classic-Italic.woff2-d9087541c630505c12fdab933b5a974b.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Italic.woff2" -dest_files=["res://.godot/imported/DSEG14Classic-Italic.woff2-d9087541c630505c12fdab933b5a974b.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Light.ttf b/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Light.ttf deleted file mode 100644 index 7599e00..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Light.ttf and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Light.ttf.import b/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Light.ttf.import deleted file mode 100644 index 186db0f..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Light.ttf.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://0guph7j8ylsw" -path="res://.godot/imported/DSEG14Classic-Light.ttf-e19369e0049ebae9b58c990ea12a26b5.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Light.ttf" -dest_files=["res://.godot/imported/DSEG14Classic-Light.ttf-e19369e0049ebae9b58c990ea12a26b5.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Light.woff b/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Light.woff deleted file mode 100644 index 2ae1641..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Light.woff and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Light.woff.import b/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Light.woff.import deleted file mode 100644 index 9a07160..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Light.woff.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://c3b45j0p3tp61" -path="res://.godot/imported/DSEG14Classic-Light.woff-b5a6d7a1c30ee1d4bfc95ca6a943a84f.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Light.woff" -dest_files=["res://.godot/imported/DSEG14Classic-Light.woff-b5a6d7a1c30ee1d4bfc95ca6a943a84f.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Light.woff2 b/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Light.woff2 deleted file mode 100644 index 3fc95b1..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Light.woff2 and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Light.woff2.import b/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Light.woff2.import deleted file mode 100644 index 99638a3..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Light.woff2.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://bt4pjukq2yso3" -path="res://.godot/imported/DSEG14Classic-Light.woff2-9a67f8191ab9172e25092c595ccc1530.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Light.woff2" -dest_files=["res://.godot/imported/DSEG14Classic-Light.woff2-9a67f8191ab9172e25092c595ccc1530.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-LightItalic.ttf b/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-LightItalic.ttf deleted file mode 100644 index 52c1522..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-LightItalic.ttf and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-LightItalic.ttf.import b/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-LightItalic.ttf.import deleted file mode 100644 index 1d67002..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-LightItalic.ttf.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://dqoeu2oqyrpas" -path="res://.godot/imported/DSEG14Classic-LightItalic.ttf-7ec89cd8b9fe4dd5c02a369eb420d555.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-LightItalic.ttf" -dest_files=["res://.godot/imported/DSEG14Classic-LightItalic.ttf-7ec89cd8b9fe4dd5c02a369eb420d555.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-LightItalic.woff b/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-LightItalic.woff deleted file mode 100644 index 15e3227..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-LightItalic.woff and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-LightItalic.woff.import b/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-LightItalic.woff.import deleted file mode 100644 index 8cfb8ed..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-LightItalic.woff.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://d0itfll1gj6ns" -path="res://.godot/imported/DSEG14Classic-LightItalic.woff-2d5b4929cb9a51a145f88a3e7c67a856.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-LightItalic.woff" -dest_files=["res://.godot/imported/DSEG14Classic-LightItalic.woff-2d5b4929cb9a51a145f88a3e7c67a856.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-LightItalic.woff2 b/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-LightItalic.woff2 deleted file mode 100644 index 323c31d..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-LightItalic.woff2 and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-LightItalic.woff2.import b/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-LightItalic.woff2.import deleted file mode 100644 index 7c8f285..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-LightItalic.woff2.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://c5vlgbwddmx2c" -path="res://.godot/imported/DSEG14Classic-LightItalic.woff2-d15bd2fe38ae91b1d46ab2bab4016279.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-LightItalic.woff2" -dest_files=["res://.godot/imported/DSEG14Classic-LightItalic.woff2-d15bd2fe38ae91b1d46ab2bab4016279.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Regular.ttf b/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Regular.ttf deleted file mode 100644 index 7c28934..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Regular.ttf and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Regular.ttf.import b/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Regular.ttf.import deleted file mode 100644 index 680dbfe..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Regular.ttf.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://wom0eseoprc7" -path="res://.godot/imported/DSEG14Classic-Regular.ttf-1684bd79056f255d2da47c10bc474a26.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Regular.ttf" -dest_files=["res://.godot/imported/DSEG14Classic-Regular.ttf-1684bd79056f255d2da47c10bc474a26.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Regular.woff b/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Regular.woff deleted file mode 100644 index 8095ea1..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Regular.woff and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Regular.woff.import b/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Regular.woff.import deleted file mode 100644 index 6259e52..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Regular.woff.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://bjwow01vy13u2" -path="res://.godot/imported/DSEG14Classic-Regular.woff-c4d8377ccacfd5e669c57f6bd3a4cb69.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Regular.woff" -dest_files=["res://.godot/imported/DSEG14Classic-Regular.woff-c4d8377ccacfd5e669c57f6bd3a4cb69.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Regular.woff2 b/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Regular.woff2 deleted file mode 100644 index ba7cd02..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Regular.woff2 and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Regular.woff2.import b/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Regular.woff2.import deleted file mode 100644 index 5f3fe1c..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Regular.woff2.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://b6aefvngdurc2" -path="res://.godot/imported/DSEG14Classic-Regular.woff2-659da7b8bde0b6cfa506b4252b7dd84b.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG14-Classic/DSEG14Classic-Regular.woff2" -dest_files=["res://.godot/imported/DSEG14Classic-Regular.woff2-659da7b8bde0b6cfa506b4252b7dd84b.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Bold.ttf b/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Bold.ttf deleted file mode 100644 index 1c48f61..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Bold.ttf and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Bold.ttf.import b/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Bold.ttf.import deleted file mode 100644 index 04fdbdc..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Bold.ttf.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://cd6pc2s7iyixq" -path="res://.godot/imported/DSEG14ModernMini-Bold.ttf-5101f9d4caafac0e9240c1ac3251e84d.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Bold.ttf" -dest_files=["res://.godot/imported/DSEG14ModernMini-Bold.ttf-5101f9d4caafac0e9240c1ac3251e84d.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Bold.woff b/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Bold.woff deleted file mode 100644 index f1af4e4..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Bold.woff and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Bold.woff.import b/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Bold.woff.import deleted file mode 100644 index 9df7e43..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Bold.woff.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://dg1vlfshjkdb0" -path="res://.godot/imported/DSEG14ModernMini-Bold.woff-0cf31ed582e66c0089fe5a977138babe.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Bold.woff" -dest_files=["res://.godot/imported/DSEG14ModernMini-Bold.woff-0cf31ed582e66c0089fe5a977138babe.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Bold.woff2 b/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Bold.woff2 deleted file mode 100644 index a2e1439..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Bold.woff2 and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Bold.woff2.import b/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Bold.woff2.import deleted file mode 100644 index 0060c86..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Bold.woff2.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://c1sgx5kky01jg" -path="res://.godot/imported/DSEG14ModernMini-Bold.woff2-6f07cfe5268b4fcf986cc681c56c3c40.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Bold.woff2" -dest_files=["res://.godot/imported/DSEG14ModernMini-Bold.woff2-6f07cfe5268b4fcf986cc681c56c3c40.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-BoldItalic.ttf b/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-BoldItalic.ttf deleted file mode 100644 index 4b7ed88..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-BoldItalic.ttf and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-BoldItalic.ttf.import b/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-BoldItalic.ttf.import deleted file mode 100644 index d816e0b..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-BoldItalic.ttf.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://bfsem0jdthko1" -path="res://.godot/imported/DSEG14ModernMini-BoldItalic.ttf-0f095043bbfbebf70dd514029fe715d0.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-BoldItalic.ttf" -dest_files=["res://.godot/imported/DSEG14ModernMini-BoldItalic.ttf-0f095043bbfbebf70dd514029fe715d0.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-BoldItalic.woff b/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-BoldItalic.woff deleted file mode 100644 index ef5f649..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-BoldItalic.woff and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-BoldItalic.woff.import b/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-BoldItalic.woff.import deleted file mode 100644 index 1d073d1..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-BoldItalic.woff.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://b3ywruf785j8s" -path="res://.godot/imported/DSEG14ModernMini-BoldItalic.woff-81ad3f399ef92b4ade985392492adbe4.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-BoldItalic.woff" -dest_files=["res://.godot/imported/DSEG14ModernMini-BoldItalic.woff-81ad3f399ef92b4ade985392492adbe4.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-BoldItalic.woff2 b/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-BoldItalic.woff2 deleted file mode 100644 index df803f5..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-BoldItalic.woff2 and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-BoldItalic.woff2.import b/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-BoldItalic.woff2.import deleted file mode 100644 index 8cab864..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-BoldItalic.woff2.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://bu0725jft2vbc" -path="res://.godot/imported/DSEG14ModernMini-BoldItalic.woff2-89efa44bcb088ae088db2e9a533cb815.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-BoldItalic.woff2" -dest_files=["res://.godot/imported/DSEG14ModernMini-BoldItalic.woff2-89efa44bcb088ae088db2e9a533cb815.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Italic.ttf b/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Italic.ttf deleted file mode 100644 index a046d5d..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Italic.ttf and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Italic.ttf.import b/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Italic.ttf.import deleted file mode 100644 index 8fdba11..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Italic.ttf.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://x21fq5ngvfe4" -path="res://.godot/imported/DSEG14ModernMini-Italic.ttf-91e5c4496f29cc8d4841b6e5494fdca2.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Italic.ttf" -dest_files=["res://.godot/imported/DSEG14ModernMini-Italic.ttf-91e5c4496f29cc8d4841b6e5494fdca2.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Italic.woff b/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Italic.woff deleted file mode 100644 index f8cc113..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Italic.woff and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Italic.woff.import b/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Italic.woff.import deleted file mode 100644 index d2440a7..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Italic.woff.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://is6lmc1mwdkj" -path="res://.godot/imported/DSEG14ModernMini-Italic.woff-b67b0f44b6839e5f9b829875e90d13e1.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Italic.woff" -dest_files=["res://.godot/imported/DSEG14ModernMini-Italic.woff-b67b0f44b6839e5f9b829875e90d13e1.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Italic.woff2 b/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Italic.woff2 deleted file mode 100644 index 7f0539d..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Italic.woff2 and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Italic.woff2.import b/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Italic.woff2.import deleted file mode 100644 index e2cf586..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Italic.woff2.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://cxvc1e5hob2r1" -path="res://.godot/imported/DSEG14ModernMini-Italic.woff2-2b4bd6e50dccb87dbb4263ebbb185df8.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Italic.woff2" -dest_files=["res://.godot/imported/DSEG14ModernMini-Italic.woff2-2b4bd6e50dccb87dbb4263ebbb185df8.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Light.ttf b/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Light.ttf deleted file mode 100644 index 93aa099..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Light.ttf and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Light.ttf.import b/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Light.ttf.import deleted file mode 100644 index a12de39..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Light.ttf.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://gn30yx43ts8d" -path="res://.godot/imported/DSEG14ModernMini-Light.ttf-c12f6342e7f95239f5180dea59644b55.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Light.ttf" -dest_files=["res://.godot/imported/DSEG14ModernMini-Light.ttf-c12f6342e7f95239f5180dea59644b55.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Light.woff b/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Light.woff deleted file mode 100644 index 3137ade..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Light.woff and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Light.woff.import b/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Light.woff.import deleted file mode 100644 index 825cc02..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Light.woff.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://cl8af7j5g5xn" -path="res://.godot/imported/DSEG14ModernMini-Light.woff-279aecad201386e4306f038c4246153a.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Light.woff" -dest_files=["res://.godot/imported/DSEG14ModernMini-Light.woff-279aecad201386e4306f038c4246153a.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Light.woff2 b/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Light.woff2 deleted file mode 100644 index 910e70c..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Light.woff2 and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Light.woff2.import b/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Light.woff2.import deleted file mode 100644 index 8cd7ced..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Light.woff2.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://2g5tgupj8g6k" -path="res://.godot/imported/DSEG14ModernMini-Light.woff2-0fa46508122af10a2d3811f97308091b.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Light.woff2" -dest_files=["res://.godot/imported/DSEG14ModernMini-Light.woff2-0fa46508122af10a2d3811f97308091b.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-LightItalic.ttf b/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-LightItalic.ttf deleted file mode 100644 index fb65f9a..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-LightItalic.ttf and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-LightItalic.ttf.import b/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-LightItalic.ttf.import deleted file mode 100644 index adc41e7..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-LightItalic.ttf.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://cds31104ncxkd" -path="res://.godot/imported/DSEG14ModernMini-LightItalic.ttf-801acce7e1ae544cd05b172796801a6e.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-LightItalic.ttf" -dest_files=["res://.godot/imported/DSEG14ModernMini-LightItalic.ttf-801acce7e1ae544cd05b172796801a6e.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-LightItalic.woff b/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-LightItalic.woff deleted file mode 100644 index 820b90d..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-LightItalic.woff and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-LightItalic.woff.import b/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-LightItalic.woff.import deleted file mode 100644 index 5b4bcc5..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-LightItalic.woff.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://b08rtowhq45ww" -path="res://.godot/imported/DSEG14ModernMini-LightItalic.woff-0d6177b847587b2515dfcaa4e0a268af.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-LightItalic.woff" -dest_files=["res://.godot/imported/DSEG14ModernMini-LightItalic.woff-0d6177b847587b2515dfcaa4e0a268af.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-LightItalic.woff2 b/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-LightItalic.woff2 deleted file mode 100644 index 951d781..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-LightItalic.woff2 and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-LightItalic.woff2.import b/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-LightItalic.woff2.import deleted file mode 100644 index c2c0a2e..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-LightItalic.woff2.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://cays6yybei566" -path="res://.godot/imported/DSEG14ModernMini-LightItalic.woff2-691beb720ffb8cf83c2b9c3ca7330414.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-LightItalic.woff2" -dest_files=["res://.godot/imported/DSEG14ModernMini-LightItalic.woff2-691beb720ffb8cf83c2b9c3ca7330414.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Regular.ttf b/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Regular.ttf deleted file mode 100644 index 3ef156f..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Regular.ttf and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Regular.ttf.import b/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Regular.ttf.import deleted file mode 100644 index edfb496..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Regular.ttf.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://blegx2pdgl1kb" -path="res://.godot/imported/DSEG14ModernMini-Regular.ttf-74b29006d8ca8f21a3aee02aa9921ef6.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Regular.ttf" -dest_files=["res://.godot/imported/DSEG14ModernMini-Regular.ttf-74b29006d8ca8f21a3aee02aa9921ef6.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Regular.woff b/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Regular.woff deleted file mode 100644 index 6d0e079..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Regular.woff and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Regular.woff.import b/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Regular.woff.import deleted file mode 100644 index 4a05a0b..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Regular.woff.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://buo32gfk5mkrx" -path="res://.godot/imported/DSEG14ModernMini-Regular.woff-6e6e1bac3b269d057757128533efa81d.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Regular.woff" -dest_files=["res://.godot/imported/DSEG14ModernMini-Regular.woff-6e6e1bac3b269d057757128533efa81d.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Regular.woff2 b/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Regular.woff2 deleted file mode 100644 index 861371f..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Regular.woff2 and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Regular.woff2.import b/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Regular.woff2.import deleted file mode 100644 index 8800f69..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Regular.woff2.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://bj60thg7sttlb" -path="res://.godot/imported/DSEG14ModernMini-Regular.woff2-46dba01b7b80466da372126233bd3f69.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG14-Modern-MINI/DSEG14ModernMini-Regular.woff2" -dest_files=["res://.godot/imported/DSEG14ModernMini-Regular.woff2-46dba01b7b80466da372126233bd3f69.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Bold.ttf b/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Bold.ttf deleted file mode 100644 index d59c052..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Bold.ttf and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Bold.ttf.import b/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Bold.ttf.import deleted file mode 100644 index 221067c..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Bold.ttf.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://nks1owvtu2w2" -path="res://.godot/imported/DSEG14Modern-Bold.ttf-587f0375b48c4385c6be6319ee908cd3.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Bold.ttf" -dest_files=["res://.godot/imported/DSEG14Modern-Bold.ttf-587f0375b48c4385c6be6319ee908cd3.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Bold.woff b/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Bold.woff deleted file mode 100644 index f64b279..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Bold.woff and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Bold.woff.import b/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Bold.woff.import deleted file mode 100644 index f80cfdc..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Bold.woff.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://bgkcrx14ah1au" -path="res://.godot/imported/DSEG14Modern-Bold.woff-5c7c7983c94499492753358f49f0515b.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Bold.woff" -dest_files=["res://.godot/imported/DSEG14Modern-Bold.woff-5c7c7983c94499492753358f49f0515b.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Bold.woff2 b/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Bold.woff2 deleted file mode 100644 index c6a6a58..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Bold.woff2 and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Bold.woff2.import b/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Bold.woff2.import deleted file mode 100644 index d6005db..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Bold.woff2.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://cknf0ywkfovxw" -path="res://.godot/imported/DSEG14Modern-Bold.woff2-a2b6f88aa17baa9c00ca7379f68ed644.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Bold.woff2" -dest_files=["res://.godot/imported/DSEG14Modern-Bold.woff2-a2b6f88aa17baa9c00ca7379f68ed644.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-BoldItalic.ttf b/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-BoldItalic.ttf deleted file mode 100644 index 44d16a7..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-BoldItalic.ttf and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-BoldItalic.ttf.import b/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-BoldItalic.ttf.import deleted file mode 100644 index 0e741e2..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-BoldItalic.ttf.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://s0aolc1x1m2g" -path="res://.godot/imported/DSEG14Modern-BoldItalic.ttf-a15958d1461071046b949dd58e2d2c7f.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-BoldItalic.ttf" -dest_files=["res://.godot/imported/DSEG14Modern-BoldItalic.ttf-a15958d1461071046b949dd58e2d2c7f.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-BoldItalic.woff b/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-BoldItalic.woff deleted file mode 100644 index c2238a0..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-BoldItalic.woff and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-BoldItalic.woff.import b/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-BoldItalic.woff.import deleted file mode 100644 index 8d30778..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-BoldItalic.woff.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://drsajjrt8b683" -path="res://.godot/imported/DSEG14Modern-BoldItalic.woff-68909076eaa3dac02481a9e5c1d14470.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-BoldItalic.woff" -dest_files=["res://.godot/imported/DSEG14Modern-BoldItalic.woff-68909076eaa3dac02481a9e5c1d14470.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-BoldItalic.woff2 b/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-BoldItalic.woff2 deleted file mode 100644 index 8731392..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-BoldItalic.woff2 and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-BoldItalic.woff2.import b/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-BoldItalic.woff2.import deleted file mode 100644 index f585d11..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-BoldItalic.woff2.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://mh2ecokn0nkg" -path="res://.godot/imported/DSEG14Modern-BoldItalic.woff2-0fe495868e31e324e1acb270230b6d1c.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-BoldItalic.woff2" -dest_files=["res://.godot/imported/DSEG14Modern-BoldItalic.woff2-0fe495868e31e324e1acb270230b6d1c.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Italic.ttf b/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Italic.ttf deleted file mode 100644 index fa22d68..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Italic.ttf and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Italic.ttf.import b/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Italic.ttf.import deleted file mode 100644 index a8285f0..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Italic.ttf.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://cvf882jk3m114" -path="res://.godot/imported/DSEG14Modern-Italic.ttf-a710276cb58fde0c8ec73f6eb744ec79.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Italic.ttf" -dest_files=["res://.godot/imported/DSEG14Modern-Italic.ttf-a710276cb58fde0c8ec73f6eb744ec79.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Italic.woff b/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Italic.woff deleted file mode 100644 index 8ad7922..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Italic.woff and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Italic.woff.import b/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Italic.woff.import deleted file mode 100644 index 31c7dd4..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Italic.woff.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://ds0ml51v0uokl" -path="res://.godot/imported/DSEG14Modern-Italic.woff-c01bc1f5c7a8ef10cf118d5a10ab8a5a.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Italic.woff" -dest_files=["res://.godot/imported/DSEG14Modern-Italic.woff-c01bc1f5c7a8ef10cf118d5a10ab8a5a.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Italic.woff2 b/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Italic.woff2 deleted file mode 100644 index 25c3cf1..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Italic.woff2 and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Italic.woff2.import b/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Italic.woff2.import deleted file mode 100644 index 17eafb2..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Italic.woff2.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://c87ur4g72x851" -path="res://.godot/imported/DSEG14Modern-Italic.woff2-52df3186ca7fda470536601043c2c88e.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Italic.woff2" -dest_files=["res://.godot/imported/DSEG14Modern-Italic.woff2-52df3186ca7fda470536601043c2c88e.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Light.ttf b/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Light.ttf deleted file mode 100644 index 92226dd..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Light.ttf and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Light.ttf.import b/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Light.ttf.import deleted file mode 100644 index 5893be1..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Light.ttf.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://cw41g0s1k6bnl" -path="res://.godot/imported/DSEG14Modern-Light.ttf-f73393639edc589c9ba9a9a35255d7d1.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Light.ttf" -dest_files=["res://.godot/imported/DSEG14Modern-Light.ttf-f73393639edc589c9ba9a9a35255d7d1.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Light.woff b/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Light.woff deleted file mode 100644 index d8385e9..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Light.woff and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Light.woff.import b/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Light.woff.import deleted file mode 100644 index d1de0cb..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Light.woff.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://be70oun47vuvx" -path="res://.godot/imported/DSEG14Modern-Light.woff-75a24090d44773856b044468075fe4c4.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Light.woff" -dest_files=["res://.godot/imported/DSEG14Modern-Light.woff-75a24090d44773856b044468075fe4c4.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Light.woff2 b/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Light.woff2 deleted file mode 100644 index 10e1494..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Light.woff2 and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Light.woff2.import b/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Light.woff2.import deleted file mode 100644 index ff868c0..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Light.woff2.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://dmu5um7wglj4x" -path="res://.godot/imported/DSEG14Modern-Light.woff2-0f0bfdb8e9807c27e5648b7fb24ee2eb.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Light.woff2" -dest_files=["res://.godot/imported/DSEG14Modern-Light.woff2-0f0bfdb8e9807c27e5648b7fb24ee2eb.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-LightItalic.ttf b/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-LightItalic.ttf deleted file mode 100644 index dbc29a8..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-LightItalic.ttf and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-LightItalic.ttf.import b/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-LightItalic.ttf.import deleted file mode 100644 index 2dbc424..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-LightItalic.ttf.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://ug3u4o4c4cvj" -path="res://.godot/imported/DSEG14Modern-LightItalic.ttf-53e5c34f18f856e730bd358a35c2b50e.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-LightItalic.ttf" -dest_files=["res://.godot/imported/DSEG14Modern-LightItalic.ttf-53e5c34f18f856e730bd358a35c2b50e.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-LightItalic.woff b/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-LightItalic.woff deleted file mode 100644 index 462a60d..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-LightItalic.woff and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-LightItalic.woff.import b/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-LightItalic.woff.import deleted file mode 100644 index 6282cd2..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-LightItalic.woff.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://bw0017q05eocv" -path="res://.godot/imported/DSEG14Modern-LightItalic.woff-8033cb32961b29e38410cb9e48b4d040.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-LightItalic.woff" -dest_files=["res://.godot/imported/DSEG14Modern-LightItalic.woff-8033cb32961b29e38410cb9e48b4d040.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-LightItalic.woff2 b/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-LightItalic.woff2 deleted file mode 100644 index bddc687..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-LightItalic.woff2 and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-LightItalic.woff2.import b/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-LightItalic.woff2.import deleted file mode 100644 index 33da6f4..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-LightItalic.woff2.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://bn51mhifi04et" -path="res://.godot/imported/DSEG14Modern-LightItalic.woff2-21ff93ea7d3c1643cf82d173ecdb4eee.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-LightItalic.woff2" -dest_files=["res://.godot/imported/DSEG14Modern-LightItalic.woff2-21ff93ea7d3c1643cf82d173ecdb4eee.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Regular.ttf b/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Regular.ttf deleted file mode 100644 index a61b17d..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Regular.ttf and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Regular.ttf.import b/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Regular.ttf.import deleted file mode 100644 index caa2a4e..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Regular.ttf.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://knyb0fuah77x" -path="res://.godot/imported/DSEG14Modern-Regular.ttf-3686a01959b6b20e0d20305eb0b42cd1.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Regular.ttf" -dest_files=["res://.godot/imported/DSEG14Modern-Regular.ttf-3686a01959b6b20e0d20305eb0b42cd1.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Regular.woff b/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Regular.woff deleted file mode 100644 index 95c0fc9..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Regular.woff and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Regular.woff.import b/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Regular.woff.import deleted file mode 100644 index 81f7277..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Regular.woff.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://b06ku3yrv4up4" -path="res://.godot/imported/DSEG14Modern-Regular.woff-e964beb07149306442d1e875bf62842f.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Regular.woff" -dest_files=["res://.godot/imported/DSEG14Modern-Regular.woff-e964beb07149306442d1e875bf62842f.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Regular.woff2 b/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Regular.woff2 deleted file mode 100644 index 2240b81..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Regular.woff2 and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Regular.woff2.import b/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Regular.woff2.import deleted file mode 100644 index 741ddee..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Regular.woff2.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://dpw5trq6e2sfy" -path="res://.godot/imported/DSEG14Modern-Regular.woff2-85eff26fac2c8517e37ba98a3854aa88.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG14-Modern/DSEG14Modern-Regular.woff2" -dest_files=["res://.godot/imported/DSEG14Modern-Regular.woff2-85eff26fac2c8517e37ba98a3854aa88.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG7-7SEGG-CHAN/DSEG7SEGGCHAN-Regular.ttf b/Fonts/fonts-DSEG_v046/DSEG7-7SEGG-CHAN/DSEG7SEGGCHAN-Regular.ttf deleted file mode 100644 index 958f749..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG7-7SEGG-CHAN/DSEG7SEGGCHAN-Regular.ttf and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG7-7SEGG-CHAN/DSEG7SEGGCHAN-Regular.ttf.import b/Fonts/fonts-DSEG_v046/DSEG7-7SEGG-CHAN/DSEG7SEGGCHAN-Regular.ttf.import deleted file mode 100644 index c5129da..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG7-7SEGG-CHAN/DSEG7SEGGCHAN-Regular.ttf.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://bdjokcq2wqfq" -path="res://.godot/imported/DSEG7SEGGCHAN-Regular.ttf-f5aea807fd53a974a7b91a490b1e812a.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG7-7SEGG-CHAN/DSEG7SEGGCHAN-Regular.ttf" -dest_files=["res://.godot/imported/DSEG7SEGGCHAN-Regular.ttf-f5aea807fd53a974a7b91a490b1e812a.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG7-7SEGG-CHAN/DSEG7SEGGCHAN-Regular.woff b/Fonts/fonts-DSEG_v046/DSEG7-7SEGG-CHAN/DSEG7SEGGCHAN-Regular.woff deleted file mode 100644 index 09be7ef..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG7-7SEGG-CHAN/DSEG7SEGGCHAN-Regular.woff and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG7-7SEGG-CHAN/DSEG7SEGGCHAN-Regular.woff.import b/Fonts/fonts-DSEG_v046/DSEG7-7SEGG-CHAN/DSEG7SEGGCHAN-Regular.woff.import deleted file mode 100644 index 3a497cb..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG7-7SEGG-CHAN/DSEG7SEGGCHAN-Regular.woff.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://bm2vts4rpbfqn" -path="res://.godot/imported/DSEG7SEGGCHAN-Regular.woff-f3d7dc3c47ecb03586b0901a3113134f.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG7-7SEGG-CHAN/DSEG7SEGGCHAN-Regular.woff" -dest_files=["res://.godot/imported/DSEG7SEGGCHAN-Regular.woff-f3d7dc3c47ecb03586b0901a3113134f.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG7-7SEGG-CHAN/DSEG7SEGGCHAN-Regular.woff2 b/Fonts/fonts-DSEG_v046/DSEG7-7SEGG-CHAN/DSEG7SEGGCHAN-Regular.woff2 deleted file mode 100644 index d0e2fca..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG7-7SEGG-CHAN/DSEG7SEGGCHAN-Regular.woff2 and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG7-7SEGG-CHAN/DSEG7SEGGCHAN-Regular.woff2.import b/Fonts/fonts-DSEG_v046/DSEG7-7SEGG-CHAN/DSEG7SEGGCHAN-Regular.woff2.import deleted file mode 100644 index 6e55cfa..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG7-7SEGG-CHAN/DSEG7SEGGCHAN-Regular.woff2.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://dcsscuu7jt4fm" -path="res://.godot/imported/DSEG7SEGGCHAN-Regular.woff2-5ab799673777273020e4d24b3476db8f.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG7-7SEGG-CHAN/DSEG7SEGGCHAN-Regular.woff2" -dest_files=["res://.godot/imported/DSEG7SEGGCHAN-Regular.woff2-5ab799673777273020e4d24b3476db8f.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG7-7SEGG-CHAN/DSEG7SEGGCHANMINI-Regular.ttf b/Fonts/fonts-DSEG_v046/DSEG7-7SEGG-CHAN/DSEG7SEGGCHANMINI-Regular.ttf deleted file mode 100644 index 61d53f3..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG7-7SEGG-CHAN/DSEG7SEGGCHANMINI-Regular.ttf and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG7-7SEGG-CHAN/DSEG7SEGGCHANMINI-Regular.ttf.import b/Fonts/fonts-DSEG_v046/DSEG7-7SEGG-CHAN/DSEG7SEGGCHANMINI-Regular.ttf.import deleted file mode 100644 index ef19b5f..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG7-7SEGG-CHAN/DSEG7SEGGCHANMINI-Regular.ttf.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://d7dstgtndg3q" -path="res://.godot/imported/DSEG7SEGGCHANMINI-Regular.ttf-a9ad96633c25bf6b686664c617cffc40.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG7-7SEGG-CHAN/DSEG7SEGGCHANMINI-Regular.ttf" -dest_files=["res://.godot/imported/DSEG7SEGGCHANMINI-Regular.ttf-a9ad96633c25bf6b686664c617cffc40.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG7-7SEGG-CHAN/DSEG7SEGGCHANMINI-Regular.woff b/Fonts/fonts-DSEG_v046/DSEG7-7SEGG-CHAN/DSEG7SEGGCHANMINI-Regular.woff deleted file mode 100644 index 49ebd60..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG7-7SEGG-CHAN/DSEG7SEGGCHANMINI-Regular.woff and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG7-7SEGG-CHAN/DSEG7SEGGCHANMINI-Regular.woff.import b/Fonts/fonts-DSEG_v046/DSEG7-7SEGG-CHAN/DSEG7SEGGCHANMINI-Regular.woff.import deleted file mode 100644 index 2cc97c9..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG7-7SEGG-CHAN/DSEG7SEGGCHANMINI-Regular.woff.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://b6n4vcu1n0yap" -path="res://.godot/imported/DSEG7SEGGCHANMINI-Regular.woff-b3c3ca116b1034dadcc02b1a9afd0633.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG7-7SEGG-CHAN/DSEG7SEGGCHANMINI-Regular.woff" -dest_files=["res://.godot/imported/DSEG7SEGGCHANMINI-Regular.woff-b3c3ca116b1034dadcc02b1a9afd0633.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG7-7SEGG-CHAN/DSEG7SEGGCHANMINI-Regular.woff2 b/Fonts/fonts-DSEG_v046/DSEG7-7SEGG-CHAN/DSEG7SEGGCHANMINI-Regular.woff2 deleted file mode 100644 index b9a3c88..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG7-7SEGG-CHAN/DSEG7SEGGCHANMINI-Regular.woff2 and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG7-7SEGG-CHAN/DSEG7SEGGCHANMINI-Regular.woff2.import b/Fonts/fonts-DSEG_v046/DSEG7-7SEGG-CHAN/DSEG7SEGGCHANMINI-Regular.woff2.import deleted file mode 100644 index e75c8bd..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG7-7SEGG-CHAN/DSEG7SEGGCHANMINI-Regular.woff2.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://blgv07wbycynq" -path="res://.godot/imported/DSEG7SEGGCHANMINI-Regular.woff2-4592f5557aa53f147e6fb5d2899a1cb5.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG7-7SEGG-CHAN/DSEG7SEGGCHANMINI-Regular.woff2" -dest_files=["res://.godot/imported/DSEG7SEGGCHANMINI-Regular.woff2-4592f5557aa53f147e6fb5d2899a1cb5.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-Bold.ttf b/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-Bold.ttf deleted file mode 100644 index fb863cf..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-Bold.ttf and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-Bold.ttf.import b/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-Bold.ttf.import deleted file mode 100644 index dbcd8a7..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-Bold.ttf.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://b0ti42u7x286l" -path="res://.godot/imported/DSEG7ClassicMini-Bold.ttf-2750c97ac08cf1f0301b7d92b8dbcc3b.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-Bold.ttf" -dest_files=["res://.godot/imported/DSEG7ClassicMini-Bold.ttf-2750c97ac08cf1f0301b7d92b8dbcc3b.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-Bold.woff b/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-Bold.woff deleted file mode 100644 index e129f99..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-Bold.woff and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-Bold.woff.import b/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-Bold.woff.import deleted file mode 100644 index d51530c..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-Bold.woff.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://cmdq5e4o0kpqj" -path="res://.godot/imported/DSEG7ClassicMini-Bold.woff-c92fcff5074d217af4c2a59866dc38b0.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-Bold.woff" -dest_files=["res://.godot/imported/DSEG7ClassicMini-Bold.woff-c92fcff5074d217af4c2a59866dc38b0.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-Bold.woff2 b/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-Bold.woff2 deleted file mode 100644 index a78a3b0..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-Bold.woff2 and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-Bold.woff2.import b/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-Bold.woff2.import deleted file mode 100644 index ec07636..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-Bold.woff2.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://kked546st45" -path="res://.godot/imported/DSEG7ClassicMini-Bold.woff2-78da75b421e95b45278c2322d5f8b83e.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-Bold.woff2" -dest_files=["res://.godot/imported/DSEG7ClassicMini-Bold.woff2-78da75b421e95b45278c2322d5f8b83e.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-BoldItalic.ttf b/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-BoldItalic.ttf deleted file mode 100644 index 81a895e..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-BoldItalic.ttf and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-BoldItalic.ttf.import b/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-BoldItalic.ttf.import deleted file mode 100644 index db92d3e..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-BoldItalic.ttf.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://caxv84utu2ad" -path="res://.godot/imported/DSEG7ClassicMini-BoldItalic.ttf-c71ab7c328e0e146e282c1197dbb31de.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-BoldItalic.ttf" -dest_files=["res://.godot/imported/DSEG7ClassicMini-BoldItalic.ttf-c71ab7c328e0e146e282c1197dbb31de.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-BoldItalic.woff b/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-BoldItalic.woff deleted file mode 100644 index 639cc6a..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-BoldItalic.woff and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-BoldItalic.woff.import b/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-BoldItalic.woff.import deleted file mode 100644 index 699fa7f..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-BoldItalic.woff.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://cue3ur1yldeln" -path="res://.godot/imported/DSEG7ClassicMini-BoldItalic.woff-54e2454efdcd8a07cf55eb20a1e75936.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-BoldItalic.woff" -dest_files=["res://.godot/imported/DSEG7ClassicMini-BoldItalic.woff-54e2454efdcd8a07cf55eb20a1e75936.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-BoldItalic.woff2 b/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-BoldItalic.woff2 deleted file mode 100644 index 14a0263..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-BoldItalic.woff2 and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-BoldItalic.woff2.import b/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-BoldItalic.woff2.import deleted file mode 100644 index 3eb1286..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-BoldItalic.woff2.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://bgwqhukyfluwt" -path="res://.godot/imported/DSEG7ClassicMini-BoldItalic.woff2-950777daf30ee012d9972fc8c87373fb.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-BoldItalic.woff2" -dest_files=["res://.godot/imported/DSEG7ClassicMini-BoldItalic.woff2-950777daf30ee012d9972fc8c87373fb.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-Italic.woff b/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-Italic.woff deleted file mode 100644 index 89f8653..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-Italic.woff and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-Italic.woff.import b/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-Italic.woff.import deleted file mode 100644 index 82f68f2..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-Italic.woff.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://b8mkfr2swtt50" -path="res://.godot/imported/DSEG7ClassicMini-Italic.woff-4add2954dad3d548683576f36f6bdadc.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-Italic.woff" -dest_files=["res://.godot/imported/DSEG7ClassicMini-Italic.woff-4add2954dad3d548683576f36f6bdadc.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-Italic.woff2 b/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-Italic.woff2 deleted file mode 100644 index 5ec6f29..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-Italic.woff2 and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-Italic.woff2.import b/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-Italic.woff2.import deleted file mode 100644 index 44407e2..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-Italic.woff2.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://ckljljcsj2cua" -path="res://.godot/imported/DSEG7ClassicMini-Italic.woff2-f0cca48624bc73fb94916227bd4a20d1.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-Italic.woff2" -dest_files=["res://.godot/imported/DSEG7ClassicMini-Italic.woff2-f0cca48624bc73fb94916227bd4a20d1.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-Light.ttf b/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-Light.ttf deleted file mode 100644 index a377b93..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-Light.ttf and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-Light.ttf.import b/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-Light.ttf.import deleted file mode 100644 index 6214faa..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-Light.ttf.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://cxkj83k0e0j6q" -path="res://.godot/imported/DSEG7ClassicMini-Light.ttf-74f1f9fde8b265082eed38f28c4bb2f0.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-Light.ttf" -dest_files=["res://.godot/imported/DSEG7ClassicMini-Light.ttf-74f1f9fde8b265082eed38f28c4bb2f0.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-Light.woff b/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-Light.woff deleted file mode 100644 index 4326489..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-Light.woff and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-Light.woff.import b/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-Light.woff.import deleted file mode 100644 index f296255..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-Light.woff.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://rr71k5otkfl2" -path="res://.godot/imported/DSEG7ClassicMini-Light.woff-bd1207c0e877b28b2b0d62a283ee045a.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-Light.woff" -dest_files=["res://.godot/imported/DSEG7ClassicMini-Light.woff-bd1207c0e877b28b2b0d62a283ee045a.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-Light.woff2 b/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-Light.woff2 deleted file mode 100644 index 8662795..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-Light.woff2 and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-Light.woff2.import b/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-Light.woff2.import deleted file mode 100644 index f7302e8..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-Light.woff2.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://cvo28aqpr7y58" -path="res://.godot/imported/DSEG7ClassicMini-Light.woff2-7c924facacc4d7a2d22054059105039e.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-Light.woff2" -dest_files=["res://.godot/imported/DSEG7ClassicMini-Light.woff2-7c924facacc4d7a2d22054059105039e.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-LightItalic.ttf b/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-LightItalic.ttf deleted file mode 100644 index 3965be7..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-LightItalic.ttf and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-LightItalic.ttf.import b/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-LightItalic.ttf.import deleted file mode 100644 index d56b746..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-LightItalic.ttf.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://dxwkeup2djq2e" -path="res://.godot/imported/DSEG7ClassicMini-LightItalic.ttf-80d398b0e6d89cfa8a34d8312f02ca90.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-LightItalic.ttf" -dest_files=["res://.godot/imported/DSEG7ClassicMini-LightItalic.ttf-80d398b0e6d89cfa8a34d8312f02ca90.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-LightItalic.woff b/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-LightItalic.woff deleted file mode 100644 index 12be71c..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-LightItalic.woff and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-LightItalic.woff.import b/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-LightItalic.woff.import deleted file mode 100644 index 7d85de4..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-LightItalic.woff.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://d4mfhqy6uvmgi" -path="res://.godot/imported/DSEG7ClassicMini-LightItalic.woff-358f1285c1e8c5139bc39a626d85a841.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-LightItalic.woff" -dest_files=["res://.godot/imported/DSEG7ClassicMini-LightItalic.woff-358f1285c1e8c5139bc39a626d85a841.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-LightItalic.woff2 b/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-LightItalic.woff2 deleted file mode 100644 index 019e4a7..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-LightItalic.woff2 and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-LightItalic.woff2.import b/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-LightItalic.woff2.import deleted file mode 100644 index d57e117..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-LightItalic.woff2.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://b8gb3wenuru1u" -path="res://.godot/imported/DSEG7ClassicMini-LightItalic.woff2-9ac3c3d6cbacd358a23cafc88d7e2b7a.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-LightItalic.woff2" -dest_files=["res://.godot/imported/DSEG7ClassicMini-LightItalic.woff2-9ac3c3d6cbacd358a23cafc88d7e2b7a.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-Regular.ttf b/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-Regular.ttf deleted file mode 100644 index ffe3dd7..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-Regular.ttf and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-Regular.ttf.import b/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-Regular.ttf.import deleted file mode 100644 index a26ba37..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-Regular.ttf.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://dnlmw38kqmrjx" -path="res://.godot/imported/DSEG7ClassicMini-Regular.ttf-a066994b89b96b7d57f191dc43039897.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-Regular.ttf" -dest_files=["res://.godot/imported/DSEG7ClassicMini-Regular.ttf-a066994b89b96b7d57f191dc43039897.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-Regular.woff b/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-Regular.woff deleted file mode 100644 index 786c87f..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-Regular.woff and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-Regular.woff.import b/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-Regular.woff.import deleted file mode 100644 index 542b0a8..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-Regular.woff.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://ccu8jyayf5un3" -path="res://.godot/imported/DSEG7ClassicMini-Regular.woff-baf5c7c371ca467c144ecd76fc685de9.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-Regular.woff" -dest_files=["res://.godot/imported/DSEG7ClassicMini-Regular.woff-baf5c7c371ca467c144ecd76fc685de9.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-Regular.woff2 b/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-Regular.woff2 deleted file mode 100644 index 0056e97..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-Regular.woff2 and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-Regular.woff2.import b/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-Regular.woff2.import deleted file mode 100644 index e4f69f3..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-Regular.woff2.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://clstjxfe8yfcn" -path="res://.godot/imported/DSEG7ClassicMini-Regular.woff2-b53f53ec6350b01ddd887ede1e890620.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-Regular.woff2" -dest_files=["res://.godot/imported/DSEG7ClassicMini-Regular.woff2-b53f53ec6350b01ddd887ede1e890620.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Bold.ttf b/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Bold.ttf deleted file mode 100644 index 5f71db4..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Bold.ttf and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Bold.ttf.import b/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Bold.ttf.import deleted file mode 100644 index 4df6257..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Bold.ttf.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://cx8answ74aj8b" -path="res://.godot/imported/DSEG7Classic-Bold.ttf-75c11464c0e8e68af05333ce0a8d544f.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Bold.ttf" -dest_files=["res://.godot/imported/DSEG7Classic-Bold.ttf-75c11464c0e8e68af05333ce0a8d544f.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Bold.woff b/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Bold.woff deleted file mode 100644 index 4737610..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Bold.woff and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Bold.woff.import b/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Bold.woff.import deleted file mode 100644 index 8ffd6e1..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Bold.woff.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://cmtooldcxtqr0" -path="res://.godot/imported/DSEG7Classic-Bold.woff-9cf5a7e8d6cbe9f51e4a36746d933b4f.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Bold.woff" -dest_files=["res://.godot/imported/DSEG7Classic-Bold.woff-9cf5a7e8d6cbe9f51e4a36746d933b4f.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Bold.woff2 b/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Bold.woff2 deleted file mode 100644 index 558eec4..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Bold.woff2 and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Bold.woff2.import b/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Bold.woff2.import deleted file mode 100644 index 3de88d3..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Bold.woff2.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://coblp3110pbp5" -path="res://.godot/imported/DSEG7Classic-Bold.woff2-7913e1ff760be880e75e2deec894be47.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Bold.woff2" -dest_files=["res://.godot/imported/DSEG7Classic-Bold.woff2-7913e1ff760be880e75e2deec894be47.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-BoldItalic.ttf b/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-BoldItalic.ttf deleted file mode 100644 index de0b43a..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-BoldItalic.ttf and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-BoldItalic.ttf.import b/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-BoldItalic.ttf.import deleted file mode 100644 index c3e76a1..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-BoldItalic.ttf.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://do42hb084uinq" -path="res://.godot/imported/DSEG7Classic-BoldItalic.ttf-07e7e62e1ed7be64f3c82d4e180c4187.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-BoldItalic.ttf" -dest_files=["res://.godot/imported/DSEG7Classic-BoldItalic.ttf-07e7e62e1ed7be64f3c82d4e180c4187.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-BoldItalic.woff b/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-BoldItalic.woff deleted file mode 100644 index a75fbd3..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-BoldItalic.woff and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-BoldItalic.woff.import b/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-BoldItalic.woff.import deleted file mode 100644 index 78b032d..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-BoldItalic.woff.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://twofepnh1om7" -path="res://.godot/imported/DSEG7Classic-BoldItalic.woff-016adc5a2a121f16c39b66511cccfcdb.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-BoldItalic.woff" -dest_files=["res://.godot/imported/DSEG7Classic-BoldItalic.woff-016adc5a2a121f16c39b66511cccfcdb.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-BoldItalic.woff2 b/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-BoldItalic.woff2 deleted file mode 100644 index 096a08a..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-BoldItalic.woff2 and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-BoldItalic.woff2.import b/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-BoldItalic.woff2.import deleted file mode 100644 index 46b1ad8..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-BoldItalic.woff2.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://bpo6ti4b8jvuj" -path="res://.godot/imported/DSEG7Classic-BoldItalic.woff2-368426401ee5d8506d396dec7decbeed.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-BoldItalic.woff2" -dest_files=["res://.godot/imported/DSEG7Classic-BoldItalic.woff2-368426401ee5d8506d396dec7decbeed.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Italic.ttf b/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Italic.ttf deleted file mode 100644 index 56383ba..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Italic.ttf and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Italic.ttf.import b/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Italic.ttf.import deleted file mode 100644 index ff54222..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Italic.ttf.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://fi4f7x0oyw0q" -path="res://.godot/imported/DSEG7Classic-Italic.ttf-2b7d2fb5aa0c390aeb7f0d19f3e7b0b1.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Italic.ttf" -dest_files=["res://.godot/imported/DSEG7Classic-Italic.ttf-2b7d2fb5aa0c390aeb7f0d19f3e7b0b1.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Italic.woff b/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Italic.woff deleted file mode 100644 index c868a38..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Italic.woff and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Italic.woff.import b/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Italic.woff.import deleted file mode 100644 index 58ef02e..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Italic.woff.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://bi1uw7mr3w8o2" -path="res://.godot/imported/DSEG7Classic-Italic.woff-cc0da55663e5309b6b21913e0def73cc.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Italic.woff" -dest_files=["res://.godot/imported/DSEG7Classic-Italic.woff-cc0da55663e5309b6b21913e0def73cc.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Italic.woff2 b/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Italic.woff2 deleted file mode 100644 index 937675e..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Italic.woff2 and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Italic.woff2.import b/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Italic.woff2.import deleted file mode 100644 index 7a361a2..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Italic.woff2.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://c6d43twcl3sjm" -path="res://.godot/imported/DSEG7Classic-Italic.woff2-049540ca9160cf09766ab6ae2f4876aa.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Italic.woff2" -dest_files=["res://.godot/imported/DSEG7Classic-Italic.woff2-049540ca9160cf09766ab6ae2f4876aa.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Light.ttf b/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Light.ttf deleted file mode 100644 index 642e982..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Light.ttf and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Light.ttf.import b/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Light.ttf.import deleted file mode 100644 index 76e0f56..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Light.ttf.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://cxapa76rphyac" -path="res://.godot/imported/DSEG7Classic-Light.ttf-9b88cf4bf12cc4130c93ce5aa048d033.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Light.ttf" -dest_files=["res://.godot/imported/DSEG7Classic-Light.ttf-9b88cf4bf12cc4130c93ce5aa048d033.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Light.woff b/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Light.woff deleted file mode 100644 index 322b629..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Light.woff and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Light.woff.import b/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Light.woff.import deleted file mode 100644 index 7a074b3..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Light.woff.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://ne4cvpihni2f" -path="res://.godot/imported/DSEG7Classic-Light.woff-f58c53348fc35e817f1547df604db079.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Light.woff" -dest_files=["res://.godot/imported/DSEG7Classic-Light.woff-f58c53348fc35e817f1547df604db079.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Light.woff2 b/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Light.woff2 deleted file mode 100644 index 68cff7b..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Light.woff2 and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Light.woff2.import b/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Light.woff2.import deleted file mode 100644 index 60066a6..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Light.woff2.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://dls3fbterykuy" -path="res://.godot/imported/DSEG7Classic-Light.woff2-669057f6f418d364c8a19c379a461bd7.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Light.woff2" -dest_files=["res://.godot/imported/DSEG7Classic-Light.woff2-669057f6f418d364c8a19c379a461bd7.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-LightItalic.ttf b/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-LightItalic.ttf deleted file mode 100644 index 5097587..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-LightItalic.ttf and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-LightItalic.ttf.import b/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-LightItalic.ttf.import deleted file mode 100644 index 3a6f5c4..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-LightItalic.ttf.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://bvflc6f8hdo6r" -path="res://.godot/imported/DSEG7Classic-LightItalic.ttf-92e3a473f64098619febfeee7088a72c.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-LightItalic.ttf" -dest_files=["res://.godot/imported/DSEG7Classic-LightItalic.ttf-92e3a473f64098619febfeee7088a72c.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-LightItalic.woff b/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-LightItalic.woff deleted file mode 100644 index c7e1909..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-LightItalic.woff and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-LightItalic.woff.import b/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-LightItalic.woff.import deleted file mode 100644 index ac2da8d..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-LightItalic.woff.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://8ruow2p1wvcw" -path="res://.godot/imported/DSEG7Classic-LightItalic.woff-e165f5abff8ebf325a393686468bb944.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-LightItalic.woff" -dest_files=["res://.godot/imported/DSEG7Classic-LightItalic.woff-e165f5abff8ebf325a393686468bb944.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-LightItalic.woff2 b/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-LightItalic.woff2 deleted file mode 100644 index f72faa9..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-LightItalic.woff2 and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-LightItalic.woff2.import b/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-LightItalic.woff2.import deleted file mode 100644 index f71eeeb..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-LightItalic.woff2.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://dqbw2kx8d2far" -path="res://.godot/imported/DSEG7Classic-LightItalic.woff2-4a1fa059a07844adbefc860c4dae2343.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-LightItalic.woff2" -dest_files=["res://.godot/imported/DSEG7Classic-LightItalic.woff2-4a1fa059a07844adbefc860c4dae2343.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Regular.ttf b/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Regular.ttf deleted file mode 100644 index 5e02edc..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Regular.ttf and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Regular.ttf.import b/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Regular.ttf.import deleted file mode 100644 index 037c2d8..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Regular.ttf.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://8bsgy7w0ok71" -path="res://.godot/imported/DSEG7Classic-Regular.ttf-350c16ec6be15568e00471e8b1e4f960.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Regular.ttf" -dest_files=["res://.godot/imported/DSEG7Classic-Regular.ttf-350c16ec6be15568e00471e8b1e4f960.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Regular.woff b/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Regular.woff deleted file mode 100644 index 99dded7..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Regular.woff and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Regular.woff.import b/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Regular.woff.import deleted file mode 100644 index 3fbad0c..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Regular.woff.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://bgkxvuprlo84v" -path="res://.godot/imported/DSEG7Classic-Regular.woff-1cb1090c766dc470430284951a24c3da.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Regular.woff" -dest_files=["res://.godot/imported/DSEG7Classic-Regular.woff-1cb1090c766dc470430284951a24c3da.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Regular.woff2 b/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Regular.woff2 deleted file mode 100644 index ff29060..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Regular.woff2 and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Regular.woff2.import b/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Regular.woff2.import deleted file mode 100644 index 252badd..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Regular.woff2.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://dcqanyf5or0f5" -path="res://.godot/imported/DSEG7Classic-Regular.woff2-6b94c2c3e9b3d8fc03ac02453201867a.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG7-Classic/DSEG7Classic-Regular.woff2" -dest_files=["res://.godot/imported/DSEG7Classic-Regular.woff2-6b94c2c3e9b3d8fc03ac02453201867a.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Bold.ttf b/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Bold.ttf deleted file mode 100644 index 65876c2..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Bold.ttf and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Bold.ttf.import b/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Bold.ttf.import deleted file mode 100644 index 2209989..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Bold.ttf.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://cebnbu1f5l26l" -path="res://.godot/imported/DSEG7ModernMini-Bold.ttf-79d7fed520a6e7eb7eacb41042b7c33e.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Bold.ttf" -dest_files=["res://.godot/imported/DSEG7ModernMini-Bold.ttf-79d7fed520a6e7eb7eacb41042b7c33e.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Bold.woff b/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Bold.woff deleted file mode 100644 index 57c944b..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Bold.woff and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Bold.woff.import b/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Bold.woff.import deleted file mode 100644 index a4706ae..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Bold.woff.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://boh174g3bcfah" -path="res://.godot/imported/DSEG7ModernMini-Bold.woff-5841244fbce5c927e7de84cd44c0a850.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Bold.woff" -dest_files=["res://.godot/imported/DSEG7ModernMini-Bold.woff-5841244fbce5c927e7de84cd44c0a850.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Bold.woff2 b/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Bold.woff2 deleted file mode 100644 index 78675f7..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Bold.woff2 and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Bold.woff2.import b/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Bold.woff2.import deleted file mode 100644 index ec0be1e..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Bold.woff2.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://bdya1j5d8vjdg" -path="res://.godot/imported/DSEG7ModernMini-Bold.woff2-4a41bba12820164c54900928687bc9fe.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Bold.woff2" -dest_files=["res://.godot/imported/DSEG7ModernMini-Bold.woff2-4a41bba12820164c54900928687bc9fe.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-BoldItalic.ttf b/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-BoldItalic.ttf deleted file mode 100644 index 4d416c2..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-BoldItalic.ttf and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-BoldItalic.ttf.import b/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-BoldItalic.ttf.import deleted file mode 100644 index 25af532..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-BoldItalic.ttf.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://bflgcc6uwefdp" -path="res://.godot/imported/DSEG7ModernMini-BoldItalic.ttf-e45c36aeb0d8fef9795ab5b883470953.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-BoldItalic.ttf" -dest_files=["res://.godot/imported/DSEG7ModernMini-BoldItalic.ttf-e45c36aeb0d8fef9795ab5b883470953.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-BoldItalic.woff b/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-BoldItalic.woff deleted file mode 100644 index b0516f8..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-BoldItalic.woff and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-BoldItalic.woff.import b/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-BoldItalic.woff.import deleted file mode 100644 index 5c527f2..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-BoldItalic.woff.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://mbgvbqgd13aa" -path="res://.godot/imported/DSEG7ModernMini-BoldItalic.woff-61beb76d11a5a2ccc7f4bcd09c58710d.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-BoldItalic.woff" -dest_files=["res://.godot/imported/DSEG7ModernMini-BoldItalic.woff-61beb76d11a5a2ccc7f4bcd09c58710d.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-BoldItalic.woff2 b/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-BoldItalic.woff2 deleted file mode 100644 index 3927f1a..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-BoldItalic.woff2 and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-BoldItalic.woff2.import b/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-BoldItalic.woff2.import deleted file mode 100644 index b42eecb..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-BoldItalic.woff2.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://d1y7klxxjkoib" -path="res://.godot/imported/DSEG7ModernMini-BoldItalic.woff2-38d5cb0d2c2c52847a97e6b58827b17d.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-BoldItalic.woff2" -dest_files=["res://.godot/imported/DSEG7ModernMini-BoldItalic.woff2-38d5cb0d2c2c52847a97e6b58827b17d.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Italic.ttf b/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Italic.ttf deleted file mode 100644 index 1ae0c29..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Italic.ttf and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Italic.ttf.import b/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Italic.ttf.import deleted file mode 100644 index 673e048..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Italic.ttf.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://bvk8qxjgdkffh" -path="res://.godot/imported/DSEG7ModernMini-Italic.ttf-420af19824c1c01fe94f7e48e9a79f5a.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Italic.ttf" -dest_files=["res://.godot/imported/DSEG7ModernMini-Italic.ttf-420af19824c1c01fe94f7e48e9a79f5a.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Italic.woff b/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Italic.woff deleted file mode 100644 index 8bef41d..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Italic.woff and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Italic.woff.import b/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Italic.woff.import deleted file mode 100644 index 137c292..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Italic.woff.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://cllc2hambolmp" -path="res://.godot/imported/DSEG7ModernMini-Italic.woff-1ed727d205d1fa539853f9d28ae3075e.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Italic.woff" -dest_files=["res://.godot/imported/DSEG7ModernMini-Italic.woff-1ed727d205d1fa539853f9d28ae3075e.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Italic.woff2 b/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Italic.woff2 deleted file mode 100644 index 2fe7073..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Italic.woff2 and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Italic.woff2.import b/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Italic.woff2.import deleted file mode 100644 index 6f512e8..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Italic.woff2.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://cgqkrq13jm4ok" -path="res://.godot/imported/DSEG7ModernMini-Italic.woff2-c14bb9af7766f5f472c8fb26c5d46bf3.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Italic.woff2" -dest_files=["res://.godot/imported/DSEG7ModernMini-Italic.woff2-c14bb9af7766f5f472c8fb26c5d46bf3.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Light.ttf b/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Light.ttf deleted file mode 100644 index 555e05c..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Light.ttf and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Light.ttf.import b/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Light.ttf.import deleted file mode 100644 index 0a0d8ea..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Light.ttf.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://pfpqri5pw0j8" -path="res://.godot/imported/DSEG7ModernMini-Light.ttf-edf30c72741b14b37d875da43041c8a2.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Light.ttf" -dest_files=["res://.godot/imported/DSEG7ModernMini-Light.ttf-edf30c72741b14b37d875da43041c8a2.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Light.woff b/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Light.woff deleted file mode 100644 index e665fdf..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Light.woff and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Light.woff.import b/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Light.woff.import deleted file mode 100644 index 6119c73..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Light.woff.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://bpd0hj6nrsgws" -path="res://.godot/imported/DSEG7ModernMini-Light.woff-62132f486b44e03e42f9a801106afcf7.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Light.woff" -dest_files=["res://.godot/imported/DSEG7ModernMini-Light.woff-62132f486b44e03e42f9a801106afcf7.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Light.woff2 b/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Light.woff2 deleted file mode 100644 index 36a5976..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Light.woff2 and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Light.woff2.import b/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Light.woff2.import deleted file mode 100644 index 371c751..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Light.woff2.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://do4uxtiianxnv" -path="res://.godot/imported/DSEG7ModernMini-Light.woff2-57011f6a4c7fe4459b1fe665ec081b75.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Light.woff2" -dest_files=["res://.godot/imported/DSEG7ModernMini-Light.woff2-57011f6a4c7fe4459b1fe665ec081b75.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-LightItalic.ttf b/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-LightItalic.ttf deleted file mode 100644 index bb92a06..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-LightItalic.ttf and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-LightItalic.ttf.import b/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-LightItalic.ttf.import deleted file mode 100644 index baf976b..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-LightItalic.ttf.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://ctcojwito0if6" -path="res://.godot/imported/DSEG7ModernMini-LightItalic.ttf-8887cbd9f78bf9441fcb9c890a0d5160.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-LightItalic.ttf" -dest_files=["res://.godot/imported/DSEG7ModernMini-LightItalic.ttf-8887cbd9f78bf9441fcb9c890a0d5160.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-LightItalic.woff b/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-LightItalic.woff deleted file mode 100644 index 622b07a..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-LightItalic.woff and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-LightItalic.woff.import b/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-LightItalic.woff.import deleted file mode 100644 index 6fa08e1..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-LightItalic.woff.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://dmkpl8g35gnwe" -path="res://.godot/imported/DSEG7ModernMini-LightItalic.woff-56c39b258cfe01fd45e6bd00f2ffec36.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-LightItalic.woff" -dest_files=["res://.godot/imported/DSEG7ModernMini-LightItalic.woff-56c39b258cfe01fd45e6bd00f2ffec36.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-LightItalic.woff2 b/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-LightItalic.woff2 deleted file mode 100644 index a6f3ac9..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-LightItalic.woff2 and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-LightItalic.woff2.import b/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-LightItalic.woff2.import deleted file mode 100644 index 01f66fb..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-LightItalic.woff2.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://s4vdxylh3g0h" -path="res://.godot/imported/DSEG7ModernMini-LightItalic.woff2-cfd90e7c93a97bdcc9205b6c6d85fd43.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-LightItalic.woff2" -dest_files=["res://.godot/imported/DSEG7ModernMini-LightItalic.woff2-cfd90e7c93a97bdcc9205b6c6d85fd43.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Regular.ttf b/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Regular.ttf deleted file mode 100644 index 29ddbb2..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Regular.ttf and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Regular.ttf.import b/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Regular.ttf.import deleted file mode 100644 index 106b836..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Regular.ttf.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://cqiqkqsh4q58v" -path="res://.godot/imported/DSEG7ModernMini-Regular.ttf-be6a2f041a147e5f0e9a678d9158da87.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Regular.ttf" -dest_files=["res://.godot/imported/DSEG7ModernMini-Regular.ttf-be6a2f041a147e5f0e9a678d9158da87.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Regular.woff b/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Regular.woff deleted file mode 100644 index 7384aff..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Regular.woff and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Regular.woff.import b/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Regular.woff.import deleted file mode 100644 index b323c93..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Regular.woff.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://qha3i0q3hnpj" -path="res://.godot/imported/DSEG7ModernMini-Regular.woff-dbbd67af5444ca30cc81fc0e4d5254ef.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Regular.woff" -dest_files=["res://.godot/imported/DSEG7ModernMini-Regular.woff-dbbd67af5444ca30cc81fc0e4d5254ef.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Regular.woff2 b/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Regular.woff2 deleted file mode 100644 index 51acedf..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Regular.woff2 and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Regular.woff2.import b/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Regular.woff2.import deleted file mode 100644 index 743da8a..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Regular.woff2.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://bvrrmkk56cdih" -path="res://.godot/imported/DSEG7ModernMini-Regular.woff2-e40c8d6f9134731a219b2fe8ddda731c.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG7-Modern-MINI/DSEG7ModernMini-Regular.woff2" -dest_files=["res://.godot/imported/DSEG7ModernMini-Regular.woff2-e40c8d6f9134731a219b2fe8ddda731c.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Bold.ttf b/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Bold.ttf deleted file mode 100644 index b6923e4..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Bold.ttf and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Bold.ttf.import b/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Bold.ttf.import deleted file mode 100644 index 7382fdf..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Bold.ttf.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://bfjy2ialnlegy" -path="res://.godot/imported/DSEG7Modern-Bold.ttf-acff33e9284ba5a25a4d0ff854986cf2.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Bold.ttf" -dest_files=["res://.godot/imported/DSEG7Modern-Bold.ttf-acff33e9284ba5a25a4d0ff854986cf2.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Bold.woff b/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Bold.woff deleted file mode 100644 index c0b3b50..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Bold.woff and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Bold.woff.import b/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Bold.woff.import deleted file mode 100644 index 765ef2a..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Bold.woff.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://kdy4s4432xs5" -path="res://.godot/imported/DSEG7Modern-Bold.woff-f63cb30e00312fcc8ba8a91943426c91.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Bold.woff" -dest_files=["res://.godot/imported/DSEG7Modern-Bold.woff-f63cb30e00312fcc8ba8a91943426c91.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Bold.woff2 b/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Bold.woff2 deleted file mode 100644 index 1aa2789..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Bold.woff2 and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Bold.woff2.import b/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Bold.woff2.import deleted file mode 100644 index 7a88be7..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Bold.woff2.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://6onm3rptqs4u" -path="res://.godot/imported/DSEG7Modern-Bold.woff2-c9de6e25616e6df4c2c4fa28499132c3.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Bold.woff2" -dest_files=["res://.godot/imported/DSEG7Modern-Bold.woff2-c9de6e25616e6df4c2c4fa28499132c3.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-BoldItalic.ttf b/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-BoldItalic.ttf deleted file mode 100644 index 741a0d6..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-BoldItalic.ttf and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-BoldItalic.ttf.import b/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-BoldItalic.ttf.import deleted file mode 100644 index 842011b..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-BoldItalic.ttf.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://c3lxu3b3fbmub" -path="res://.godot/imported/DSEG7Modern-BoldItalic.ttf-3ca3c4a818c70f9826d77e55fb06433d.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-BoldItalic.ttf" -dest_files=["res://.godot/imported/DSEG7Modern-BoldItalic.ttf-3ca3c4a818c70f9826d77e55fb06433d.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-BoldItalic.woff b/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-BoldItalic.woff deleted file mode 100644 index baf90c0..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-BoldItalic.woff and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-BoldItalic.woff.import b/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-BoldItalic.woff.import deleted file mode 100644 index 666cdcd..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-BoldItalic.woff.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://dxv78htw5rc36" -path="res://.godot/imported/DSEG7Modern-BoldItalic.woff-5572e797e442fc0893e48e9743f14173.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-BoldItalic.woff" -dest_files=["res://.godot/imported/DSEG7Modern-BoldItalic.woff-5572e797e442fc0893e48e9743f14173.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-BoldItalic.woff2 b/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-BoldItalic.woff2 deleted file mode 100644 index 7c1c1a6..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-BoldItalic.woff2 and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-BoldItalic.woff2.import b/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-BoldItalic.woff2.import deleted file mode 100644 index 63f13b2..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-BoldItalic.woff2.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://d2njwb1aid8x" -path="res://.godot/imported/DSEG7Modern-BoldItalic.woff2-7134bdcacc8b8b81a3911a41b29140f7.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-BoldItalic.woff2" -dest_files=["res://.godot/imported/DSEG7Modern-BoldItalic.woff2-7134bdcacc8b8b81a3911a41b29140f7.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Italic.ttf b/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Italic.ttf deleted file mode 100644 index 130fc40..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Italic.ttf and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Italic.ttf.import b/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Italic.ttf.import deleted file mode 100644 index 22abdfc..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Italic.ttf.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://bded6epwimtxd" -path="res://.godot/imported/DSEG7Modern-Italic.ttf-874666689cda868cc367f66f561e9f00.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Italic.ttf" -dest_files=["res://.godot/imported/DSEG7Modern-Italic.ttf-874666689cda868cc367f66f561e9f00.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Italic.woff b/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Italic.woff deleted file mode 100644 index a44b30d..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Italic.woff and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Italic.woff.import b/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Italic.woff.import deleted file mode 100644 index d50b08b..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Italic.woff.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://d2jhhop4q228a" -path="res://.godot/imported/DSEG7Modern-Italic.woff-2c2f081d4d14fc5cea4cd698426afe37.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Italic.woff" -dest_files=["res://.godot/imported/DSEG7Modern-Italic.woff-2c2f081d4d14fc5cea4cd698426afe37.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Italic.woff2 b/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Italic.woff2 deleted file mode 100644 index c643f2c..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Italic.woff2 and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Italic.woff2.import b/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Italic.woff2.import deleted file mode 100644 index d9c1792..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Italic.woff2.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://bs2ne7i21ryv1" -path="res://.godot/imported/DSEG7Modern-Italic.woff2-7b6d977e372e6676e4e83f783b37af9e.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Italic.woff2" -dest_files=["res://.godot/imported/DSEG7Modern-Italic.woff2-7b6d977e372e6676e4e83f783b37af9e.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Light.ttf b/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Light.ttf deleted file mode 100644 index d270d66..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Light.ttf and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Light.ttf.import b/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Light.ttf.import deleted file mode 100644 index a689981..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Light.ttf.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://cbjkir2lry40t" -path="res://.godot/imported/DSEG7Modern-Light.ttf-959c26b6aba7fd8af5bb0b9e85979f6b.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Light.ttf" -dest_files=["res://.godot/imported/DSEG7Modern-Light.ttf-959c26b6aba7fd8af5bb0b9e85979f6b.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Light.woff b/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Light.woff deleted file mode 100644 index 6050be5..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Light.woff and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Light.woff.import b/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Light.woff.import deleted file mode 100644 index a9c1d37..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Light.woff.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://iwkbha7tw4tv" -path="res://.godot/imported/DSEG7Modern-Light.woff-261a9996096ecefd9ec06637975d84bc.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Light.woff" -dest_files=["res://.godot/imported/DSEG7Modern-Light.woff-261a9996096ecefd9ec06637975d84bc.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Light.woff2 b/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Light.woff2 deleted file mode 100644 index 709c755..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Light.woff2 and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Light.woff2.import b/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Light.woff2.import deleted file mode 100644 index c6fa163..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Light.woff2.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://bs5c6v2ln7sbh" -path="res://.godot/imported/DSEG7Modern-Light.woff2-b4232c5ac226df6a654d71177e6b31e2.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Light.woff2" -dest_files=["res://.godot/imported/DSEG7Modern-Light.woff2-b4232c5ac226df6a654d71177e6b31e2.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-LightItalic.ttf b/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-LightItalic.ttf deleted file mode 100644 index 7df51f6..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-LightItalic.ttf and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-LightItalic.ttf.import b/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-LightItalic.ttf.import deleted file mode 100644 index 89181f7..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-LightItalic.ttf.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://blwtn8gho2f2s" -path="res://.godot/imported/DSEG7Modern-LightItalic.ttf-3975aaca0d99dd477b7de7dc4596e2f7.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-LightItalic.ttf" -dest_files=["res://.godot/imported/DSEG7Modern-LightItalic.ttf-3975aaca0d99dd477b7de7dc4596e2f7.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-LightItalic.woff b/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-LightItalic.woff deleted file mode 100644 index b63f771..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-LightItalic.woff and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-LightItalic.woff.import b/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-LightItalic.woff.import deleted file mode 100644 index afc6951..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-LightItalic.woff.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://bpdfks6am2hsx" -path="res://.godot/imported/DSEG7Modern-LightItalic.woff-788c62ac854b21bc91aa4b426d7e47e5.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-LightItalic.woff" -dest_files=["res://.godot/imported/DSEG7Modern-LightItalic.woff-788c62ac854b21bc91aa4b426d7e47e5.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-LightItalic.woff2 b/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-LightItalic.woff2 deleted file mode 100644 index af9168d..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-LightItalic.woff2 and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-LightItalic.woff2.import b/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-LightItalic.woff2.import deleted file mode 100644 index c45e08c..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-LightItalic.woff2.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://bj7l7qblo22n4" -path="res://.godot/imported/DSEG7Modern-LightItalic.woff2-8030252ad25c9cfe83b55ac57155a80b.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-LightItalic.woff2" -dest_files=["res://.godot/imported/DSEG7Modern-LightItalic.woff2-8030252ad25c9cfe83b55ac57155a80b.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Regular.ttf b/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Regular.ttf deleted file mode 100644 index 5563dcd..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Regular.ttf and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Regular.ttf.import b/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Regular.ttf.import deleted file mode 100644 index e04a2c9..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Regular.ttf.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://dadlj58ey4q38" -path="res://.godot/imported/DSEG7Modern-Regular.ttf-525744b67e8782d66e2b400b46f2bd44.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Regular.ttf" -dest_files=["res://.godot/imported/DSEG7Modern-Regular.ttf-525744b67e8782d66e2b400b46f2bd44.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Regular.woff b/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Regular.woff deleted file mode 100644 index d620347..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Regular.woff and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Regular.woff.import b/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Regular.woff.import deleted file mode 100644 index d60fa50..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Regular.woff.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://bs32wqb3e011t" -path="res://.godot/imported/DSEG7Modern-Regular.woff-3c53e4499c48a8c90e5f350fa54f0f09.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Regular.woff" -dest_files=["res://.godot/imported/DSEG7Modern-Regular.woff-3c53e4499c48a8c90e5f350fa54f0f09.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Regular.woff2 b/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Regular.woff2 deleted file mode 100644 index 0075dbe..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Regular.woff2 and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Regular.woff2.import b/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Regular.woff2.import deleted file mode 100644 index 477f5e3..0000000 --- a/Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Regular.woff2.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://26vbe25pcfjo" -path="res://.godot/imported/DSEG7Modern-Regular.woff2-b6a7fc93e91259df065b4224b2793f80.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEG7-Modern/DSEG7Modern-Regular.woff2" -dest_files=["res://.godot/imported/DSEG7Modern-Regular.woff2-b6a7fc93e91259df065b4224b2793f80.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEGWeather/DSEGWeather.ttf b/Fonts/fonts-DSEG_v046/DSEGWeather/DSEGWeather.ttf deleted file mode 100644 index 06e52d4..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEGWeather/DSEGWeather.ttf and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEGWeather/DSEGWeather.ttf.import b/Fonts/fonts-DSEG_v046/DSEGWeather/DSEGWeather.ttf.import deleted file mode 100644 index 92aa5ea..0000000 --- a/Fonts/fonts-DSEG_v046/DSEGWeather/DSEGWeather.ttf.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://cpi1xvohpf362" -path="res://.godot/imported/DSEGWeather.ttf-732c78733999df985a873e9efdcf3cc0.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEGWeather/DSEGWeather.ttf" -dest_files=["res://.godot/imported/DSEGWeather.ttf-732c78733999df985a873e9efdcf3cc0.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEGWeather/DSEGWeather.woff b/Fonts/fonts-DSEG_v046/DSEGWeather/DSEGWeather.woff deleted file mode 100644 index 699b80a..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEGWeather/DSEGWeather.woff and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEGWeather/DSEGWeather.woff.import b/Fonts/fonts-DSEG_v046/DSEGWeather/DSEGWeather.woff.import deleted file mode 100644 index 693be8d..0000000 --- a/Fonts/fonts-DSEG_v046/DSEGWeather/DSEGWeather.woff.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://cn43lr68ra70y" -path="res://.godot/imported/DSEGWeather.woff-8da057d02f14212faae0275b02588b0f.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEGWeather/DSEGWeather.woff" -dest_files=["res://.godot/imported/DSEGWeather.woff-8da057d02f14212faae0275b02588b0f.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/DSEGWeather/DSEGWeather.woff2 b/Fonts/fonts-DSEG_v046/DSEGWeather/DSEGWeather.woff2 deleted file mode 100644 index 146cb0b..0000000 Binary files a/Fonts/fonts-DSEG_v046/DSEGWeather/DSEGWeather.woff2 and /dev/null differ diff --git a/Fonts/fonts-DSEG_v046/DSEGWeather/DSEGWeather.woff2.import b/Fonts/fonts-DSEG_v046/DSEGWeather/DSEGWeather.woff2.import deleted file mode 100644 index 8129bd4..0000000 --- a/Fonts/fonts-DSEG_v046/DSEGWeather/DSEGWeather.woff2.import +++ /dev/null @@ -1,33 +0,0 @@ -[remap] - -importer="font_data_dynamic" -type="FontFile" -uid="uid://dlme066ohexts" -path="res://.godot/imported/DSEGWeather.woff2-adccf73af6c693f9a6cd77d50af89bef.fontdata" - -[deps] - -source_file="res://Fonts/fonts-DSEG_v046/DSEGWeather/DSEGWeather.woff2" -dest_files=["res://.godot/imported/DSEGWeather.woff2-adccf73af6c693f9a6cd77d50af89bef.fontdata"] - -[params] - -Rendering=null -antialiasing=1 -generate_mipmaps=false -multichannel_signed_distance_field=false -msdf_pixel_range=8 -msdf_size=48 -allow_system_fallback=true -force_autohinter=false -hinting=1 -subpixel_positioning=1 -oversampling=0.0 -Fallbacks=null -fallbacks=[] -Compress=null -compress=true -preload=[] -language_support={} -script_support={} -opentype_features={} diff --git a/Fonts/fonts-DSEG_v046/README.md b/Fonts/fonts-DSEG_v046/README.md deleted file mode 100755 index 8bcff1f..0000000 --- a/Fonts/fonts-DSEG_v046/README.md +++ /dev/null @@ -1,99 +0,0 @@ -DSEG Font Family (v0.46) -==== - -## Overview - -DSEG is a free font which imitate LCD Display (7SEG, 14SEG, Weather icons etc.). -DSEG have special features: - - - Includes the roman-alphabet and symbol glyphs. - - Many types(over 50) are available. - - Licensed under [SIL OPEN FONT LICENSE Version 1.1](http://scripts.sil.org/OFL). You can use DSEG for non-commercial and commercial purposes. - -![DSEG Image](http://www.keshikan.net/img/DSEG_sample_github.png) - -## Sample -![DSEG Sample Image](http://www.keshikan.net/img/DSEG_weather_sample.png) - -## Usage - - - Colon and Space have same width. - - ![DSEG usage 1](http://www.keshikan.net/img/dseg_usage1.png) - - - Period has zero width. - - ![DSEG usage 2](http://www.keshikan.net/img/dseg_usage2.png) - - - All-off (Exclamation) - - ![DSEG usage 3](http://www.keshikan.net/img/dseg_usage3.png) - - - All-on ("8" or Tilda) - - ![DSEG usage 4](http://www.keshikan.net/img/dseg_usage4.png) - -## Others - -For more information, visit DSEG support page. - - - English:[https://www.keshikan.net/fonts-e.html](https://www.keshikan.net/fonts-e.html) - - Japanese:[https://www.keshikan.net/fonts.html](https://www.keshikan.net/fonts.html) - -## How to Install - -### Download release binary - -[release binary](https://github.com/keshikan/DSEG/releases) - -### Build from source(*.sfd) - -Install [FontForge](https://fontforge.github.io/en-US/) and [Google woff2](https://github.com/google/woff2), and type below. - - $ make - -### Install in Ubuntu(18.04 or later) - $ sudo apt-get install fonts-dseg - -### Install from npm - $ npm i dseg - -## Changelog - - - [v0.46(2020-03-15)](https://github.com/keshikan/DSEG/releases/download/v0.46/fonts-DSEG_v046.zip) - - Added "DEGREE SIGN"(U+00B0). - - Added "LOW LINE"(U+005F) on DSEG7. - - Fixed an issue where the period(U+002E) width was not zero. - - - [v0.45(2018-01-09)](https://github.com/keshikan/DSEG/releases/download/v0.45/fonts-DSEG_v045.zip) - - Added makefile and build script. (Merged [#8](https://github.com/keshikan/DSEG/pull/8) [#9](https://github.com/keshikan/DSEG/pull/9) . Thanks to [alexmyczko](https://github.com/alexmyczko)) - - - [v0.44(2018-01-02)](https://github.com/keshikan/DSEG/archive/v0.44.zip) - - Modified colon character position for balancing in Italic style. See below. -![DSEG v044](http://www.keshikan.net/img/dseg_mod_v044.png) - - Added License metadata to *.ttf . - - Changed file name of *.sfd to match it's font-name. - - - [v0.43(2017-08-15)](https://github.com/keshikan/DSEG/archive/v0.43.zip) - - Added package.json and registerd npmjs.com. ([merged #5](https://github.com/keshikan/DSEG/pull/5). Thanks to [nils-werner](https://github.com/nils-werner)) - - - [v0.42(2017-04-27)](https://github.com/keshikan/DSEG/archive/v0.42.zip) - - Added WOFF2 file format. - - Added [extended metadata block](https://www.w3.org/TR/WOFF/#Metadata) to *.woff and *.woff2. - - - [v0.41(2017-01-07)](https://github.com/keshikan/DSEG/archive/v0.41.zip) - - Assigned all-segment-off status to exclamation mark(U+0021). - - - [v0.40(2017-01-06)](https://github.com/keshikan/DSEG/archive/v0.40.zip) - - First released in Github. - - Added weather icons "DSEGWeather". - - The license has been changed to the [SIL OPEN FONT LICENSE Version 1.1](http://scripts.sil.org/OFL). - - - v0.1x-0.30(2014-09-07 to 2017-01-07) - - Older version(not recommended). - - The license is original, not OFL1.1. When use this, read the attached document please. - - [Download v0.30](https://www.keshikan.net/archive/DSEG_v030.zip) - -## License - -- Any font files(*.ttf, *.woff, *.sfd) are licensed under the [SIL OPEN FONT LICENSE Version 1.1](http://scripts.sil.org/OFL) diff --git a/Intro.gd b/Intro.gd index c530106..e66ddeb 100644 --- a/Intro.gd +++ b/Intro.gd @@ -16,3 +16,15 @@ func _on_update_score(score : int) -> void: func _on_update_highscore(score : int) -> void: $HBoxContainer/HighScore/HighScoreBox.text = "%08d" % score + + +func _on_settings_pressed() -> void: + pass # Replace with function body. + + +func _on_editor_pressed() -> void: + get_tree().change_scene_to_file("res://LevelEditor.tscn") + + +func _on_exit_pressed() -> void: + get_tree().quit() diff --git a/Intro.tscn b/Intro.tscn index 2cb293f..856bce8 100644 --- a/Intro.tscn +++ b/Intro.tscn @@ -74,6 +74,63 @@ layout_mode = 2 size_flags_horizontal = 3 theme = ExtResource("3_8d2ix") +[node name="HBoxContainer2" type="HBoxContainer" parent="VBoxContainer"] +layout_mode = 2 + +[node name="HSeparator" type="HSeparator" parent="VBoxContainer/HBoxContainer2"] +layout_mode = 2 +size_flags_horizontal = 3 +theme = ExtResource("3_8d2ix") + +[node name="Settings" type="Button" parent="VBoxContainer/HBoxContainer2"] +layout_mode = 2 +theme = ExtResource("3_8d2ix") +text = "SETTINGS" +icon_alignment = 1 + +[node name="HSeparator2" type="HSeparator" parent="VBoxContainer/HBoxContainer2"] +layout_mode = 2 +size_flags_horizontal = 3 +theme = ExtResource("3_8d2ix") + +[node name="HBoxContainer3" type="HBoxContainer" parent="VBoxContainer"] +layout_mode = 2 + +[node name="HSeparator" type="HSeparator" parent="VBoxContainer/HBoxContainer3"] +layout_mode = 2 +size_flags_horizontal = 3 +theme = ExtResource("3_8d2ix") + +[node name="Editor" type="Button" parent="VBoxContainer/HBoxContainer3"] +layout_mode = 2 +theme = ExtResource("3_8d2ix") +text = "LEVEL EDITOR" +icon_alignment = 1 + +[node name="HSeparator2" type="HSeparator" parent="VBoxContainer/HBoxContainer3"] +layout_mode = 2 +size_flags_horizontal = 3 +theme = ExtResource("3_8d2ix") + +[node name="HBoxContainer4" type="HBoxContainer" parent="VBoxContainer"] +layout_mode = 2 + +[node name="HSeparator" type="HSeparator" parent="VBoxContainer/HBoxContainer4"] +layout_mode = 2 +size_flags_horizontal = 3 +theme = ExtResource("3_8d2ix") + +[node name="Exit" type="Button" parent="VBoxContainer/HBoxContainer4"] +layout_mode = 2 +theme = ExtResource("3_8d2ix") +text = "EXIT" +icon_alignment = 1 + +[node name="HSeparator2" type="HSeparator" parent="VBoxContainer/HBoxContainer4"] +layout_mode = 2 +size_flags_horizontal = 3 +theme = ExtResource("3_8d2ix") + [node name="HBoxContainer" type="HBoxContainer" parent="."] offset_left = 18.0 offset_top = 297.0 @@ -119,3 +176,6 @@ horizontal_alignment = 2 vertical_alignment = 1 [connection signal="pressed" from="VBoxContainer/HBoxContainer/Play" to="." method="_on_button_pressed"] +[connection signal="pressed" from="VBoxContainer/HBoxContainer2/Settings" to="." method="_on_settings_pressed"] +[connection signal="pressed" from="VBoxContainer/HBoxContainer3/Editor" to="." method="_on_editor_pressed"] +[connection signal="pressed" from="VBoxContainer/HBoxContainer4/Exit" to="." method="_on_exit_pressed"] diff --git a/LevelEditCell.gd b/LevelEditCell.gd new file mode 100644 index 0000000..17a4294 --- /dev/null +++ b/LevelEditCell.gd @@ -0,0 +1,84 @@ +extends TextureRect + +var type : String = " " + +func _input(event : InputEvent) -> void: + if event is InputEventKey: + if get_rect().encloses(Rect2(get_viewport().get_mouse_position(),Vector2(1, 1))): + if event.pressed: + match event.keycode: + KEY_R: + set_brick_type("R") + KEY_Y: + set_brick_type("Y") + KEY_G: + set_brick_type("G") + KEY_B: + set_brick_type("B") + KEY_M: + set_brick_type("M") + KEY_C: + set_brick_type("C") + KEY_O: + set_brick_type("O") + KEY_W: + set_brick_type("W") + KEY_1: + set_brick_type("s") + KEY_2: + set_brick_type("g") + KEY_3: + set_brick_type("i") + KEY_DELETE, KEY_BACKSPACE, KEY_SPACE: + set_brick_type(" ") + +func set_brick_type(t : String) -> void: + match t: + "R": + texture = load("res://Brick/BaseBrick.png") + modulate = Color.RED + type = "R" + "Y": + texture = load("res://Brick/BaseBrick.png") + modulate = Color.YELLOW + type = "Y" + "G": + texture = load("res://Brick/BaseBrick.png") + modulate = Color.GREEN + type = "G" + "B": + texture = load("res://Brick/BaseBrick.png") + modulate = Color.ROYAL_BLUE + type = "B" + "M": + texture = load("res://Brick/BaseBrick.png") + modulate = Color.MAGENTA + type = "M" + "C": + texture = load("res://Brick/BaseBrick.png") + modulate = Color.CYAN + type = "C" + "O": + texture = load("res://Brick/BaseBrick.png") + modulate = Color.ORANGE + type = "O" + "W": + texture = load("res://Brick/BaseBrick.png") + modulate = Color.WHITE + type = "W" + "s": + texture = load("res://Brick/ShinyBrick.png") + modulate = Color.SILVER + type = "s" + "g": + texture = load("res://Brick/ShinyBrick.png") + modulate = Color.GOLD + type = "g" + "i": + texture = load("res://Brick/InvulBrick.png") + modulate = Color.GRAY + type = "i" + " ": + texture = load("res://Brick/BlankBrick.png") + modulate = Color.WHITE + type = " " diff --git a/LevelEditor.gd b/LevelEditor.gd new file mode 100644 index 0000000..fff048e --- /dev/null +++ b/LevelEditor.gd @@ -0,0 +1,68 @@ +extends Node2D + + +func _on_background_item_selected(index: int) -> void: + $Background.texture = load($VBoxContainer/Background.get_item_metadata(index)) + + +func _on_save_pressed() -> void: + if $VBoxContainer/Name.text == "": + return + var data : Dictionary = { + "name": $VBoxContainer/Name.text, + "left": $VBoxContainer/Left.get_selected_text(), + "right": $VBoxContainer/Right.get_selected_text(), + "background": $VBoxContainer/Background.get_selected_text(), + "data": [] + } + for row in 18: + var s = "" + for col in 13: + var brick = get_node("Bricks/Row%d/Col%d" % [row, col]) + s += brick.type + data.data.push_back(s) + DirAccess.make_dir_recursive_absolute("user://Levels") + var f = FileAccess.open("user://Levels/%s.json" % data.name, FileAccess.WRITE) + f.store_string(JSON.stringify(data, " ")) + f.close() + + $VBoxContainer/Left.update_level_list() + $VBoxContainer/Right.update_level_list() + $VBoxContainer/Left.select_by_name(data.left) + $VBoxContainer/Right.select_by_name(data.right) + +func _on_exit_pressed() -> void: + get_tree().change_scene_to_file("res://Intro.tscn") + + + +func _on_load_pressed() -> void: + $LoadPanel.show_panel() + + +func _on_load_panel_load_file(filename: String) -> void: + if FileAccess.file_exists(filename): + var data = JSON.parse_string(FileAccess.get_file_as_string(filename)) + if data != null: + $VBoxContainer/Name.text = data.name + $VBoxContainer/Left.select_by_name(data.left) + $VBoxContainer/Right.select_by_name(data.right) + $VBoxContainer/Background.select_by_name(data.background) + $Background.texture = load($VBoxContainer/Background.get_selected_filename()) + for row in 18: + for col in 13: + var brick = get_node("Bricks/Row%d/Col%d" % [row, col]) + var c = data.data[row].substr(col, 1) + brick.set_brick_type(c) + + +func _on_new_pressed() -> void: + $VBoxContainer/Name.text = "" + $VBoxContainer/Left.select_by_name("DUNKANOID") + $VBoxContainer/Right.select_by_name("DUNKANOID") + $VBoxContainer/Background.select_by_name("BlueSlash") + $Background.texture = load($VBoxContainer/Background.get_selected_filename()) + for row in 18: + for col in 13: + var brick = get_node("Bricks/Row%d/Col%d" % [row, col]) + brick.set_brick_type(" ") diff --git a/LevelEditor.tscn b/LevelEditor.tscn new file mode 100644 index 0000000..5912dfb --- /dev/null +++ b/LevelEditor.tscn @@ -0,0 +1,2084 @@ +[gd_scene load_steps=9 format=3 uid="uid://bxkneahqum6hb"] + +[ext_resource type="Script" path="res://LevelEditor.gd" id="1_p7hit"] +[ext_resource type="Script" path="res://LevelEditCell.gd" id="2_ayd4g"] +[ext_resource type="Texture2D" uid="uid://cvqjlacpxf5j8" path="res://Brick/BlankBrick.png" id="2_dv67i"] +[ext_resource type="Theme" uid="uid://cfvww0geatnnk" path="res://MainTheme.tres" id="4_usb0o"] +[ext_resource type="Script" path="res://AllCapsEntry.gd" id="5_aqqxj"] +[ext_resource type="Script" path="res://LevelSelector.gd" id="6_brm2b"] +[ext_resource type="Script" path="res://BackgroundSelector.gd" id="7_x1vot"] +[ext_resource type="Script" path="res://LoadPanel.gd" id="8_0o6x4"] + +[node name="LevelEditor" type="Node2D"] +texture_filter = 1 +script = ExtResource("1_p7hit") + +[node name="Background" type="TextureRect" parent="."] +z_index = -2 +texture_repeat = 2 +clip_contents = true +offset_right = 640.0 +offset_bottom = 514.0 +scale = Vector2(0.7, 0.7) +stretch_mode = 1 + +[node name="ColorRect" type="ColorRect" parent="."] +offset_right = 16.0 +offset_bottom = 360.0 + +[node name="ColorRect2" type="ColorRect" parent="."] +offset_left = 432.0 +offset_right = 448.0 +offset_bottom = 360.0 + +[node name="ColorRect3" type="ColorRect" parent="."] +offset_right = 432.0 +offset_bottom = 16.0 + +[node name="Bricks" type="Node2D" parent="."] + +[node name="Row0" type="Node2D" parent="Bricks"] + +[node name="Col0" type="TextureRect" parent="Bricks/Row0"] +offset_left = 16.0 +offset_top = 16.0 +offset_right = 48.0 +offset_bottom = 32.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col1" type="TextureRect" parent="Bricks/Row0"] +offset_left = 48.0 +offset_top = 16.0 +offset_right = 80.0 +offset_bottom = 32.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col2" type="TextureRect" parent="Bricks/Row0"] +offset_left = 80.0 +offset_top = 16.0 +offset_right = 112.0 +offset_bottom = 32.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col3" type="TextureRect" parent="Bricks/Row0"] +offset_left = 112.0 +offset_top = 16.0 +offset_right = 144.0 +offset_bottom = 32.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col4" type="TextureRect" parent="Bricks/Row0"] +offset_left = 144.0 +offset_top = 16.0 +offset_right = 176.0 +offset_bottom = 32.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col5" type="TextureRect" parent="Bricks/Row0"] +offset_left = 176.0 +offset_top = 16.0 +offset_right = 208.0 +offset_bottom = 32.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col6" type="TextureRect" parent="Bricks/Row0"] +offset_left = 208.0 +offset_top = 16.0 +offset_right = 240.0 +offset_bottom = 32.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col7" type="TextureRect" parent="Bricks/Row0"] +offset_left = 240.0 +offset_top = 16.0 +offset_right = 272.0 +offset_bottom = 32.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col8" type="TextureRect" parent="Bricks/Row0"] +offset_left = 272.0 +offset_top = 16.0 +offset_right = 304.0 +offset_bottom = 32.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col9" type="TextureRect" parent="Bricks/Row0"] +offset_left = 304.0 +offset_top = 16.0 +offset_right = 336.0 +offset_bottom = 32.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col10" type="TextureRect" parent="Bricks/Row0"] +offset_left = 336.0 +offset_top = 16.0 +offset_right = 368.0 +offset_bottom = 32.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col11" type="TextureRect" parent="Bricks/Row0"] +offset_left = 368.0 +offset_top = 16.0 +offset_right = 400.0 +offset_bottom = 32.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col12" type="TextureRect" parent="Bricks/Row0"] +offset_left = 400.0 +offset_top = 16.0 +offset_right = 432.0 +offset_bottom = 32.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Row1" type="Node2D" parent="Bricks"] + +[node name="Col0" type="TextureRect" parent="Bricks/Row1"] +offset_left = 16.0 +offset_top = 32.0 +offset_right = 48.0 +offset_bottom = 48.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col1" type="TextureRect" parent="Bricks/Row1"] +offset_left = 48.0 +offset_top = 32.0 +offset_right = 80.0 +offset_bottom = 48.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col2" type="TextureRect" parent="Bricks/Row1"] +offset_left = 80.0 +offset_top = 32.0 +offset_right = 112.0 +offset_bottom = 48.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col3" type="TextureRect" parent="Bricks/Row1"] +offset_left = 112.0 +offset_top = 32.0 +offset_right = 144.0 +offset_bottom = 48.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col4" type="TextureRect" parent="Bricks/Row1"] +offset_left = 144.0 +offset_top = 32.0 +offset_right = 176.0 +offset_bottom = 48.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col5" type="TextureRect" parent="Bricks/Row1"] +offset_left = 176.0 +offset_top = 32.0 +offset_right = 208.0 +offset_bottom = 48.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col6" type="TextureRect" parent="Bricks/Row1"] +offset_left = 208.0 +offset_top = 32.0 +offset_right = 240.0 +offset_bottom = 48.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col7" type="TextureRect" parent="Bricks/Row1"] +offset_left = 240.0 +offset_top = 32.0 +offset_right = 272.0 +offset_bottom = 48.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col8" type="TextureRect" parent="Bricks/Row1"] +offset_left = 272.0 +offset_top = 32.0 +offset_right = 304.0 +offset_bottom = 48.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col9" type="TextureRect" parent="Bricks/Row1"] +offset_left = 304.0 +offset_top = 32.0 +offset_right = 336.0 +offset_bottom = 48.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col10" type="TextureRect" parent="Bricks/Row1"] +offset_left = 336.0 +offset_top = 32.0 +offset_right = 368.0 +offset_bottom = 48.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col11" type="TextureRect" parent="Bricks/Row1"] +offset_left = 368.0 +offset_top = 32.0 +offset_right = 400.0 +offset_bottom = 48.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col12" type="TextureRect" parent="Bricks/Row1"] +offset_left = 400.0 +offset_top = 32.0 +offset_right = 432.0 +offset_bottom = 48.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Row2" type="Node2D" parent="Bricks"] + +[node name="Col0" type="TextureRect" parent="Bricks/Row2"] +offset_left = 16.0 +offset_top = 48.0 +offset_right = 48.0 +offset_bottom = 64.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col1" type="TextureRect" parent="Bricks/Row2"] +offset_left = 48.0 +offset_top = 48.0 +offset_right = 80.0 +offset_bottom = 64.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col2" type="TextureRect" parent="Bricks/Row2"] +offset_left = 80.0 +offset_top = 48.0 +offset_right = 112.0 +offset_bottom = 64.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col3" type="TextureRect" parent="Bricks/Row2"] +offset_left = 112.0 +offset_top = 48.0 +offset_right = 144.0 +offset_bottom = 64.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col4" type="TextureRect" parent="Bricks/Row2"] +offset_left = 144.0 +offset_top = 48.0 +offset_right = 176.0 +offset_bottom = 64.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col5" type="TextureRect" parent="Bricks/Row2"] +offset_left = 176.0 +offset_top = 48.0 +offset_right = 208.0 +offset_bottom = 64.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col6" type="TextureRect" parent="Bricks/Row2"] +offset_left = 208.0 +offset_top = 48.0 +offset_right = 240.0 +offset_bottom = 64.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col7" type="TextureRect" parent="Bricks/Row2"] +offset_left = 240.0 +offset_top = 48.0 +offset_right = 272.0 +offset_bottom = 64.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col8" type="TextureRect" parent="Bricks/Row2"] +offset_left = 272.0 +offset_top = 48.0 +offset_right = 304.0 +offset_bottom = 64.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col9" type="TextureRect" parent="Bricks/Row2"] +offset_left = 304.0 +offset_top = 48.0 +offset_right = 336.0 +offset_bottom = 64.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col10" type="TextureRect" parent="Bricks/Row2"] +offset_left = 336.0 +offset_top = 48.0 +offset_right = 368.0 +offset_bottom = 64.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col11" type="TextureRect" parent="Bricks/Row2"] +offset_left = 368.0 +offset_top = 48.0 +offset_right = 400.0 +offset_bottom = 64.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col12" type="TextureRect" parent="Bricks/Row2"] +offset_left = 400.0 +offset_top = 48.0 +offset_right = 432.0 +offset_bottom = 64.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Row3" type="Node2D" parent="Bricks"] + +[node name="Col0" type="TextureRect" parent="Bricks/Row3"] +offset_left = 16.0 +offset_top = 64.0 +offset_right = 48.0 +offset_bottom = 80.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col1" type="TextureRect" parent="Bricks/Row3"] +offset_left = 48.0 +offset_top = 64.0 +offset_right = 80.0 +offset_bottom = 80.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col2" type="TextureRect" parent="Bricks/Row3"] +offset_left = 80.0 +offset_top = 64.0 +offset_right = 112.0 +offset_bottom = 80.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col3" type="TextureRect" parent="Bricks/Row3"] +offset_left = 112.0 +offset_top = 64.0 +offset_right = 144.0 +offset_bottom = 80.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col4" type="TextureRect" parent="Bricks/Row3"] +offset_left = 144.0 +offset_top = 64.0 +offset_right = 176.0 +offset_bottom = 80.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col5" type="TextureRect" parent="Bricks/Row3"] +offset_left = 176.0 +offset_top = 64.0 +offset_right = 208.0 +offset_bottom = 80.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col6" type="TextureRect" parent="Bricks/Row3"] +offset_left = 208.0 +offset_top = 64.0 +offset_right = 240.0 +offset_bottom = 80.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col7" type="TextureRect" parent="Bricks/Row3"] +offset_left = 240.0 +offset_top = 64.0 +offset_right = 272.0 +offset_bottom = 80.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col8" type="TextureRect" parent="Bricks/Row3"] +offset_left = 272.0 +offset_top = 64.0 +offset_right = 304.0 +offset_bottom = 80.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col9" type="TextureRect" parent="Bricks/Row3"] +offset_left = 304.0 +offset_top = 64.0 +offset_right = 336.0 +offset_bottom = 80.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col10" type="TextureRect" parent="Bricks/Row3"] +offset_left = 336.0 +offset_top = 64.0 +offset_right = 368.0 +offset_bottom = 80.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col11" type="TextureRect" parent="Bricks/Row3"] +offset_left = 368.0 +offset_top = 64.0 +offset_right = 400.0 +offset_bottom = 80.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col12" type="TextureRect" parent="Bricks/Row3"] +offset_left = 400.0 +offset_top = 64.0 +offset_right = 432.0 +offset_bottom = 80.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Row4" type="Node2D" parent="Bricks"] + +[node name="Col0" type="TextureRect" parent="Bricks/Row4"] +offset_left = 16.0 +offset_top = 80.0 +offset_right = 48.0 +offset_bottom = 96.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col1" type="TextureRect" parent="Bricks/Row4"] +offset_left = 48.0 +offset_top = 80.0 +offset_right = 80.0 +offset_bottom = 96.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col2" type="TextureRect" parent="Bricks/Row4"] +offset_left = 80.0 +offset_top = 80.0 +offset_right = 112.0 +offset_bottom = 96.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col3" type="TextureRect" parent="Bricks/Row4"] +offset_left = 112.0 +offset_top = 80.0 +offset_right = 144.0 +offset_bottom = 96.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col4" type="TextureRect" parent="Bricks/Row4"] +offset_left = 144.0 +offset_top = 80.0 +offset_right = 176.0 +offset_bottom = 96.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col5" type="TextureRect" parent="Bricks/Row4"] +offset_left = 176.0 +offset_top = 80.0 +offset_right = 208.0 +offset_bottom = 96.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col6" type="TextureRect" parent="Bricks/Row4"] +offset_left = 208.0 +offset_top = 80.0 +offset_right = 240.0 +offset_bottom = 96.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col7" type="TextureRect" parent="Bricks/Row4"] +offset_left = 240.0 +offset_top = 80.0 +offset_right = 272.0 +offset_bottom = 96.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col8" type="TextureRect" parent="Bricks/Row4"] +offset_left = 272.0 +offset_top = 80.0 +offset_right = 304.0 +offset_bottom = 96.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col9" type="TextureRect" parent="Bricks/Row4"] +offset_left = 304.0 +offset_top = 80.0 +offset_right = 336.0 +offset_bottom = 96.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col10" type="TextureRect" parent="Bricks/Row4"] +offset_left = 336.0 +offset_top = 80.0 +offset_right = 368.0 +offset_bottom = 96.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col11" type="TextureRect" parent="Bricks/Row4"] +offset_left = 368.0 +offset_top = 80.0 +offset_right = 400.0 +offset_bottom = 96.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col12" type="TextureRect" parent="Bricks/Row4"] +offset_left = 400.0 +offset_top = 80.0 +offset_right = 432.0 +offset_bottom = 96.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Row5" type="Node2D" parent="Bricks"] + +[node name="Col0" type="TextureRect" parent="Bricks/Row5"] +offset_left = 16.0 +offset_top = 96.0 +offset_right = 48.0 +offset_bottom = 112.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col1" type="TextureRect" parent="Bricks/Row5"] +offset_left = 48.0 +offset_top = 96.0 +offset_right = 80.0 +offset_bottom = 112.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col2" type="TextureRect" parent="Bricks/Row5"] +offset_left = 80.0 +offset_top = 96.0 +offset_right = 112.0 +offset_bottom = 112.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col3" type="TextureRect" parent="Bricks/Row5"] +offset_left = 112.0 +offset_top = 96.0 +offset_right = 144.0 +offset_bottom = 112.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col4" type="TextureRect" parent="Bricks/Row5"] +offset_left = 144.0 +offset_top = 96.0 +offset_right = 176.0 +offset_bottom = 112.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col5" type="TextureRect" parent="Bricks/Row5"] +offset_left = 176.0 +offset_top = 96.0 +offset_right = 208.0 +offset_bottom = 112.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col6" type="TextureRect" parent="Bricks/Row5"] +offset_left = 208.0 +offset_top = 96.0 +offset_right = 240.0 +offset_bottom = 112.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col7" type="TextureRect" parent="Bricks/Row5"] +offset_left = 240.0 +offset_top = 96.0 +offset_right = 272.0 +offset_bottom = 112.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col8" type="TextureRect" parent="Bricks/Row5"] +offset_left = 272.0 +offset_top = 96.0 +offset_right = 304.0 +offset_bottom = 112.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col9" type="TextureRect" parent="Bricks/Row5"] +offset_left = 304.0 +offset_top = 96.0 +offset_right = 336.0 +offset_bottom = 112.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col10" type="TextureRect" parent="Bricks/Row5"] +offset_left = 336.0 +offset_top = 96.0 +offset_right = 368.0 +offset_bottom = 112.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col11" type="TextureRect" parent="Bricks/Row5"] +offset_left = 368.0 +offset_top = 96.0 +offset_right = 400.0 +offset_bottom = 112.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col12" type="TextureRect" parent="Bricks/Row5"] +offset_left = 400.0 +offset_top = 96.0 +offset_right = 432.0 +offset_bottom = 112.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Row6" type="Node2D" parent="Bricks"] + +[node name="Col0" type="TextureRect" parent="Bricks/Row6"] +offset_left = 16.0 +offset_top = 112.0 +offset_right = 48.0 +offset_bottom = 128.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col1" type="TextureRect" parent="Bricks/Row6"] +offset_left = 48.0 +offset_top = 112.0 +offset_right = 80.0 +offset_bottom = 128.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col2" type="TextureRect" parent="Bricks/Row6"] +offset_left = 80.0 +offset_top = 112.0 +offset_right = 112.0 +offset_bottom = 128.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col3" type="TextureRect" parent="Bricks/Row6"] +offset_left = 112.0 +offset_top = 112.0 +offset_right = 144.0 +offset_bottom = 128.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col4" type="TextureRect" parent="Bricks/Row6"] +offset_left = 144.0 +offset_top = 112.0 +offset_right = 176.0 +offset_bottom = 128.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col5" type="TextureRect" parent="Bricks/Row6"] +offset_left = 176.0 +offset_top = 112.0 +offset_right = 208.0 +offset_bottom = 128.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col6" type="TextureRect" parent="Bricks/Row6"] +offset_left = 208.0 +offset_top = 112.0 +offset_right = 240.0 +offset_bottom = 128.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col7" type="TextureRect" parent="Bricks/Row6"] +offset_left = 240.0 +offset_top = 112.0 +offset_right = 272.0 +offset_bottom = 128.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col8" type="TextureRect" parent="Bricks/Row6"] +offset_left = 272.0 +offset_top = 112.0 +offset_right = 304.0 +offset_bottom = 128.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col9" type="TextureRect" parent="Bricks/Row6"] +offset_left = 304.0 +offset_top = 112.0 +offset_right = 336.0 +offset_bottom = 128.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col10" type="TextureRect" parent="Bricks/Row6"] +offset_left = 336.0 +offset_top = 112.0 +offset_right = 368.0 +offset_bottom = 128.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col11" type="TextureRect" parent="Bricks/Row6"] +offset_left = 368.0 +offset_top = 112.0 +offset_right = 400.0 +offset_bottom = 128.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col12" type="TextureRect" parent="Bricks/Row6"] +offset_left = 400.0 +offset_top = 112.0 +offset_right = 432.0 +offset_bottom = 128.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Row7" type="Node2D" parent="Bricks"] + +[node name="Col0" type="TextureRect" parent="Bricks/Row7"] +offset_left = 16.0 +offset_top = 128.0 +offset_right = 48.0 +offset_bottom = 144.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col1" type="TextureRect" parent="Bricks/Row7"] +offset_left = 48.0 +offset_top = 128.0 +offset_right = 80.0 +offset_bottom = 144.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col2" type="TextureRect" parent="Bricks/Row7"] +offset_left = 80.0 +offset_top = 128.0 +offset_right = 112.0 +offset_bottom = 144.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col3" type="TextureRect" parent="Bricks/Row7"] +offset_left = 112.0 +offset_top = 128.0 +offset_right = 144.0 +offset_bottom = 144.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col4" type="TextureRect" parent="Bricks/Row7"] +offset_left = 144.0 +offset_top = 128.0 +offset_right = 176.0 +offset_bottom = 144.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col5" type="TextureRect" parent="Bricks/Row7"] +offset_left = 176.0 +offset_top = 128.0 +offset_right = 208.0 +offset_bottom = 144.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col6" type="TextureRect" parent="Bricks/Row7"] +offset_left = 208.0 +offset_top = 128.0 +offset_right = 240.0 +offset_bottom = 144.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col7" type="TextureRect" parent="Bricks/Row7"] +offset_left = 240.0 +offset_top = 128.0 +offset_right = 272.0 +offset_bottom = 144.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col8" type="TextureRect" parent="Bricks/Row7"] +offset_left = 272.0 +offset_top = 128.0 +offset_right = 304.0 +offset_bottom = 144.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col9" type="TextureRect" parent="Bricks/Row7"] +offset_left = 304.0 +offset_top = 128.0 +offset_right = 336.0 +offset_bottom = 144.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col10" type="TextureRect" parent="Bricks/Row7"] +offset_left = 336.0 +offset_top = 128.0 +offset_right = 368.0 +offset_bottom = 144.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col11" type="TextureRect" parent="Bricks/Row7"] +offset_left = 368.0 +offset_top = 128.0 +offset_right = 400.0 +offset_bottom = 144.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col12" type="TextureRect" parent="Bricks/Row7"] +offset_left = 400.0 +offset_top = 128.0 +offset_right = 432.0 +offset_bottom = 144.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Row8" type="Node2D" parent="Bricks"] + +[node name="Col0" type="TextureRect" parent="Bricks/Row8"] +offset_left = 16.0 +offset_top = 144.0 +offset_right = 48.0 +offset_bottom = 160.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col1" type="TextureRect" parent="Bricks/Row8"] +offset_left = 48.0 +offset_top = 144.0 +offset_right = 80.0 +offset_bottom = 160.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col2" type="TextureRect" parent="Bricks/Row8"] +offset_left = 80.0 +offset_top = 144.0 +offset_right = 112.0 +offset_bottom = 160.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col3" type="TextureRect" parent="Bricks/Row8"] +offset_left = 112.0 +offset_top = 144.0 +offset_right = 144.0 +offset_bottom = 160.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col4" type="TextureRect" parent="Bricks/Row8"] +offset_left = 144.0 +offset_top = 144.0 +offset_right = 176.0 +offset_bottom = 160.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col5" type="TextureRect" parent="Bricks/Row8"] +offset_left = 176.0 +offset_top = 144.0 +offset_right = 208.0 +offset_bottom = 160.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col6" type="TextureRect" parent="Bricks/Row8"] +offset_left = 208.0 +offset_top = 144.0 +offset_right = 240.0 +offset_bottom = 160.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col7" type="TextureRect" parent="Bricks/Row8"] +offset_left = 240.0 +offset_top = 144.0 +offset_right = 272.0 +offset_bottom = 160.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col8" type="TextureRect" parent="Bricks/Row8"] +offset_left = 272.0 +offset_top = 144.0 +offset_right = 304.0 +offset_bottom = 160.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col9" type="TextureRect" parent="Bricks/Row8"] +offset_left = 304.0 +offset_top = 144.0 +offset_right = 336.0 +offset_bottom = 160.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col10" type="TextureRect" parent="Bricks/Row8"] +offset_left = 336.0 +offset_top = 144.0 +offset_right = 368.0 +offset_bottom = 160.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col11" type="TextureRect" parent="Bricks/Row8"] +offset_left = 368.0 +offset_top = 144.0 +offset_right = 400.0 +offset_bottom = 160.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col12" type="TextureRect" parent="Bricks/Row8"] +offset_left = 400.0 +offset_top = 144.0 +offset_right = 432.0 +offset_bottom = 160.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Row9" type="Node2D" parent="Bricks"] + +[node name="Col0" type="TextureRect" parent="Bricks/Row9"] +offset_left = 16.0 +offset_top = 160.0 +offset_right = 48.0 +offset_bottom = 176.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col1" type="TextureRect" parent="Bricks/Row9"] +offset_left = 48.0 +offset_top = 160.0 +offset_right = 80.0 +offset_bottom = 176.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col2" type="TextureRect" parent="Bricks/Row9"] +offset_left = 80.0 +offset_top = 160.0 +offset_right = 112.0 +offset_bottom = 176.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col3" type="TextureRect" parent="Bricks/Row9"] +offset_left = 112.0 +offset_top = 160.0 +offset_right = 144.0 +offset_bottom = 176.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col4" type="TextureRect" parent="Bricks/Row9"] +offset_left = 144.0 +offset_top = 160.0 +offset_right = 176.0 +offset_bottom = 176.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col5" type="TextureRect" parent="Bricks/Row9"] +offset_left = 176.0 +offset_top = 160.0 +offset_right = 208.0 +offset_bottom = 176.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col6" type="TextureRect" parent="Bricks/Row9"] +offset_left = 208.0 +offset_top = 160.0 +offset_right = 240.0 +offset_bottom = 176.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col7" type="TextureRect" parent="Bricks/Row9"] +offset_left = 240.0 +offset_top = 160.0 +offset_right = 272.0 +offset_bottom = 176.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col8" type="TextureRect" parent="Bricks/Row9"] +offset_left = 272.0 +offset_top = 160.0 +offset_right = 304.0 +offset_bottom = 176.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col9" type="TextureRect" parent="Bricks/Row9"] +offset_left = 304.0 +offset_top = 160.0 +offset_right = 336.0 +offset_bottom = 176.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col10" type="TextureRect" parent="Bricks/Row9"] +offset_left = 336.0 +offset_top = 160.0 +offset_right = 368.0 +offset_bottom = 176.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col11" type="TextureRect" parent="Bricks/Row9"] +offset_left = 368.0 +offset_top = 160.0 +offset_right = 400.0 +offset_bottom = 176.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col12" type="TextureRect" parent="Bricks/Row9"] +offset_left = 400.0 +offset_top = 160.0 +offset_right = 432.0 +offset_bottom = 176.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Row10" type="Node2D" parent="Bricks"] + +[node name="Col0" type="TextureRect" parent="Bricks/Row10"] +offset_left = 16.0 +offset_top = 176.0 +offset_right = 48.0 +offset_bottom = 192.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col1" type="TextureRect" parent="Bricks/Row10"] +offset_left = 48.0 +offset_top = 176.0 +offset_right = 80.0 +offset_bottom = 192.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col2" type="TextureRect" parent="Bricks/Row10"] +offset_left = 80.0 +offset_top = 176.0 +offset_right = 112.0 +offset_bottom = 192.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col3" type="TextureRect" parent="Bricks/Row10"] +offset_left = 112.0 +offset_top = 176.0 +offset_right = 144.0 +offset_bottom = 192.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col4" type="TextureRect" parent="Bricks/Row10"] +offset_left = 144.0 +offset_top = 176.0 +offset_right = 176.0 +offset_bottom = 192.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col5" type="TextureRect" parent="Bricks/Row10"] +offset_left = 176.0 +offset_top = 176.0 +offset_right = 208.0 +offset_bottom = 192.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col6" type="TextureRect" parent="Bricks/Row10"] +offset_left = 208.0 +offset_top = 176.0 +offset_right = 240.0 +offset_bottom = 192.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col7" type="TextureRect" parent="Bricks/Row10"] +offset_left = 240.0 +offset_top = 176.0 +offset_right = 272.0 +offset_bottom = 192.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col8" type="TextureRect" parent="Bricks/Row10"] +offset_left = 272.0 +offset_top = 176.0 +offset_right = 304.0 +offset_bottom = 192.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col9" type="TextureRect" parent="Bricks/Row10"] +offset_left = 304.0 +offset_top = 176.0 +offset_right = 336.0 +offset_bottom = 192.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col10" type="TextureRect" parent="Bricks/Row10"] +offset_left = 336.0 +offset_top = 176.0 +offset_right = 368.0 +offset_bottom = 192.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col11" type="TextureRect" parent="Bricks/Row10"] +offset_left = 368.0 +offset_top = 176.0 +offset_right = 400.0 +offset_bottom = 192.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col12" type="TextureRect" parent="Bricks/Row10"] +offset_left = 400.0 +offset_top = 176.0 +offset_right = 432.0 +offset_bottom = 192.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Row11" type="Node2D" parent="Bricks"] + +[node name="Col0" type="TextureRect" parent="Bricks/Row11"] +offset_left = 16.0 +offset_top = 192.0 +offset_right = 48.0 +offset_bottom = 208.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col1" type="TextureRect" parent="Bricks/Row11"] +offset_left = 48.0 +offset_top = 192.0 +offset_right = 80.0 +offset_bottom = 208.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col2" type="TextureRect" parent="Bricks/Row11"] +offset_left = 80.0 +offset_top = 192.0 +offset_right = 112.0 +offset_bottom = 208.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col3" type="TextureRect" parent="Bricks/Row11"] +offset_left = 112.0 +offset_top = 192.0 +offset_right = 144.0 +offset_bottom = 208.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col4" type="TextureRect" parent="Bricks/Row11"] +offset_left = 144.0 +offset_top = 192.0 +offset_right = 176.0 +offset_bottom = 208.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col5" type="TextureRect" parent="Bricks/Row11"] +offset_left = 176.0 +offset_top = 192.0 +offset_right = 208.0 +offset_bottom = 208.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col6" type="TextureRect" parent="Bricks/Row11"] +offset_left = 208.0 +offset_top = 192.0 +offset_right = 240.0 +offset_bottom = 208.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col7" type="TextureRect" parent="Bricks/Row11"] +offset_left = 240.0 +offset_top = 192.0 +offset_right = 272.0 +offset_bottom = 208.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col8" type="TextureRect" parent="Bricks/Row11"] +offset_left = 272.0 +offset_top = 192.0 +offset_right = 304.0 +offset_bottom = 208.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col9" type="TextureRect" parent="Bricks/Row11"] +offset_left = 304.0 +offset_top = 192.0 +offset_right = 336.0 +offset_bottom = 208.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col10" type="TextureRect" parent="Bricks/Row11"] +offset_left = 336.0 +offset_top = 192.0 +offset_right = 368.0 +offset_bottom = 208.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col11" type="TextureRect" parent="Bricks/Row11"] +offset_left = 368.0 +offset_top = 192.0 +offset_right = 400.0 +offset_bottom = 208.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col12" type="TextureRect" parent="Bricks/Row11"] +offset_left = 400.0 +offset_top = 192.0 +offset_right = 432.0 +offset_bottom = 208.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Row12" type="Node2D" parent="Bricks"] + +[node name="Col0" type="TextureRect" parent="Bricks/Row12"] +offset_left = 16.0 +offset_top = 208.0 +offset_right = 48.0 +offset_bottom = 224.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col1" type="TextureRect" parent="Bricks/Row12"] +offset_left = 48.0 +offset_top = 208.0 +offset_right = 80.0 +offset_bottom = 224.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col2" type="TextureRect" parent="Bricks/Row12"] +offset_left = 80.0 +offset_top = 208.0 +offset_right = 112.0 +offset_bottom = 224.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col3" type="TextureRect" parent="Bricks/Row12"] +offset_left = 112.0 +offset_top = 208.0 +offset_right = 144.0 +offset_bottom = 224.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col4" type="TextureRect" parent="Bricks/Row12"] +offset_left = 144.0 +offset_top = 208.0 +offset_right = 176.0 +offset_bottom = 224.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col5" type="TextureRect" parent="Bricks/Row12"] +offset_left = 176.0 +offset_top = 208.0 +offset_right = 208.0 +offset_bottom = 224.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col6" type="TextureRect" parent="Bricks/Row12"] +offset_left = 208.0 +offset_top = 208.0 +offset_right = 240.0 +offset_bottom = 224.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col7" type="TextureRect" parent="Bricks/Row12"] +offset_left = 240.0 +offset_top = 208.0 +offset_right = 272.0 +offset_bottom = 224.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col8" type="TextureRect" parent="Bricks/Row12"] +offset_left = 272.0 +offset_top = 208.0 +offset_right = 304.0 +offset_bottom = 224.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col9" type="TextureRect" parent="Bricks/Row12"] +offset_left = 304.0 +offset_top = 208.0 +offset_right = 336.0 +offset_bottom = 224.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col10" type="TextureRect" parent="Bricks/Row12"] +offset_left = 336.0 +offset_top = 208.0 +offset_right = 368.0 +offset_bottom = 224.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col11" type="TextureRect" parent="Bricks/Row12"] +offset_left = 368.0 +offset_top = 208.0 +offset_right = 400.0 +offset_bottom = 224.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col12" type="TextureRect" parent="Bricks/Row12"] +offset_left = 400.0 +offset_top = 208.0 +offset_right = 432.0 +offset_bottom = 224.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Row13" type="Node2D" parent="Bricks"] + +[node name="Col0" type="TextureRect" parent="Bricks/Row13"] +offset_left = 16.0 +offset_top = 224.0 +offset_right = 48.0 +offset_bottom = 240.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col1" type="TextureRect" parent="Bricks/Row13"] +offset_left = 48.0 +offset_top = 224.0 +offset_right = 80.0 +offset_bottom = 240.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col2" type="TextureRect" parent="Bricks/Row13"] +offset_left = 80.0 +offset_top = 224.0 +offset_right = 112.0 +offset_bottom = 240.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col3" type="TextureRect" parent="Bricks/Row13"] +offset_left = 112.0 +offset_top = 224.0 +offset_right = 144.0 +offset_bottom = 240.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col4" type="TextureRect" parent="Bricks/Row13"] +offset_left = 144.0 +offset_top = 224.0 +offset_right = 176.0 +offset_bottom = 240.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col5" type="TextureRect" parent="Bricks/Row13"] +offset_left = 176.0 +offset_top = 224.0 +offset_right = 208.0 +offset_bottom = 240.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col6" type="TextureRect" parent="Bricks/Row13"] +offset_left = 208.0 +offset_top = 224.0 +offset_right = 240.0 +offset_bottom = 240.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col7" type="TextureRect" parent="Bricks/Row13"] +offset_left = 240.0 +offset_top = 224.0 +offset_right = 272.0 +offset_bottom = 240.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col8" type="TextureRect" parent="Bricks/Row13"] +offset_left = 272.0 +offset_top = 224.0 +offset_right = 304.0 +offset_bottom = 240.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col9" type="TextureRect" parent="Bricks/Row13"] +offset_left = 304.0 +offset_top = 224.0 +offset_right = 336.0 +offset_bottom = 240.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col10" type="TextureRect" parent="Bricks/Row13"] +offset_left = 336.0 +offset_top = 224.0 +offset_right = 368.0 +offset_bottom = 240.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col11" type="TextureRect" parent="Bricks/Row13"] +offset_left = 368.0 +offset_top = 224.0 +offset_right = 400.0 +offset_bottom = 240.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col12" type="TextureRect" parent="Bricks/Row13"] +offset_left = 400.0 +offset_top = 224.0 +offset_right = 432.0 +offset_bottom = 240.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Row14" type="Node2D" parent="Bricks"] + +[node name="Col0" type="TextureRect" parent="Bricks/Row14"] +offset_left = 16.0 +offset_top = 240.0 +offset_right = 48.0 +offset_bottom = 256.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col1" type="TextureRect" parent="Bricks/Row14"] +offset_left = 48.0 +offset_top = 240.0 +offset_right = 80.0 +offset_bottom = 256.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col2" type="TextureRect" parent="Bricks/Row14"] +offset_left = 80.0 +offset_top = 240.0 +offset_right = 112.0 +offset_bottom = 256.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col3" type="TextureRect" parent="Bricks/Row14"] +offset_left = 112.0 +offset_top = 240.0 +offset_right = 144.0 +offset_bottom = 256.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col4" type="TextureRect" parent="Bricks/Row14"] +offset_left = 144.0 +offset_top = 240.0 +offset_right = 176.0 +offset_bottom = 256.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col5" type="TextureRect" parent="Bricks/Row14"] +offset_left = 176.0 +offset_top = 240.0 +offset_right = 208.0 +offset_bottom = 256.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col6" type="TextureRect" parent="Bricks/Row14"] +offset_left = 208.0 +offset_top = 240.0 +offset_right = 240.0 +offset_bottom = 256.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col7" type="TextureRect" parent="Bricks/Row14"] +offset_left = 240.0 +offset_top = 240.0 +offset_right = 272.0 +offset_bottom = 256.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col8" type="TextureRect" parent="Bricks/Row14"] +offset_left = 272.0 +offset_top = 240.0 +offset_right = 304.0 +offset_bottom = 256.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col9" type="TextureRect" parent="Bricks/Row14"] +offset_left = 304.0 +offset_top = 240.0 +offset_right = 336.0 +offset_bottom = 256.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col10" type="TextureRect" parent="Bricks/Row14"] +offset_left = 336.0 +offset_top = 240.0 +offset_right = 368.0 +offset_bottom = 256.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col11" type="TextureRect" parent="Bricks/Row14"] +offset_left = 368.0 +offset_top = 240.0 +offset_right = 400.0 +offset_bottom = 256.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col12" type="TextureRect" parent="Bricks/Row14"] +offset_left = 400.0 +offset_top = 240.0 +offset_right = 432.0 +offset_bottom = 256.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Row15" type="Node2D" parent="Bricks"] + +[node name="Col0" type="TextureRect" parent="Bricks/Row15"] +offset_left = 16.0 +offset_top = 256.0 +offset_right = 48.0 +offset_bottom = 272.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col1" type="TextureRect" parent="Bricks/Row15"] +offset_left = 48.0 +offset_top = 256.0 +offset_right = 80.0 +offset_bottom = 272.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col2" type="TextureRect" parent="Bricks/Row15"] +offset_left = 80.0 +offset_top = 256.0 +offset_right = 112.0 +offset_bottom = 272.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col3" type="TextureRect" parent="Bricks/Row15"] +offset_left = 112.0 +offset_top = 256.0 +offset_right = 144.0 +offset_bottom = 272.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col4" type="TextureRect" parent="Bricks/Row15"] +offset_left = 144.0 +offset_top = 256.0 +offset_right = 176.0 +offset_bottom = 272.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col5" type="TextureRect" parent="Bricks/Row15"] +offset_left = 176.0 +offset_top = 256.0 +offset_right = 208.0 +offset_bottom = 272.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col6" type="TextureRect" parent="Bricks/Row15"] +offset_left = 208.0 +offset_top = 256.0 +offset_right = 240.0 +offset_bottom = 272.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col7" type="TextureRect" parent="Bricks/Row15"] +offset_left = 240.0 +offset_top = 256.0 +offset_right = 272.0 +offset_bottom = 272.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col8" type="TextureRect" parent="Bricks/Row15"] +offset_left = 272.0 +offset_top = 256.0 +offset_right = 304.0 +offset_bottom = 272.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col9" type="TextureRect" parent="Bricks/Row15"] +offset_left = 304.0 +offset_top = 256.0 +offset_right = 336.0 +offset_bottom = 272.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col10" type="TextureRect" parent="Bricks/Row15"] +offset_left = 336.0 +offset_top = 256.0 +offset_right = 368.0 +offset_bottom = 272.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col11" type="TextureRect" parent="Bricks/Row15"] +offset_left = 368.0 +offset_top = 256.0 +offset_right = 400.0 +offset_bottom = 272.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col12" type="TextureRect" parent="Bricks/Row15"] +offset_left = 400.0 +offset_top = 256.0 +offset_right = 432.0 +offset_bottom = 272.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Row16" type="Node2D" parent="Bricks"] + +[node name="Col0" type="TextureRect" parent="Bricks/Row16"] +offset_left = 16.0 +offset_top = 272.0 +offset_right = 48.0 +offset_bottom = 288.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col1" type="TextureRect" parent="Bricks/Row16"] +offset_left = 48.0 +offset_top = 272.0 +offset_right = 80.0 +offset_bottom = 288.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col2" type="TextureRect" parent="Bricks/Row16"] +offset_left = 80.0 +offset_top = 272.0 +offset_right = 112.0 +offset_bottom = 288.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col3" type="TextureRect" parent="Bricks/Row16"] +offset_left = 112.0 +offset_top = 272.0 +offset_right = 144.0 +offset_bottom = 288.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col4" type="TextureRect" parent="Bricks/Row16"] +offset_left = 144.0 +offset_top = 272.0 +offset_right = 176.0 +offset_bottom = 288.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col5" type="TextureRect" parent="Bricks/Row16"] +offset_left = 176.0 +offset_top = 272.0 +offset_right = 208.0 +offset_bottom = 288.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col6" type="TextureRect" parent="Bricks/Row16"] +offset_left = 208.0 +offset_top = 272.0 +offset_right = 240.0 +offset_bottom = 288.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col7" type="TextureRect" parent="Bricks/Row16"] +offset_left = 240.0 +offset_top = 272.0 +offset_right = 272.0 +offset_bottom = 288.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col8" type="TextureRect" parent="Bricks/Row16"] +offset_left = 272.0 +offset_top = 272.0 +offset_right = 304.0 +offset_bottom = 288.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col9" type="TextureRect" parent="Bricks/Row16"] +offset_left = 304.0 +offset_top = 272.0 +offset_right = 336.0 +offset_bottom = 288.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col10" type="TextureRect" parent="Bricks/Row16"] +offset_left = 336.0 +offset_top = 272.0 +offset_right = 368.0 +offset_bottom = 288.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col11" type="TextureRect" parent="Bricks/Row16"] +offset_left = 368.0 +offset_top = 272.0 +offset_right = 400.0 +offset_bottom = 288.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col12" type="TextureRect" parent="Bricks/Row16"] +offset_left = 400.0 +offset_top = 272.0 +offset_right = 432.0 +offset_bottom = 288.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Row17" type="Node2D" parent="Bricks"] + +[node name="Col0" type="TextureRect" parent="Bricks/Row17"] +offset_left = 16.0 +offset_top = 288.0 +offset_right = 48.0 +offset_bottom = 304.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col1" type="TextureRect" parent="Bricks/Row17"] +offset_left = 48.0 +offset_top = 288.0 +offset_right = 80.0 +offset_bottom = 304.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col2" type="TextureRect" parent="Bricks/Row17"] +offset_left = 80.0 +offset_top = 288.0 +offset_right = 112.0 +offset_bottom = 304.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col3" type="TextureRect" parent="Bricks/Row17"] +offset_left = 112.0 +offset_top = 288.0 +offset_right = 144.0 +offset_bottom = 304.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col4" type="TextureRect" parent="Bricks/Row17"] +offset_left = 144.0 +offset_top = 288.0 +offset_right = 176.0 +offset_bottom = 304.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col5" type="TextureRect" parent="Bricks/Row17"] +offset_left = 176.0 +offset_top = 288.0 +offset_right = 208.0 +offset_bottom = 304.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col6" type="TextureRect" parent="Bricks/Row17"] +offset_left = 208.0 +offset_top = 288.0 +offset_right = 240.0 +offset_bottom = 304.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col7" type="TextureRect" parent="Bricks/Row17"] +offset_left = 240.0 +offset_top = 288.0 +offset_right = 272.0 +offset_bottom = 304.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col8" type="TextureRect" parent="Bricks/Row17"] +offset_left = 272.0 +offset_top = 288.0 +offset_right = 304.0 +offset_bottom = 304.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col9" type="TextureRect" parent="Bricks/Row17"] +offset_left = 304.0 +offset_top = 288.0 +offset_right = 336.0 +offset_bottom = 304.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col10" type="TextureRect" parent="Bricks/Row17"] +offset_left = 336.0 +offset_top = 288.0 +offset_right = 368.0 +offset_bottom = 304.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col11" type="TextureRect" parent="Bricks/Row17"] +offset_left = 368.0 +offset_top = 288.0 +offset_right = 400.0 +offset_bottom = 304.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="Col12" type="TextureRect" parent="Bricks/Row17"] +offset_left = 400.0 +offset_top = 288.0 +offset_right = 432.0 +offset_bottom = 304.0 +texture = ExtResource("2_dv67i") +script = ExtResource("2_ayd4g") + +[node name="VBoxContainer" type="VBoxContainer" parent="."] +offset_left = 464.0 +offset_top = 16.0 +offset_right = 624.0 +offset_bottom = 344.0 + +[node name="NameLabel" type="Label" parent="VBoxContainer"] +layout_mode = 2 +theme = ExtResource("4_usb0o") +text = "Name" +horizontal_alignment = 1 +vertical_alignment = 1 + +[node name="Name" type="LineEdit" parent="VBoxContainer"] +layout_mode = 2 +focus_mode = 1 +theme = ExtResource("4_usb0o") +script = ExtResource("5_aqqxj") + +[node name="LeftLabel" type="Label" parent="VBoxContainer"] +layout_mode = 2 +theme = ExtResource("4_usb0o") +text = "Left Exit" +horizontal_alignment = 1 +vertical_alignment = 1 + +[node name="Left" type="OptionButton" parent="VBoxContainer"] +layout_mode = 2 +focus_mode = 0 +theme = ExtResource("4_usb0o") +script = ExtResource("6_brm2b") + +[node name="RightLabel" type="Label" parent="VBoxContainer"] +layout_mode = 2 +theme = ExtResource("4_usb0o") +text = "Right Exit" +horizontal_alignment = 1 +vertical_alignment = 1 + +[node name="Right" type="OptionButton" parent="VBoxContainer"] +layout_mode = 2 +focus_mode = 0 +theme = ExtResource("4_usb0o") +script = ExtResource("6_brm2b") + +[node name="BackgroundLabel" type="Label" parent="VBoxContainer"] +layout_mode = 2 +theme = ExtResource("4_usb0o") +text = "Background" +horizontal_alignment = 1 +vertical_alignment = 1 + +[node name="Background" type="OptionButton" parent="VBoxContainer"] +layout_mode = 2 +focus_mode = 0 +theme = ExtResource("4_usb0o") +text_overrun_behavior = 3 +clip_text = true +script = ExtResource("7_x1vot") + +[node name="VSeparator" type="VSeparator" parent="VBoxContainer"] +layout_mode = 2 +size_flags_vertical = 3 +theme = ExtResource("4_usb0o") + +[node name="HBoxContainer" type="HBoxContainer" parent="VBoxContainer"] +layout_mode = 2 + +[node name="Load" type="Button" parent="VBoxContainer/HBoxContainer"] +layout_mode = 2 +size_flags_horizontal = 3 +focus_mode = 0 +theme = ExtResource("4_usb0o") +text = "LOAD" + +[node name="Save" type="Button" parent="VBoxContainer/HBoxContainer"] +layout_mode = 2 +size_flags_horizontal = 3 +focus_mode = 0 +theme = ExtResource("4_usb0o") +text = "SAVE" + +[node name="HBoxContainer2" type="HBoxContainer" parent="VBoxContainer"] +layout_mode = 2 + +[node name="New" type="Button" parent="VBoxContainer/HBoxContainer2"] +layout_mode = 2 +size_flags_horizontal = 3 +focus_mode = 0 +theme = ExtResource("4_usb0o") +text = "NEW" + +[node name="Exit" type="Button" parent="VBoxContainer/HBoxContainer2"] +layout_mode = 2 +size_flags_horizontal = 3 +focus_mode = 0 +theme = ExtResource("4_usb0o") +text = "EXIT" + +[node name="LoadPanel" type="PanelContainer" parent="."] +visible = false +offset_left = 464.0 +offset_top = 16.0 +offset_right = 624.0 +offset_bottom = 344.0 +theme = ExtResource("4_usb0o") +script = ExtResource("8_0o6x4") + +[node name="VBoxContainer" type="VBoxContainer" parent="LoadPanel"] +layout_mode = 2 + +[node name="ScrollContainer" type="ScrollContainer" parent="LoadPanel/VBoxContainer"] +layout_mode = 2 +size_flags_vertical = 3 + +[node name="VBoxContainer" type="VBoxContainer" parent="LoadPanel/VBoxContainer/ScrollContainer"] +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 + +[node name="HBoxContainer" type="HBoxContainer" parent="LoadPanel/VBoxContainer"] +layout_mode = 2 + +[node name="Cancel" type="Button" parent="LoadPanel/VBoxContainer/HBoxContainer"] +layout_mode = 2 +size_flags_horizontal = 3 +focus_mode = 0 +theme = ExtResource("4_usb0o") +text = "CANCEL" + +[connection signal="item_selected" from="VBoxContainer/Background" to="." method="_on_background_item_selected"] +[connection signal="pressed" from="VBoxContainer/HBoxContainer/Load" to="." method="_on_load_pressed"] +[connection signal="pressed" from="VBoxContainer/HBoxContainer/Save" to="." method="_on_save_pressed"] +[connection signal="pressed" from="VBoxContainer/HBoxContainer2/New" to="." method="_on_new_pressed"] +[connection signal="pressed" from="VBoxContainer/HBoxContainer2/Exit" to="." method="_on_exit_pressed"] +[connection signal="load_file" from="LoadPanel" to="." method="_on_load_panel_load_file"] +[connection signal="pressed" from="LoadPanel/VBoxContainer/HBoxContainer/Cancel" to="LoadPanel" method="_on_cancel_pressed"] diff --git a/LevelSelector.gd b/LevelSelector.gd new file mode 100644 index 0000000..f4a8c55 --- /dev/null +++ b/LevelSelector.gd @@ -0,0 +1,32 @@ +extends OptionButton + +func _ready() -> void: + update_level_list() + +func update_level_list() -> void: + clear() + var already : Array[String] = [] + for file in DirAccess.get_files_at("res://Levels"): + if file.ends_with(".json"): + if already.has(file): + continue + already.push_back(file) + var data = JSON.parse_string(FileAccess.get_file_as_string("res://Levels/%s" % file)) + add_item(data.name) + set_item_metadata(item_count - 1, "res://Levels/%s" % file) + for file in DirAccess.get_files_at("user://Levels"): + if file.ends_with(".json"): + if already.has(file): + continue + already.push_back(file) + var data = JSON.parse_string(FileAccess.get_file_as_string("user://Levels/%s" % file)) + add_item(data.name) + set_item_metadata(item_count - 1, "user://Levels/%s" % file) + +func select_by_name(name : String) -> void: + for i in item_count: + if get_item_text(i) == name: + selected = i + +func get_selected_text() -> String: + return get_item_text(selected) diff --git a/Levels/CUBISM.json b/Levels/CUBISM.json new file mode 100644 index 0000000..fb8e528 --- /dev/null +++ b/Levels/CUBISM.json @@ -0,0 +1,26 @@ +{ + "background": "RedBoxes", + "data": [ + " ", + " ", + "WWOOCCgGGRRBB", + "WWOOCCgGGRRBB", + "OOCCGGgRRBBMM", + "OOCCGGgRRBBMM", + "CCGGRRgBBMMYY", + "CCGGRRgBBMMYY", + "GGRRBBgMMYYWW", + "GGRRBBgMMYYWW", + "RRBBMMgYYWWOO", + "RRBBMMgYYWWOO", + "BBMMYYgWWOOCC", + "BBMMYYgWWOOCC", + "MMYYWWgOOCCGG", + "MMYYWWgOOCCGG", + " ", + " " + ], + "left": "TOWER", + "name": "CUBISM", + "right": "SNOWCAP" +} \ No newline at end of file diff --git a/Levels/DUNKANOID.json b/Levels/DUNKANOID.json new file mode 100644 index 0000000..d2d0c36 --- /dev/null +++ b/Levels/DUNKANOID.json @@ -0,0 +1,26 @@ +{ + "background": "BlueSlash", + "data": [ + " ", + " ", + "sssssssssssss", + "YYYBYYsCCRCCC", + "YYBBYYsCCRRCC", + "YBBBBBsRRRRRC", + "BBBBBBsRRRRRR", + "YBBBBBsRRRRRC", + "YYBBYYsCCRRCC", + "YYYBYYsCCRCCC", + "ssisssssssiss", + " ", + " ", + " ", + " ", + " ", + " ", + " " + ], + "left": "RAINBOW", + "name": "DUNKANOID", + "right": "CUBISM" +} \ No newline at end of file diff --git a/Levels/NOTFOUND.json b/Levels/NOTFOUND.json new file mode 100644 index 0000000..5dcd39d --- /dev/null +++ b/Levels/NOTFOUND.json @@ -0,0 +1,26 @@ +{ + "background": "RedBoxes", + "data": [ + " ", + " ", + "iii ii ii ", + "i i i i i ", + "ii ii ii ", + "i i i i i ", + "iii i i i i ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " " + ], + "left": "DUNKANOID", + "name": "NOTFOUND", + "right": "DUNKANOID" +} \ No newline at end of file diff --git a/Levels/RAINBOW.json b/Levels/RAINBOW.json new file mode 100644 index 0000000..faaa758 --- /dev/null +++ b/Levels/RAINBOW.json @@ -0,0 +1,26 @@ +{ + "background": "RedBoxes", + "data": [ + " ", + " ", + " RRRRR ", + " RRRRRRR ", + " RROOOOORR ", + " RROOOOORR ", + " RROOYYYOORR ", + " ROOYBBBYOOR ", + " ROYBBBBBYOR ", + "RROYB BYORR", + "ROYBg gBYOR", + "ROYB BYOR", + "ROYB BYOR", + "ROYB BYOR", + "ROYB BYOR", + "ROYB BYOR", + "sssss s sssss", + " " + ], + "left": "TOWER", + "name": "RAINBOW", + "right": "SNOWCAP" +} \ No newline at end of file diff --git a/Levels/SNOWCAP.json b/Levels/SNOWCAP.json new file mode 100644 index 0000000..2d2aa1f --- /dev/null +++ b/Levels/SNOWCAP.json @@ -0,0 +1,26 @@ +{ + "background": "RedBoxes", + "data": [ + " ", + " ", + " WWWWW ", + " ggggg ", + " ", + " WWWWWWWWW ", + " ggggggggg ", + " ", + " WWWWWWWWWWW ", + " ggggggggggg ", + " ", + " WWWWWWWWW ", + " ggggggggg ", + " ", + " WWWWWWW ", + " ggggggg ", + " ", + " " + ], + "left": "DUNKANOID", + "name": "SNOWCAP", + "right": "DUNKANOID" +} \ No newline at end of file diff --git a/Levels/TOWER.json b/Levels/TOWER.json new file mode 100644 index 0000000..970c613 --- /dev/null +++ b/Levels/TOWER.json @@ -0,0 +1,26 @@ +{ + "background": "RedBoxes", + "data": [ + " ", + " ", + " ", + " ", + " sss ", + " CCC ", + " GGG ", + " RRR ", + " BBB ", + " MMM ", + " sss ", + " ", + " g g g ", + " ", + " ", + " ", + " ", + " " + ], + "left": "DUNKANOID", + "name": "TOWER", + "right": "DUNKANOID" +} \ No newline at end of file diff --git a/LoadPanel.gd b/LoadPanel.gd new file mode 100644 index 0000000..45123a7 --- /dev/null +++ b/LoadPanel.gd @@ -0,0 +1,42 @@ +extends PanelContainer + +signal load_file(filename : String) + +func update_level_list() -> void: + var vb = $VBoxContainer/ScrollContainer/VBoxContainer + + for k in vb.get_children(): + vb.remove_child(k) + k.queue_free() + + for file in DirAccess.get_files_at("res://Levels"): + if file.ends_with(".json"): + var data = JSON.parse_string(FileAccess.get_file_as_string("res://Levels/%s" % file)) + var b = Button.new() + b.theme = load("res://MainTheme.tres") + b.text = data.name + b.size_flags_horizontal = Control.SIZE_EXPAND_FILL + b.pressed.connect(_on_load_file_pressed.bind(b)) + b.set_meta("filename", "res://Levels/%s" % file) + vb.add_child(b) + for file in DirAccess.get_files_at("user://Levels"): + if file.ends_with(".json"): + var data = JSON.parse_string(FileAccess.get_file_as_string("user://Levels/%s" % file)) + var b = Button.new() + b.theme = load("res://MainTheme.tres") + b.text = data.name + b.size_flags_horizontal = Control.SIZE_EXPAND_FILL + b.pressed.connect(_on_load_file_pressed.bind(b)) + b.set_meta("filename", "user://Levels/%s" % file) + vb.add_child(b) + +func show_panel() -> void: + update_level_list() + visible = true + +func _on_cancel_pressed() -> void: + visible = false + +func _on_load_file_pressed(node): + load_file.emit(node.get_meta("filename")) + visible = false diff --git a/MainTheme.tres b/MainTheme.tres index 6c8b8e9..979dbd5 100644 --- a/MainTheme.tres +++ b/MainTheme.tres @@ -1,10 +1,91 @@ -[gd_resource type="Theme" load_steps=5 format=3 uid="uid://cfvww0geatnnk"] +[gd_resource type="Theme" load_steps=14 format=3 uid="uid://cfvww0geatnnk"] [ext_resource type="FontFile" uid="uid://dfkm2dibf0c3b" path="res://Fonts/fonts-DSEG_v046/DSEG7-Classic-MINI/DSEG7ClassicMini-Italic.ttf" id="1_17to7"] [ext_resource type="FontFile" uid="uid://bx41ej4o03nbx" path="res://Fonts/arkanoid/Arka_solid.ttf" id="1_s07ae"] +[ext_resource type="FontFile" uid="uid://by778rb8miy2e" path="res://Fonts/Ac437_Trident_9x16.ttf" id="2_7inlg"] + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_tyvdl"] +content_margin_left = 3.0 +content_margin_top = 3.0 +content_margin_right = 3.0 +content_margin_bottom = 3.0 +bg_color = Color(0.168627, 0.168627, 0.168627, 1) +corner_radius_top_left = 3 +corner_radius_top_right = 3 +corner_radius_bottom_right = 3 +corner_radius_bottom_left = 3 + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_l4f7v"] +content_margin_left = 3.0 +content_margin_top = 3.0 +content_margin_right = 3.0 +content_margin_bottom = 3.0 +bg_color = Color(0.231373, 0.231373, 0.231373, 1) +corner_radius_top_left = 3 +corner_radius_top_right = 3 +corner_radius_bottom_right = 3 +corner_radius_bottom_left = 3 + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_ibocc"] +content_margin_left = 3.0 +content_margin_top = 3.0 +content_margin_right = 3.0 +content_margin_bottom = 3.0 +bg_color = Color(0.168627, 0.168627, 0.168627, 1) +corner_radius_top_left = 3 +corner_radius_top_right = 3 +corner_radius_bottom_right = 3 +corner_radius_bottom_left = 3 + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_ebwwv"] +content_margin_left = 3.0 +content_margin_top = 3.0 +content_margin_right = 3.0 +content_margin_bottom = 3.0 +bg_color = Color(0.168627, 0.168627, 0.168627, 1) +corner_radius_top_left = 3 +corner_radius_top_right = 3 +corner_radius_bottom_right = 3 +corner_radius_bottom_left = 3 [sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_y3y82"] +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_knet6"] +content_margin_left = 3.0 +content_margin_top = 3.0 +content_margin_right = 3.0 +content_margin_bottom = 3.0 +bg_color = Color(0.231373, 0.231373, 0.231373, 1) +corner_radius_top_left = 3 +corner_radius_top_right = 3 +corner_radius_bottom_right = 3 +corner_radius_bottom_left = 3 + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_7eghl"] +content_margin_left = 3.0 +content_margin_top = 3.0 +content_margin_right = 3.0 +content_margin_bottom = 3.0 +bg_color = Color(0.168627, 0.168627, 0.168627, 1) +corner_radius_top_left = 3 +corner_radius_top_right = 3 +corner_radius_bottom_right = 3 +corner_radius_bottom_left = 3 + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_s1ece"] +content_margin_left = 3.0 +content_margin_top = 3.0 +content_margin_right = 3.0 +content_margin_bottom = 3.0 +bg_color = Color(0.168627, 0.168627, 0.168627, 1) +corner_radius_top_left = 3 +corner_radius_top_right = 3 +corner_radius_bottom_right = 3 +corner_radius_bottom_left = 3 + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_sf0ln"] +bg_color = Color(0, 0, 0, 1) + [sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_m7r63"] [resource] @@ -14,7 +95,20 @@ Arkanoid/colors/font_outline_color = Color(1, 0.647059, 0, 1) Arkanoid/constants/outline_size = 2 Arkanoid/font_sizes/font_size = 24 Arkanoid/fonts/font = ExtResource("1_s07ae") +Button/font_sizes/font_size = 20 +Button/fonts/font = ExtResource("2_7inlg") +Button/styles/focus = SubResource("StyleBoxFlat_tyvdl") +Button/styles/hover = SubResource("StyleBoxFlat_l4f7v") +Button/styles/normal = SubResource("StyleBoxFlat_ibocc") +Button/styles/pressed = SubResource("StyleBoxFlat_ebwwv") HSeparator/styles/separator = SubResource("StyleBoxEmpty_y3y82") +Label/font_sizes/font_size = 20 +Label/fonts/font = ExtResource("2_7inlg") +LineEdit/font_sizes/font_size = 20 +LineEdit/fonts/font = ExtResource("2_7inlg") +LineEdit/styles/focus = SubResource("StyleBoxFlat_knet6") +LineEdit/styles/normal = SubResource("StyleBoxFlat_7eghl") +LineEdit/styles/read_only = SubResource("StyleBoxFlat_s1ece") Numbers/base_type = &"Label" Numbers/colors/font_color = Color(1, 0.764706, 0, 1) Numbers/colors/font_outline_color = Color(0.996078, 0.380392, 0.137255, 0.898039) @@ -25,6 +119,9 @@ Numbers/constants/shadow_offset_y = 0 Numbers/constants/shadow_outline_size = 3 Numbers/font_sizes/font_size = 18 Numbers/fonts/font = ExtResource("1_17to7") +PanelContainer/styles/panel = SubResource("StyleBoxFlat_sf0ln") Upgrade/base_type = &"Label" Upgrade/colors/font_color = Color(0, 0, 0, 1) +Upgrade/font_sizes/font_size = 16 +Upgrade/fonts/font = ExtResource("2_7inlg") VSeparator/styles/separator = SubResource("StyleBoxEmpty_m7r63") diff --git a/Paddle/Paddle.gd b/Paddle/Paddle.gd index d922922..bf050fb 100644 --- a/Paddle/Paddle.gd +++ b/Paddle/Paddle.gd @@ -3,10 +3,35 @@ class_name Paddle var width : int : get: - return $CollisionShape2D.shape.size.x - -func _on_input_event(viewport: Node, event: InputEvent, shape_idx: int) -> void: - pass # Replace with function body. + return $CollisionShape2D.shape.height func hit() -> void: pass + +func big() -> void: + $Normal.visible = false + $Small.visible = false + $Big.visible = true + $CollisionShape2D.shape.height = 40 + $EffectTimer.start(30) + $GrowSound.play() + pass + +func small() -> void: + $Normal.visible = false + $Small.visible = true + $Big.visible = false + $CollisionShape2D.shape.height = 24 + $EffectTimer.start(30) + $ShrinkSound.play() + pass + +func normal() -> void: + $Normal.visible = true + $Small.visible = false + $Big.visible = false + $CollisionShape2D.shape.height = 32 + pass + +func _on_effect_timer_timeout() -> void: + normal() diff --git a/Paddle/Paddle.tscn b/Paddle/Paddle.tscn index 19cec27..24836ef 100644 --- a/Paddle/Paddle.tscn +++ b/Paddle/Paddle.tscn @@ -1,20 +1,80 @@ -[gd_scene load_steps=3 format=3 uid="uid://dndemjw7up2r6"] +[gd_scene load_steps=9 format=3 uid="uid://dndemjw7up2r6"] +[ext_resource type="PhysicsMaterial" uid="uid://cql6t5hd40fgn" path="res://CorePhysics.tres" id="1_oa72h"] [ext_resource type="Script" path="res://Paddle/Paddle.gd" id="1_swo0j"] +[ext_resource type="Texture2D" uid="uid://0pjgtr5e102q" path="res://Paddle/PaddleNormal.png" id="2_po2us"] +[ext_resource type="Texture2D" uid="uid://cjp5oq8ors5ua" path="res://Paddle/PaddleSmall.png" id="3_jvb7q"] +[ext_resource type="Texture2D" uid="uid://dx3a3rva5g7ex" path="res://Paddle/PaddleBig.png" id="5_w5k41"] +[ext_resource type="AudioStream" uid="uid://ds7om6qbk3p6l" path="res://Sounds/Grow.wav" id="6_hpb6a"] +[ext_resource type="AudioStream" uid="uid://bd2o8lynhy3wn" path="res://Sounds/Shrink.wav" id="7_3krfd"] -[sub_resource type="RectangleShape2D" id="RectangleShape2D_3bg1o"] -size = Vector2(32, 8) +[sub_resource type="CapsuleShape2D" id="CapsuleShape2D_tamfm"] +radius = 4.0 +height = 32.0 [node name="Paddle" type="StaticBody2D"] collision_layer = 3 input_pickable = true -constant_linear_velocity = Vector2(0, -50) +physics_material_override = ExtResource("1_oa72h") script = ExtResource("1_swo0j") [node name="CollisionShape2D" type="CollisionShape2D" parent="."] -shape = SubResource("RectangleShape2D_3bg1o") +rotation = 1.5708 +shape = SubResource("CapsuleShape2D_tamfm") -[node name="Polygon2D" type="Polygon2D" parent="."] -polygon = PackedVector2Array(-16, -4, 16, -4, 16, 4, -16, 4) +[node name="Small" type="Node2D" parent="."] +visible = false -[connection signal="input_event" from="." to="." method="_on_input_event"] +[node name="Polygon2D" type="Polygon2D" parent="Small"] +z_index = -1 +position = Vector2(2, 4) +color = Color(0, 0, 0, 0.247059) +polygon = PackedVector2Array(-10, -4, 10, -4, 12, -2, 12, 2, 10, 4, -10, 4, -12, 2, -12, -2) + +[node name="TextureRect" type="TextureRect" parent="Small"] +offset_left = -12.0 +offset_top = -4.0 +offset_right = 12.0 +offset_bottom = 4.0 +texture = ExtResource("3_jvb7q") + +[node name="Normal" type="Node2D" parent="."] + +[node name="Polygon2D" type="Polygon2D" parent="Normal"] +z_index = -1 +position = Vector2(2, 4) +color = Color(0, 0, 0, 0.247059) +polygon = PackedVector2Array(-14, -4, 14, -4, 16, -2, 16, 2, 14, 4, -14, 4, -16, 2, -16, -2) + +[node name="TextureRect" type="TextureRect" parent="Normal"] +offset_left = -16.0 +offset_top = -4.0 +offset_right = 16.0 +offset_bottom = 4.0 +texture = ExtResource("2_po2us") + +[node name="Big" type="Node2D" parent="."] +visible = false + +[node name="Polygon2D" type="Polygon2D" parent="Big"] +z_index = -1 +position = Vector2(2, 4) +color = Color(0, 0, 0, 0.247059) +polygon = PackedVector2Array(-18, -4, 18, -4, 20, -2, 20, 2, 18, 4, -18, 4, -20, 2, -20, -2) + +[node name="TextureRect" type="TextureRect" parent="Big"] +offset_left = -20.0 +offset_top = -4.0 +offset_right = 20.0 +offset_bottom = 4.0 +texture = ExtResource("5_w5k41") + +[node name="EffectTimer" type="Timer" parent="."] + +[node name="GrowSound" type="AudioStreamPlayer" parent="."] +stream = ExtResource("6_hpb6a") + +[node name="ShrinkSound" type="AudioStreamPlayer" parent="."] +stream = ExtResource("7_3krfd") + +[connection signal="timeout" from="EffectTimer" to="." method="_on_effect_timer_timeout"] diff --git a/Paddle/PaddleBig.png b/Paddle/PaddleBig.png new file mode 100644 index 0000000..52fd080 Binary files /dev/null and b/Paddle/PaddleBig.png differ diff --git a/Paddle/PaddleBig.png.import b/Paddle/PaddleBig.png.import new file mode 100644 index 0000000..294f0ab --- /dev/null +++ b/Paddle/PaddleBig.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dx3a3rva5g7ex" +path="res://.godot/imported/PaddleBig.png-d2273c8ccef26c1da6e845f85d64a641.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Paddle/PaddleBig.png" +dest_files=["res://.godot/imported/PaddleBig.png-d2273c8ccef26c1da6e845f85d64a641.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/Paddle/PaddleNormal.png b/Paddle/PaddleNormal.png new file mode 100644 index 0000000..da3ea0d Binary files /dev/null and b/Paddle/PaddleNormal.png differ diff --git a/Paddle/PaddleNormal.png.import b/Paddle/PaddleNormal.png.import new file mode 100644 index 0000000..782a223 --- /dev/null +++ b/Paddle/PaddleNormal.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://0pjgtr5e102q" +path="res://.godot/imported/PaddleNormal.png-55f91da7329a555debe949f02446445a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Paddle/PaddleNormal.png" +dest_files=["res://.godot/imported/PaddleNormal.png-55f91da7329a555debe949f02446445a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/Paddle/PaddleSmall.png b/Paddle/PaddleSmall.png new file mode 100644 index 0000000..796aa0b Binary files /dev/null and b/Paddle/PaddleSmall.png differ diff --git a/Paddle/PaddleSmall.png.import b/Paddle/PaddleSmall.png.import new file mode 100644 index 0000000..75dc482 --- /dev/null +++ b/Paddle/PaddleSmall.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cjp5oq8ors5ua" +path="res://.godot/imported/PaddleSmall.png-35860c1ece29536829cef69e0af45298.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Paddle/PaddleSmall.png" +dest_files=["res://.godot/imported/PaddleSmall.png-35860c1ece29536829cef69e0af45298.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/Paused.gd b/Paused.gd new file mode 100644 index 0000000..e141aad --- /dev/null +++ b/Paused.gd @@ -0,0 +1,19 @@ +extends Node2D + +var paused : bool = false + +func _process(_delta : float) -> void: + if Input.is_action_just_pressed("pause"): + if paused: + visible = false + paused = false + get_tree().paused = false + Input.set_mouse_mode(Input.MOUSE_MODE_CONFINED_HIDDEN) + else: + visible = true + paused = true + get_tree().paused = true + Input.set_mouse_mode(Input.MOUSE_MODE_VISIBLE) + + if Input.is_action_just_pressed("mute"): + AudioServer.set_bus_mute(0, !AudioServer.is_bus_mute(0)) diff --git a/Upgrade/Upgrade.tscn b/Upgrade/Upgrade.tscn index be61a66..d0131ca 100644 --- a/Upgrade/Upgrade.tscn +++ b/Upgrade/Upgrade.tscn @@ -4,8 +4,8 @@ [ext_resource type="Theme" uid="uid://cfvww0geatnnk" path="res://MainTheme.tres" id="2_iabep"] [sub_resource type="CapsuleShape2D" id="CapsuleShape2D_slgxc"] -radius = 8.0 -height = 32.0 +radius = 6.0 +height = 24.0 [node name="Upgrade" type="RigidBody2D"] collision_layer = 4 @@ -19,9 +19,14 @@ script = ExtResource("1_3jp1b") rotation = 1.5708 shape = SubResource("CapsuleShape2D_slgxc") +[node name="Shadow" type="Polygon2D" parent="."] +position = Vector2(2, 4) +color = Color(0, 0, 0, 0.247059) +polygon = PackedVector2Array(-6, -6, 6, -6, 9, -5, 11, -3, 12, 0, 11, 3, 9, 5, 6, 6, -6, 6, -9, 5, -11, 3, -12, 0, -11, -3, -9, -5) + [node name="Polygon2D" type="Polygon2D" parent="."] color = Color(0, 0.258824, 1, 1) -polygon = PackedVector2Array(-8, -8, 8, -8, 12, -7, 15, -4, 16, 0, 15, 4, 12, 7, 8, 8, -8, 8, -12, 7, -15, 4, -16, 0, -15, -4, -12, -7) +polygon = PackedVector2Array(-6, -6, 6, -6, 9, -5, 11, -3, 12, 0, 11, 3, 9, 5, 6, 6, -6, 6, -9, 5, -11, 3, -12, 0, -11, -3, -9, -5) [node name="Label" type="Label" parent="."] texture_filter = 1 @@ -30,10 +35,10 @@ anchor_left = 0.5 anchor_top = 0.5 anchor_right = 0.5 anchor_bottom = 0.5 -offset_left = -20.0 -offset_top = -11.5 -offset_right = 20.0 -offset_bottom = 11.5 +offset_left = -11.0 +offset_top = -7.0 +offset_right = 13.0 +offset_bottom = 10.0 grow_horizontal = 2 grow_vertical = 2 theme = ExtResource("2_iabep") diff --git a/default_bus_layout.tres b/default_bus_layout.tres index 1c0e45d..1b84f42 100644 --- a/default_bus_layout.tres +++ b/default_bus_layout.tres @@ -1,4 +1,4 @@ [gd_resource type="AudioBusLayout" format=3 uid="uid://cw31i0khpovnh"] [resource] -bus/0/volume_db = 0.267241 +bus/0/volume_db = -19.6683 diff --git a/export_presets.cfg b/export_presets.cfg index 45816f3..bc1da77 100644 --- a/export_presets.cfg +++ b/export_presets.cfg @@ -6,7 +6,7 @@ runnable=true dedicated_server=false custom_features="" export_filter="all_resources" -include_filter="" +include_filter="*.json" exclude_filter="" export_path="../../export/Dunkanoid/index.html" encryption_include_filters="" @@ -35,3 +35,43 @@ progressive_web_app/icon_144x144="" progressive_web_app/icon_180x180="" progressive_web_app/icon_512x512="" progressive_web_app/background_color=Color(0, 0, 0, 1) + +[preset.1] + +name="Linux/X11" +platform="Linux/X11" +runnable=true +dedicated_server=false +custom_features="" +export_filter="all_resources" +include_filter="" +exclude_filter="" +export_path="../../export/Dunkanoid.x86_64" +encryption_include_filters="" +encryption_exclude_filters="" +encrypt_pck=false +encrypt_directory=false + +[preset.1.options] + +custom_template/debug="" +custom_template/release="" +debug/export_console_wrapper=1 +binary_format/embed_pck=true +texture_format/bptc=true +texture_format/s3tc=true +texture_format/etc=false +texture_format/etc2=false +binary_format/architecture="x86_64" +ssh_remote_deploy/enabled=false +ssh_remote_deploy/host="user@host_ip" +ssh_remote_deploy/port="22" +ssh_remote_deploy/extra_args_ssh="" +ssh_remote_deploy/extra_args_scp="" +ssh_remote_deploy/run_script="#!/usr/bin/env bash +export DISPLAY=:0 +unzip -o -q \"{temp_dir}/{archive_name}\" -d \"{temp_dir}\" +\"{temp_dir}/{exe_name}\" {cmd_args}" +ssh_remote_deploy/cleanup_script="#!/usr/bin/env bash +kill $(pgrep -x -f \"{temp_dir}/{exe_name} {cmd_args}\") +rm -rf \"{temp_dir}\"" diff --git a/project.godot b/project.godot index 329eff2..82324da 100644 --- a/project.godot +++ b/project.godot @@ -13,6 +13,7 @@ config_version=5 config/name="Dunkanoid" run/main_scene="res://Intro.tscn" config/features=PackedStringArray("4.2", "Forward Plus") +run/max_fps=30 boot_splash/show_image=false config/icon="res://icon.svg" @@ -33,6 +34,25 @@ window/stretch/scale_mode="integer" naming/screen_space_roughness_limiter/enabled=true +[input] + +pause={ +"deadzone": 0.5, +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":80,"key_label":0,"unicode":112,"echo":false,"script":null) +, Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":-1,"button_index":4,"pressure":0.0,"pressed":false,"script":null) +] +} +mute={ +"deadzone": 0.5, +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":77,"key_label":0,"unicode":109,"echo":false,"script":null) +] +} +cheat={ +"deadzone": 0.5, +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":88,"key_label":0,"unicode":120,"echo":false,"script":null) +] +} + [physics] 2d/default_gravity=0.0