commit 792b95365c3c4e49f6a5870bb529e64e4d9891f3 Author: Mike Schwörer Date: Thu Jan 27 21:44:45 2022 +0100 21:44 diff --git a/.import/.gdignore b/.import/.gdignore new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/.import/.gdignore @@ -0,0 +1 @@ + diff --git a/.import/icon.png-487276ed1e3a0c39cad0279d744ee560.md5 b/.import/icon.png-487276ed1e3a0c39cad0279d744ee560.md5 new file mode 100644 index 0000000..5328bc7 --- /dev/null +++ b/.import/icon.png-487276ed1e3a0c39cad0279d744ee560.md5 @@ -0,0 +1,3 @@ +source_md5="47313fa4c47a9963fddd764e1ec6e4a8" +dest_md5="26ea799ea0a3da9e753b3ebe822e0570" + diff --git a/.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex b/.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex new file mode 100644 index 0000000..71f6913 Binary files /dev/null and b/.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex differ diff --git a/Source/.gitignore b/Source/.gitignore new file mode 100644 index 0000000..4f48ad7 --- /dev/null +++ b/Source/.gitignore @@ -0,0 +1,11 @@ +# Godot-specific ignores +.import/ +export.cfg +export_presets.cfg + +# Imported translations (automatically generated from CSV files) +*.translation + +# Mono-specific ignores +.mono/ +data_*/ diff --git a/Source/default_env.tres b/Source/default_env.tres new file mode 100644 index 0000000..20207a4 --- /dev/null +++ b/Source/default_env.tres @@ -0,0 +1,7 @@ +[gd_resource type="Environment" load_steps=2 format=2] + +[sub_resource type="ProceduralSky" id=1] + +[resource] +background_mode = 2 +background_sky = SubResource( 1 ) diff --git a/Source/icon.png b/Source/icon.png new file mode 100644 index 0000000..c98fbb6 Binary files /dev/null and b/Source/icon.png differ diff --git a/Source/icon.png.import b/Source/icon.png.import new file mode 100644 index 0000000..a4c02e6 --- /dev/null +++ b/Source/icon.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://icon.png" +dest_files=[ "res://.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex" ] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=0 +flags/repeat=0 +flags/filter=true +flags/mipmaps=false +flags/anisotropic=false +flags/srgb=2 +process/fix_alpha_border=true +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +process/normal_map_invert_y=false +stream=false +size_limit=0 +detect_3d=true +svg/scale=1.0 diff --git a/Source/project.godot b/Source/project.godot new file mode 100644 index 0000000..8e6fd0d --- /dev/null +++ b/Source/project.godot @@ -0,0 +1,39 @@ +; Engine configuration file. +; It's best edited using the editor UI and not directly, +; since the parameters that go here are not all obvious. +; +; Format: +; [section] ; section goes between [] +; param=value ; assign values to parameters + +config_version=4 + +[application] + +config/name="Bring-inc" +run/main_scene="res://scenes/main.tscn" +config/icon="res://icon.png" + +[display] + +window/size/width=576 +window/size/height=1024 +window/size/resizable=false +window/size/test_width=432 +window/size/test_height=768 +window/handheld/orientation="portrait" +window/stretch/mode="2d" +window/stretch/aspect="keep_width" + +[physics] + +common/enable_pause_aware_picking=true + +[rendering] + +quality/driver/driver_name="GLES2" +2d/snapping/use_gpu_pixel_snap=true +vram_compression/import_etc=true +vram_compression/import_etc2=false +environment/default_clear_color=Color( 1, 1, 1, 1 ) +environment/default_environment="res://default_env.tres" diff --git a/Source/scenes/bringman.tscn b/Source/scenes/bringman.tscn new file mode 100644 index 0000000..7495156 --- /dev/null +++ b/Source/scenes/bringman.tscn @@ -0,0 +1,17 @@ +[gd_scene load_steps=4 format=2] + +[ext_resource path="res://scripts/bringman.gd" type="Script" id=1] +[ext_resource path="res://sprites/bringmans/bm00.png" type="Texture" id=2] + +[sub_resource type="CircleShape2D" id=1] +radius = 22.3607 + +[node name="KinematicBody2D" type="KinematicBody2D"] +script = ExtResource( 1 ) + +[node name="shape" type="CollisionShape2D" parent="."] +shape = SubResource( 1 ) + +[node name="sprite" type="Sprite" parent="."] +scale = Vector2( 0.2, 0.2 ) +texture = ExtResource( 2 ) diff --git a/Source/scenes/btnAdd.tscn b/Source/scenes/btnAdd.tscn new file mode 100644 index 0000000..38d1a5e --- /dev/null +++ b/Source/scenes/btnAdd.tscn @@ -0,0 +1,9 @@ +[gd_scene load_steps=3 format=2] + +[ext_resource path="res://sprites/buttonAdd.png" type="Texture" id=1] +[ext_resource path="res://scripts/btnAdd.gd" type="Script" id=2] + +[node name="btnAdd" type="Sprite"] +scale = Vector2( 0.25, 0.25 ) +texture = ExtResource( 1 ) +script = ExtResource( 2 ) diff --git a/Source/scenes/city.tscn b/Source/scenes/city.tscn new file mode 100644 index 0000000..c93ac58 --- /dev/null +++ b/Source/scenes/city.tscn @@ -0,0 +1,16 @@ +[gd_scene load_steps=4 format=2] + +[ext_resource path="res://sprites/cities/city00.png" type="Texture" id=1] +[ext_resource path="res://scripts/city.gd" type="Script" id=2] + +[sub_resource type="CircleShape2D" id=1] +radius = 82.2982 + +[node name="KinematicBody2D" type="KinematicBody2D"] +script = ExtResource( 2 ) + +[node name="sprite" type="Sprite" parent="."] +texture = ExtResource( 1 ) + +[node name="shape" type="CollisionShape2D" parent="."] +shape = SubResource( 1 ) diff --git a/Source/scenes/main.tscn b/Source/scenes/main.tscn new file mode 100644 index 0000000..2e973ff --- /dev/null +++ b/Source/scenes/main.tscn @@ -0,0 +1,69 @@ +[gd_scene load_steps=6 format=2] + +[ext_resource path="res://scenes/city.tscn" type="PackedScene" id=1] +[ext_resource path="res://scenes/market.tscn" type="PackedScene" id=2] +[ext_resource path="res://scenes/btnAdd.tscn" type="PackedScene" id=3] +[ext_resource path="res://scripts/main.gd" type="Script" id=4] +[ext_resource path="res://sprites/background.jpg" type="Texture" id=5] + +[node name="Node2D" type="Node2D"] +script = ExtResource( 4 ) + +[node name="bringman_parent" type="Node2D" parent="."] + +[node name="btnAdd" parent="." instance=ExtResource( 3 )] +position = Vector2( 271, 964 ) + +[node name="city_parent" type="Node2D" parent="."] + +[node name="city4" parent="city_parent" instance=ExtResource( 1 )] +position = Vector2( 468, 803 ) + +[node name="city5" parent="city_parent" instance=ExtResource( 1 )] +position = Vector2( 487, 164 ) + +[node name="city6" parent="city_parent" instance=ExtResource( 1 )] +position = Vector2( 134, 691 ) +scale = Vector2( 0.3225, 0.3225 ) + +[node name="city1" parent="city_parent" instance=ExtResource( 1 )] +position = Vector2( 77, 492 ) +scale = Vector2( 0.236719, 0.236719 ) + +[node name="city2" parent="city_parent" instance=ExtResource( 1 )] +position = Vector2( 177, 498 ) +scale = Vector2( 0.279687, 0.279687 ) + +[node name="city3" parent="city_parent" instance=ExtResource( 1 )] +position = Vector2( 397, 372 ) +scale = Vector2( 0.588984, 0.588984 ) + +[node name="city7" parent="city_parent" instance=ExtResource( 1 )] +position = Vector2( 269, 80 ) +scale = Vector2( 0.401485, 0.401485 ) + +[node name="city8" parent="city_parent" instance=ExtResource( 1 )] +position = Vector2( 89, 878 ) +scale = Vector2( 0.681, 0.681 ) + +[node name="city9" parent="city_parent" instance=ExtResource( 1 )] +position = Vector2( 94, 315 ) +scale = Vector2( 0.520999, 0.520999 ) + +[node name="market_parent" type="Node2D" parent="."] + +[node name="market1" parent="market_parent" instance=ExtResource( 2 )] +position = Vector2( 110, 162 ) + +[node name="market2" parent="market_parent" instance=ExtResource( 2 )] +position = Vector2( 328, 615 ) + +[node name="ParallaxBackground" type="ParallaxBackground" parent="."] +follow_viewport_enable = true + +[node name="ParallaxLayer" type="ParallaxLayer" parent="ParallaxBackground"] +motion_mirroring = Vector2( 612, 601 ) + +[node name="Sprite" type="Sprite" parent="ParallaxBackground/ParallaxLayer"] +texture = ExtResource( 5 ) +centered = false diff --git a/Source/scenes/market.tscn b/Source/scenes/market.tscn new file mode 100644 index 0000000..baa900b --- /dev/null +++ b/Source/scenes/market.tscn @@ -0,0 +1,17 @@ +[gd_scene load_steps=4 format=2] + +[ext_resource path="res://sprites/market.png" type="Texture" id=1] +[ext_resource path="res://scripts/market.gd" type="Script" id=2] + +[sub_resource type="CircleShape2D" id=1] +radius = 80.604 + +[node name="KinematicBody2D" type="KinematicBody2D"] +script = ExtResource( 2 ) + +[node name="shape" type="CollisionShape2D" parent="."] +shape = SubResource( 1 ) + +[node name="sprite" type="Sprite" parent="."] +scale = Vector2( 0.3, 0.3 ) +texture = ExtResource( 1 ) diff --git a/Source/scripts/bringman.gd b/Source/scripts/bringman.gd new file mode 100644 index 0000000..da54ab7 --- /dev/null +++ b/Source/scripts/bringman.gd @@ -0,0 +1,108 @@ +extends KinematicBody2D + +export (NodePath) var city +export (NodePath) var market +export (NodePath) var company +export (Vector2) var spawn + + +var speed_spawn = 500 +var speed_phys = 5 +var dest = 0 + +var current_target = null + +var wait_start = 0.5 +var wait_market = 1.8 +var wait_city = 1.8 +var wait_final = 0.2 + +var velocity = Vector2() + +var oldNodePosHitAngle = null + +func _ready(): + get_node("sprite").texture = load("res://sprites/bringmans/bm"+str(randi()%10).pad_zeros(2)+".png") + + +func state_next(): + velocity = Vector2.ZERO + oldNodePosHitAngle = null + dest+=1 + +func _process(delta): + if dest == 0: + move_to_pos(spawn, delta) + elif dest == 1: + wait_start-=delta + if wait_start <= 0: state_next() + elif dest == 2: + move_to_node(market, delta) + elif dest == 3: + wait_market-=delta + if wait_market <= 0: state_next() + elif dest == 4: + move_to_node(city, delta) + elif dest == 5: + wait_city-=delta + if wait_city <= 0: state_next() + elif dest == 6: + move_to_node_pos(company, delta) + elif dest == 7: + wait_final-=delta + if wait_final <= 0: state_next() + elif dest == 8: + remove_and_skip() + + +func move_to_node(np, delta): + var node = get_node(np) + velocity += (node.position - position).normalized() * speed_phys + + current_target = node + + +func move_to_node_pos(np, delta): + var node = get_node(np) + velocity += (node.position - position).normalized() * speed_phys + + var angleNow = sign((node.position - position).angle()) + + if oldNodePosHitAngle == null: + oldNodePosHitAngle = angleNow + else: + if angleNow != oldNodePosHitAngle: + state_next() + else: + oldNodePosHitAngle = angleNow + + +func move_to_pos(pos, delta): + velocity = Vector2.ZERO + current_target = null + + var angle_prev = sign((pos - position).angle()) + + position = position.move_toward(pos, delta * speed_spawn) + + var angle_post = sign((pos - position).angle()) + + if angle_prev != angle_post: + state_next() + +func radius(): + return get_node("sprite").texture.get_width()*get_node("sprite").transform.get_scale().x/2 + + +func _physics_process(delta): + if (velocity.length_squared() == 0): return + + velocity = move_and_slide(velocity, Vector2(0, -1)) + + if current_target != null: + var slide_count = get_slide_count() + if slide_count: + var collision = get_slide_collision(slide_count - 1) + var collider = collision.collider + if collider == current_target: + state_next() diff --git a/Source/scripts/btnAdd.gd b/Source/scripts/btnAdd.gd new file mode 100644 index 0000000..b87fce3 --- /dev/null +++ b/Source/scripts/btnAdd.gd @@ -0,0 +1,4 @@ +extends Sprite + +func radius(): + return texture.get_width()*transform.get_scale().x/2 diff --git a/Source/scripts/city.gd b/Source/scripts/city.gd new file mode 100644 index 0000000..37b43db --- /dev/null +++ b/Source/scripts/city.gd @@ -0,0 +1,7 @@ +extends KinematicBody2D + +func _ready(): + get_node("sprite").texture = load("res://sprites/cities/city"+str(randi()%11).pad_zeros(2)+".png") + +func radius(): + return get_node("sprite").texture.get_width()*get_node("sprite").transform.get_scale().x/2 diff --git a/Source/scripts/main.gd b/Source/scripts/main.gd new file mode 100644 index 0000000..48913fb --- /dev/null +++ b/Source/scripts/main.gd @@ -0,0 +1,59 @@ +extends Node2D + + +var bringmanScene = preload("res://scenes/bringman.tscn") + +onready var btnAdd = get_node("btnAdd") +onready var city_parent = get_node("city_parent") +onready var market_parent = get_node("market_parent") +onready var bringman_parent = get_node("bringman_parent") + +onready var button_diam = btnAdd.texture.get_width()*btnAdd.transform.get_scale().x + + +func _input(event): + if event is InputEventMouseButton and event.button_index == BUTTON_LEFT && event.pressed: + if (event.position - btnAdd.position).length() < button_diam/2: + spawn() + + +func spawn(): + var market = random_market() + var city = random_city() + + var bm = bringmanScene.instance() + + var rot = rand_range(-TAU/5, +TAU/5) + + var vec_start = Vector2(0, 1).rotated(rot) + + bm.position = btnAdd.position + (vec_start * -(button_diam/2 - bm.radius())) + bm.spawn = btnAdd.position + (vec_start * -(button_diam/2 + bm.radius())) + bm.market = market.get_path() + bm.city = city.get_path() + bm.company = btnAdd.get_path() + + print("spawn", bm.position) + + bringman_parent.add_child(bm) + + +func random_market(): + var r = [] + for child in market_parent.get_children(): + r.append(child) + return r[randi() % r.size()] + + +func random_city(): + var r = [] + for child in city_parent.get_children(): + r.append(child) + return r[randi() % r.size()] + + + + + + + diff --git a/Source/scripts/market.gd b/Source/scripts/market.gd new file mode 100644 index 0000000..36ebacc --- /dev/null +++ b/Source/scripts/market.gd @@ -0,0 +1,15 @@ +extends KinematicBody2D + + +# Declare member variables here. Examples: +# var a = 2 +# var b = "text" + + +# Called when the node enters the scene tree for the first time. +func _ready(): + pass # Replace with function body. + + +func radius(): + return get_node("sprite").texture.get_width()*get_node("sprite").transform.get_scale().x/2 diff --git a/Source/sprites/background.jpg b/Source/sprites/background.jpg new file mode 100644 index 0000000..3da5eb9 Binary files /dev/null and b/Source/sprites/background.jpg differ diff --git a/Source/sprites/background.jpg.import b/Source/sprites/background.jpg.import new file mode 100644 index 0000000..0b1f7f3 --- /dev/null +++ b/Source/sprites/background.jpg.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/background.jpg-516c7c93b38070649a337bb0d4c341c9.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/background.jpg" +dest_files=[ "res://.import/background.jpg-516c7c93b38070649a337bb0d4c341c9.stex" ] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=0 +flags/repeat=1 +flags/filter=true +flags/mipmaps=false +flags/anisotropic=false +flags/srgb=2 +process/fix_alpha_border=true +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +process/normal_map_invert_y=false +stream=false +size_limit=0 +detect_3d=true +svg/scale=0.1 diff --git a/Source/sprites/bringman.png b/Source/sprites/bringman.png new file mode 100644 index 0000000..5708edd Binary files /dev/null and b/Source/sprites/bringman.png differ diff --git a/Source/sprites/bringman.png.import b/Source/sprites/bringman.png.import new file mode 100644 index 0000000..4ec82a5 --- /dev/null +++ b/Source/sprites/bringman.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/bringman.png-3f24afa78595359b9b50a29cc88ac778.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/bringman.png" +dest_files=[ "res://.import/bringman.png-3f24afa78595359b9b50a29cc88ac778.stex" ] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=0 +flags/repeat=0 +flags/filter=true +flags/mipmaps=false +flags/anisotropic=false +flags/srgb=2 +process/fix_alpha_border=true +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +process/normal_map_invert_y=false +stream=false +size_limit=0 +detect_3d=true +svg/scale=1.0 diff --git a/Source/sprites/bringmans/bm00.png b/Source/sprites/bringmans/bm00.png new file mode 100644 index 0000000..89c8f68 Binary files /dev/null and b/Source/sprites/bringmans/bm00.png differ diff --git a/Source/sprites/bringmans/bm00.png.import b/Source/sprites/bringmans/bm00.png.import new file mode 100644 index 0000000..4c9bd07 --- /dev/null +++ b/Source/sprites/bringmans/bm00.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/bm00.png-ad8444137a26bc2af539e434f823c5e2.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/bringmans/bm00.png" +dest_files=[ "res://.import/bm00.png-ad8444137a26bc2af539e434f823c5e2.stex" ] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=0 +flags/repeat=0 +flags/filter=true +flags/mipmaps=false +flags/anisotropic=false +flags/srgb=2 +process/fix_alpha_border=true +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +process/normal_map_invert_y=false +stream=false +size_limit=0 +detect_3d=true +svg/scale=1.0 diff --git a/Source/sprites/bringmans/bm01.png b/Source/sprites/bringmans/bm01.png new file mode 100644 index 0000000..2ceb032 Binary files /dev/null and b/Source/sprites/bringmans/bm01.png differ diff --git a/Source/sprites/bringmans/bm01.png.import b/Source/sprites/bringmans/bm01.png.import new file mode 100644 index 0000000..a92821f --- /dev/null +++ b/Source/sprites/bringmans/bm01.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/bm01.png-14faf545930198d57e0e1304f9c4fd0c.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/bringmans/bm01.png" +dest_files=[ "res://.import/bm01.png-14faf545930198d57e0e1304f9c4fd0c.stex" ] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=0 +flags/repeat=0 +flags/filter=true +flags/mipmaps=false +flags/anisotropic=false +flags/srgb=2 +process/fix_alpha_border=true +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +process/normal_map_invert_y=false +stream=false +size_limit=0 +detect_3d=true +svg/scale=1.0 diff --git a/Source/sprites/bringmans/bm02.png b/Source/sprites/bringmans/bm02.png new file mode 100644 index 0000000..f28bf15 Binary files /dev/null and b/Source/sprites/bringmans/bm02.png differ diff --git a/Source/sprites/bringmans/bm02.png.import b/Source/sprites/bringmans/bm02.png.import new file mode 100644 index 0000000..cbdf4c3 --- /dev/null +++ b/Source/sprites/bringmans/bm02.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/bm02.png-0437d8b39559b052ca47271c6464662d.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/bringmans/bm02.png" +dest_files=[ "res://.import/bm02.png-0437d8b39559b052ca47271c6464662d.stex" ] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=0 +flags/repeat=0 +flags/filter=true +flags/mipmaps=false +flags/anisotropic=false +flags/srgb=2 +process/fix_alpha_border=true +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +process/normal_map_invert_y=false +stream=false +size_limit=0 +detect_3d=true +svg/scale=1.0 diff --git a/Source/sprites/bringmans/bm03.png b/Source/sprites/bringmans/bm03.png new file mode 100644 index 0000000..4375897 Binary files /dev/null and b/Source/sprites/bringmans/bm03.png differ diff --git a/Source/sprites/bringmans/bm03.png.import b/Source/sprites/bringmans/bm03.png.import new file mode 100644 index 0000000..e042a6a --- /dev/null +++ b/Source/sprites/bringmans/bm03.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/bm03.png-b356d6cc4e3dc0b9e072bf51c5907091.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/bringmans/bm03.png" +dest_files=[ "res://.import/bm03.png-b356d6cc4e3dc0b9e072bf51c5907091.stex" ] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=0 +flags/repeat=0 +flags/filter=true +flags/mipmaps=false +flags/anisotropic=false +flags/srgb=2 +process/fix_alpha_border=true +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +process/normal_map_invert_y=false +stream=false +size_limit=0 +detect_3d=true +svg/scale=1.0 diff --git a/Source/sprites/bringmans/bm04.png b/Source/sprites/bringmans/bm04.png new file mode 100644 index 0000000..9d33081 Binary files /dev/null and b/Source/sprites/bringmans/bm04.png differ diff --git a/Source/sprites/bringmans/bm04.png.import b/Source/sprites/bringmans/bm04.png.import new file mode 100644 index 0000000..d013936 --- /dev/null +++ b/Source/sprites/bringmans/bm04.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/bm04.png-4d4348d7bbfc31ea3c1346651e8bd773.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/bringmans/bm04.png" +dest_files=[ "res://.import/bm04.png-4d4348d7bbfc31ea3c1346651e8bd773.stex" ] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=0 +flags/repeat=0 +flags/filter=true +flags/mipmaps=false +flags/anisotropic=false +flags/srgb=2 +process/fix_alpha_border=true +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +process/normal_map_invert_y=false +stream=false +size_limit=0 +detect_3d=true +svg/scale=1.0 diff --git a/Source/sprites/bringmans/bm05.png b/Source/sprites/bringmans/bm05.png new file mode 100644 index 0000000..fc1207d Binary files /dev/null and b/Source/sprites/bringmans/bm05.png differ diff --git a/Source/sprites/bringmans/bm05.png.import b/Source/sprites/bringmans/bm05.png.import new file mode 100644 index 0000000..b7b9ccb --- /dev/null +++ b/Source/sprites/bringmans/bm05.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/bm05.png-77c2fc241351e7bede668b784b97d311.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/bringmans/bm05.png" +dest_files=[ "res://.import/bm05.png-77c2fc241351e7bede668b784b97d311.stex" ] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=0 +flags/repeat=0 +flags/filter=true +flags/mipmaps=false +flags/anisotropic=false +flags/srgb=2 +process/fix_alpha_border=true +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +process/normal_map_invert_y=false +stream=false +size_limit=0 +detect_3d=true +svg/scale=1.0 diff --git a/Source/sprites/bringmans/bm06.png b/Source/sprites/bringmans/bm06.png new file mode 100644 index 0000000..4d1f6da Binary files /dev/null and b/Source/sprites/bringmans/bm06.png differ diff --git a/Source/sprites/bringmans/bm06.png.import b/Source/sprites/bringmans/bm06.png.import new file mode 100644 index 0000000..f0fa195 --- /dev/null +++ b/Source/sprites/bringmans/bm06.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/bm06.png-1302bcc6c6e4738db334bf751a05d5b6.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/bringmans/bm06.png" +dest_files=[ "res://.import/bm06.png-1302bcc6c6e4738db334bf751a05d5b6.stex" ] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=0 +flags/repeat=0 +flags/filter=true +flags/mipmaps=false +flags/anisotropic=false +flags/srgb=2 +process/fix_alpha_border=true +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +process/normal_map_invert_y=false +stream=false +size_limit=0 +detect_3d=true +svg/scale=1.0 diff --git a/Source/sprites/bringmans/bm07.png b/Source/sprites/bringmans/bm07.png new file mode 100644 index 0000000..849619d Binary files /dev/null and b/Source/sprites/bringmans/bm07.png differ diff --git a/Source/sprites/bringmans/bm07.png.import b/Source/sprites/bringmans/bm07.png.import new file mode 100644 index 0000000..b413579 --- /dev/null +++ b/Source/sprites/bringmans/bm07.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/bm07.png-b030a95088553c448fc6a125bae6b5ff.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/bringmans/bm07.png" +dest_files=[ "res://.import/bm07.png-b030a95088553c448fc6a125bae6b5ff.stex" ] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=0 +flags/repeat=0 +flags/filter=true +flags/mipmaps=false +flags/anisotropic=false +flags/srgb=2 +process/fix_alpha_border=true +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +process/normal_map_invert_y=false +stream=false +size_limit=0 +detect_3d=true +svg/scale=1.0 diff --git a/Source/sprites/bringmans/bm08.png b/Source/sprites/bringmans/bm08.png new file mode 100644 index 0000000..08be2bc Binary files /dev/null and b/Source/sprites/bringmans/bm08.png differ diff --git a/Source/sprites/bringmans/bm08.png.import b/Source/sprites/bringmans/bm08.png.import new file mode 100644 index 0000000..766ca0a --- /dev/null +++ b/Source/sprites/bringmans/bm08.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/bm08.png-01e74e8d622cd3bf7aeb2d6237683088.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/bringmans/bm08.png" +dest_files=[ "res://.import/bm08.png-01e74e8d622cd3bf7aeb2d6237683088.stex" ] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=0 +flags/repeat=0 +flags/filter=true +flags/mipmaps=false +flags/anisotropic=false +flags/srgb=2 +process/fix_alpha_border=true +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +process/normal_map_invert_y=false +stream=false +size_limit=0 +detect_3d=true +svg/scale=1.0 diff --git a/Source/sprites/bringmans/bm09.png b/Source/sprites/bringmans/bm09.png new file mode 100644 index 0000000..f55de31 Binary files /dev/null and b/Source/sprites/bringmans/bm09.png differ diff --git a/Source/sprites/bringmans/bm09.png.import b/Source/sprites/bringmans/bm09.png.import new file mode 100644 index 0000000..09fcfff --- /dev/null +++ b/Source/sprites/bringmans/bm09.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/bm09.png-59b207be8000ab37e34a426fcefd65ca.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/bringmans/bm09.png" +dest_files=[ "res://.import/bm09.png-59b207be8000ab37e34a426fcefd65ca.stex" ] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=0 +flags/repeat=0 +flags/filter=true +flags/mipmaps=false +flags/anisotropic=false +flags/srgb=2 +process/fix_alpha_border=true +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +process/normal_map_invert_y=false +stream=false +size_limit=0 +detect_3d=true +svg/scale=1.0 diff --git a/Source/sprites/buttonAdd.png b/Source/sprites/buttonAdd.png new file mode 100644 index 0000000..f6adb80 Binary files /dev/null and b/Source/sprites/buttonAdd.png differ diff --git a/Source/sprites/buttonAdd.png.import b/Source/sprites/buttonAdd.png.import new file mode 100644 index 0000000..6127a52 --- /dev/null +++ b/Source/sprites/buttonAdd.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/buttonAdd.png-35da5f2c9dbc1c8df8bbe6726dc38dd8.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/buttonAdd.png" +dest_files=[ "res://.import/buttonAdd.png-35da5f2c9dbc1c8df8bbe6726dc38dd8.stex" ] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=0 +flags/repeat=0 +flags/filter=true +flags/mipmaps=false +flags/anisotropic=false +flags/srgb=2 +process/fix_alpha_border=true +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +process/normal_map_invert_y=false +stream=false +size_limit=0 +detect_3d=true +svg/scale=1.0 diff --git a/Source/sprites/cities/city00.png b/Source/sprites/cities/city00.png new file mode 100644 index 0000000..adf33ad Binary files /dev/null and b/Source/sprites/cities/city00.png differ diff --git a/Source/sprites/cities/city00.png.import b/Source/sprites/cities/city00.png.import new file mode 100644 index 0000000..e80c011 --- /dev/null +++ b/Source/sprites/cities/city00.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/city00.png-938ed737758acb73c978579b1cef7e72.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/cities/city00.png" +dest_files=[ "res://.import/city00.png-938ed737758acb73c978579b1cef7e72.stex" ] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=0 +flags/repeat=0 +flags/filter=true +flags/mipmaps=false +flags/anisotropic=false +flags/srgb=2 +process/fix_alpha_border=true +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +process/normal_map_invert_y=false +stream=false +size_limit=0 +detect_3d=true +svg/scale=1.0 diff --git a/Source/sprites/cities/city01.png b/Source/sprites/cities/city01.png new file mode 100644 index 0000000..b2051d8 Binary files /dev/null and b/Source/sprites/cities/city01.png differ diff --git a/Source/sprites/cities/city01.png.import b/Source/sprites/cities/city01.png.import new file mode 100644 index 0000000..6ed4298 --- /dev/null +++ b/Source/sprites/cities/city01.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/city01.png-ba325f8fd020b55c995f2cc6b5a80df6.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/cities/city01.png" +dest_files=[ "res://.import/city01.png-ba325f8fd020b55c995f2cc6b5a80df6.stex" ] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=0 +flags/repeat=0 +flags/filter=true +flags/mipmaps=false +flags/anisotropic=false +flags/srgb=2 +process/fix_alpha_border=true +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +process/normal_map_invert_y=false +stream=false +size_limit=0 +detect_3d=true +svg/scale=1.0 diff --git a/Source/sprites/cities/city02.png b/Source/sprites/cities/city02.png new file mode 100644 index 0000000..04d867d Binary files /dev/null and b/Source/sprites/cities/city02.png differ diff --git a/Source/sprites/cities/city02.png.import b/Source/sprites/cities/city02.png.import new file mode 100644 index 0000000..0e8c788 --- /dev/null +++ b/Source/sprites/cities/city02.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/city02.png-1d4594e0c824bd54bfa889f29ba2e305.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/cities/city02.png" +dest_files=[ "res://.import/city02.png-1d4594e0c824bd54bfa889f29ba2e305.stex" ] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=0 +flags/repeat=0 +flags/filter=true +flags/mipmaps=false +flags/anisotropic=false +flags/srgb=2 +process/fix_alpha_border=true +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +process/normal_map_invert_y=false +stream=false +size_limit=0 +detect_3d=true +svg/scale=1.0 diff --git a/Source/sprites/cities/city03.png b/Source/sprites/cities/city03.png new file mode 100644 index 0000000..1a9691f Binary files /dev/null and b/Source/sprites/cities/city03.png differ diff --git a/Source/sprites/cities/city03.png.import b/Source/sprites/cities/city03.png.import new file mode 100644 index 0000000..1ba91c0 --- /dev/null +++ b/Source/sprites/cities/city03.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/city03.png-62d1a3e085c87d2746ce848927492022.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/cities/city03.png" +dest_files=[ "res://.import/city03.png-62d1a3e085c87d2746ce848927492022.stex" ] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=0 +flags/repeat=0 +flags/filter=true +flags/mipmaps=false +flags/anisotropic=false +flags/srgb=2 +process/fix_alpha_border=true +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +process/normal_map_invert_y=false +stream=false +size_limit=0 +detect_3d=true +svg/scale=1.0 diff --git a/Source/sprites/cities/city04.png b/Source/sprites/cities/city04.png new file mode 100644 index 0000000..ac3c697 Binary files /dev/null and b/Source/sprites/cities/city04.png differ diff --git a/Source/sprites/cities/city04.png.import b/Source/sprites/cities/city04.png.import new file mode 100644 index 0000000..9afcccf --- /dev/null +++ b/Source/sprites/cities/city04.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/city04.png-24cb2f42f3aeda6a408fbbd282323891.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/cities/city04.png" +dest_files=[ "res://.import/city04.png-24cb2f42f3aeda6a408fbbd282323891.stex" ] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=0 +flags/repeat=0 +flags/filter=true +flags/mipmaps=false +flags/anisotropic=false +flags/srgb=2 +process/fix_alpha_border=true +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +process/normal_map_invert_y=false +stream=false +size_limit=0 +detect_3d=true +svg/scale=1.0 diff --git a/Source/sprites/cities/city05.png b/Source/sprites/cities/city05.png new file mode 100644 index 0000000..755cbc5 Binary files /dev/null and b/Source/sprites/cities/city05.png differ diff --git a/Source/sprites/cities/city05.png.import b/Source/sprites/cities/city05.png.import new file mode 100644 index 0000000..ae8b6c0 --- /dev/null +++ b/Source/sprites/cities/city05.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/city05.png-2058ee4a8a797fbc5e97c9f788b32c9b.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/cities/city05.png" +dest_files=[ "res://.import/city05.png-2058ee4a8a797fbc5e97c9f788b32c9b.stex" ] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=0 +flags/repeat=0 +flags/filter=true +flags/mipmaps=false +flags/anisotropic=false +flags/srgb=2 +process/fix_alpha_border=true +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +process/normal_map_invert_y=false +stream=false +size_limit=0 +detect_3d=true +svg/scale=1.0 diff --git a/Source/sprites/cities/city06.png b/Source/sprites/cities/city06.png new file mode 100644 index 0000000..f2293d5 Binary files /dev/null and b/Source/sprites/cities/city06.png differ diff --git a/Source/sprites/cities/city06.png.import b/Source/sprites/cities/city06.png.import new file mode 100644 index 0000000..42ad474 --- /dev/null +++ b/Source/sprites/cities/city06.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/city06.png-eb9e8b2c96e930ffa05e28a41811862b.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/cities/city06.png" +dest_files=[ "res://.import/city06.png-eb9e8b2c96e930ffa05e28a41811862b.stex" ] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=0 +flags/repeat=0 +flags/filter=true +flags/mipmaps=false +flags/anisotropic=false +flags/srgb=2 +process/fix_alpha_border=true +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +process/normal_map_invert_y=false +stream=false +size_limit=0 +detect_3d=true +svg/scale=1.0 diff --git a/Source/sprites/cities/city07.png b/Source/sprites/cities/city07.png new file mode 100644 index 0000000..3386992 Binary files /dev/null and b/Source/sprites/cities/city07.png differ diff --git a/Source/sprites/cities/city07.png.import b/Source/sprites/cities/city07.png.import new file mode 100644 index 0000000..dae3c90 --- /dev/null +++ b/Source/sprites/cities/city07.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/city07.png-6c43fe20f6c75051cbe50844e7e9d074.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/cities/city07.png" +dest_files=[ "res://.import/city07.png-6c43fe20f6c75051cbe50844e7e9d074.stex" ] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=0 +flags/repeat=0 +flags/filter=true +flags/mipmaps=false +flags/anisotropic=false +flags/srgb=2 +process/fix_alpha_border=true +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +process/normal_map_invert_y=false +stream=false +size_limit=0 +detect_3d=true +svg/scale=1.0 diff --git a/Source/sprites/cities/city08.png b/Source/sprites/cities/city08.png new file mode 100644 index 0000000..7a19f52 Binary files /dev/null and b/Source/sprites/cities/city08.png differ diff --git a/Source/sprites/cities/city08.png.import b/Source/sprites/cities/city08.png.import new file mode 100644 index 0000000..2566502 --- /dev/null +++ b/Source/sprites/cities/city08.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/city08.png-d69588834838eafa84b53eeff6261c32.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/cities/city08.png" +dest_files=[ "res://.import/city08.png-d69588834838eafa84b53eeff6261c32.stex" ] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=0 +flags/repeat=0 +flags/filter=true +flags/mipmaps=false +flags/anisotropic=false +flags/srgb=2 +process/fix_alpha_border=true +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +process/normal_map_invert_y=false +stream=false +size_limit=0 +detect_3d=true +svg/scale=1.0 diff --git a/Source/sprites/cities/city09.png b/Source/sprites/cities/city09.png new file mode 100644 index 0000000..6e70a7e Binary files /dev/null and b/Source/sprites/cities/city09.png differ diff --git a/Source/sprites/cities/city09.png.import b/Source/sprites/cities/city09.png.import new file mode 100644 index 0000000..1483e4a --- /dev/null +++ b/Source/sprites/cities/city09.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/city09.png-054eca9cc2213fe9591cd312693f05dd.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/cities/city09.png" +dest_files=[ "res://.import/city09.png-054eca9cc2213fe9591cd312693f05dd.stex" ] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=0 +flags/repeat=0 +flags/filter=true +flags/mipmaps=false +flags/anisotropic=false +flags/srgb=2 +process/fix_alpha_border=true +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +process/normal_map_invert_y=false +stream=false +size_limit=0 +detect_3d=true +svg/scale=1.0 diff --git a/Source/sprites/cities/city10.png b/Source/sprites/cities/city10.png new file mode 100644 index 0000000..8f71a69 Binary files /dev/null and b/Source/sprites/cities/city10.png differ diff --git a/Source/sprites/cities/city10.png.import b/Source/sprites/cities/city10.png.import new file mode 100644 index 0000000..2caa539 --- /dev/null +++ b/Source/sprites/cities/city10.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/city10.png-d97356bc42a2557add7ba4b673eb3e58.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/cities/city10.png" +dest_files=[ "res://.import/city10.png-d97356bc42a2557add7ba4b673eb3e58.stex" ] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=0 +flags/repeat=0 +flags/filter=true +flags/mipmaps=false +flags/anisotropic=false +flags/srgb=2 +process/fix_alpha_border=true +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +process/normal_map_invert_y=false +stream=false +size_limit=0 +detect_3d=true +svg/scale=1.0 diff --git a/Source/sprites/city.png b/Source/sprites/city.png new file mode 100644 index 0000000..1724eac Binary files /dev/null and b/Source/sprites/city.png differ diff --git a/Source/sprites/city.png.import b/Source/sprites/city.png.import new file mode 100644 index 0000000..3bc79f7 --- /dev/null +++ b/Source/sprites/city.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/city.png-ec5a17df7066b1e2e9ff73f5594c8375.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/city.png" +dest_files=[ "res://.import/city.png-ec5a17df7066b1e2e9ff73f5594c8375.stex" ] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=0 +flags/repeat=0 +flags/filter=true +flags/mipmaps=false +flags/anisotropic=false +flags/srgb=2 +process/fix_alpha_border=true +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +process/normal_map_invert_y=false +stream=false +size_limit=0 +detect_3d=true +svg/scale=1.0 diff --git a/Source/sprites/market.png b/Source/sprites/market.png new file mode 100644 index 0000000..8f25e69 Binary files /dev/null and b/Source/sprites/market.png differ diff --git a/Source/sprites/market.png.import b/Source/sprites/market.png.import new file mode 100644 index 0000000..919dad7 --- /dev/null +++ b/Source/sprites/market.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/market.png-c369553d611862555f186304a076b43f.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/market.png" +dest_files=[ "res://.import/market.png-c369553d611862555f186304a076b43f.stex" ] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=0 +flags/repeat=0 +flags/filter=true +flags/mipmaps=false +flags/anisotropic=false +flags/srgb=2 +process/fix_alpha_border=true +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +process/normal_map_invert_y=false +stream=false +size_limit=0 +detect_3d=true +svg/scale=1.0