diff --git a/Player.gd b/Player.gd new file mode 100644 index 0000000..a39fdf5 --- /dev/null +++ b/Player.gd @@ -0,0 +1,14 @@ +extends KinematicBody + +var mouse_sensitivity = 0.03 + +onready var head = $Head + +func _ready(): + Input.set_mouse_mode(Input.MOUSE_MODE_CAPTURED) + +func _input(event): + if event is InputEventMouseMotion: + rotate_y(deg2rad(-event.relative.x * mouse_sensitivity)) + head.rotate_x(deg2rad(-event.relative.y * mouse_sensitivity)) + head.rotation.x = clamp(head.rotation.x, deg2rad(-89), deg2rad(89)) diff --git a/Player.tscn b/Player.tscn new file mode 100644 index 0000000..9c6ebf1 --- /dev/null +++ b/Player.tscn @@ -0,0 +1,31 @@ +[gd_scene load_steps=5 format=2] + +[ext_resource path="res://Player.gd" type="Script" id=1] + +[sub_resource type="CapsuleMesh" id=1] +mid_height = 3.0 + +[sub_resource type="CapsuleShape" id=2] +height = 3.0 + +[sub_resource type="CylinderShape" id=3] + +[node name="Player" type="KinematicBody"] +script = ExtResource( 1 ) + +[node name="MeshInstance" type="MeshInstance" parent="."] +transform = Transform( 1, 0, 0, 0, -4.37114e-08, -1, 0, 1, -4.37114e-08, 0, 0, 0 ) +mesh = SubResource( 1 ) + +[node name="CollisionShape" type="CollisionShape" parent="."] +transform = Transform( 1, 0, 0, 0, -4.37114e-08, -1, 0, 1, -4.37114e-08, 0, 0, 0 ) +shape = SubResource( 2 ) + +[node name="Feet" type="CollisionShape" parent="."] +transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -1.49873, 0 ) +shape = SubResource( 3 ) + +[node name="Head" type="Spatial" parent="."] +transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.84218, 0 ) + +[node name="Camera" type="Camera" parent="Head"] diff --git a/Test_Scene.tscn b/Test_Scene.tscn new file mode 100644 index 0000000..6583cb4 --- /dev/null +++ b/Test_Scene.tscn @@ -0,0 +1,23 @@ +[gd_scene load_steps=4 format=2] + +[ext_resource path="res://Textures/kenney_prototype_textures/dark/texture_01.png" type="Texture" id=1] +[ext_resource path="res://Player.tscn" type="PackedScene" id=2] + +[sub_resource type="SpatialMaterial" id=1] +albedo_texture = ExtResource( 1 ) +uv1_triplanar = true + +[node name="Spatial" type="Spatial"] + +[node name="CSGCombiner" type="CSGCombiner" parent="."] + +[node name="CSGBox" type="CSGBox" parent="CSGCombiner"] +transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -4, 0 ) +width = 26.0 +depth = 26.0 +material = SubResource( 1 ) + +[node name="DirectionalLight" type="DirectionalLight" parent="."] +transform = Transform( 1, 0, 0, 0, 0.258819, 0.965926, 0, -0.965926, 0.258819, 0, 15.4487, 13 ) + +[node name="Player" parent="." instance=ExtResource( 2 )] diff --git a/Textures/kenney_prototype_textures/LICENSE.txt b/Textures/kenney_prototype_textures/LICENSE.txt new file mode 100644 index 0000000..839f104 --- /dev/null +++ b/Textures/kenney_prototype_textures/LICENSE.txt @@ -0,0 +1,23 @@ + + + Prototype Textures 1.0 + + Created/distributed by Kenney (www.kenney.nl) + Creation date: 08-04-2020 + + ------------------------------ + + License: (Creative Commons Zero, CC0) + http://creativecommons.org/publicdomain/zero/1.0/ + + This content is free to use in personal, educational and commercial projects. + Support us by crediting Kenney or www.kenney.nl (this is not mandatory) + + ------------------------------ + + Donate: http://support.kenney.nl + Request: http://request.kenney.nl + Patreon: http://patreon.com/kenney/ + + Follow on Twitter for updates: + http://twitter.com/KenneyNL diff --git a/Textures/kenney_prototype_textures/dark/texture_01.png b/Textures/kenney_prototype_textures/dark/texture_01.png new file mode 100644 index 0000000..14a9811 Binary files /dev/null and b/Textures/kenney_prototype_textures/dark/texture_01.png differ diff --git a/Textures/kenney_prototype_textures/dark/texture_01.png.import b/Textures/kenney_prototype_textures/dark/texture_01.png.import new file mode 100644 index 0000000..5a6ca48 --- /dev/null +++ b/Textures/kenney_prototype_textures/dark/texture_01.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="StreamTexture" +path.s3tc="res://.import/texture_01.png-d62865672eb34d5532f08d6fe8be81da.s3tc.stex" +path.etc2="res://.import/texture_01.png-d62865672eb34d5532f08d6fe8be81da.etc2.stex" +metadata={ +"imported_formats": [ "s3tc", "etc2" ], +"vram_texture": true +} + +[deps] + +source_file="res://Textures/kenney_prototype_textures/dark/texture_01.png" +dest_files=[ "res://.import/texture_01.png-d62865672eb34d5532f08d6fe8be81da.s3tc.stex", "res://.import/texture_01.png-d62865672eb34d5532f08d6fe8be81da.etc2.stex" ] + +[params] + +compress/mode=2 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=0 +flags/repeat=true +flags/filter=true +flags/mipmaps=true +flags/anisotropic=false +flags/srgb=1 +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=false +svg/scale=1.0 diff --git a/Textures/kenney_prototype_textures/dark/texture_02.png b/Textures/kenney_prototype_textures/dark/texture_02.png new file mode 100644 index 0000000..d6a2a21 Binary files /dev/null and b/Textures/kenney_prototype_textures/dark/texture_02.png differ diff --git a/Textures/kenney_prototype_textures/dark/texture_02.png.import b/Textures/kenney_prototype_textures/dark/texture_02.png.import new file mode 100644 index 0000000..c0d39ea --- /dev/null +++ b/Textures/kenney_prototype_textures/dark/texture_02.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/texture_02.png-ddc8cfca98e385d2a68198d0e8287004.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Textures/kenney_prototype_textures/dark/texture_02.png" +dest_files=[ "res://.import/texture_02.png-ddc8cfca98e385d2a68198d0e8287004.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/Textures/kenney_prototype_textures/dark/texture_03.png b/Textures/kenney_prototype_textures/dark/texture_03.png new file mode 100644 index 0000000..4aa482d Binary files /dev/null and b/Textures/kenney_prototype_textures/dark/texture_03.png differ diff --git a/Textures/kenney_prototype_textures/dark/texture_03.png.import b/Textures/kenney_prototype_textures/dark/texture_03.png.import new file mode 100644 index 0000000..c9a4cce --- /dev/null +++ b/Textures/kenney_prototype_textures/dark/texture_03.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="StreamTexture" +path.s3tc="res://.import/texture_03.png-c3e1618db369b4b1e72093b4c7434814.s3tc.stex" +path.etc2="res://.import/texture_03.png-c3e1618db369b4b1e72093b4c7434814.etc2.stex" +metadata={ +"imported_formats": [ "s3tc", "etc2" ], +"vram_texture": true +} + +[deps] + +source_file="res://Textures/kenney_prototype_textures/dark/texture_03.png" +dest_files=[ "res://.import/texture_03.png-c3e1618db369b4b1e72093b4c7434814.s3tc.stex", "res://.import/texture_03.png-c3e1618db369b4b1e72093b4c7434814.etc2.stex" ] + +[params] + +compress/mode=2 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=0 +flags/repeat=true +flags/filter=true +flags/mipmaps=true +flags/anisotropic=false +flags/srgb=1 +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=false +svg/scale=1.0 diff --git a/Textures/kenney_prototype_textures/dark/texture_04.png b/Textures/kenney_prototype_textures/dark/texture_04.png new file mode 100644 index 0000000..1e0a8f9 Binary files /dev/null and b/Textures/kenney_prototype_textures/dark/texture_04.png differ diff --git a/Textures/kenney_prototype_textures/dark/texture_04.png.import b/Textures/kenney_prototype_textures/dark/texture_04.png.import new file mode 100644 index 0000000..cf047d0 --- /dev/null +++ b/Textures/kenney_prototype_textures/dark/texture_04.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/texture_04.png-0b6a5b6d057f422dba0570944b878100.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Textures/kenney_prototype_textures/dark/texture_04.png" +dest_files=[ "res://.import/texture_04.png-0b6a5b6d057f422dba0570944b878100.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/Textures/kenney_prototype_textures/dark/texture_05.png b/Textures/kenney_prototype_textures/dark/texture_05.png new file mode 100644 index 0000000..cd01f8c Binary files /dev/null and b/Textures/kenney_prototype_textures/dark/texture_05.png differ diff --git a/Textures/kenney_prototype_textures/dark/texture_05.png.import b/Textures/kenney_prototype_textures/dark/texture_05.png.import new file mode 100644 index 0000000..7ec5dc2 --- /dev/null +++ b/Textures/kenney_prototype_textures/dark/texture_05.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="StreamTexture" +path.s3tc="res://.import/texture_05.png-9298937f29ec548aad173238fa6f6e95.s3tc.stex" +path.etc2="res://.import/texture_05.png-9298937f29ec548aad173238fa6f6e95.etc2.stex" +metadata={ +"imported_formats": [ "s3tc", "etc2" ], +"vram_texture": true +} + +[deps] + +source_file="res://Textures/kenney_prototype_textures/dark/texture_05.png" +dest_files=[ "res://.import/texture_05.png-9298937f29ec548aad173238fa6f6e95.s3tc.stex", "res://.import/texture_05.png-9298937f29ec548aad173238fa6f6e95.etc2.stex" ] + +[params] + +compress/mode=2 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=0 +flags/repeat=true +flags/filter=true +flags/mipmaps=true +flags/anisotropic=false +flags/srgb=1 +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=false +svg/scale=1.0 diff --git a/Textures/kenney_prototype_textures/dark/texture_06.png b/Textures/kenney_prototype_textures/dark/texture_06.png new file mode 100644 index 0000000..4e8f53c Binary files /dev/null and b/Textures/kenney_prototype_textures/dark/texture_06.png differ diff --git a/Textures/kenney_prototype_textures/dark/texture_06.png.import b/Textures/kenney_prototype_textures/dark/texture_06.png.import new file mode 100644 index 0000000..0be6b2c --- /dev/null +++ b/Textures/kenney_prototype_textures/dark/texture_06.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/texture_06.png-c2ed48f61d5c2a0ade847be252c809ca.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Textures/kenney_prototype_textures/dark/texture_06.png" +dest_files=[ "res://.import/texture_06.png-c2ed48f61d5c2a0ade847be252c809ca.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/Textures/kenney_prototype_textures/dark/texture_07.png b/Textures/kenney_prototype_textures/dark/texture_07.png new file mode 100644 index 0000000..d00973e Binary files /dev/null and b/Textures/kenney_prototype_textures/dark/texture_07.png differ diff --git a/Textures/kenney_prototype_textures/dark/texture_07.png.import b/Textures/kenney_prototype_textures/dark/texture_07.png.import new file mode 100644 index 0000000..541258b --- /dev/null +++ b/Textures/kenney_prototype_textures/dark/texture_07.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/texture_07.png-d4917d42fd6249c69a84dfd993625aa0.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Textures/kenney_prototype_textures/dark/texture_07.png" +dest_files=[ "res://.import/texture_07.png-d4917d42fd6249c69a84dfd993625aa0.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/Textures/kenney_prototype_textures/dark/texture_08.png b/Textures/kenney_prototype_textures/dark/texture_08.png new file mode 100644 index 0000000..72dd6c0 Binary files /dev/null and b/Textures/kenney_prototype_textures/dark/texture_08.png differ diff --git a/Textures/kenney_prototype_textures/dark/texture_08.png.import b/Textures/kenney_prototype_textures/dark/texture_08.png.import new file mode 100644 index 0000000..fbc595b --- /dev/null +++ b/Textures/kenney_prototype_textures/dark/texture_08.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/texture_08.png-a49006ec63d2d0c814808c61fc10efa3.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Textures/kenney_prototype_textures/dark/texture_08.png" +dest_files=[ "res://.import/texture_08.png-a49006ec63d2d0c814808c61fc10efa3.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/Textures/kenney_prototype_textures/dark/texture_09.png b/Textures/kenney_prototype_textures/dark/texture_09.png new file mode 100644 index 0000000..e81fa1a Binary files /dev/null and b/Textures/kenney_prototype_textures/dark/texture_09.png differ diff --git a/Textures/kenney_prototype_textures/dark/texture_09.png.import b/Textures/kenney_prototype_textures/dark/texture_09.png.import new file mode 100644 index 0000000..a3749f3 --- /dev/null +++ b/Textures/kenney_prototype_textures/dark/texture_09.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/texture_09.png-e29761f9b89132e385624269285948cb.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Textures/kenney_prototype_textures/dark/texture_09.png" +dest_files=[ "res://.import/texture_09.png-e29761f9b89132e385624269285948cb.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/Textures/kenney_prototype_textures/dark/texture_10.png b/Textures/kenney_prototype_textures/dark/texture_10.png new file mode 100644 index 0000000..682088c Binary files /dev/null and b/Textures/kenney_prototype_textures/dark/texture_10.png differ diff --git a/Textures/kenney_prototype_textures/dark/texture_10.png.import b/Textures/kenney_prototype_textures/dark/texture_10.png.import new file mode 100644 index 0000000..5139710 --- /dev/null +++ b/Textures/kenney_prototype_textures/dark/texture_10.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/texture_10.png-d978c6f71b8d91caa12303be80517795.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Textures/kenney_prototype_textures/dark/texture_10.png" +dest_files=[ "res://.import/texture_10.png-d978c6f71b8d91caa12303be80517795.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/Textures/kenney_prototype_textures/dark/texture_11.png b/Textures/kenney_prototype_textures/dark/texture_11.png new file mode 100644 index 0000000..f0571a1 Binary files /dev/null and b/Textures/kenney_prototype_textures/dark/texture_11.png differ diff --git a/Textures/kenney_prototype_textures/dark/texture_11.png.import b/Textures/kenney_prototype_textures/dark/texture_11.png.import new file mode 100644 index 0000000..2d2f75d --- /dev/null +++ b/Textures/kenney_prototype_textures/dark/texture_11.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/texture_11.png-6376c634781da23fc7dd96181ab2879e.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Textures/kenney_prototype_textures/dark/texture_11.png" +dest_files=[ "res://.import/texture_11.png-6376c634781da23fc7dd96181ab2879e.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/Textures/kenney_prototype_textures/dark/texture_12.png b/Textures/kenney_prototype_textures/dark/texture_12.png new file mode 100644 index 0000000..b797dbe Binary files /dev/null and b/Textures/kenney_prototype_textures/dark/texture_12.png differ diff --git a/Textures/kenney_prototype_textures/dark/texture_12.png.import b/Textures/kenney_prototype_textures/dark/texture_12.png.import new file mode 100644 index 0000000..69e78c7 --- /dev/null +++ b/Textures/kenney_prototype_textures/dark/texture_12.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/texture_12.png-befea44323b465c4585164417fc70450.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Textures/kenney_prototype_textures/dark/texture_12.png" +dest_files=[ "res://.import/texture_12.png-befea44323b465c4585164417fc70450.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/Textures/kenney_prototype_textures/dark/texture_13.png b/Textures/kenney_prototype_textures/dark/texture_13.png new file mode 100644 index 0000000..6e8aff4 Binary files /dev/null and b/Textures/kenney_prototype_textures/dark/texture_13.png differ diff --git a/Textures/kenney_prototype_textures/dark/texture_13.png.import b/Textures/kenney_prototype_textures/dark/texture_13.png.import new file mode 100644 index 0000000..94be277 --- /dev/null +++ b/Textures/kenney_prototype_textures/dark/texture_13.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/texture_13.png-5f0b98761762e78bbf1ecaa15821c305.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Textures/kenney_prototype_textures/dark/texture_13.png" +dest_files=[ "res://.import/texture_13.png-5f0b98761762e78bbf1ecaa15821c305.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/Textures/kenney_prototype_textures/green/texture_01.png b/Textures/kenney_prototype_textures/green/texture_01.png new file mode 100644 index 0000000..7d53fe7 Binary files /dev/null and b/Textures/kenney_prototype_textures/green/texture_01.png differ diff --git a/Textures/kenney_prototype_textures/green/texture_01.png.import b/Textures/kenney_prototype_textures/green/texture_01.png.import new file mode 100644 index 0000000..13fa1a5 --- /dev/null +++ b/Textures/kenney_prototype_textures/green/texture_01.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/texture_01.png-a70a232ea5920a0ccf3e70d4a4d30427.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Textures/kenney_prototype_textures/green/texture_01.png" +dest_files=[ "res://.import/texture_01.png-a70a232ea5920a0ccf3e70d4a4d30427.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/Textures/kenney_prototype_textures/green/texture_02.png b/Textures/kenney_prototype_textures/green/texture_02.png new file mode 100644 index 0000000..15ceaa8 Binary files /dev/null and b/Textures/kenney_prototype_textures/green/texture_02.png differ diff --git a/Textures/kenney_prototype_textures/green/texture_02.png.import b/Textures/kenney_prototype_textures/green/texture_02.png.import new file mode 100644 index 0000000..97e1194 --- /dev/null +++ b/Textures/kenney_prototype_textures/green/texture_02.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/texture_02.png-8769ee453b3e97a01ed72870036154ea.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Textures/kenney_prototype_textures/green/texture_02.png" +dest_files=[ "res://.import/texture_02.png-8769ee453b3e97a01ed72870036154ea.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/Textures/kenney_prototype_textures/green/texture_03.png b/Textures/kenney_prototype_textures/green/texture_03.png new file mode 100644 index 0000000..90eedc6 Binary files /dev/null and b/Textures/kenney_prototype_textures/green/texture_03.png differ diff --git a/Textures/kenney_prototype_textures/green/texture_03.png.import b/Textures/kenney_prototype_textures/green/texture_03.png.import new file mode 100644 index 0000000..f6e5d55 --- /dev/null +++ b/Textures/kenney_prototype_textures/green/texture_03.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/texture_03.png-2138b0bcd52f3b41bb5599a6852dd1dd.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Textures/kenney_prototype_textures/green/texture_03.png" +dest_files=[ "res://.import/texture_03.png-2138b0bcd52f3b41bb5599a6852dd1dd.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/Textures/kenney_prototype_textures/green/texture_04.png b/Textures/kenney_prototype_textures/green/texture_04.png new file mode 100644 index 0000000..aed20f4 Binary files /dev/null and b/Textures/kenney_prototype_textures/green/texture_04.png differ diff --git a/Textures/kenney_prototype_textures/green/texture_04.png.import b/Textures/kenney_prototype_textures/green/texture_04.png.import new file mode 100644 index 0000000..a23f103 --- /dev/null +++ b/Textures/kenney_prototype_textures/green/texture_04.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/texture_04.png-0e6d3ebc1354ce1d7ca0507339ee55c2.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Textures/kenney_prototype_textures/green/texture_04.png" +dest_files=[ "res://.import/texture_04.png-0e6d3ebc1354ce1d7ca0507339ee55c2.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/Textures/kenney_prototype_textures/green/texture_05.png b/Textures/kenney_prototype_textures/green/texture_05.png new file mode 100644 index 0000000..c89df69 Binary files /dev/null and b/Textures/kenney_prototype_textures/green/texture_05.png differ diff --git a/Textures/kenney_prototype_textures/green/texture_05.png.import b/Textures/kenney_prototype_textures/green/texture_05.png.import new file mode 100644 index 0000000..7f152f5 --- /dev/null +++ b/Textures/kenney_prototype_textures/green/texture_05.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/texture_05.png-c09be7b74dfef9db6c9bf460d62fdb72.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Textures/kenney_prototype_textures/green/texture_05.png" +dest_files=[ "res://.import/texture_05.png-c09be7b74dfef9db6c9bf460d62fdb72.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/Textures/kenney_prototype_textures/green/texture_06.png b/Textures/kenney_prototype_textures/green/texture_06.png new file mode 100644 index 0000000..59e0df0 Binary files /dev/null and b/Textures/kenney_prototype_textures/green/texture_06.png differ diff --git a/Textures/kenney_prototype_textures/green/texture_06.png.import b/Textures/kenney_prototype_textures/green/texture_06.png.import new file mode 100644 index 0000000..f5f40b7 --- /dev/null +++ b/Textures/kenney_prototype_textures/green/texture_06.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/texture_06.png-d1ad8d5431d4d777bc0d87b40321250b.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Textures/kenney_prototype_textures/green/texture_06.png" +dest_files=[ "res://.import/texture_06.png-d1ad8d5431d4d777bc0d87b40321250b.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/Textures/kenney_prototype_textures/green/texture_07.png b/Textures/kenney_prototype_textures/green/texture_07.png new file mode 100644 index 0000000..7a4bdaf Binary files /dev/null and b/Textures/kenney_prototype_textures/green/texture_07.png differ diff --git a/Textures/kenney_prototype_textures/green/texture_07.png.import b/Textures/kenney_prototype_textures/green/texture_07.png.import new file mode 100644 index 0000000..543f8e6 --- /dev/null +++ b/Textures/kenney_prototype_textures/green/texture_07.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/texture_07.png-ecfda5298300b17372ed3bc5a21199fa.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Textures/kenney_prototype_textures/green/texture_07.png" +dest_files=[ "res://.import/texture_07.png-ecfda5298300b17372ed3bc5a21199fa.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/Textures/kenney_prototype_textures/green/texture_08.png b/Textures/kenney_prototype_textures/green/texture_08.png new file mode 100644 index 0000000..8e4f320 Binary files /dev/null and b/Textures/kenney_prototype_textures/green/texture_08.png differ diff --git a/Textures/kenney_prototype_textures/green/texture_08.png.import b/Textures/kenney_prototype_textures/green/texture_08.png.import new file mode 100644 index 0000000..f4d8150 --- /dev/null +++ b/Textures/kenney_prototype_textures/green/texture_08.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/texture_08.png-3902a7623ecd7fea0829cd77da7c9513.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Textures/kenney_prototype_textures/green/texture_08.png" +dest_files=[ "res://.import/texture_08.png-3902a7623ecd7fea0829cd77da7c9513.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/Textures/kenney_prototype_textures/green/texture_09.png b/Textures/kenney_prototype_textures/green/texture_09.png new file mode 100644 index 0000000..0a7eddb Binary files /dev/null and b/Textures/kenney_prototype_textures/green/texture_09.png differ diff --git a/Textures/kenney_prototype_textures/green/texture_09.png.import b/Textures/kenney_prototype_textures/green/texture_09.png.import new file mode 100644 index 0000000..0fa1b57 --- /dev/null +++ b/Textures/kenney_prototype_textures/green/texture_09.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/texture_09.png-d9b296e5eb218d37f41d55336730ecff.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Textures/kenney_prototype_textures/green/texture_09.png" +dest_files=[ "res://.import/texture_09.png-d9b296e5eb218d37f41d55336730ecff.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/Textures/kenney_prototype_textures/green/texture_10.png b/Textures/kenney_prototype_textures/green/texture_10.png new file mode 100644 index 0000000..559a7c1 Binary files /dev/null and b/Textures/kenney_prototype_textures/green/texture_10.png differ diff --git a/Textures/kenney_prototype_textures/green/texture_10.png.import b/Textures/kenney_prototype_textures/green/texture_10.png.import new file mode 100644 index 0000000..db83a98 --- /dev/null +++ b/Textures/kenney_prototype_textures/green/texture_10.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/texture_10.png-3b3f9ed5027c5c78a836d179e5987629.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Textures/kenney_prototype_textures/green/texture_10.png" +dest_files=[ "res://.import/texture_10.png-3b3f9ed5027c5c78a836d179e5987629.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/Textures/kenney_prototype_textures/green/texture_11.png b/Textures/kenney_prototype_textures/green/texture_11.png new file mode 100644 index 0000000..119294d Binary files /dev/null and b/Textures/kenney_prototype_textures/green/texture_11.png differ diff --git a/Textures/kenney_prototype_textures/green/texture_11.png.import b/Textures/kenney_prototype_textures/green/texture_11.png.import new file mode 100644 index 0000000..de21dfe --- /dev/null +++ b/Textures/kenney_prototype_textures/green/texture_11.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/texture_11.png-d9062e55e106c9102482cc53402e90d2.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Textures/kenney_prototype_textures/green/texture_11.png" +dest_files=[ "res://.import/texture_11.png-d9062e55e106c9102482cc53402e90d2.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/Textures/kenney_prototype_textures/green/texture_12.png b/Textures/kenney_prototype_textures/green/texture_12.png new file mode 100644 index 0000000..5991228 Binary files /dev/null and b/Textures/kenney_prototype_textures/green/texture_12.png differ diff --git a/Textures/kenney_prototype_textures/green/texture_12.png.import b/Textures/kenney_prototype_textures/green/texture_12.png.import new file mode 100644 index 0000000..28055c1 --- /dev/null +++ b/Textures/kenney_prototype_textures/green/texture_12.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/texture_12.png-7fbffd156290f486fa150146c01e49c7.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Textures/kenney_prototype_textures/green/texture_12.png" +dest_files=[ "res://.import/texture_12.png-7fbffd156290f486fa150146c01e49c7.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/Textures/kenney_prototype_textures/green/texture_13.png b/Textures/kenney_prototype_textures/green/texture_13.png new file mode 100644 index 0000000..9c57c6e Binary files /dev/null and b/Textures/kenney_prototype_textures/green/texture_13.png differ diff --git a/Textures/kenney_prototype_textures/green/texture_13.png.import b/Textures/kenney_prototype_textures/green/texture_13.png.import new file mode 100644 index 0000000..6c2d051 --- /dev/null +++ b/Textures/kenney_prototype_textures/green/texture_13.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/texture_13.png-b6bee3d919e5b4dd8225e0798aeba5a7.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Textures/kenney_prototype_textures/green/texture_13.png" +dest_files=[ "res://.import/texture_13.png-b6bee3d919e5b4dd8225e0798aeba5a7.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/Textures/kenney_prototype_textures/light/texture_01.png b/Textures/kenney_prototype_textures/light/texture_01.png new file mode 100644 index 0000000..9e93d3e Binary files /dev/null and b/Textures/kenney_prototype_textures/light/texture_01.png differ diff --git a/Textures/kenney_prototype_textures/light/texture_01.png.import b/Textures/kenney_prototype_textures/light/texture_01.png.import new file mode 100644 index 0000000..a7f44b4 --- /dev/null +++ b/Textures/kenney_prototype_textures/light/texture_01.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/texture_01.png-9bea8c6b5e6517078ea2135f707750e0.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Textures/kenney_prototype_textures/light/texture_01.png" +dest_files=[ "res://.import/texture_01.png-9bea8c6b5e6517078ea2135f707750e0.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/Textures/kenney_prototype_textures/light/texture_02.png b/Textures/kenney_prototype_textures/light/texture_02.png new file mode 100644 index 0000000..c52d0d2 Binary files /dev/null and b/Textures/kenney_prototype_textures/light/texture_02.png differ diff --git a/Textures/kenney_prototype_textures/light/texture_02.png.import b/Textures/kenney_prototype_textures/light/texture_02.png.import new file mode 100644 index 0000000..91d173e --- /dev/null +++ b/Textures/kenney_prototype_textures/light/texture_02.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/texture_02.png-8f2f411e1464c0d294d158aa0acbdef3.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Textures/kenney_prototype_textures/light/texture_02.png" +dest_files=[ "res://.import/texture_02.png-8f2f411e1464c0d294d158aa0acbdef3.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/Textures/kenney_prototype_textures/light/texture_03.png b/Textures/kenney_prototype_textures/light/texture_03.png new file mode 100644 index 0000000..5960eca Binary files /dev/null and b/Textures/kenney_prototype_textures/light/texture_03.png differ diff --git a/Textures/kenney_prototype_textures/light/texture_03.png.import b/Textures/kenney_prototype_textures/light/texture_03.png.import new file mode 100644 index 0000000..cfb03c4 --- /dev/null +++ b/Textures/kenney_prototype_textures/light/texture_03.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/texture_03.png-0f18d7414404f975c26a0322bc33b8eb.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Textures/kenney_prototype_textures/light/texture_03.png" +dest_files=[ "res://.import/texture_03.png-0f18d7414404f975c26a0322bc33b8eb.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/Textures/kenney_prototype_textures/light/texture_04.png b/Textures/kenney_prototype_textures/light/texture_04.png new file mode 100644 index 0000000..0b9a1d5 Binary files /dev/null and b/Textures/kenney_prototype_textures/light/texture_04.png differ diff --git a/Textures/kenney_prototype_textures/light/texture_04.png.import b/Textures/kenney_prototype_textures/light/texture_04.png.import new file mode 100644 index 0000000..19e4892 --- /dev/null +++ b/Textures/kenney_prototype_textures/light/texture_04.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/texture_04.png-f38e454482291351954297c23df8d318.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Textures/kenney_prototype_textures/light/texture_04.png" +dest_files=[ "res://.import/texture_04.png-f38e454482291351954297c23df8d318.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/Textures/kenney_prototype_textures/light/texture_05.png b/Textures/kenney_prototype_textures/light/texture_05.png new file mode 100644 index 0000000..88f2e5c Binary files /dev/null and b/Textures/kenney_prototype_textures/light/texture_05.png differ diff --git a/Textures/kenney_prototype_textures/light/texture_05.png.import b/Textures/kenney_prototype_textures/light/texture_05.png.import new file mode 100644 index 0000000..cc62550 --- /dev/null +++ b/Textures/kenney_prototype_textures/light/texture_05.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/texture_05.png-e5b448721100d2b1b43111e140312d38.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Textures/kenney_prototype_textures/light/texture_05.png" +dest_files=[ "res://.import/texture_05.png-e5b448721100d2b1b43111e140312d38.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/Textures/kenney_prototype_textures/light/texture_06.png b/Textures/kenney_prototype_textures/light/texture_06.png new file mode 100644 index 0000000..374a5d0 Binary files /dev/null and b/Textures/kenney_prototype_textures/light/texture_06.png differ diff --git a/Textures/kenney_prototype_textures/light/texture_06.png.import b/Textures/kenney_prototype_textures/light/texture_06.png.import new file mode 100644 index 0000000..52d20e4 --- /dev/null +++ b/Textures/kenney_prototype_textures/light/texture_06.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/texture_06.png-d4a5845f65da57a09162df567085d079.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Textures/kenney_prototype_textures/light/texture_06.png" +dest_files=[ "res://.import/texture_06.png-d4a5845f65da57a09162df567085d079.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/Textures/kenney_prototype_textures/light/texture_07.png b/Textures/kenney_prototype_textures/light/texture_07.png new file mode 100644 index 0000000..34400e3 Binary files /dev/null and b/Textures/kenney_prototype_textures/light/texture_07.png differ diff --git a/Textures/kenney_prototype_textures/light/texture_07.png.import b/Textures/kenney_prototype_textures/light/texture_07.png.import new file mode 100644 index 0000000..1f3860e --- /dev/null +++ b/Textures/kenney_prototype_textures/light/texture_07.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/texture_07.png-5fe594a5c73d1b576bc72f356e6b043e.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Textures/kenney_prototype_textures/light/texture_07.png" +dest_files=[ "res://.import/texture_07.png-5fe594a5c73d1b576bc72f356e6b043e.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/Textures/kenney_prototype_textures/light/texture_08.png b/Textures/kenney_prototype_textures/light/texture_08.png new file mode 100644 index 0000000..c5bbc74 Binary files /dev/null and b/Textures/kenney_prototype_textures/light/texture_08.png differ diff --git a/Textures/kenney_prototype_textures/light/texture_08.png.import b/Textures/kenney_prototype_textures/light/texture_08.png.import new file mode 100644 index 0000000..28338ca --- /dev/null +++ b/Textures/kenney_prototype_textures/light/texture_08.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/texture_08.png-c6233b2b280bb66d95a9f7b17d6bc56f.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Textures/kenney_prototype_textures/light/texture_08.png" +dest_files=[ "res://.import/texture_08.png-c6233b2b280bb66d95a9f7b17d6bc56f.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/Textures/kenney_prototype_textures/light/texture_09.png b/Textures/kenney_prototype_textures/light/texture_09.png new file mode 100644 index 0000000..435e19e Binary files /dev/null and b/Textures/kenney_prototype_textures/light/texture_09.png differ diff --git a/Textures/kenney_prototype_textures/light/texture_09.png.import b/Textures/kenney_prototype_textures/light/texture_09.png.import new file mode 100644 index 0000000..990780b --- /dev/null +++ b/Textures/kenney_prototype_textures/light/texture_09.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/texture_09.png-90f50b22d36ebc13960e01b390f7c8e7.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Textures/kenney_prototype_textures/light/texture_09.png" +dest_files=[ "res://.import/texture_09.png-90f50b22d36ebc13960e01b390f7c8e7.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/Textures/kenney_prototype_textures/light/texture_10.png b/Textures/kenney_prototype_textures/light/texture_10.png new file mode 100644 index 0000000..25ac8ae Binary files /dev/null and b/Textures/kenney_prototype_textures/light/texture_10.png differ diff --git a/Textures/kenney_prototype_textures/light/texture_10.png.import b/Textures/kenney_prototype_textures/light/texture_10.png.import new file mode 100644 index 0000000..af8b83e --- /dev/null +++ b/Textures/kenney_prototype_textures/light/texture_10.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/texture_10.png-079983c75b6929fed903d228029e2f61.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Textures/kenney_prototype_textures/light/texture_10.png" +dest_files=[ "res://.import/texture_10.png-079983c75b6929fed903d228029e2f61.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/Textures/kenney_prototype_textures/light/texture_11.png b/Textures/kenney_prototype_textures/light/texture_11.png new file mode 100644 index 0000000..7d4aebb Binary files /dev/null and b/Textures/kenney_prototype_textures/light/texture_11.png differ diff --git a/Textures/kenney_prototype_textures/light/texture_11.png.import b/Textures/kenney_prototype_textures/light/texture_11.png.import new file mode 100644 index 0000000..08b4403 --- /dev/null +++ b/Textures/kenney_prototype_textures/light/texture_11.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/texture_11.png-f5dda2d8d87a6db3313f5a347599ea81.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Textures/kenney_prototype_textures/light/texture_11.png" +dest_files=[ "res://.import/texture_11.png-f5dda2d8d87a6db3313f5a347599ea81.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/Textures/kenney_prototype_textures/light/texture_12.png b/Textures/kenney_prototype_textures/light/texture_12.png new file mode 100644 index 0000000..6bd3926 Binary files /dev/null and b/Textures/kenney_prototype_textures/light/texture_12.png differ diff --git a/Textures/kenney_prototype_textures/light/texture_12.png.import b/Textures/kenney_prototype_textures/light/texture_12.png.import new file mode 100644 index 0000000..629c12f --- /dev/null +++ b/Textures/kenney_prototype_textures/light/texture_12.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/texture_12.png-9558964ddbbc41ee26d6aff2ead163ea.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Textures/kenney_prototype_textures/light/texture_12.png" +dest_files=[ "res://.import/texture_12.png-9558964ddbbc41ee26d6aff2ead163ea.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/Textures/kenney_prototype_textures/light/texture_13.png b/Textures/kenney_prototype_textures/light/texture_13.png new file mode 100644 index 0000000..74515a7 Binary files /dev/null and b/Textures/kenney_prototype_textures/light/texture_13.png differ diff --git a/Textures/kenney_prototype_textures/light/texture_13.png.import b/Textures/kenney_prototype_textures/light/texture_13.png.import new file mode 100644 index 0000000..6606d47 --- /dev/null +++ b/Textures/kenney_prototype_textures/light/texture_13.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/texture_13.png-5760e6c3a6161a84efde52a4f281e405.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Textures/kenney_prototype_textures/light/texture_13.png" +dest_files=[ "res://.import/texture_13.png-5760e6c3a6161a84efde52a4f281e405.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/Textures/kenney_prototype_textures/orange/texture_01.png b/Textures/kenney_prototype_textures/orange/texture_01.png new file mode 100644 index 0000000..3eda5cd Binary files /dev/null and b/Textures/kenney_prototype_textures/orange/texture_01.png differ diff --git a/Textures/kenney_prototype_textures/orange/texture_01.png.import b/Textures/kenney_prototype_textures/orange/texture_01.png.import new file mode 100644 index 0000000..928e058 --- /dev/null +++ b/Textures/kenney_prototype_textures/orange/texture_01.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/texture_01.png-7bf1c5b580a4e5291a946c3b0f1b0019.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Textures/kenney_prototype_textures/orange/texture_01.png" +dest_files=[ "res://.import/texture_01.png-7bf1c5b580a4e5291a946c3b0f1b0019.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/Textures/kenney_prototype_textures/orange/texture_02.png b/Textures/kenney_prototype_textures/orange/texture_02.png new file mode 100644 index 0000000..1460f2b Binary files /dev/null and b/Textures/kenney_prototype_textures/orange/texture_02.png differ diff --git a/Textures/kenney_prototype_textures/orange/texture_02.png.import b/Textures/kenney_prototype_textures/orange/texture_02.png.import new file mode 100644 index 0000000..2e70182 --- /dev/null +++ b/Textures/kenney_prototype_textures/orange/texture_02.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/texture_02.png-f0190b06105a9141366bd23dd1a0d857.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Textures/kenney_prototype_textures/orange/texture_02.png" +dest_files=[ "res://.import/texture_02.png-f0190b06105a9141366bd23dd1a0d857.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/Textures/kenney_prototype_textures/orange/texture_03.png b/Textures/kenney_prototype_textures/orange/texture_03.png new file mode 100644 index 0000000..09975cc Binary files /dev/null and b/Textures/kenney_prototype_textures/orange/texture_03.png differ diff --git a/Textures/kenney_prototype_textures/orange/texture_03.png.import b/Textures/kenney_prototype_textures/orange/texture_03.png.import new file mode 100644 index 0000000..1c0441a --- /dev/null +++ b/Textures/kenney_prototype_textures/orange/texture_03.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/texture_03.png-702aa79aee2dd43ac94d4d11fb313dcb.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Textures/kenney_prototype_textures/orange/texture_03.png" +dest_files=[ "res://.import/texture_03.png-702aa79aee2dd43ac94d4d11fb313dcb.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/Textures/kenney_prototype_textures/orange/texture_04.png b/Textures/kenney_prototype_textures/orange/texture_04.png new file mode 100644 index 0000000..8ac9527 Binary files /dev/null and b/Textures/kenney_prototype_textures/orange/texture_04.png differ diff --git a/Textures/kenney_prototype_textures/orange/texture_04.png.import b/Textures/kenney_prototype_textures/orange/texture_04.png.import new file mode 100644 index 0000000..315224f --- /dev/null +++ b/Textures/kenney_prototype_textures/orange/texture_04.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/texture_04.png-dc0427836d0dffaedf100b68f38fb5ab.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Textures/kenney_prototype_textures/orange/texture_04.png" +dest_files=[ "res://.import/texture_04.png-dc0427836d0dffaedf100b68f38fb5ab.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/Textures/kenney_prototype_textures/orange/texture_05.png b/Textures/kenney_prototype_textures/orange/texture_05.png new file mode 100644 index 0000000..e7bb6d9 Binary files /dev/null and b/Textures/kenney_prototype_textures/orange/texture_05.png differ diff --git a/Textures/kenney_prototype_textures/orange/texture_05.png.import b/Textures/kenney_prototype_textures/orange/texture_05.png.import new file mode 100644 index 0000000..932a9b0 --- /dev/null +++ b/Textures/kenney_prototype_textures/orange/texture_05.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/texture_05.png-5c1f88493c033eecc9c0f2baa3a7e997.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Textures/kenney_prototype_textures/orange/texture_05.png" +dest_files=[ "res://.import/texture_05.png-5c1f88493c033eecc9c0f2baa3a7e997.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/Textures/kenney_prototype_textures/orange/texture_06.png b/Textures/kenney_prototype_textures/orange/texture_06.png new file mode 100644 index 0000000..2a18cf7 Binary files /dev/null and b/Textures/kenney_prototype_textures/orange/texture_06.png differ diff --git a/Textures/kenney_prototype_textures/orange/texture_06.png.import b/Textures/kenney_prototype_textures/orange/texture_06.png.import new file mode 100644 index 0000000..81fa3e3 --- /dev/null +++ b/Textures/kenney_prototype_textures/orange/texture_06.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/texture_06.png-6cbd59ed67b259646290561a988e9409.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Textures/kenney_prototype_textures/orange/texture_06.png" +dest_files=[ "res://.import/texture_06.png-6cbd59ed67b259646290561a988e9409.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/Textures/kenney_prototype_textures/orange/texture_07.png b/Textures/kenney_prototype_textures/orange/texture_07.png new file mode 100644 index 0000000..0d1f229 Binary files /dev/null and b/Textures/kenney_prototype_textures/orange/texture_07.png differ diff --git a/Textures/kenney_prototype_textures/orange/texture_07.png.import b/Textures/kenney_prototype_textures/orange/texture_07.png.import new file mode 100644 index 0000000..1e18354 --- /dev/null +++ b/Textures/kenney_prototype_textures/orange/texture_07.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/texture_07.png-0f75827d80ff2f1e7d6b68d06277f4d3.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Textures/kenney_prototype_textures/orange/texture_07.png" +dest_files=[ "res://.import/texture_07.png-0f75827d80ff2f1e7d6b68d06277f4d3.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/Textures/kenney_prototype_textures/orange/texture_08.png b/Textures/kenney_prototype_textures/orange/texture_08.png new file mode 100644 index 0000000..b53b56d Binary files /dev/null and b/Textures/kenney_prototype_textures/orange/texture_08.png differ diff --git a/Textures/kenney_prototype_textures/orange/texture_08.png.import b/Textures/kenney_prototype_textures/orange/texture_08.png.import new file mode 100644 index 0000000..9ad550a --- /dev/null +++ b/Textures/kenney_prototype_textures/orange/texture_08.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/texture_08.png-40201e24bd28894ea45c7042579c60f9.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Textures/kenney_prototype_textures/orange/texture_08.png" +dest_files=[ "res://.import/texture_08.png-40201e24bd28894ea45c7042579c60f9.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/Textures/kenney_prototype_textures/orange/texture_09.png b/Textures/kenney_prototype_textures/orange/texture_09.png new file mode 100644 index 0000000..a7f8b0b Binary files /dev/null and b/Textures/kenney_prototype_textures/orange/texture_09.png differ diff --git a/Textures/kenney_prototype_textures/orange/texture_09.png.import b/Textures/kenney_prototype_textures/orange/texture_09.png.import new file mode 100644 index 0000000..fd9936b --- /dev/null +++ b/Textures/kenney_prototype_textures/orange/texture_09.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/texture_09.png-3ff6acd1d684aa72f31ca4a0758f7f6d.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Textures/kenney_prototype_textures/orange/texture_09.png" +dest_files=[ "res://.import/texture_09.png-3ff6acd1d684aa72f31ca4a0758f7f6d.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/Textures/kenney_prototype_textures/orange/texture_10.png b/Textures/kenney_prototype_textures/orange/texture_10.png new file mode 100644 index 0000000..979733a Binary files /dev/null and b/Textures/kenney_prototype_textures/orange/texture_10.png differ diff --git a/Textures/kenney_prototype_textures/orange/texture_10.png.import b/Textures/kenney_prototype_textures/orange/texture_10.png.import new file mode 100644 index 0000000..1ce42ca --- /dev/null +++ b/Textures/kenney_prototype_textures/orange/texture_10.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/texture_10.png-d9169507e60d3615c36f9006e99f6a6d.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Textures/kenney_prototype_textures/orange/texture_10.png" +dest_files=[ "res://.import/texture_10.png-d9169507e60d3615c36f9006e99f6a6d.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/Textures/kenney_prototype_textures/orange/texture_11.png b/Textures/kenney_prototype_textures/orange/texture_11.png new file mode 100644 index 0000000..d52081b Binary files /dev/null and b/Textures/kenney_prototype_textures/orange/texture_11.png differ diff --git a/Textures/kenney_prototype_textures/orange/texture_11.png.import b/Textures/kenney_prototype_textures/orange/texture_11.png.import new file mode 100644 index 0000000..24763c3 --- /dev/null +++ b/Textures/kenney_prototype_textures/orange/texture_11.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/texture_11.png-7f072753a6b897fd3314c8db9cf2c014.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Textures/kenney_prototype_textures/orange/texture_11.png" +dest_files=[ "res://.import/texture_11.png-7f072753a6b897fd3314c8db9cf2c014.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/Textures/kenney_prototype_textures/orange/texture_12.png b/Textures/kenney_prototype_textures/orange/texture_12.png new file mode 100644 index 0000000..b7e5781 Binary files /dev/null and b/Textures/kenney_prototype_textures/orange/texture_12.png differ diff --git a/Textures/kenney_prototype_textures/orange/texture_12.png.import b/Textures/kenney_prototype_textures/orange/texture_12.png.import new file mode 100644 index 0000000..538f31f --- /dev/null +++ b/Textures/kenney_prototype_textures/orange/texture_12.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/texture_12.png-43719a565b62b3c9bdf14926a4e7101a.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Textures/kenney_prototype_textures/orange/texture_12.png" +dest_files=[ "res://.import/texture_12.png-43719a565b62b3c9bdf14926a4e7101a.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/Textures/kenney_prototype_textures/orange/texture_13.png b/Textures/kenney_prototype_textures/orange/texture_13.png new file mode 100644 index 0000000..57dba8c Binary files /dev/null and b/Textures/kenney_prototype_textures/orange/texture_13.png differ diff --git a/Textures/kenney_prototype_textures/orange/texture_13.png.import b/Textures/kenney_prototype_textures/orange/texture_13.png.import new file mode 100644 index 0000000..87e6332 --- /dev/null +++ b/Textures/kenney_prototype_textures/orange/texture_13.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/texture_13.png-735d381a67d35d0010b938a5471f74e1.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Textures/kenney_prototype_textures/orange/texture_13.png" +dest_files=[ "res://.import/texture_13.png-735d381a67d35d0010b938a5471f74e1.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/Textures/kenney_prototype_textures/purple/texture_01.png b/Textures/kenney_prototype_textures/purple/texture_01.png new file mode 100644 index 0000000..7c56da6 Binary files /dev/null and b/Textures/kenney_prototype_textures/purple/texture_01.png differ diff --git a/Textures/kenney_prototype_textures/purple/texture_01.png.import b/Textures/kenney_prototype_textures/purple/texture_01.png.import new file mode 100644 index 0000000..957ca28 --- /dev/null +++ b/Textures/kenney_prototype_textures/purple/texture_01.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/texture_01.png-d19133fc921750df94a2adffbcd07ce8.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Textures/kenney_prototype_textures/purple/texture_01.png" +dest_files=[ "res://.import/texture_01.png-d19133fc921750df94a2adffbcd07ce8.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/Textures/kenney_prototype_textures/purple/texture_02.png b/Textures/kenney_prototype_textures/purple/texture_02.png new file mode 100644 index 0000000..e6e092e Binary files /dev/null and b/Textures/kenney_prototype_textures/purple/texture_02.png differ diff --git a/Textures/kenney_prototype_textures/purple/texture_02.png.import b/Textures/kenney_prototype_textures/purple/texture_02.png.import new file mode 100644 index 0000000..e4af337 --- /dev/null +++ b/Textures/kenney_prototype_textures/purple/texture_02.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/texture_02.png-9485c0ad33ca8a6cf8f9b4150dc8e2c6.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Textures/kenney_prototype_textures/purple/texture_02.png" +dest_files=[ "res://.import/texture_02.png-9485c0ad33ca8a6cf8f9b4150dc8e2c6.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/Textures/kenney_prototype_textures/purple/texture_03.png b/Textures/kenney_prototype_textures/purple/texture_03.png new file mode 100644 index 0000000..3874868 Binary files /dev/null and b/Textures/kenney_prototype_textures/purple/texture_03.png differ diff --git a/Textures/kenney_prototype_textures/purple/texture_03.png.import b/Textures/kenney_prototype_textures/purple/texture_03.png.import new file mode 100644 index 0000000..e28a87c --- /dev/null +++ b/Textures/kenney_prototype_textures/purple/texture_03.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/texture_03.png-add5a28a374be78af2c841c5d6cfa8d0.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Textures/kenney_prototype_textures/purple/texture_03.png" +dest_files=[ "res://.import/texture_03.png-add5a28a374be78af2c841c5d6cfa8d0.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/Textures/kenney_prototype_textures/purple/texture_04.png b/Textures/kenney_prototype_textures/purple/texture_04.png new file mode 100644 index 0000000..6177824 Binary files /dev/null and b/Textures/kenney_prototype_textures/purple/texture_04.png differ diff --git a/Textures/kenney_prototype_textures/purple/texture_04.png.import b/Textures/kenney_prototype_textures/purple/texture_04.png.import new file mode 100644 index 0000000..2d939b5 --- /dev/null +++ b/Textures/kenney_prototype_textures/purple/texture_04.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/texture_04.png-cbaa3b893b1fea9d0680d4324f54fe18.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Textures/kenney_prototype_textures/purple/texture_04.png" +dest_files=[ "res://.import/texture_04.png-cbaa3b893b1fea9d0680d4324f54fe18.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/Textures/kenney_prototype_textures/purple/texture_05.png b/Textures/kenney_prototype_textures/purple/texture_05.png new file mode 100644 index 0000000..5b82830 Binary files /dev/null and b/Textures/kenney_prototype_textures/purple/texture_05.png differ diff --git a/Textures/kenney_prototype_textures/purple/texture_05.png.import b/Textures/kenney_prototype_textures/purple/texture_05.png.import new file mode 100644 index 0000000..f586cbf --- /dev/null +++ b/Textures/kenney_prototype_textures/purple/texture_05.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/texture_05.png-d28c78b17ec7b80fbb7aaf7eecc3ee12.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Textures/kenney_prototype_textures/purple/texture_05.png" +dest_files=[ "res://.import/texture_05.png-d28c78b17ec7b80fbb7aaf7eecc3ee12.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/Textures/kenney_prototype_textures/purple/texture_06.png b/Textures/kenney_prototype_textures/purple/texture_06.png new file mode 100644 index 0000000..befbe88 Binary files /dev/null and b/Textures/kenney_prototype_textures/purple/texture_06.png differ diff --git a/Textures/kenney_prototype_textures/purple/texture_06.png.import b/Textures/kenney_prototype_textures/purple/texture_06.png.import new file mode 100644 index 0000000..2eae91d --- /dev/null +++ b/Textures/kenney_prototype_textures/purple/texture_06.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/texture_06.png-7b9ea92bcb7bbfdca6659082d26910b6.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Textures/kenney_prototype_textures/purple/texture_06.png" +dest_files=[ "res://.import/texture_06.png-7b9ea92bcb7bbfdca6659082d26910b6.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/Textures/kenney_prototype_textures/purple/texture_07.png b/Textures/kenney_prototype_textures/purple/texture_07.png new file mode 100644 index 0000000..a0c9df1 Binary files /dev/null and b/Textures/kenney_prototype_textures/purple/texture_07.png differ diff --git a/Textures/kenney_prototype_textures/purple/texture_07.png.import b/Textures/kenney_prototype_textures/purple/texture_07.png.import new file mode 100644 index 0000000..37f3e07 --- /dev/null +++ b/Textures/kenney_prototype_textures/purple/texture_07.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/texture_07.png-2790b699b89063a330e52d991d91020a.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Textures/kenney_prototype_textures/purple/texture_07.png" +dest_files=[ "res://.import/texture_07.png-2790b699b89063a330e52d991d91020a.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/Textures/kenney_prototype_textures/purple/texture_08.png b/Textures/kenney_prototype_textures/purple/texture_08.png new file mode 100644 index 0000000..eb556d6 Binary files /dev/null and b/Textures/kenney_prototype_textures/purple/texture_08.png differ diff --git a/Textures/kenney_prototype_textures/purple/texture_08.png.import b/Textures/kenney_prototype_textures/purple/texture_08.png.import new file mode 100644 index 0000000..2f2c503 --- /dev/null +++ b/Textures/kenney_prototype_textures/purple/texture_08.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/texture_08.png-a660294f124cdb74cc5a745c2a8991bb.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Textures/kenney_prototype_textures/purple/texture_08.png" +dest_files=[ "res://.import/texture_08.png-a660294f124cdb74cc5a745c2a8991bb.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/Textures/kenney_prototype_textures/purple/texture_09.png b/Textures/kenney_prototype_textures/purple/texture_09.png new file mode 100644 index 0000000..c831a43 Binary files /dev/null and b/Textures/kenney_prototype_textures/purple/texture_09.png differ diff --git a/Textures/kenney_prototype_textures/purple/texture_09.png.import b/Textures/kenney_prototype_textures/purple/texture_09.png.import new file mode 100644 index 0000000..a8380bb --- /dev/null +++ b/Textures/kenney_prototype_textures/purple/texture_09.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/texture_09.png-b0b0fdafe9728bd2f83d6cdbe8a265fe.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Textures/kenney_prototype_textures/purple/texture_09.png" +dest_files=[ "res://.import/texture_09.png-b0b0fdafe9728bd2f83d6cdbe8a265fe.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/Textures/kenney_prototype_textures/purple/texture_10.png b/Textures/kenney_prototype_textures/purple/texture_10.png new file mode 100644 index 0000000..95be188 Binary files /dev/null and b/Textures/kenney_prototype_textures/purple/texture_10.png differ diff --git a/Textures/kenney_prototype_textures/purple/texture_10.png.import b/Textures/kenney_prototype_textures/purple/texture_10.png.import new file mode 100644 index 0000000..2afa99e --- /dev/null +++ b/Textures/kenney_prototype_textures/purple/texture_10.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/texture_10.png-3a3106a1519c0fd913f085026f0e7f75.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Textures/kenney_prototype_textures/purple/texture_10.png" +dest_files=[ "res://.import/texture_10.png-3a3106a1519c0fd913f085026f0e7f75.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/Textures/kenney_prototype_textures/purple/texture_11.png b/Textures/kenney_prototype_textures/purple/texture_11.png new file mode 100644 index 0000000..b1c3704 Binary files /dev/null and b/Textures/kenney_prototype_textures/purple/texture_11.png differ diff --git a/Textures/kenney_prototype_textures/purple/texture_11.png.import b/Textures/kenney_prototype_textures/purple/texture_11.png.import new file mode 100644 index 0000000..7a29bfe --- /dev/null +++ b/Textures/kenney_prototype_textures/purple/texture_11.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/texture_11.png-bb05faa724802b63299ad469ad7fd402.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Textures/kenney_prototype_textures/purple/texture_11.png" +dest_files=[ "res://.import/texture_11.png-bb05faa724802b63299ad469ad7fd402.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/Textures/kenney_prototype_textures/purple/texture_12.png b/Textures/kenney_prototype_textures/purple/texture_12.png new file mode 100644 index 0000000..0269e59 Binary files /dev/null and b/Textures/kenney_prototype_textures/purple/texture_12.png differ diff --git a/Textures/kenney_prototype_textures/purple/texture_12.png.import b/Textures/kenney_prototype_textures/purple/texture_12.png.import new file mode 100644 index 0000000..89defd4 --- /dev/null +++ b/Textures/kenney_prototype_textures/purple/texture_12.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/texture_12.png-342b1f772ca82a2a0b0a7a6431f14bca.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Textures/kenney_prototype_textures/purple/texture_12.png" +dest_files=[ "res://.import/texture_12.png-342b1f772ca82a2a0b0a7a6431f14bca.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/Textures/kenney_prototype_textures/purple/texture_13.png b/Textures/kenney_prototype_textures/purple/texture_13.png new file mode 100644 index 0000000..3b944cb Binary files /dev/null and b/Textures/kenney_prototype_textures/purple/texture_13.png differ diff --git a/Textures/kenney_prototype_textures/purple/texture_13.png.import b/Textures/kenney_prototype_textures/purple/texture_13.png.import new file mode 100644 index 0000000..c66ac2e --- /dev/null +++ b/Textures/kenney_prototype_textures/purple/texture_13.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/texture_13.png-9a7d5ef54c4ced0d0af4fa317575a9c6.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Textures/kenney_prototype_textures/purple/texture_13.png" +dest_files=[ "res://.import/texture_13.png-9a7d5ef54c4ced0d0af4fa317575a9c6.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/Textures/kenney_prototype_textures/red/texture_01.png b/Textures/kenney_prototype_textures/red/texture_01.png new file mode 100644 index 0000000..1f9c506 Binary files /dev/null and b/Textures/kenney_prototype_textures/red/texture_01.png differ diff --git a/Textures/kenney_prototype_textures/red/texture_01.png.import b/Textures/kenney_prototype_textures/red/texture_01.png.import new file mode 100644 index 0000000..6739b96 --- /dev/null +++ b/Textures/kenney_prototype_textures/red/texture_01.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/texture_01.png-31ae63b9e1d9ba8e9393cf4124d04d7b.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Textures/kenney_prototype_textures/red/texture_01.png" +dest_files=[ "res://.import/texture_01.png-31ae63b9e1d9ba8e9393cf4124d04d7b.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/Textures/kenney_prototype_textures/red/texture_02.png b/Textures/kenney_prototype_textures/red/texture_02.png new file mode 100644 index 0000000..12e67bc Binary files /dev/null and b/Textures/kenney_prototype_textures/red/texture_02.png differ diff --git a/Textures/kenney_prototype_textures/red/texture_02.png.import b/Textures/kenney_prototype_textures/red/texture_02.png.import new file mode 100644 index 0000000..4979f08 --- /dev/null +++ b/Textures/kenney_prototype_textures/red/texture_02.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/texture_02.png-39b79bd46793c899d939f1cfffb95d65.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Textures/kenney_prototype_textures/red/texture_02.png" +dest_files=[ "res://.import/texture_02.png-39b79bd46793c899d939f1cfffb95d65.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/Textures/kenney_prototype_textures/red/texture_03.png b/Textures/kenney_prototype_textures/red/texture_03.png new file mode 100644 index 0000000..11a9f85 Binary files /dev/null and b/Textures/kenney_prototype_textures/red/texture_03.png differ diff --git a/Textures/kenney_prototype_textures/red/texture_03.png.import b/Textures/kenney_prototype_textures/red/texture_03.png.import new file mode 100644 index 0000000..f66e751 --- /dev/null +++ b/Textures/kenney_prototype_textures/red/texture_03.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/texture_03.png-2bc1d5f492fb36c0373a423892b51de8.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Textures/kenney_prototype_textures/red/texture_03.png" +dest_files=[ "res://.import/texture_03.png-2bc1d5f492fb36c0373a423892b51de8.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/Textures/kenney_prototype_textures/red/texture_04.png b/Textures/kenney_prototype_textures/red/texture_04.png new file mode 100644 index 0000000..0ebe2fb Binary files /dev/null and b/Textures/kenney_prototype_textures/red/texture_04.png differ diff --git a/Textures/kenney_prototype_textures/red/texture_04.png.import b/Textures/kenney_prototype_textures/red/texture_04.png.import new file mode 100644 index 0000000..1fcc929 --- /dev/null +++ b/Textures/kenney_prototype_textures/red/texture_04.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/texture_04.png-91b6fc87ce595d88f49eec17580c0fc3.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Textures/kenney_prototype_textures/red/texture_04.png" +dest_files=[ "res://.import/texture_04.png-91b6fc87ce595d88f49eec17580c0fc3.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/Textures/kenney_prototype_textures/red/texture_05.png b/Textures/kenney_prototype_textures/red/texture_05.png new file mode 100644 index 0000000..038af13 Binary files /dev/null and b/Textures/kenney_prototype_textures/red/texture_05.png differ diff --git a/Textures/kenney_prototype_textures/red/texture_05.png.import b/Textures/kenney_prototype_textures/red/texture_05.png.import new file mode 100644 index 0000000..b306443 --- /dev/null +++ b/Textures/kenney_prototype_textures/red/texture_05.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/texture_05.png-140a7058ccbb54c31b368746c8ab006c.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Textures/kenney_prototype_textures/red/texture_05.png" +dest_files=[ "res://.import/texture_05.png-140a7058ccbb54c31b368746c8ab006c.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/Textures/kenney_prototype_textures/red/texture_06.png b/Textures/kenney_prototype_textures/red/texture_06.png new file mode 100644 index 0000000..4239985 Binary files /dev/null and b/Textures/kenney_prototype_textures/red/texture_06.png differ diff --git a/Textures/kenney_prototype_textures/red/texture_06.png.import b/Textures/kenney_prototype_textures/red/texture_06.png.import new file mode 100644 index 0000000..ad536f3 --- /dev/null +++ b/Textures/kenney_prototype_textures/red/texture_06.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/texture_06.png-c93eb4c989e27f7f089d1d3735f1796d.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Textures/kenney_prototype_textures/red/texture_06.png" +dest_files=[ "res://.import/texture_06.png-c93eb4c989e27f7f089d1d3735f1796d.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/Textures/kenney_prototype_textures/red/texture_07.png b/Textures/kenney_prototype_textures/red/texture_07.png new file mode 100644 index 0000000..99dcffd Binary files /dev/null and b/Textures/kenney_prototype_textures/red/texture_07.png differ diff --git a/Textures/kenney_prototype_textures/red/texture_07.png.import b/Textures/kenney_prototype_textures/red/texture_07.png.import new file mode 100644 index 0000000..7f13d6b --- /dev/null +++ b/Textures/kenney_prototype_textures/red/texture_07.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/texture_07.png-9289093398df1783db90fd1145f7630a.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Textures/kenney_prototype_textures/red/texture_07.png" +dest_files=[ "res://.import/texture_07.png-9289093398df1783db90fd1145f7630a.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/Textures/kenney_prototype_textures/red/texture_08.png b/Textures/kenney_prototype_textures/red/texture_08.png new file mode 100644 index 0000000..45ebb31 Binary files /dev/null and b/Textures/kenney_prototype_textures/red/texture_08.png differ diff --git a/Textures/kenney_prototype_textures/red/texture_08.png.import b/Textures/kenney_prototype_textures/red/texture_08.png.import new file mode 100644 index 0000000..207d482 --- /dev/null +++ b/Textures/kenney_prototype_textures/red/texture_08.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/texture_08.png-495a0f6d3e174c6f8a9598df3891a425.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Textures/kenney_prototype_textures/red/texture_08.png" +dest_files=[ "res://.import/texture_08.png-495a0f6d3e174c6f8a9598df3891a425.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/Textures/kenney_prototype_textures/red/texture_09.png b/Textures/kenney_prototype_textures/red/texture_09.png new file mode 100644 index 0000000..347aad7 Binary files /dev/null and b/Textures/kenney_prototype_textures/red/texture_09.png differ diff --git a/Textures/kenney_prototype_textures/red/texture_09.png.import b/Textures/kenney_prototype_textures/red/texture_09.png.import new file mode 100644 index 0000000..86f69d9 --- /dev/null +++ b/Textures/kenney_prototype_textures/red/texture_09.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/texture_09.png-3c1521865f72bb9c3dfb6c765c4aa929.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Textures/kenney_prototype_textures/red/texture_09.png" +dest_files=[ "res://.import/texture_09.png-3c1521865f72bb9c3dfb6c765c4aa929.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/Textures/kenney_prototype_textures/red/texture_10.png b/Textures/kenney_prototype_textures/red/texture_10.png new file mode 100644 index 0000000..3448667 Binary files /dev/null and b/Textures/kenney_prototype_textures/red/texture_10.png differ diff --git a/Textures/kenney_prototype_textures/red/texture_10.png.import b/Textures/kenney_prototype_textures/red/texture_10.png.import new file mode 100644 index 0000000..1c6d22d --- /dev/null +++ b/Textures/kenney_prototype_textures/red/texture_10.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/texture_10.png-7c588aab61faac2db239af35305559c9.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Textures/kenney_prototype_textures/red/texture_10.png" +dest_files=[ "res://.import/texture_10.png-7c588aab61faac2db239af35305559c9.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/Textures/kenney_prototype_textures/red/texture_11.png b/Textures/kenney_prototype_textures/red/texture_11.png new file mode 100644 index 0000000..3cfb7f6 Binary files /dev/null and b/Textures/kenney_prototype_textures/red/texture_11.png differ diff --git a/Textures/kenney_prototype_textures/red/texture_11.png.import b/Textures/kenney_prototype_textures/red/texture_11.png.import new file mode 100644 index 0000000..a197b03 --- /dev/null +++ b/Textures/kenney_prototype_textures/red/texture_11.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/texture_11.png-c78462e528b1323f9f41f83258c36234.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Textures/kenney_prototype_textures/red/texture_11.png" +dest_files=[ "res://.import/texture_11.png-c78462e528b1323f9f41f83258c36234.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/Textures/kenney_prototype_textures/red/texture_12.png b/Textures/kenney_prototype_textures/red/texture_12.png new file mode 100644 index 0000000..d247946 Binary files /dev/null and b/Textures/kenney_prototype_textures/red/texture_12.png differ diff --git a/Textures/kenney_prototype_textures/red/texture_12.png.import b/Textures/kenney_prototype_textures/red/texture_12.png.import new file mode 100644 index 0000000..09cdb4b --- /dev/null +++ b/Textures/kenney_prototype_textures/red/texture_12.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/texture_12.png-5f8b4f3f96e8f6de77c3565ab2a6ee2d.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Textures/kenney_prototype_textures/red/texture_12.png" +dest_files=[ "res://.import/texture_12.png-5f8b4f3f96e8f6de77c3565ab2a6ee2d.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/Textures/kenney_prototype_textures/red/texture_13.png b/Textures/kenney_prototype_textures/red/texture_13.png new file mode 100644 index 0000000..9154c3b Binary files /dev/null and b/Textures/kenney_prototype_textures/red/texture_13.png differ diff --git a/Textures/kenney_prototype_textures/red/texture_13.png.import b/Textures/kenney_prototype_textures/red/texture_13.png.import new file mode 100644 index 0000000..987c7b9 --- /dev/null +++ b/Textures/kenney_prototype_textures/red/texture_13.png.import @@ -0,0 +1,35 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/texture_13.png-25193d9b7c50f8621acc3dd2ef2bd976.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Textures/kenney_prototype_textures/red/texture_13.png" +dest_files=[ "res://.import/texture_13.png-25193d9b7c50f8621acc3dd2ef2bd976.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/project.godot b/project.godot index 35bfa4d..df859d8 100644 --- a/project.godot +++ b/project.godot @@ -11,6 +11,7 @@ config_version=4 [application] config/name="Slap" +run/main_scene="res://Test_Scene.tscn" config/icon="res://icon.png" [gui]