diff --git a/addons/tbloader/bin/libtbloader.linux.x86_64.so b/addons/tbloader/bin/libtbloader.linux.x86_64.so new file mode 100644 index 0000000..ad08292 Binary files /dev/null and b/addons/tbloader/bin/libtbloader.linux.x86_64.so differ diff --git a/addons/tbloader/bin/libtbloader.macos.universal.dylib b/addons/tbloader/bin/libtbloader.macos.universal.dylib new file mode 100644 index 0000000..02407bb Binary files /dev/null and b/addons/tbloader/bin/libtbloader.macos.universal.dylib differ diff --git a/addons/tbloader/bin/tbloader.windows.x86_64.dll b/addons/tbloader/bin/tbloader.windows.x86_64.dll new file mode 100644 index 0000000..1f065f0 Binary files /dev/null and b/addons/tbloader/bin/tbloader.windows.x86_64.dll differ diff --git a/addons/tbloader/icon.png b/addons/tbloader/icon.png new file mode 100644 index 0000000..9a120f9 Binary files /dev/null and b/addons/tbloader/icon.png differ diff --git a/addons/tbloader/icon.png.import b/addons/tbloader/icon.png.import new file mode 100644 index 0000000..86a5991 --- /dev/null +++ b/addons/tbloader/icon.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cbbpw5sol06i6" +path="res://.godot/imported/icon.png-7c6403be1be0a98a34b14bf837b41c44.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/tbloader/icon.png" +dest_files=["res://.godot/imported/icon.png-7c6403be1be0a98a34b14bf837b41c44.ctex"] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/bptc_ldr=0 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/tbloader/icons/tbloader.svg b/addons/tbloader/icons/tbloader.svg new file mode 100644 index 0000000..4d81a6c --- /dev/null +++ b/addons/tbloader/icons/tbloader.svg @@ -0,0 +1,16 @@ + + +TBLoader + + + +TBLoader + + + + + + + + + diff --git a/addons/tbloader/icons/tbloader.svg.import b/addons/tbloader/icons/tbloader.svg.import new file mode 100644 index 0000000..5524bbb --- /dev/null +++ b/addons/tbloader/icons/tbloader.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6bigon1m2gl" +path="res://.godot/imported/tbloader.svg-ac537690612434f49f9a80d3b536a819.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/tbloader/icons/tbloader.svg" +dest_files=["res://.godot/imported/tbloader.svg-ac537690612434f49f9a80d3b536a819.ctex"] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/bptc_ldr=0 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=1.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/tbloader/plugin.cfg b/addons/tbloader/plugin.cfg new file mode 100644 index 0000000..476ed07 --- /dev/null +++ b/addons/tbloader/plugin.cfg @@ -0,0 +1,7 @@ +[plugin] + +name="TBLoader" +description="TrenchBroom map loader." +author="Codecat" +version="0.9.0" +script="src/plugin.gd" diff --git a/addons/tbloader/src/plugin.gd b/addons/tbloader/src/plugin.gd new file mode 100644 index 0000000..3aaff1b --- /dev/null +++ b/addons/tbloader/src/plugin.gd @@ -0,0 +1,64 @@ +@tool +extends EditorPlugin +class_name TBPlugin + +var map_control: Control = null +var editing_loader: WeakRef = weakref(null) + +func _enter_tree(): + set_icons(true) + + map_control = create_map_control() + map_control.set_visible(false) + add_control_to_container(EditorPlugin.CONTAINER_SPATIAL_EDITOR_MENU, map_control) + +func _exit_tree(): + set_icons(false) + + remove_control_from_container(EditorPlugin.CONTAINER_SPATIAL_EDITOR_MENU, map_control) + map_control.queue_free() + map_control = null + +func _handles(object): + return object is TBLoader + +func _make_visible(visible: bool): + map_control.set_visible(visible) + +func _edit(object): + editing_loader = weakref(object) + +func create_map_control() -> Control: + var button_build_meshes = Button.new() + button_build_meshes.flat = true + button_build_meshes.text = "Build Meshes" + button_build_meshes.connect("pressed", Callable(self, "build_meshes")) + + var button_build_csg = Button.new() + button_build_csg.flat = true + button_build_csg.text = "Build Combined CSG" + button_build_csg.connect("pressed", Callable(self, "build_combined_csg")) + + var ret = HBoxContainer.new() + ret.add_child(button_build_meshes) + ret.add_child(button_build_csg) + return ret + +func build_meshes(): + var loader = editing_loader.get_ref() + loader.build_meshes() + +func build_combined_csg(): + var loader = editing_loader.get_ref() + loader.build_combined_csg() + +func set_icons(on): + var editor_interface = get_editor_interface() + var base_control = editor_interface.get_base_control() + var theme = base_control.theme + + if on: + var texture = ResourceLoader.load("res://addons/tbloader/icons/tbloader.svg") + theme.set_icon("TBLoader", "EditorIcons", texture) + else: + theme.clear_icon("TBLoader", "EditorIcons") diff --git a/addons/tbloader/tbloader.gdextension b/addons/tbloader/tbloader.gdextension new file mode 100644 index 0000000..f539bf9 --- /dev/null +++ b/addons/tbloader/tbloader.gdextension @@ -0,0 +1,7 @@ +[configuration] +entry_symbol = "tbloader_init" + +[libraries] +windows.64 = "bin/tbloader.windows.x86_64.dll" +linux.64 = "bin/libtbloader.linux.x86_64.so" +macos.64 = "bin/libtbloader.macos.universal.dylib" diff --git a/assets/Weapons/Chainsaw/Chainsaw.glb b/assets/Weapons/Chainsaw/Chainsaw.glb new file mode 100644 index 0000000..b69b09b Binary files /dev/null and b/assets/Weapons/Chainsaw/Chainsaw.glb differ diff --git a/assets/Weapons/Chainsaw/Chainsaw.glb.import b/assets/Weapons/Chainsaw/Chainsaw.glb.import new file mode 100644 index 0000000..352b280 --- /dev/null +++ b/assets/Weapons/Chainsaw/Chainsaw.glb.import @@ -0,0 +1,30 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://ccbo4ow0r0q4y" +path="res://.godot/imported/Chainsaw.glb-2f2de7b5d8d66d3c4163f0ec92578dbd.scn" + +[deps] + +source_file="res://assets/Weapons/Chainsaw/Chainsaw.glb" +dest_files=["res://.godot/imported/Chainsaw.glb-2f2de7b5d8d66d3c4163f0ec92578dbd.scn"] + +[params] + +nodes/root_type="Node3D" +nodes/root_name="Scene Root" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +import_script/path="" +_subresources={} diff --git a/assets/shader/Viewmodel.gdshader b/assets/shader/Viewmodel.gdshader new file mode 100644 index 0000000..c8ad48b --- /dev/null +++ b/assets/shader/Viewmodel.gdshader @@ -0,0 +1,55 @@ +shader_type spatial; +render_mode blend_mix,depth_draw_opaque,cull_back,diffuse_burley,specular_schlick_ggx; + +uniform float viewmodel_fov = 50.0f; + +uniform vec4 albedo = vec4(1.0); +uniform sampler2D texture_albedo; +uniform float specular = 0.5f; +uniform float metallic = 1.0f; +uniform float roughness : hint_range(0,1) = 1.0f; +uniform float point_size : hint_range(0,128); +uniform sampler2D texture_metallic; +uniform vec4 metallic_texture_channel = vec4(1.0, 0.0, 0.0, 0.0); +uniform sampler2D texture_roughness; +uniform vec4 roughness_texture_channel = vec4(1.0, 0.0, 0.0, 0.0); +//uniform sampler2D texture_emission : hint_black_albedo; +//uniform vec4 emission : hint_color; +//uniform float emission_energy; +uniform sampler2D texture_normal : hint_normal; +uniform float normal_scale : hint_range(-16,16) = 0.5f; +uniform vec3 uv1_scale = vec3(1.0f); +uniform vec3 uv1_offset = vec3(0.0f); +uniform vec3 uv2_scale = vec3(1.0f); +uniform vec3 uv2_offset = vec3(0.0f); + +void vertex() { + UV = UV * uv1_scale.xy + uv1_offset.xy; + + /* begin shader magic*/ + float onetanfov = 1.0f / tan(0.5f * (viewmodel_fov * PI / 180.0f)); + float aspect = VIEWPORT_SIZE.x / VIEWPORT_SIZE.y; + // modify projection matrix + PROJECTION_MATRIX[1][1] = onetanfov; + PROJECTION_MATRIX[0][0] = onetanfov / aspect; + // draws the viewmodel over everything (disable if you want dof near on viewmodel) + POSITION = PROJECTION_MATRIX * MODELVIEW_MATRIX * vec4(VERTEX.xyz, 1.0); + POSITION.z = mix(POSITION.z, 0, 0.999); + /* end shader magic */ +} + +void fragment() { + vec2 base_uv = UV; + vec4 albedo_tex = texture(texture_albedo,base_uv); + albedo_tex *= COLOR; + ALBEDO = albedo.rgb * albedo_tex.rgb; + float metallic_tex = dot(texture(texture_metallic,base_uv),metallic_texture_channel); + METALLIC = metallic_tex * metallic; + float roughness_tex = dot(texture(texture_roughness,base_uv),roughness_texture_channel); + ROUGHNESS = roughness_tex * roughness; + SPECULAR = specular; + NORMAL_MAP = texture(texture_normal,base_uv).rgb; + NORMAL_MAP_DEPTH = normal_scale; + //vec3 emission_tex = texture(texture_emission,base_uv).rgb; + //EMISSION = (emission.rgb+emission_tex)*emission_energy; +} \ No newline at end of file diff --git a/entities/Player.tscn b/entities/Player.tscn new file mode 100644 index 0000000..0481714 --- /dev/null +++ b/entities/Player.tscn @@ -0,0 +1,53 @@ +[gd_scene load_steps=6 format=3 uid="uid://bl7jynld7s25o"] + +[ext_resource type="Script" path="res://scripts/player/PlayerQ3.gd" id="1"] +[ext_resource type="Script" path="res://scripts/player/Weapons.gd" id="2_dl1i1"] +[ext_resource type="Shader" path="res://assets/shader/crosshair.gdshader" id="3_3vnqi"] + +[sub_resource type="CylinderShape3D" id="1"] + +[sub_resource type="ShaderMaterial" id="ShaderMaterial_mqdp4"] +shader = ExtResource("3_3vnqi") +shader_parameter/center_enabled = null +shader_parameter/legs_enabled = null +shader_parameter/inverted = null +shader_parameter/color_id = null +shader_parameter/color_0 = null +shader_parameter/color_1 = null +shader_parameter/color_2 = null +shader_parameter/center_radius = null +shader_parameter/width = null +shader_parameter/len = null +shader_parameter/spacing = null +shader_parameter/spread = null + +[node name="PlayerQ3" type="CharacterBody3D"] +script = ExtResource("1") + +[node name="CollisionShape3D" type="CollisionShape3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0) +shape = SubResource("1") + +[node name="Body" type="Node3D" parent="."] + +[node name="Head" type="Node3D" parent="Body"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.75, 0) + +[node name="Hand" type="Node3D" parent="Body/Head"] +script = ExtResource("2_dl1i1") + +[node name="Crosshair" type="ColorRect" parent="Body/Head/Hand"] +material = SubResource("ShaderMaterial_mqdp4") +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 + +[node name="Camera3D" type="Camera3D" parent="Body/Head"] +cull_mask = 1048573 +current = true + +[node name="AimCast" type="RayCast3D" parent="Body/Head/Camera3D"] +target_position = Vector3(0, 0, -1) +collision_mask = 512 diff --git a/entities/enemy/dummy.tscn b/entities/enemy/dummy.tscn new file mode 100644 index 0000000..c57f0db --- /dev/null +++ b/entities/enemy/dummy.tscn @@ -0,0 +1,24 @@ +[gd_scene load_steps=5 format=3 uid="uid://bp5ekvan8qsmc"] + +[ext_resource type="Script" path="res://scripts/player/Hitable.gd" id="1_f1sho"] + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_uw38t"] +albedo_color = Color(0.85098, 0, 0.172549, 1) + +[sub_resource type="CapsuleMesh" id="CapsuleMesh_3ufk0"] +material = SubResource("StandardMaterial3D_uw38t") + +[sub_resource type="CapsuleShape3D" id="CapsuleShape3D_mfgnk"] + +[node name="Enemy" type="CharacterBody3D"] +collision_layer = 512 +collision_mask = 512 +script = ExtResource("1_f1sho") + +[node name="MeshInstance3D" type="MeshInstance3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0) +mesh = SubResource("CapsuleMesh_3ufk0") + +[node name="CollisionShape3D" type="CollisionShape3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0) +shape = SubResource("CapsuleShape3D_mfgnk") diff --git a/scenes/map/Map.exr b/scenes/map/Map.exr new file mode 100644 index 0000000..c9b17c9 Binary files /dev/null and b/scenes/map/Map.exr differ diff --git a/scenes/map/Map.exr.import b/scenes/map/Map.exr.import new file mode 100644 index 0000000..e0d21fc --- /dev/null +++ b/scenes/map/Map.exr.import @@ -0,0 +1,28 @@ +[remap] + +importer="2d_array_texture" +type="CompressedTexture2DArray" +uid="uid://cvieei4g32tkl" +path.etc2="res://.godot/imported/Map.exr-8b312acacc04c1841d718e5bb61b8317.etc2.ctexarray" +path.s3tc="res://.godot/imported/Map.exr-8b312acacc04c1841d718e5bb61b8317.s3tc.ctexarray" +metadata={ +"imported_formats": ["etc2", "s3tc"], +"vram_texture": true +} + +[deps] + +source_file="res://scenes/map/Map.exr" +dest_files=["res://.godot/imported/Map.exr-8b312acacc04c1841d718e5bb61b8317.etc2.ctexarray", "res://.godot/imported/Map.exr-8b312acacc04c1841d718e5bb61b8317.s3tc.ctexarray"] + +[params] + +compress/mode=2 +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/bptc_ldr=0 +compress/channel_pack=1 +mipmaps/generate=false +mipmaps/limit=-1 +slices/horizontal=1 +slices/vertical=4 diff --git a/scenes/map/Map.lmbake b/scenes/map/Map.lmbake new file mode 100644 index 0000000..2075488 Binary files /dev/null and b/scenes/map/Map.lmbake differ diff --git a/scenes/map/Map.tscn b/scenes/map/Map.tscn new file mode 100644 index 0000000..1f0f9dd --- /dev/null +++ b/scenes/map/Map.tscn @@ -0,0 +1,136 @@ +[gd_scene load_steps=18 format=3 uid="uid://clxjx716naqmp"] + +[ext_resource type="PackedScene" uid="uid://bl7jynld7s25o" path="res://entities/Player.tscn" id="1_25orc"] +[ext_resource type="Script" path="res://Game.gd" id="1_lq1d0"] +[ext_resource type="Texture2D" uid="uid://bj2qm3joiywso" path="res://textures/dark.png" id="2_2mrls"] +[ext_resource type="LightmapGIData" uid="uid://664j62hvq68m" path="res://scenes/map/Map.lmbake" id="2_rhptu"] +[ext_resource type="Texture2D" uid="uid://bx4pdgghucl4k" path="res://textures/concrete_15.jpg" id="2_rsj2h"] +[ext_resource type="Texture2D" uid="uid://bt671xkej3a2s" path="res://textures/shipping_container_01_side.jpg" id="4_hihkt"] +[ext_resource type="PackedScene" uid="uid://bp5ekvan8qsmc" path="res://entities/enemy/dummy.tscn" id="5_menuh"] +[ext_resource type="Texture2D" uid="uid://c52qu6ad3taix" path="res://textures/shipping_container_01_front.jpg" id="5_u5t05"] + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_yhpph"] +albedo_texture = ExtResource("2_rsj2h") + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_plg37"] +albedo_texture = ExtResource("2_2mrls") + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_8xybu"] +albedo_texture = ExtResource("4_hihkt") + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_rri1d"] +albedo_texture = ExtResource("5_u5t05") + +[sub_resource type="ArrayMesh" id="ArrayMesh_bdgr3"] +lightmap_size_hint = Vector2i(2802, 2814) +_surfaces = [{ +"aabb": AABB(-31.1636, -4.59375, -36.3203, 84, 2.00001, 50), +"attribute_data": PackedByteArray(0, 0, 0, 0, 0, 0, 0, 0, 185, 108, 85, 60, 148, 64, 52, 63, 0, 0, 0, 0, 0, 0, 0, 63, 185, 108, 85, 60, 65, 231, 55, 63, 0, 0, 168, 65, 0, 0, 0, 63, 159, 234, 28, 63, 65, 231, 55, 63, 0, 0, 168, 65, 0, 0, 0, 0, 159, 234, 28, 63, 148, 64, 52, 63, 0, 0, 72, 193, 0, 0, 0, 0, 224, 47, 10, 63, 131, 79, 117, 63, 0, 0, 0, 0, 0, 0, 0, 0, 69, 164, 101, 63, 131, 79, 117, 63, 0, 0, 0, 0, 0, 0, 0, 63, 69, 164, 101, 63, 95, 10, 121, 63, 0, 0, 72, 193, 0, 0, 0, 63, 224, 47, 10, 63, 95, 10, 121, 63, 0, 0, 72, 193, 0, 0, 168, 193, 161, 71, 184, 62, 187, 131, 84, 60, 0, 0, 72, 193, 0, 0, 0, 0, 161, 71, 184, 62, 81, 63, 28, 63, 0, 0, 0, 0, 0, 0, 0, 0, 54, 152, 55, 63, 81, 63, 28, 63, 0, 0, 0, 0, 0, 0, 168, 193, 54, 152, 55, 63, 187, 131, 84, 60, 0, 0, 72, 193, 0, 0, 168, 193, 176, 28, 59, 57, 108, 80, 58, 57, 0, 0, 0, 0, 0, 0, 168, 193, 47, 0, 183, 62, 108, 80, 58, 57, 0, 0, 0, 0, 0, 0, 0, 0, 47, 0, 183, 62, 231, 248, 24, 63, 0, 0, 72, 193, 0, 0, 0, 0, 176, 28, 59, 57, 231, 248, 24, 63, 0, 0, 72, 193, 0, 0, 0, 0, 84, 47, 165, 60, 131, 79, 117, 63, 0, 0, 72, 193, 0, 0, 0, 63, 84, 47, 165, 60, 95, 10, 121, 63, 0, 0, 0, 0, 0, 0, 0, 63, 192, 59, 193, 62, 95, 10, 121, 63, 0, 0, 0, 0, 0, 0, 0, 0, 192, 59, 193, 62, 131, 79, 117, 63, 0, 0, 0, 0, 0, 0, 0, 0, 45, 72, 29, 63, 130, 73, 84, 63, 0, 0, 168, 65, 0, 0, 0, 0, 79, 208, 108, 60, 130, 73, 84, 63, 0, 0, 168, 65, 0, 0, 0, 63, 79, 208, 108, 60, 166, 142, 80, 63, 0, 0, 0, 0, 0, 0, 0, 63, 45, 72, 29, 63, 166, 142, 80, 63), +"format": 4151, +"index_count": 36, +"index_data": PackedByteArray(0, 0, 1, 0, 2, 0, 0, 0, 2, 0, 3, 0, 4, 0, 5, 0, 6, 0, 4, 0, 6, 0, 7, 0, 8, 0, 9, 0, 10, 0, 8, 0, 10, 0, 11, 0, 12, 0, 13, 0, 14, 0, 12, 0, 14, 0, 15, 0, 16, 0, 17, 0, 18, 0, 16, 0, 18, 0, 19, 0, 20, 0, 21, 0, 22, 0, 20, 0, 22, 0, 23, 0), +"material": SubResource("StandardMaterial3D_yhpph"), +"primitive": 3, +"vertex_count": 24, +"vertex_data": PackedByteArray(244, 78, 249, 193, 0, 0, 38, 192, 0, 72, 17, 194, 255, 255, 255, 255, 255, 255, 0, 192, 244, 78, 249, 193, 0, 0, 147, 192, 0, 72, 17, 194, 255, 255, 255, 255, 255, 255, 0, 192, 134, 88, 83, 66, 0, 0, 147, 192, 0, 72, 17, 194, 255, 255, 255, 255, 255, 255, 0, 192, 134, 88, 83, 66, 0, 0, 38, 192, 0, 72, 17, 194, 255, 255, 255, 255, 255, 255, 0, 192, 244, 78, 249, 193, 0, 0, 38, 192, 0, 72, 17, 194, 0, 0, 0, 128, 255, 127, 255, 191, 244, 78, 249, 193, 0, 0, 38, 192, 0, 224, 90, 65, 0, 0, 0, 128, 255, 127, 255, 191, 244, 78, 249, 193, 0, 0, 147, 192, 0, 224, 90, 65, 0, 0, 0, 128, 255, 127, 255, 191, 244, 78, 249, 193, 0, 0, 147, 192, 0, 72, 17, 194, 0, 0, 0, 128, 255, 127, 255, 191, 134, 88, 83, 66, 0, 0, 147, 192, 0, 72, 17, 194, 0, 128, 0, 0, 255, 127, 0, 192, 244, 78, 249, 193, 0, 0, 147, 192, 0, 72, 17, 194, 0, 128, 0, 0, 255, 127, 0, 192, 244, 78, 249, 193, 0, 0, 147, 192, 0, 224, 90, 65, 0, 128, 0, 0, 255, 127, 0, 192, 134, 88, 83, 66, 0, 0, 147, 192, 0, 224, 90, 65, 0, 128, 0, 0, 255, 127, 0, 192, 134, 88, 83, 66, 0, 0, 38, 192, 0, 72, 17, 194, 0, 128, 255, 255, 255, 127, 255, 191, 134, 88, 83, 66, 0, 0, 38, 192, 0, 224, 90, 65, 0, 128, 255, 255, 255, 127, 255, 191, 244, 78, 249, 193, 0, 0, 38, 192, 0, 224, 90, 65, 0, 128, 255, 255, 255, 127, 255, 191, 244, 78, 249, 193, 0, 0, 38, 192, 0, 72, 17, 194, 0, 128, 255, 255, 255, 127, 255, 191, 134, 88, 83, 66, 0, 0, 38, 192, 0, 72, 17, 194, 255, 255, 0, 128, 255, 127, 0, 192, 134, 88, 83, 66, 0, 0, 147, 192, 0, 72, 17, 194, 255, 255, 0, 128, 255, 127, 0, 192, 134, 88, 83, 66, 0, 0, 147, 192, 0, 224, 90, 65, 255, 255, 0, 128, 255, 127, 0, 192, 134, 88, 83, 66, 0, 0, 38, 192, 0, 224, 90, 65, 255, 255, 0, 128, 255, 127, 0, 192, 244, 78, 249, 193, 0, 0, 38, 192, 0, 224, 90, 65, 255, 127, 255, 127, 255, 255, 255, 191, 134, 88, 83, 66, 0, 0, 38, 192, 0, 224, 90, 65, 255, 127, 255, 127, 255, 255, 255, 191, 134, 88, 83, 66, 0, 0, 147, 192, 0, 224, 90, 65, 255, 127, 255, 127, 255, 255, 255, 191, 244, 78, 249, 193, 0, 0, 147, 192, 0, 224, 90, 65, 255, 127, 255, 127, 255, 255, 255, 191) +}, { +"aabb": AABB(-31.1636, -2.59375, -36.3203, 84, 13, 50), +"attribute_data": PackedByteArray(0, 0, 0, 0, 0, 0, 72, 193, 185, 108, 85, 60, 47, 133, 28, 63, 0, 0, 0, 0, 0, 0, 0, 63, 185, 108, 85, 60, 148, 64, 52, 63, 0, 0, 168, 66, 0, 0, 0, 63, 159, 234, 28, 63, 148, 64, 52, 63, 0, 0, 168, 66, 0, 0, 72, 193, 159, 234, 28, 63, 47, 133, 28, 63, 0, 0, 72, 194, 0, 0, 72, 193, 125, 98, 77, 61, 66, 237, 88, 63, 0, 0, 68, 194, 0, 0, 72, 193, 125, 98, 77, 61, 86, 214, 90, 63, 0, 0, 68, 194, 0, 0, 0, 63, 191, 186, 18, 62, 86, 214, 90, 63, 0, 0, 72, 194, 0, 0, 0, 63, 191, 186, 18, 62, 66, 237, 88, 63, 0, 0, 72, 194, 0, 0, 167, 194, 2, 38, 48, 61, 81, 190, 86, 63, 0, 0, 72, 194, 0, 0, 0, 63, 76, 151, 36, 63, 81, 190, 86, 63, 0, 0, 68, 194, 0, 0, 0, 63, 76, 151, 36, 63, 100, 167, 88, 63, 0, 0, 68, 194, 0, 0, 167, 194, 2, 38, 48, 61, 100, 167, 88, 63, 0, 0, 72, 194, 0, 0, 167, 194, 94, 55, 89, 63, 96, 143, 84, 63, 0, 0, 68, 194, 0, 0, 167, 194, 94, 55, 89, 63, 115, 120, 86, 63, 0, 0, 68, 194, 0, 0, 0, 63, 199, 137, 126, 62, 115, 120, 86, 63, 0, 0, 72, 194, 0, 0, 0, 63, 199, 137, 126, 62, 96, 143, 84, 63, 0, 0, 72, 194, 0, 0, 72, 193, 247, 65, 15, 60, 37, 75, 93, 63, 0, 0, 72, 194, 0, 0, 0, 63, 247, 65, 15, 60, 165, 9, 117, 63, 0, 0, 68, 194, 0, 0, 0, 63, 235, 40, 130, 60, 165, 9, 117, 63, 0, 0, 68, 194, 0, 0, 72, 193, 235, 40, 130, 60, 37, 75, 93, 63, 0, 0, 0, 0, 0, 0, 72, 193, 137, 235, 47, 63, 199, 72, 80, 63, 0, 0, 168, 66, 0, 0, 72, 193, 230, 180, 178, 61, 199, 72, 80, 63, 0, 0, 168, 66, 0, 0, 0, 63, 230, 180, 178, 61, 72, 138, 56, 63, 0, 0, 0, 0, 0, 0, 0, 63, 137, 235, 47, 63, 72, 138, 56, 63, 132, 176, 16, 56, 0, 0, 88, 65, 46, 91, 117, 63, 98, 157, 225, 60, 0, 0, 0, 0, 0, 0, 0, 63, 166, 130, 93, 63, 98, 157, 225, 60, 0, 0, 128, 191, 45, 0, 0, 63, 166, 130, 93, 63, 255, 122, 164, 60, 189, 253, 127, 191, 3, 0, 88, 65, 46, 91, 117, 63, 255, 122, 164, 60, 9, 0, 68, 66, 120, 255, 87, 65, 78, 244, 127, 63, 161, 118, 12, 61, 132, 176, 16, 56, 0, 0, 88, 65, 78, 244, 127, 63, 95, 12, 196, 62, 0, 0, 0, 0, 0, 0, 0, 63, 198, 27, 104, 63, 95, 12, 196, 62, 0, 0, 68, 66, 245, 238, 255, 62, 198, 27, 104, 63, 161, 118, 12, 61, 1, 0, 68, 66, 189, 251, 191, 63, 30, 206, 24, 63, 108, 80, 58, 57, 0, 0, 68, 66, 245, 238, 255, 62, 30, 206, 24, 63, 17, 92, 250, 59, 0, 0, 0, 0, 0, 0, 0, 63, 187, 110, 114, 63, 17, 92, 250, 59, 83, 20, 50, 54, 0, 0, 192, 63, 187, 110, 114, 63, 108, 80, 58, 57, 1, 0, 68, 66, 189, 251, 191, 63, 128, 100, 170, 62, 80, 57, 123, 63, 83, 20, 50, 54, 0, 0, 192, 63, 222, 210, 46, 63, 80, 57, 123, 63, 0, 0, 0, 0, 0, 0, 0, 63, 222, 210, 46, 63, 61, 80, 121, 63, 0, 0, 68, 66, 245, 238, 255, 62, 128, 100, 170, 62, 61, 80, 121, 63, 9, 0, 68, 66, 120, 255, 87, 65, 254, 52, 206, 62, 37, 75, 93, 63, 0, 0, 68, 66, 245, 238, 255, 62, 254, 52, 206, 62, 165, 9, 117, 63, 0, 0, 0, 0, 0, 0, 0, 63, 29, 187, 64, 63, 165, 9, 117, 63, 132, 176, 16, 56, 0, 0, 88, 65, 29, 187, 64, 63, 37, 75, 93, 63, 132, 176, 16, 56, 0, 0, 88, 65, 233, 182, 79, 63, 226, 91, 57, 63, 189, 253, 127, 191, 3, 0, 88, 65, 233, 182, 79, 63, 210, 137, 55, 63, 0, 0, 128, 191, 45, 0, 0, 63, 97, 222, 55, 63, 210, 137, 55, 63, 0, 0, 0, 0, 0, 0, 0, 63, 97, 222, 55, 63, 226, 91, 57, 63, 189, 253, 127, 191, 3, 0, 88, 65, 156, 213, 103, 63, 82, 196, 183, 61, 0, 0, 128, 191, 45, 0, 0, 63, 20, 253, 79, 63, 82, 196, 183, 61, 0, 0, 168, 194, 156, 14, 0, 63, 20, 253, 79, 63, 4, 20, 46, 63, 251, 255, 167, 194, 234, 0, 88, 65, 156, 213, 103, 63, 4, 20, 46, 63, 33, 1, 128, 63, 253, 255, 87, 65, 180, 104, 91, 63, 223, 75, 97, 63, 132, 176, 16, 56, 0, 0, 88, 65, 180, 104, 91, 63, 242, 52, 99, 63, 0, 0, 0, 0, 0, 0, 0, 63, 44, 144, 67, 63, 242, 52, 99, 63, 0, 0, 128, 63, 167, 255, 255, 62, 44, 144, 67, 63, 223, 75, 97, 63, 78, 7, 128, 63, 0, 0, 169, 66, 179, 30, 152, 62, 66, 237, 88, 63, 22, 0, 128, 63, 234, 255, 191, 63, 126, 208, 99, 63, 66, 237, 88, 63, 83, 20, 50, 54, 0, 0, 192, 63, 126, 208, 99, 63, 86, 214, 90, 63, 173, 186, 105, 57, 0, 0, 169, 66, 179, 30, 152, 62, 86, 214, 90, 63, 78, 7, 128, 63, 0, 0, 169, 66, 64, 50, 149, 62, 52, 28, 91, 63, 173, 186, 105, 57, 0, 0, 169, 66, 64, 50, 149, 62, 71, 5, 93, 63, 83, 20, 50, 54, 0, 0, 192, 63, 68, 90, 98, 63, 71, 5, 93, 63, 22, 0, 128, 63, 234, 255, 191, 63, 68, 90, 98, 63, 52, 28, 91, 63, 33, 1, 128, 63, 253, 255, 87, 65, 92, 186, 183, 62, 37, 75, 93, 63, 0, 0, 128, 63, 167, 255, 255, 62, 92, 186, 183, 62, 165, 9, 117, 63, 0, 0, 0, 0, 0, 0, 0, 63, 219, 98, 187, 62, 165, 9, 117, 63, 132, 176, 16, 56, 0, 0, 88, 65, 219, 98, 187, 62, 37, 75, 93, 63, 251, 255, 167, 194, 234, 0, 88, 65, 233, 182, 79, 63, 127, 186, 1, 62, 0, 0, 168, 194, 156, 14, 0, 63, 97, 222, 55, 63, 127, 186, 1, 62, 0, 0, 166, 66, 0, 0, 72, 193, 64, 105, 0, 63, 55, 173, 120, 63, 0, 0, 166, 66, 0, 0, 0, 63, 112, 33, 209, 62, 55, 173, 120, 63, 0, 0, 168, 66, 0, 0, 0, 63, 112, 33, 209, 62, 36, 196, 118, 63, 0, 0, 168, 66, 0, 0, 72, 193, 64, 105, 0, 63, 36, 196, 118, 63, 0, 0, 68, 194, 0, 0, 72, 193, 78, 244, 127, 63, 187, 131, 20, 63, 0, 0, 128, 191, 0, 0, 72, 193, 78, 244, 127, 63, 183, 240, 107, 63, 0, 0, 128, 191, 0, 0, 0, 63, 198, 27, 104, 63, 183, 240, 107, 63, 0, 0, 68, 194, 0, 0, 0, 63, 198, 27, 104, 63, 187, 131, 20, 63, 0, 0, 68, 194, 0, 0, 167, 194, 46, 237, 94, 61, 46, 127, 123, 63, 0, 0, 68, 194, 0, 0, 165, 194, 46, 237, 94, 61, 66, 104, 125, 63, 0, 0, 128, 191, 0, 0, 165, 194, 82, 119, 203, 62, 66, 104, 125, 63, 0, 0, 128, 191, 0, 0, 167, 194, 82, 119, 203, 62, 46, 127, 123, 63, 0, 0, 68, 194, 0, 0, 167, 194, 227, 13, 212, 62, 87, 220, 123, 63, 0, 0, 128, 191, 0, 0, 167, 194, 200, 211, 65, 63, 87, 220, 123, 63, 0, 0, 128, 191, 0, 0, 165, 194, 200, 211, 65, 63, 106, 197, 125, 63, 0, 0, 68, 194, 0, 0, 165, 194, 227, 13, 212, 62, 106, 197, 125, 63, 0, 0, 128, 191, 0, 0, 0, 63, 92, 186, 183, 62, 165, 9, 117, 63, 0, 0, 128, 191, 0, 0, 72, 193, 92, 186, 183, 62, 37, 75, 93, 63, 0, 0, 166, 66, 0, 0, 72, 193, 81, 191, 113, 62, 71, 5, 93, 63, 0, 0, 168, 66, 0, 0, 72, 193, 81, 191, 113, 62, 52, 28, 91, 63, 0, 0, 168, 66, 0, 0, 0, 63, 49, 93, 18, 62, 52, 28, 91, 63, 0, 0, 166, 66, 0, 0, 0, 63, 49, 93, 18, 62, 71, 5, 93, 63, 0, 0, 60, 66, 0, 0, 176, 192, 181, 178, 94, 63, 175, 192, 35, 61, 0, 0, 216, 65, 0, 0, 0, 63, 183, 15, 58, 63, 90, 240, 169, 61, 0, 0, 60, 66, 0, 0, 0, 63, 181, 178, 94, 63, 90, 240, 169, 61, 0, 0, 68, 194, 0, 0, 58, 194, 40, 159, 97, 63, 42, 232, 60, 63, 0, 0, 20, 194, 0, 0, 58, 194, 40, 159, 97, 63, 225, 212, 82, 63, 0, 0, 20, 194, 0, 0, 212, 193, 98, 40, 59, 63, 225, 212, 82, 63, 0, 0, 68, 194, 0, 0, 212, 193, 98, 40, 59, 63, 42, 232, 60, 63, 0, 0, 68, 194, 0, 0, 58, 194, 142, 239, 105, 63, 231, 248, 216, 62, 0, 0, 68, 194, 0, 0, 212, 193, 142, 239, 105, 63, 115, 247, 16, 63, 0, 0, 20, 194, 0, 0, 212, 193, 78, 244, 127, 63, 115, 247, 16, 63, 0, 0, 20, 194, 0, 0, 58, 194, 78, 244, 127, 63, 231, 248, 216, 62, 0, 0, 68, 194, 0, 0, 0, 63, 174, 191, 31, 63, 194, 40, 32, 63, 0, 0, 20, 194, 0, 0, 0, 63, 110, 196, 53, 63, 194, 40, 32, 63, 0, 0, 20, 194, 0, 0, 176, 192, 110, 196, 53, 63, 194, 42, 43, 63, 0, 0, 68, 194, 0, 0, 176, 192, 174, 191, 31, 63, 194, 42, 43, 63, 0, 0, 60, 66, 0, 0, 176, 192, 69, 164, 101, 63, 179, 218, 114, 63, 0, 0, 60, 66, 0, 0, 0, 63, 69, 164, 101, 63, 179, 216, 103, 63, 0, 0, 216, 65, 0, 0, 0, 63, 71, 1, 65, 63, 179, 216, 103, 63, 0, 0, 80, 65, 0, 0, 128, 192, 87, 13, 111, 63, 144, 153, 204, 62, 0, 0, 80, 65, 0, 0, 0, 63, 105, 27, 122, 63, 144, 153, 204, 62, 0, 0, 128, 65, 0, 0, 0, 63, 105, 27, 122, 63, 219, 178, 215, 62, 0, 0, 128, 65, 0, 0, 128, 192, 87, 13, 111, 63, 219, 178, 215, 62, 0, 0, 128, 191, 0, 0, 128, 192, 139, 237, 204, 62, 74, 148, 111, 63, 0, 0, 128, 191, 0, 0, 0, 63, 48, 239, 187, 62, 74, 148, 111, 63, 0, 0, 160, 192, 0, 0, 0, 63, 48, 239, 187, 62, 219, 53, 104, 63, 0, 0, 160, 192, 0, 0, 120, 193, 154, 84, 57, 63, 214, 150, 189, 61, 0, 0, 160, 192, 0, 0, 72, 193, 85, 231, 62, 63, 214, 150, 189, 61, 0, 0, 128, 191, 0, 0, 72, 193, 85, 231, 62, 63, 72, 138, 248, 61, 0, 0, 128, 191, 0, 0, 120, 193, 154, 84, 57, 63, 72, 138, 248, 61, 0, 0, 128, 191, 0, 0, 128, 192, 83, 248, 249, 60, 184, 117, 71, 63, 0, 0, 160, 192, 0, 0, 0, 63, 70, 128, 210, 58, 159, 235, 79, 63, 0, 0, 128, 191, 0, 0, 0, 63, 83, 248, 249, 60, 159, 235, 79, 63, 0, 0, 128, 65, 0, 0, 128, 192, 161, 71, 120, 63, 245, 195, 117, 63, 0, 0, 128, 65, 0, 0, 0, 63, 161, 71, 120, 63, 14, 78, 109, 63, 0, 0, 80, 65, 0, 0, 0, 63, 230, 180, 114, 63, 14, 78, 109, 63, 0, 0, 80, 65, 0, 0, 128, 192, 230, 180, 114, 63, 245, 195, 117, 63, 0, 0, 144, 65, 0, 0, 144, 192, 250, 31, 89, 63, 211, 136, 48, 63, 0, 0, 144, 65, 0, 0, 0, 63, 41, 233, 100, 63, 211, 136, 48, 63, 0, 0, 168, 65, 0, 0, 0, 63, 41, 233, 100, 63, 120, 21, 54, 63, 0, 0, 168, 65, 0, 0, 144, 192, 250, 31, 89, 63, 120, 21, 54, 63, 0, 0, 128, 191, 0, 0, 144, 192, 89, 15, 76, 63, 59, 195, 113, 63, 0, 0, 128, 191, 0, 0, 0, 63, 15, 213, 66, 63, 59, 195, 113, 63, 0, 0, 160, 192, 0, 0, 0, 63, 15, 213, 66, 63, 205, 100, 106, 63, 0, 0, 160, 192, 0, 0, 164, 193, 106, 46, 146, 59, 182, 103, 122, 63, 0, 0, 160, 192, 0, 0, 140, 193, 106, 46, 146, 59, 91, 244, 127, 63, 0, 0, 128, 191, 0, 0, 140, 193, 245, 173, 8, 61, 91, 244, 127, 63, 0, 0, 128, 191, 0, 0, 164, 193, 245, 173, 8, 61, 182, 103, 122, 63, 0, 0, 128, 191, 0, 0, 144, 192, 86, 49, 66, 63, 154, 209, 0, 61, 0, 0, 160, 192, 0, 0, 0, 63, 212, 202, 58, 63, 136, 234, 137, 61, 0, 0, 128, 191, 0, 0, 0, 63, 86, 49, 66, 63, 136, 234, 137, 61, 0, 0, 168, 65, 0, 0, 144, 192, 69, 164, 101, 63, 228, 99, 101, 63, 0, 0, 168, 65, 0, 0, 0, 63, 251, 105, 92, 63, 228, 99, 101, 63, 0, 0, 144, 65, 0, 0, 0, 63, 251, 105, 92, 63, 62, 215, 95, 63, 0, 0, 144, 65, 0, 0, 144, 192, 69, 164, 101, 63, 62, 215, 95, 63, 0, 0, 184, 65, 0, 0, 0, 191, 179, 250, 196, 61, 91, 244, 127, 63, 0, 0, 184, 65, 0, 0, 0, 63, 179, 250, 196, 61, 72, 11, 126, 63, 0, 0, 208, 65, 0, 0, 0, 63, 221, 100, 152, 61, 72, 11, 126, 63, 0, 0, 208, 65, 0, 0, 0, 191, 221, 100, 152, 61, 91, 244, 127, 63, 0, 0, 160, 192, 0, 0, 0, 191, 47, 110, 77, 63, 89, 105, 195, 61, 0, 0, 128, 191, 0, 0, 0, 191, 47, 110, 77, 63, 203, 92, 254, 61, 0, 0, 128, 191, 0, 0, 0, 63, 90, 89, 79, 63, 203, 92, 254, 61, 0, 0, 160, 192, 0, 0, 0, 63, 90, 89, 79, 63, 89, 105, 195, 61, 0, 0, 160, 192, 0, 0, 204, 193, 23, 219, 89, 63, 86, 91, 54, 63, 0, 0, 160, 192, 0, 0, 180, 193, 23, 219, 89, 63, 252, 231, 59, 63, 0, 0, 128, 191, 0, 0, 180, 193, 153, 65, 97, 63, 252, 231, 59, 63, 0, 0, 128, 191, 0, 0, 204, 193, 153, 65, 97, 63, 86, 91, 54, 63, 0, 0, 160, 192, 0, 0, 204, 193, 75, 223, 74, 63, 61, 80, 121, 63, 0, 0, 128, 191, 0, 0, 204, 193, 205, 69, 82, 63, 61, 80, 121, 63, 0, 0, 128, 191, 0, 0, 180, 193, 205, 69, 82, 63, 226, 220, 126, 63, 0, 0, 160, 192, 0, 0, 180, 193, 75, 223, 74, 63, 226, 220, 126, 63, 0, 0, 160, 192, 0, 0, 0, 191, 163, 219, 190, 62, 241, 171, 113, 63, 0, 0, 160, 192, 0, 0, 0, 63, 163, 219, 190, 62, 4, 149, 115, 63, 0, 0, 128, 191, 0, 0, 0, 63, 168, 168, 205, 62, 4, 149, 115, 63, 0, 0, 128, 191, 0, 0, 0, 191, 168, 168, 205, 62, 241, 171, 113, 63, 0, 0, 184, 65, 0, 0, 0, 191, 109, 122, 50, 63, 179, 89, 45, 63, 0, 0, 208, 65, 0, 0, 0, 191, 179, 231, 44, 63, 179, 89, 45, 63, 0, 0, 208, 65, 0, 0, 0, 63, 179, 231, 44, 63, 160, 112, 43, 63, 0, 0, 184, 65, 0, 0, 0, 63, 109, 122, 50, 63, 160, 112, 43, 63, 0, 0, 248, 65, 0, 0, 192, 191, 13, 120, 103, 63, 159, 235, 79, 63, 0, 0, 248, 65, 0, 0, 0, 63, 13, 120, 103, 63, 195, 48, 76, 63, 0, 0, 8, 66, 0, 0, 0, 63, 82, 229, 97, 63, 195, 48, 76, 63, 0, 0, 8, 66, 0, 0, 192, 191, 82, 229, 97, 63, 159, 235, 79, 63, 0, 0, 160, 192, 0, 0, 192, 191, 26, 185, 99, 63, 166, 142, 80, 63, 0, 0, 128, 191, 0, 0, 192, 191, 26, 185, 99, 63, 20, 237, 87, 63, 0, 0, 128, 191, 0, 0, 0, 63, 13, 120, 103, 63, 20, 237, 87, 63, 0, 0, 160, 192, 0, 0, 0, 63, 13, 120, 103, 63, 166, 142, 80, 63, 0, 0, 160, 192, 0, 0, 6, 194, 82, 229, 97, 63, 243, 185, 62, 63, 0, 0, 160, 192, 0, 0, 244, 193, 13, 120, 103, 63, 243, 185, 62, 63, 0, 0, 128, 191, 0, 0, 244, 193, 13, 120, 103, 63, 98, 24, 70, 63, 0, 0, 128, 191, 0, 0, 6, 194, 82, 229, 97, 63, 98, 24, 70, 63, 0, 0, 160, 192, 0, 0, 6, 194, 21, 71, 83, 63, 61, 80, 121, 63, 0, 0, 128, 191, 0, 0, 6, 194, 151, 173, 90, 63, 61, 80, 121, 63, 0, 0, 128, 191, 0, 0, 244, 193, 151, 173, 90, 63, 226, 220, 126, 63, 0, 0, 160, 192, 0, 0, 244, 193, 21, 71, 83, 63, 226, 220, 126, 63, 0, 0, 160, 192, 0, 0, 192, 191, 138, 199, 92, 63, 6, 34, 123, 63, 0, 0, 160, 192, 0, 0, 0, 63, 138, 199, 92, 63, 226, 220, 126, 63, 0, 0, 128, 191, 0, 0, 0, 63, 12, 46, 100, 63, 226, 220, 126, 63, 0, 0, 128, 191, 0, 0, 192, 191, 12, 46, 100, 63, 6, 34, 123, 63, 0, 0, 248, 65, 0, 0, 192, 191, 63, 232, 81, 63, 213, 146, 103, 63, 0, 0, 8, 66, 0, 0, 192, 191, 132, 85, 76, 63, 213, 146, 103, 63, 0, 0, 8, 66, 0, 0, 0, 63, 132, 85, 76, 63, 249, 215, 99, 63, 0, 0, 248, 65, 0, 0, 0, 63, 63, 232, 81, 63, 249, 215, 99, 63, 0, 0, 216, 65, 0, 0, 128, 191, 21, 126, 126, 63, 221, 61, 20, 63, 0, 0, 216, 65, 0, 0, 0, 63, 21, 126, 126, 63, 81, 61, 17, 63, 0, 0, 240, 65, 0, 0, 0, 63, 90, 235, 120, 63, 81, 61, 17, 63, 0, 0, 240, 65, 0, 0, 128, 191, 90, 235, 120, 63, 221, 61, 20, 63, 0, 0, 160, 192, 0, 0, 128, 191, 15, 213, 66, 63, 73, 146, 100, 63, 0, 0, 128, 191, 0, 0, 128, 191, 146, 59, 74, 63, 73, 146, 100, 63, 0, 0, 128, 191, 0, 0, 0, 63, 146, 59, 74, 63, 213, 146, 103, 63, 0, 0, 160, 192, 0, 0, 0, 63, 15, 213, 66, 63, 213, 146, 103, 63, 0, 0, 160, 192, 0, 0, 236, 193, 145, 4, 31, 63, 251, 229, 48, 63, 0, 0, 160, 192, 0, 0, 212, 193, 76, 151, 36, 63, 251, 229, 48, 63, 0, 0, 128, 191, 0, 0, 212, 193, 76, 151, 36, 63, 106, 68, 56, 63, 0, 0, 128, 191, 0, 0, 236, 193, 145, 4, 31, 63, 106, 68, 56, 63, 0, 0, 160, 192, 0, 0, 236, 193, 84, 47, 165, 60, 96, 143, 84, 63, 0, 0, 128, 191, 0, 0, 236, 193, 84, 47, 165, 60, 206, 237, 91, 63, 0, 0, 128, 191, 0, 0, 212, 193, 86, 195, 43, 61, 206, 237, 91, 63, 0, 0, 160, 192, 0, 0, 212, 193, 86, 195, 43, 61, 96, 143, 84, 63, 0, 0, 160, 192, 0, 0, 128, 191, 45, 218, 70, 63, 77, 168, 93, 63, 0, 0, 160, 192, 0, 0, 0, 63, 45, 218, 70, 63, 217, 168, 96, 63, 0, 0, 128, 191, 0, 0, 0, 63, 175, 64, 78, 63, 217, 168, 96, 63, 0, 0, 128, 191, 0, 0, 128, 191, 175, 64, 78, 63, 77, 168, 93, 63, 0, 0, 216, 65, 0, 0, 128, 191, 4, 40, 77, 63, 251, 229, 112, 61, 0, 0, 240, 65, 0, 0, 128, 191, 74, 149, 71, 63, 251, 229, 112, 61, 0, 0, 240, 65, 0, 0, 0, 63, 74, 149, 71, 63, 63, 221, 64, 61, 0, 0, 216, 65, 0, 0, 0, 63, 4, 40, 77, 63, 63, 221, 64, 61, 0, 0, 12, 66, 0, 0, 0, 192, 21, 126, 126, 63, 11, 58, 127, 63, 0, 0, 12, 66, 0, 0, 0, 63, 119, 166, 121, 63, 11, 58, 127, 63, 0, 0, 24, 66, 0, 0, 0, 63, 119, 166, 121, 63, 101, 173, 121, 63, 0, 0, 24, 66, 0, 0, 0, 192, 21, 126, 126, 63, 101, 173, 121, 63, 0, 0, 160, 192, 0, 0, 0, 192, 80, 81, 91, 63, 231, 119, 83, 63, 0, 0, 128, 191, 0, 0, 0, 192, 211, 183, 98, 63, 231, 119, 83, 63, 0, 0, 128, 191, 0, 0, 0, 63, 211, 183, 98, 63, 60, 74, 88, 63, 0, 0, 160, 192, 0, 0, 0, 63, 80, 81, 91, 63, 60, 74, 88, 63, 0, 0, 160, 192, 0, 0, 22, 194, 180, 49, 48, 63, 6, 161, 53, 63, 0, 0, 160, 192, 0, 0, 10, 194, 180, 49, 48, 63, 171, 45, 59, 63, 0, 0, 128, 191, 0, 0, 10, 194, 54, 152, 55, 63, 171, 45, 59, 63, 0, 0, 128, 191, 0, 0, 22, 194, 54, 152, 55, 63, 6, 161, 53, 63, 0, 0, 160, 192, 0, 0, 22, 194, 191, 21, 81, 63, 131, 206, 47, 63, 0, 0, 128, 191, 0, 0, 22, 194, 65, 124, 88, 63, 131, 206, 47, 63, 0, 0, 128, 191, 0, 0, 10, 194, 65, 124, 88, 63, 40, 91, 53, 63, 0, 0, 160, 192, 0, 0, 10, 194, 191, 21, 81, 63, 40, 91, 53, 63, 0, 0, 160, 192, 0, 0, 0, 192, 239, 59, 56, 63, 235, 139, 129, 60, 0, 0, 160, 192, 0, 0, 0, 63, 239, 59, 56, 63, 66, 235, 13, 61, 0, 0, 128, 191, 0, 0, 0, 63, 114, 162, 63, 63, 66, 235, 13, 61, 0, 0, 128, 191, 0, 0, 0, 192, 114, 162, 63, 63, 235, 139, 129, 60, 0, 0, 12, 66, 0, 0, 0, 192, 251, 105, 156, 60, 123, 164, 72, 63, 0, 0, 24, 66, 0, 0, 0, 192, 251, 105, 156, 60, 214, 23, 67, 63, 0, 0, 24, 66, 0, 0, 0, 63, 176, 28, 59, 57, 214, 23, 67, 63, 0, 0, 12, 66, 0, 0, 0, 63, 176, 28, 59, 57, 123, 164, 72, 63, 0, 0, 128, 191, 0, 0, 240, 192, 63, 177, 38, 63, 241, 42, 44, 63, 0, 0, 160, 192, 0, 0, 240, 192, 63, 177, 38, 63, 201, 207, 54, 63, 0, 0, 160, 192, 0, 0, 40, 193, 249, 67, 44, 63, 201, 207, 54, 63, 0, 0, 128, 191, 0, 0, 40, 193, 249, 67, 44, 63, 241, 42, 44, 63, 0, 0, 128, 191, 0, 0, 96, 192, 185, 163, 64, 63, 249, 86, 222, 61, 0, 0, 128, 191, 0, 0, 0, 63, 251, 251, 69, 63, 17, 219, 180, 61, 0, 0, 160, 192, 0, 0, 0, 63, 61, 84, 75, 63, 249, 86, 222, 61, 0, 0, 160, 192, 0, 0, 40, 193, 252, 179, 95, 63, 43, 238, 29, 61, 0, 0, 160, 192, 0, 0, 240, 192, 183, 70, 101, 63, 43, 238, 29, 61, 0, 0, 128, 191, 0, 0, 240, 192, 183, 70, 101, 63, 136, 234, 137, 61, 0, 0, 128, 191, 0, 0, 40, 193, 252, 179, 95, 63, 136, 234, 137, 61, 0, 0, 128, 191, 0, 0, 96, 192, 134, 32, 126, 63, 190, 149, 119, 63, 0, 0, 160, 192, 0, 0, 0, 63, 134, 32, 126, 63, 230, 240, 108, 63, 0, 0, 128, 191, 0, 0, 0, 63, 90, 235, 120, 63, 82, 67, 114, 63, 0, 0, 48, 65, 0, 0, 96, 192, 139, 237, 204, 62, 187, 6, 101, 63, 0, 0, 48, 65, 0, 0, 0, 63, 139, 237, 204, 62, 77, 168, 93, 63, 0, 0, 0, 65, 0, 0, 0, 63, 22, 200, 193, 62, 77, 168, 93, 63, 0, 0, 0, 65, 0, 0, 96, 192, 22, 200, 193, 62, 187, 6, 101, 63, 0, 0, 160, 64, 0, 0, 64, 192, 201, 194, 134, 62, 91, 244, 127, 63, 0, 0, 160, 64, 0, 0, 0, 192, 201, 194, 134, 62, 72, 11, 126, 63, 0, 0, 192, 64, 0, 0, 0, 192, 115, 236, 130, 62, 72, 11, 126, 63, 0, 0, 192, 64, 0, 0, 64, 192, 115, 236, 130, 62, 91, 244, 127, 63, 0, 0, 160, 192, 0, 0, 64, 192, 251, 160, 7, 63, 36, 196, 118, 63, 0, 0, 128, 192, 0, 0, 64, 192, 39, 140, 9, 63, 36, 196, 118, 63, 0, 0, 128, 192, 0, 0, 0, 192, 39, 140, 9, 63, 55, 173, 120, 63, 0, 0, 160, 192, 0, 0, 0, 192, 251, 160, 7, 63, 55, 173, 120, 63, 0, 0, 160, 192, 0, 0, 176, 192, 33, 227, 141, 62, 72, 11, 126, 63, 0, 0, 160, 192, 0, 0, 144, 192, 33, 227, 141, 62, 91, 244, 127, 63, 0, 0, 128, 192, 0, 0, 144, 192, 120, 185, 145, 62, 91, 244, 127, 63, 0, 0, 128, 192, 0, 0, 176, 192, 120, 185, 145, 62, 72, 11, 126, 63, 0, 0, 160, 192, 0, 0, 176, 192, 16, 31, 70, 63, 72, 11, 126, 63, 0, 0, 128, 192, 0, 0, 176, 192, 60, 10, 72, 63, 72, 11, 126, 63, 0, 0, 128, 192, 0, 0, 144, 192, 60, 10, 72, 63, 91, 244, 127, 63, 0, 0, 160, 192, 0, 0, 144, 192, 16, 31, 70, 63, 91, 244, 127, 63, 0, 0, 160, 192, 0, 0, 64, 192, 231, 254, 117, 63, 28, 152, 196, 62, 0, 0, 160, 192, 0, 0, 0, 192, 231, 254, 117, 63, 66, 106, 200, 62, 0, 0, 128, 192, 0, 0, 0, 192, 19, 234, 119, 63, 66, 106, 200, 62, 0, 0, 128, 192, 0, 0, 64, 192, 19, 234, 119, 63, 28, 152, 196, 62, 0, 0, 160, 64, 0, 0, 64, 192, 115, 236, 66, 63, 104, 58, 193, 61, 0, 0, 192, 64, 0, 0, 64, 192, 71, 1, 65, 63, 104, 58, 193, 61, 0, 0, 192, 64, 0, 0, 0, 192, 71, 1, 65, 63, 207, 241, 177, 61, 0, 0, 160, 64, 0, 0, 0, 192, 115, 236, 66, 63, 207, 241, 177, 61, 0, 0, 28, 66, 0, 0, 32, 192, 116, 54, 70, 63, 112, 231, 248, 60, 0, 0, 28, 66, 0, 0, 0, 63, 185, 163, 64, 63, 112, 231, 248, 60, 0, 0, 40, 66, 0, 0, 0, 63, 185, 163, 64, 63, 146, 165, 14, 60, 0, 0, 40, 66, 0, 0, 32, 192, 116, 54, 70, 63, 146, 165, 14, 60, 0, 0, 160, 192, 0, 0, 32, 192, 48, 184, 80, 63, 127, 184, 54, 63, 0, 0, 128, 191, 0, 0, 32, 192, 179, 30, 88, 63, 127, 184, 54, 63, 0, 0, 128, 191, 0, 0, 0, 63, 179, 30, 88, 63, 36, 69, 60, 63, 0, 0, 160, 192, 0, 0, 0, 63, 48, 184, 80, 63, 36, 69, 60, 63, 0, 0, 160, 192, 0, 0, 38, 194, 170, 96, 103, 63, 54, 171, 109, 63, 0, 0, 160, 192, 0, 0, 26, 194, 100, 243, 108, 63, 54, 171, 109, 63, 0, 0, 128, 191, 0, 0, 26, 194, 100, 243, 108, 63, 165, 9, 117, 63, 0, 0, 128, 191, 0, 0, 38, 194, 170, 96, 103, 63, 165, 9, 117, 63, 0, 0, 160, 192, 0, 0, 38, 194, 146, 23, 119, 63, 160, 239, 37, 60, 0, 0, 128, 191, 0, 0, 38, 194, 21, 126, 126, 63, 160, 239, 37, 60, 0, 0, 128, 191, 0, 0, 26, 194, 21, 126, 126, 63, 59, 70, 2, 61, 0, 0, 160, 192, 0, 0, 26, 194, 146, 23, 119, 63, 59, 70, 2, 61, 0, 0, 160, 192, 0, 0, 32, 192, 71, 1, 129, 61, 144, 24, 71, 63, 0, 0, 160, 192, 0, 0, 0, 63, 29, 151, 173, 61, 144, 24, 71, 63, 0, 0, 128, 191, 0, 0, 0, 63, 29, 151, 173, 61, 254, 118, 78, 63, 0, 0, 128, 191, 0, 0, 32, 192, 71, 1, 129, 61, 254, 118, 78, 63, 0, 0, 28, 66, 0, 0, 32, 192, 35, 119, 84, 63, 165, 9, 117, 63, 0, 0, 40, 66, 0, 0, 32, 192, 105, 228, 78, 63, 165, 9, 117, 63, 0, 0, 40, 66, 0, 0, 0, 63, 105, 228, 78, 63, 255, 124, 111, 63, 0, 0, 28, 66, 0, 0, 0, 63, 35, 119, 84, 63, 255, 124, 111, 63), +"format": 4151, +"index_count": 456, +"index_data": PackedByteArray(0, 0, 1, 0, 2, 0, 0, 0, 2, 0, 3, 0, 4, 0, 5, 0, 6, 0, 4, 0, 6, 0, 7, 0, 8, 0, 9, 0, 10, 0, 8, 0, 10, 0, 11, 0, 12, 0, 13, 0, 14, 0, 12, 0, 14, 0, 15, 0, 16, 0, 17, 0, 18, 0, 16, 0, 18, 0, 19, 0, 20, 0, 21, 0, 22, 0, 20, 0, 22, 0, 23, 0, 24, 0, 25, 0, 26, 0, 24, 0, 26, 0, 27, 0, 28, 0, 29, 0, 30, 0, 28, 0, 30, 0, 31, 0, 32, 0, 33, 0, 34, 0, 32, 0, 34, 0, 35, 0, 36, 0, 37, 0, 38, 0, 36, 0, 38, 0, 39, 0, 40, 0, 41, 0, 42, 0, 40, 0, 42, 0, 43, 0, 44, 0, 45, 0, 46, 0, 44, 0, 46, 0, 47, 0, 48, 0, 49, 0, 50, 0, 48, 0, 50, 0, 51, 0, 52, 0, 53, 0, 54, 0, 52, 0, 54, 0, 55, 0, 56, 0, 57, 0, 58, 0, 56, 0, 58, 0, 59, 0, 60, 0, 61, 0, 62, 0, 60, 0, 62, 0, 63, 0, 64, 0, 65, 0, 66, 0, 64, 0, 66, 0, 67, 0, 45, 0, 68, 0, 69, 0, 45, 0, 69, 0, 46, 0, 70, 0, 71, 0, 72, 0, 70, 0, 72, 0, 73, 0, 74, 0, 75, 0, 76, 0, 74, 0, 76, 0, 77, 0, 78, 0, 79, 0, 80, 0, 78, 0, 80, 0, 81, 0, 82, 0, 83, 0, 84, 0, 82, 0, 84, 0, 85, 0, 19, 0, 18, 0, 86, 0, 19, 0, 86, 0, 87, 0, 88, 0, 89, 0, 90, 0, 88, 0, 90, 0, 91, 0, 92, 0, 93, 0, 94, 0, 95, 0, 96, 0, 97, 0, 95, 0, 97, 0, 98, 0, 99, 0, 100, 0, 101, 0, 99, 0, 101, 0, 102, 0, 103, 0, 104, 0, 105, 0, 103, 0, 105, 0, 106, 0, 107, 0, 108, 0, 109, 0, 110, 0, 111, 0, 112, 0, 110, 0, 112, 0, 113, 0, 114, 0, 115, 0, 116, 0, 117, 0, 118, 0, 119, 0, 117, 0, 119, 0, 120, 0, 121, 0, 122, 0, 123, 0, 124, 0, 125, 0, 126, 0, 124, 0, 126, 0, 127, 0, 128, 0, 129, 0, 130, 0, 128, 0, 130, 0, 131, 0, 132, 0, 133, 0, 134, 0, 135, 0, 136, 0, 137, 0, 135, 0, 137, 0, 138, 0, 139, 0, 140, 0, 141, 0, 142, 0, 143, 0, 144, 0, 142, 0, 144, 0, 145, 0, 146, 0, 147, 0, 148, 0, 146, 0, 148, 0, 149, 0, 150, 0, 151, 0, 152, 0, 150, 0, 152, 0, 153, 0, 154, 0, 155, 0, 156, 0, 154, 0, 156, 0, 157, 0, 158, 0, 159, 0, 160, 0, 158, 0, 160, 0, 161, 0, 162, 0, 163, 0, 164, 0, 162, 0, 164, 0, 165, 0, 166, 0, 167, 0, 168, 0, 166, 0, 168, 0, 169, 0, 170, 0, 171, 0, 172, 0, 170, 0, 172, 0, 173, 0, 174, 0, 175, 0, 176, 0, 174, 0, 176, 0, 177, 0, 178, 0, 179, 0, 180, 0, 178, 0, 180, 0, 181, 0, 182, 0, 183, 0, 184, 0, 182, 0, 184, 0, 185, 0, 186, 0, 187, 0, 188, 0, 186, 0, 188, 0, 189, 0, 190, 0, 191, 0, 192, 0, 190, 0, 192, 0, 193, 0, 194, 0, 195, 0, 196, 0, 194, 0, 196, 0, 197, 0, 198, 0, 199, 0, 200, 0, 198, 0, 200, 0, 201, 0, 202, 0, 203, 0, 204, 0, 202, 0, 204, 0, 205, 0, 206, 0, 207, 0, 208, 0, 206, 0, 208, 0, 209, 0, 210, 0, 211, 0, 212, 0, 210, 0, 212, 0, 213, 0, 214, 0, 215, 0, 216, 0, 214, 0, 216, 0, 217, 0, 218, 0, 219, 0, 220, 0, 218, 0, 220, 0, 221, 0, 222, 0, 223, 0, 224, 0, 222, 0, 224, 0, 225, 0, 226, 0, 227, 0, 228, 0, 226, 0, 228, 0, 229, 0, 230, 0, 231, 0, 232, 0, 230, 0, 232, 0, 233, 0, 234, 0, 235, 0, 236, 0, 234, 0, 236, 0, 237, 0, 238, 0, 239, 0, 240, 0, 238, 0, 240, 0, 241, 0, 242, 0, 243, 0, 244, 0, 242, 0, 244, 0, 245, 0, 246, 0, 247, 0, 248, 0, 249, 0, 250, 0, 251, 0, 249, 0, 251, 0, 252, 0, 253, 0, 254, 0, 255, 0, 0, 1, 1, 1, 2, 1, 0, 1, 2, 1, 3, 1, 4, 1, 5, 1, 6, 1, 4, 1, 6, 1, 7, 1, 8, 1, 9, 1, 10, 1, 8, 1, 10, 1, 11, 1, 12, 1, 13, 1, 14, 1, 12, 1, 14, 1, 15, 1, 16, 1, 17, 1, 18, 1, 16, 1, 18, 1, 19, 1, 20, 1, 21, 1, 22, 1, 20, 1, 22, 1, 23, 1, 24, 1, 25, 1, 26, 1, 24, 1, 26, 1, 27, 1, 28, 1, 29, 1, 30, 1, 28, 1, 30, 1, 31, 1, 32, 1, 33, 1, 34, 1, 32, 1, 34, 1, 35, 1, 36, 1, 37, 1, 38, 1, 36, 1, 38, 1, 39, 1, 40, 1, 41, 1, 42, 1, 40, 1, 42, 1, 43, 1, 44, 1, 45, 1, 46, 1, 44, 1, 46, 1, 47, 1, 48, 1, 49, 1, 50, 1, 48, 1, 50, 1, 51, 1), +"material": SubResource("StandardMaterial3D_plg37"), +"primitive": 3, +"vertex_count": 308, +"vertex_data": PackedByteArray(244, 78, 249, 193, 0, 128, 38, 65, 0, 72, 17, 194, 255, 255, 255, 255, 255, 255, 0, 192, 244, 78, 249, 193, 0, 0, 38, 192, 0, 72, 17, 194, 255, 255, 255, 255, 255, 255, 0, 192, 134, 88, 83, 66, 0, 0, 38, 192, 0, 72, 17, 194, 255, 255, 255, 255, 255, 255, 0, 192, 134, 88, 83, 66, 0, 128, 38, 65, 0, 72, 17, 194, 255, 255, 255, 255, 255, 255, 0, 192, 244, 78, 249, 193, 0, 128, 38, 65, 0, 72, 17, 194, 0, 0, 0, 128, 255, 127, 255, 191, 244, 78, 249, 193, 0, 128, 38, 65, 0, 72, 13, 194, 0, 0, 0, 128, 255, 127, 255, 191, 244, 78, 249, 193, 0, 0, 38, 192, 0, 72, 13, 194, 0, 0, 0, 128, 255, 127, 255, 191, 244, 78, 249, 193, 0, 0, 38, 192, 0, 72, 17, 194, 0, 0, 0, 128, 255, 127, 255, 191, 134, 88, 83, 66, 0, 0, 38, 192, 0, 72, 17, 194, 0, 128, 0, 0, 255, 127, 0, 192, 244, 78, 249, 193, 0, 0, 38, 192, 0, 72, 17, 194, 0, 128, 0, 0, 255, 127, 0, 192, 244, 78, 249, 193, 0, 0, 38, 192, 0, 72, 13, 194, 0, 128, 0, 0, 255, 127, 0, 192, 134, 88, 83, 66, 0, 0, 38, 192, 0, 72, 13, 194, 0, 128, 0, 0, 255, 127, 0, 192, 134, 88, 83, 66, 0, 128, 38, 65, 0, 72, 17, 194, 0, 128, 255, 255, 255, 127, 255, 191, 134, 88, 83, 66, 0, 128, 38, 65, 0, 72, 13, 194, 0, 128, 255, 255, 255, 127, 255, 191, 244, 78, 249, 193, 0, 128, 38, 65, 0, 72, 13, 194, 0, 128, 255, 255, 255, 127, 255, 191, 244, 78, 249, 193, 0, 128, 38, 65, 0, 72, 17, 194, 0, 128, 255, 255, 255, 127, 255, 191, 134, 88, 83, 66, 0, 128, 38, 65, 0, 72, 17, 194, 255, 255, 0, 128, 255, 127, 0, 192, 134, 88, 83, 66, 0, 0, 38, 192, 0, 72, 17, 194, 255, 255, 0, 128, 255, 127, 0, 192, 134, 88, 83, 66, 0, 0, 38, 192, 0, 72, 13, 194, 255, 255, 0, 128, 255, 127, 0, 192, 134, 88, 83, 66, 0, 128, 38, 65, 0, 72, 13, 194, 255, 255, 0, 128, 255, 127, 0, 192, 244, 78, 249, 193, 0, 128, 38, 65, 0, 72, 13, 194, 255, 127, 255, 127, 255, 255, 255, 191, 134, 88, 83, 66, 0, 128, 38, 65, 0, 72, 13, 194, 255, 127, 255, 127, 255, 255, 255, 191, 134, 88, 83, 66, 0, 0, 38, 192, 0, 72, 13, 194, 255, 127, 255, 127, 255, 255, 255, 191, 244, 78, 249, 193, 0, 0, 38, 192, 0, 72, 13, 194, 255, 127, 255, 127, 255, 255, 255, 191, 244, 78, 249, 193, 0, 128, 38, 65, 0, 72, 13, 194, 255, 255, 255, 255, 0, 0, 0, 192, 244, 78, 249, 193, 0, 0, 38, 192, 0, 72, 13, 194, 255, 255, 255, 255, 0, 0, 0, 192, 244, 78, 241, 193, 0, 0, 38, 192, 0, 72, 13, 194, 255, 255, 255, 255, 0, 0, 0, 192, 244, 78, 241, 193, 0, 128, 38, 65, 0, 72, 13, 194, 255, 255, 255, 255, 0, 0, 0, 192, 244, 78, 249, 193, 0, 128, 38, 65, 0, 72, 13, 194, 0, 0, 0, 128, 254, 255, 255, 255, 244, 78, 249, 193, 0, 128, 38, 65, 0, 224, 90, 65, 0, 0, 0, 128, 254, 255, 255, 255, 244, 78, 249, 193, 0, 0, 38, 192, 0, 224, 90, 65, 0, 0, 0, 128, 254, 255, 255, 255, 244, 78, 249, 193, 0, 0, 38, 192, 0, 72, 13, 194, 0, 0, 0, 128, 254, 255, 255, 255, 244, 78, 241, 193, 0, 0, 38, 192, 0, 72, 13, 194, 0, 128, 0, 0, 255, 255, 255, 255, 244, 78, 249, 193, 0, 0, 38, 192, 0, 72, 13, 194, 0, 128, 0, 0, 255, 255, 255, 255, 244, 78, 249, 193, 0, 0, 38, 192, 0, 224, 90, 65, 0, 128, 0, 0, 255, 255, 255, 255, 244, 78, 241, 193, 0, 0, 38, 192, 0, 224, 90, 65, 0, 128, 0, 0, 255, 255, 255, 255, 244, 78, 241, 193, 0, 128, 38, 65, 0, 72, 13, 194, 0, 128, 255, 255, 255, 255, 254, 255, 244, 78, 241, 193, 0, 128, 38, 65, 0, 224, 90, 65, 0, 128, 255, 255, 255, 255, 254, 255, 244, 78, 249, 193, 0, 128, 38, 65, 0, 224, 90, 65, 0, 128, 255, 255, 255, 255, 254, 255, 244, 78, 249, 193, 0, 128, 38, 65, 0, 72, 13, 194, 0, 128, 255, 255, 255, 255, 254, 255, 244, 78, 241, 193, 0, 128, 38, 65, 0, 72, 13, 194, 255, 255, 0, 128, 254, 255, 255, 255, 244, 78, 241, 193, 0, 0, 38, 192, 0, 72, 13, 194, 255, 255, 0, 128, 254, 255, 255, 255, 244, 78, 241, 193, 0, 0, 38, 192, 0, 224, 90, 65, 255, 255, 0, 128, 254, 255, 255, 255, 244, 78, 241, 193, 0, 128, 38, 65, 0, 224, 90, 65, 255, 255, 0, 128, 254, 255, 255, 255, 244, 78, 249, 193, 0, 128, 38, 65, 0, 224, 90, 65, 255, 127, 255, 127, 0, 0, 255, 191, 244, 78, 241, 193, 0, 128, 38, 65, 0, 224, 90, 65, 255, 127, 255, 127, 0, 0, 255, 191, 244, 78, 241, 193, 0, 0, 38, 192, 0, 224, 90, 65, 255, 127, 255, 127, 0, 0, 255, 191, 244, 78, 249, 193, 0, 0, 38, 192, 0, 224, 90, 65, 255, 127, 255, 127, 0, 0, 255, 191, 244, 78, 241, 193, 0, 128, 38, 65, 0, 224, 74, 65, 255, 255, 255, 255, 0, 0, 0, 192, 244, 78, 241, 193, 0, 0, 38, 192, 0, 224, 74, 65, 255, 255, 255, 255, 0, 0, 0, 192, 134, 88, 83, 66, 0, 0, 38, 192, 0, 224, 74, 65, 255, 255, 255, 255, 0, 0, 0, 192, 134, 88, 83, 66, 0, 128, 38, 65, 0, 224, 74, 65, 255, 255, 255, 255, 0, 0, 0, 192, 244, 78, 241, 193, 0, 128, 38, 65, 0, 224, 74, 65, 0, 0, 0, 128, 254, 255, 255, 255, 244, 78, 241, 193, 0, 128, 38, 65, 0, 224, 90, 65, 0, 0, 0, 128, 254, 255, 255, 255, 244, 78, 241, 193, 0, 0, 38, 192, 0, 224, 90, 65, 0, 0, 0, 128, 254, 255, 255, 255, 244, 78, 241, 193, 0, 0, 38, 192, 0, 224, 74, 65, 0, 0, 0, 128, 254, 255, 255, 255, 134, 88, 83, 66, 0, 0, 38, 192, 0, 224, 74, 65, 0, 128, 0, 0, 255, 255, 255, 255, 244, 78, 241, 193, 0, 0, 38, 192, 0, 224, 74, 65, 0, 128, 0, 0, 255, 255, 255, 255, 244, 78, 241, 193, 0, 0, 38, 192, 0, 224, 90, 65, 0, 128, 0, 0, 255, 255, 255, 255, 134, 88, 83, 66, 0, 0, 38, 192, 0, 224, 90, 65, 0, 128, 0, 0, 255, 255, 255, 255, 134, 88, 83, 66, 0, 128, 38, 65, 0, 224, 74, 65, 0, 128, 255, 255, 255, 255, 254, 255, 134, 88, 83, 66, 0, 128, 38, 65, 0, 224, 90, 65, 0, 128, 255, 255, 255, 255, 254, 255, 244, 78, 241, 193, 0, 128, 38, 65, 0, 224, 90, 65, 0, 128, 255, 255, 255, 255, 254, 255, 244, 78, 241, 193, 0, 128, 38, 65, 0, 224, 74, 65, 0, 128, 255, 255, 255, 255, 254, 255, 134, 88, 83, 66, 0, 128, 38, 65, 0, 224, 74, 65, 255, 255, 0, 128, 254, 255, 255, 255, 134, 88, 83, 66, 0, 0, 38, 192, 0, 224, 74, 65, 255, 255, 0, 128, 254, 255, 255, 255, 134, 88, 83, 66, 0, 0, 38, 192, 0, 224, 90, 65, 255, 255, 0, 128, 254, 255, 255, 255, 134, 88, 83, 66, 0, 128, 38, 65, 0, 224, 90, 65, 255, 255, 0, 128, 254, 255, 255, 255, 134, 88, 83, 66, 0, 128, 38, 65, 0, 224, 90, 65, 255, 127, 255, 127, 0, 0, 255, 191, 134, 88, 83, 66, 0, 0, 38, 192, 0, 224, 90, 65, 255, 127, 255, 127, 0, 0, 255, 191, 134, 88, 79, 66, 0, 128, 38, 65, 0, 72, 13, 194, 255, 255, 255, 255, 255, 255, 0, 192, 134, 88, 79, 66, 0, 0, 38, 192, 0, 72, 13, 194, 255, 255, 255, 255, 255, 255, 0, 192, 134, 88, 83, 66, 0, 0, 38, 192, 0, 72, 13, 194, 255, 255, 255, 255, 255, 255, 0, 192, 134, 88, 83, 66, 0, 128, 38, 65, 0, 72, 13, 194, 255, 255, 255, 255, 255, 255, 0, 192, 134, 88, 79, 66, 0, 128, 38, 65, 0, 72, 13, 194, 0, 0, 0, 128, 255, 127, 255, 191, 134, 88, 79, 66, 0, 128, 38, 65, 0, 224, 74, 65, 0, 0, 0, 128, 255, 127, 255, 191, 134, 88, 79, 66, 0, 0, 38, 192, 0, 224, 74, 65, 0, 0, 0, 128, 255, 127, 255, 191, 134, 88, 79, 66, 0, 0, 38, 192, 0, 72, 13, 194, 0, 0, 0, 128, 255, 127, 255, 191, 134, 88, 83, 66, 0, 0, 38, 192, 0, 72, 13, 194, 0, 128, 0, 0, 255, 127, 0, 192, 134, 88, 79, 66, 0, 0, 38, 192, 0, 72, 13, 194, 0, 128, 0, 0, 255, 127, 0, 192, 134, 88, 79, 66, 0, 0, 38, 192, 0, 224, 74, 65, 0, 128, 0, 0, 255, 127, 0, 192, 134, 88, 83, 66, 0, 0, 38, 192, 0, 224, 74, 65, 0, 128, 0, 0, 255, 127, 0, 192, 134, 88, 83, 66, 0, 128, 38, 65, 0, 72, 13, 194, 0, 128, 255, 255, 255, 127, 255, 191, 134, 88, 83, 66, 0, 128, 38, 65, 0, 224, 74, 65, 0, 128, 255, 255, 255, 127, 255, 191, 134, 88, 79, 66, 0, 128, 38, 65, 0, 224, 74, 65, 0, 128, 255, 255, 255, 127, 255, 191, 134, 88, 79, 66, 0, 128, 38, 65, 0, 72, 13, 194, 0, 128, 255, 255, 255, 127, 255, 191, 134, 88, 83, 66, 0, 0, 38, 192, 0, 224, 74, 65, 255, 255, 0, 128, 255, 127, 0, 192, 134, 88, 83, 66, 0, 128, 38, 65, 0, 224, 74, 65, 255, 255, 0, 128, 255, 127, 0, 192, 134, 88, 79, 66, 0, 128, 38, 65, 0, 224, 74, 65, 255, 127, 255, 127, 255, 255, 255, 191, 134, 88, 83, 66, 0, 128, 38, 65, 0, 224, 74, 65, 255, 127, 255, 127, 255, 255, 255, 191, 134, 88, 83, 66, 0, 0, 38, 192, 0, 224, 74, 65, 255, 127, 255, 127, 255, 255, 255, 191, 134, 88, 79, 66, 0, 0, 38, 192, 0, 224, 74, 65, 255, 127, 255, 127, 255, 255, 255, 191, 24, 98, 125, 65, 0, 0, 90, 64, 0, 72, 13, 194, 255, 255, 255, 255, 255, 255, 0, 192, 209, 59, 133, 192, 0, 0, 38, 192, 0, 72, 13, 194, 255, 255, 255, 255, 255, 255, 0, 192, 24, 98, 125, 65, 0, 0, 38, 192, 0, 72, 13, 194, 255, 255, 255, 255, 255, 255, 0, 192, 24, 98, 125, 65, 0, 0, 90, 64, 0, 72, 13, 194, 117, 98, 117, 226, 255, 127, 255, 191, 24, 98, 125, 65, 0, 0, 90, 64, 0, 144, 186, 193, 117, 98, 117, 226, 255, 127, 255, 191, 209, 59, 133, 192, 0, 0, 38, 192, 0, 144, 186, 193, 117, 98, 117, 226, 255, 127, 255, 191, 209, 59, 133, 192, 0, 0, 38, 192, 0, 72, 13, 194, 117, 98, 117, 226, 255, 127, 255, 191, 24, 98, 125, 65, 0, 0, 38, 192, 0, 72, 13, 194, 0, 128, 0, 0, 255, 127, 0, 192, 209, 59, 133, 192, 0, 0, 38, 192, 0, 72, 13, 194, 0, 128, 0, 0, 255, 127, 0, 192, 209, 59, 133, 192, 0, 0, 38, 192, 0, 144, 186, 193, 0, 128, 0, 0, 255, 127, 0, 192, 24, 98, 125, 65, 0, 0, 38, 192, 0, 144, 186, 193, 0, 128, 0, 0, 255, 127, 0, 192, 24, 98, 125, 65, 0, 0, 38, 192, 0, 72, 13, 194, 255, 255, 0, 128, 255, 127, 0, 192, 24, 98, 125, 65, 0, 0, 38, 192, 0, 144, 186, 193, 255, 255, 0, 128, 255, 127, 0, 192, 24, 98, 125, 65, 0, 0, 90, 64, 0, 144, 186, 193, 255, 255, 0, 128, 255, 127, 0, 192, 24, 98, 125, 65, 0, 0, 90, 64, 0, 72, 13, 194, 255, 255, 0, 128, 255, 127, 0, 192, 24, 98, 125, 65, 0, 0, 90, 64, 0, 144, 186, 193, 255, 127, 255, 127, 255, 255, 255, 191, 24, 98, 125, 65, 0, 0, 38, 192, 0, 144, 186, 193, 255, 127, 255, 127, 255, 255, 255, 191, 209, 59, 133, 192, 0, 0, 38, 192, 0, 144, 186, 193, 255, 127, 255, 127, 255, 255, 255, 191, 244, 78, 145, 193, 0, 0, 244, 63, 0, 224, 74, 65, 195, 195, 255, 255, 255, 255, 0, 192, 244, 78, 145, 193, 0, 0, 38, 192, 0, 224, 10, 65, 195, 195, 255, 255, 255, 255, 0, 192, 232, 157, 114, 193, 0, 0, 38, 192, 0, 224, 10, 65, 195, 195, 255, 255, 255, 255, 0, 192, 232, 157, 114, 193, 0, 0, 244, 63, 0, 224, 74, 65, 195, 195, 255, 255, 255, 255, 0, 192, 244, 78, 145, 193, 0, 0, 244, 63, 0, 224, 74, 65, 0, 0, 0, 128, 255, 127, 255, 191, 244, 78, 145, 193, 0, 0, 38, 192, 0, 224, 74, 65, 0, 0, 0, 128, 255, 127, 255, 191, 244, 78, 145, 193, 0, 0, 38, 192, 0, 224, 10, 65, 0, 0, 0, 128, 255, 127, 255, 191, 232, 157, 114, 193, 0, 0, 38, 192, 0, 224, 10, 65, 0, 128, 0, 0, 255, 127, 0, 192, 244, 78, 145, 193, 0, 0, 38, 192, 0, 224, 10, 65, 0, 128, 0, 0, 255, 127, 0, 192, 244, 78, 145, 193, 0, 0, 38, 192, 0, 224, 74, 65, 0, 128, 0, 0, 255, 127, 0, 192, 232, 157, 114, 193, 0, 0, 38, 192, 0, 224, 74, 65, 0, 128, 0, 0, 255, 127, 0, 192, 232, 157, 114, 193, 0, 0, 244, 63, 0, 224, 74, 65, 255, 255, 0, 128, 255, 127, 0, 192, 232, 157, 114, 193, 0, 0, 38, 192, 0, 224, 10, 65, 255, 255, 0, 128, 255, 127, 0, 192, 232, 157, 114, 193, 0, 0, 38, 192, 0, 224, 74, 65, 255, 255, 0, 128, 255, 127, 0, 192, 232, 157, 114, 193, 0, 0, 244, 63, 0, 224, 74, 65, 255, 127, 255, 127, 255, 255, 255, 191, 232, 157, 114, 193, 0, 0, 38, 192, 0, 224, 74, 65, 255, 127, 255, 127, 255, 255, 255, 191, 244, 78, 145, 193, 0, 0, 38, 192, 0, 224, 74, 65, 255, 127, 255, 127, 255, 255, 255, 191, 244, 78, 145, 193, 0, 0, 244, 63, 0, 224, 74, 65, 255, 127, 255, 127, 255, 255, 255, 191, 232, 157, 82, 193, 0, 0, 26, 64, 0, 224, 74, 65, 27, 199, 255, 255, 255, 255, 0, 192, 232, 157, 82, 193, 0, 0, 38, 192, 0, 224, 10, 65, 27, 199, 255, 255, 255, 255, 0, 192, 232, 157, 34, 193, 0, 0, 38, 192, 0, 224, 10, 65, 27, 199, 255, 255, 255, 255, 0, 192, 232, 157, 34, 193, 0, 0, 26, 64, 0, 224, 74, 65, 27, 199, 255, 255, 255, 255, 0, 192, 232, 157, 82, 193, 0, 0, 26, 64, 0, 224, 74, 65, 0, 0, 0, 128, 255, 127, 255, 191, 232, 157, 82, 193, 0, 0, 38, 192, 0, 224, 74, 65, 0, 0, 0, 128, 255, 127, 255, 191, 232, 157, 82, 193, 0, 0, 38, 192, 0, 224, 10, 65, 0, 0, 0, 128, 255, 127, 255, 191, 232, 157, 34, 193, 0, 0, 38, 192, 0, 224, 10, 65, 0, 128, 0, 0, 255, 127, 0, 192, 232, 157, 82, 193, 0, 0, 38, 192, 0, 224, 10, 65, 0, 128, 0, 0, 255, 127, 0, 192, 232, 157, 82, 193, 0, 0, 38, 192, 0, 224, 74, 65, 0, 128, 0, 0, 255, 127, 0, 192, 232, 157, 34, 193, 0, 0, 38, 192, 0, 224, 74, 65, 0, 128, 0, 0, 255, 127, 0, 192, 232, 157, 34, 193, 0, 0, 26, 64, 0, 224, 74, 65, 255, 255, 0, 128, 255, 127, 0, 192, 232, 157, 34, 193, 0, 0, 38, 192, 0, 224, 10, 65, 255, 255, 0, 128, 255, 127, 0, 192, 232, 157, 34, 193, 0, 0, 38, 192, 0, 224, 74, 65, 255, 255, 0, 128, 255, 127, 0, 192, 232, 157, 34, 193, 0, 0, 26, 64, 0, 224, 74, 65, 255, 127, 255, 127, 255, 255, 255, 191, 232, 157, 34, 193, 0, 0, 38, 192, 0, 224, 74, 65, 255, 127, 255, 127, 255, 255, 255, 191, 232, 157, 82, 193, 0, 0, 38, 192, 0, 224, 74, 65, 255, 127, 255, 127, 255, 255, 255, 191, 232, 157, 82, 193, 0, 0, 26, 64, 0, 224, 74, 65, 255, 127, 255, 127, 255, 255, 255, 191, 232, 157, 2, 193, 0, 0, 204, 191, 0, 224, 10, 65, 255, 255, 255, 255, 255, 255, 0, 192, 232, 157, 2, 193, 0, 0, 38, 192, 0, 224, 10, 65, 255, 255, 255, 255, 255, 255, 0, 192, 209, 59, 165, 192, 0, 0, 38, 192, 0, 224, 10, 65, 255, 255, 255, 255, 255, 255, 0, 192, 209, 59, 165, 192, 0, 0, 204, 191, 0, 224, 10, 65, 255, 255, 255, 255, 255, 255, 0, 192, 232, 157, 2, 193, 0, 0, 204, 191, 0, 224, 10, 65, 0, 0, 0, 128, 255, 127, 255, 191, 232, 157, 2, 193, 0, 0, 204, 191, 0, 224, 74, 65, 0, 0, 0, 128, 255, 127, 255, 191, 232, 157, 2, 193, 0, 0, 38, 192, 0, 224, 74, 65, 0, 0, 0, 128, 255, 127, 255, 191, 232, 157, 2, 193, 0, 0, 38, 192, 0, 224, 10, 65, 0, 0, 0, 128, 255, 127, 255, 191, 209, 59, 165, 192, 0, 0, 38, 192, 0, 224, 10, 65, 0, 128, 0, 0, 255, 127, 0, 192, 232, 157, 2, 193, 0, 0, 38, 192, 0, 224, 10, 65, 0, 128, 0, 0, 255, 127, 0, 192, 232, 157, 2, 193, 0, 0, 38, 192, 0, 224, 74, 65, 0, 128, 0, 0, 255, 127, 0, 192, 209, 59, 165, 192, 0, 0, 38, 192, 0, 224, 74, 65, 0, 128, 0, 0, 255, 127, 0, 192, 209, 59, 165, 192, 0, 0, 204, 191, 0, 224, 10, 65, 0, 128, 255, 255, 255, 127, 255, 191, 209, 59, 165, 192, 0, 0, 204, 191, 0, 224, 74, 65, 0, 128, 255, 255, 255, 127, 255, 191, 232, 157, 2, 193, 0, 0, 204, 191, 0, 224, 74, 65, 0, 128, 255, 255, 255, 127, 255, 191, 232, 157, 2, 193, 0, 0, 204, 191, 0, 224, 10, 65, 0, 128, 255, 255, 255, 127, 255, 191, 209, 59, 165, 192, 0, 0, 204, 191, 0, 224, 10, 65, 255, 255, 0, 128, 255, 127, 0, 192, 209, 59, 165, 192, 0, 0, 38, 192, 0, 224, 10, 65, 255, 255, 0, 128, 255, 127, 0, 192, 209, 59, 165, 192, 0, 0, 38, 192, 0, 224, 74, 65, 255, 255, 0, 128, 255, 127, 0, 192, 209, 59, 165, 192, 0, 0, 204, 191, 0, 224, 74, 65, 255, 255, 0, 128, 255, 127, 0, 192, 232, 157, 2, 193, 0, 0, 204, 191, 0, 224, 74, 65, 255, 127, 255, 127, 255, 255, 255, 191, 209, 59, 165, 192, 0, 0, 204, 191, 0, 224, 74, 65, 255, 127, 255, 127, 255, 255, 255, 191, 209, 59, 165, 192, 0, 0, 38, 192, 0, 224, 74, 65, 255, 127, 255, 127, 255, 255, 255, 191, 232, 157, 2, 193, 0, 0, 38, 192, 0, 224, 74, 65, 255, 127, 255, 127, 255, 255, 255, 191, 24, 122, 39, 190, 0, 0, 24, 191, 0, 224, 10, 65, 255, 255, 255, 255, 255, 255, 0, 192, 24, 122, 39, 190, 0, 0, 38, 192, 0, 224, 10, 65, 255, 255, 255, 255, 255, 255, 0, 192, 95, 136, 53, 64, 0, 0, 38, 192, 0, 224, 10, 65, 255, 255, 255, 255, 255, 255, 0, 192, 95, 136, 53, 64, 0, 0, 24, 191, 0, 224, 10, 65, 255, 255, 255, 255, 255, 255, 0, 192, 24, 122, 39, 190, 0, 0, 24, 191, 0, 224, 10, 65, 0, 0, 0, 128, 255, 127, 255, 191, 24, 122, 39, 190, 0, 0, 24, 191, 0, 224, 74, 65, 0, 0, 0, 128, 255, 127, 255, 191, 24, 122, 39, 190, 0, 0, 38, 192, 0, 224, 74, 65, 0, 0, 0, 128, 255, 127, 255, 191, 24, 122, 39, 190, 0, 0, 38, 192, 0, 224, 10, 65, 0, 0, 0, 128, 255, 127, 255, 191, 95, 136, 53, 64, 0, 0, 38, 192, 0, 224, 10, 65, 0, 128, 0, 0, 255, 127, 0, 192, 24, 122, 39, 190, 0, 0, 38, 192, 0, 224, 10, 65, 0, 128, 0, 0, 255, 127, 0, 192, 24, 122, 39, 190, 0, 0, 38, 192, 0, 224, 74, 65, 0, 128, 0, 0, 255, 127, 0, 192, 95, 136, 53, 64, 0, 0, 38, 192, 0, 224, 74, 65, 0, 128, 0, 0, 255, 127, 0, 192, 95, 136, 53, 64, 0, 0, 24, 191, 0, 224, 10, 65, 0, 128, 255, 255, 255, 127, 255, 191, 95, 136, 53, 64, 0, 0, 24, 191, 0, 224, 74, 65, 0, 128, 255, 255, 255, 127, 255, 191, 24, 122, 39, 190, 0, 0, 24, 191, 0, 224, 74, 65, 0, 128, 255, 255, 255, 127, 255, 191, 24, 122, 39, 190, 0, 0, 24, 191, 0, 224, 10, 65, 0, 128, 255, 255, 255, 127, 255, 191, 95, 136, 53, 64, 0, 0, 24, 191, 0, 224, 10, 65, 255, 255, 0, 128, 255, 127, 0, 192, 95, 136, 53, 64, 0, 0, 38, 192, 0, 224, 10, 65, 255, 255, 0, 128, 255, 127, 0, 192, 95, 136, 53, 64, 0, 0, 38, 192, 0, 224, 74, 65, 255, 255, 0, 128, 255, 127, 0, 192, 95, 136, 53, 64, 0, 0, 24, 191, 0, 224, 74, 65, 255, 255, 0, 128, 255, 127, 0, 192, 24, 122, 39, 190, 0, 0, 24, 191, 0, 224, 74, 65, 255, 127, 255, 127, 255, 255, 255, 191, 95, 136, 53, 64, 0, 0, 24, 191, 0, 224, 74, 65, 255, 127, 255, 127, 255, 255, 255, 191, 95, 136, 53, 64, 0, 0, 38, 192, 0, 224, 74, 65, 255, 127, 255, 127, 255, 255, 255, 191, 24, 122, 39, 190, 0, 0, 38, 192, 0, 224, 74, 65, 255, 127, 255, 127, 255, 255, 255, 191, 209, 59, 133, 192, 0, 0, 140, 191, 0, 224, 10, 65, 255, 255, 255, 255, 255, 255, 0, 192, 209, 59, 133, 192, 0, 0, 38, 192, 0, 224, 10, 65, 255, 255, 255, 255, 255, 255, 0, 192, 67, 239, 148, 191, 0, 0, 38, 192, 0, 224, 10, 65, 255, 255, 255, 255, 255, 255, 0, 192, 67, 239, 148, 191, 0, 0, 140, 191, 0, 224, 10, 65, 255, 255, 255, 255, 255, 255, 0, 192, 209, 59, 133, 192, 0, 0, 140, 191, 0, 224, 10, 65, 0, 0, 0, 128, 255, 127, 255, 191, 209, 59, 133, 192, 0, 0, 140, 191, 0, 224, 74, 65, 0, 0, 0, 128, 255, 127, 255, 191, 209, 59, 133, 192, 0, 0, 38, 192, 0, 224, 74, 65, 0, 0, 0, 128, 255, 127, 255, 191, 209, 59, 133, 192, 0, 0, 38, 192, 0, 224, 10, 65, 0, 0, 0, 128, 255, 127, 255, 191, 67, 239, 148, 191, 0, 0, 38, 192, 0, 224, 10, 65, 0, 128, 0, 0, 255, 127, 0, 192, 209, 59, 133, 192, 0, 0, 38, 192, 0, 224, 10, 65, 0, 128, 0, 0, 255, 127, 0, 192, 209, 59, 133, 192, 0, 0, 38, 192, 0, 224, 74, 65, 0, 128, 0, 0, 255, 127, 0, 192, 67, 239, 148, 191, 0, 0, 38, 192, 0, 224, 74, 65, 0, 128, 0, 0, 255, 127, 0, 192, 67, 239, 148, 191, 0, 0, 140, 191, 0, 224, 10, 65, 0, 128, 255, 255, 255, 127, 255, 191, 67, 239, 148, 191, 0, 0, 140, 191, 0, 224, 74, 65, 0, 128, 255, 255, 255, 127, 255, 191, 209, 59, 133, 192, 0, 0, 140, 191, 0, 224, 74, 65, 0, 128, 255, 255, 255, 127, 255, 191, 209, 59, 133, 192, 0, 0, 140, 191, 0, 224, 10, 65, 0, 128, 255, 255, 255, 127, 255, 191, 67, 239, 148, 191, 0, 0, 140, 191, 0, 224, 10, 65, 255, 255, 0, 128, 255, 127, 0, 192, 67, 239, 148, 191, 0, 0, 38, 192, 0, 224, 10, 65, 255, 255, 0, 128, 255, 127, 0, 192, 67, 239, 148, 191, 0, 0, 38, 192, 0, 224, 74, 65, 255, 255, 0, 128, 255, 127, 0, 192, 67, 239, 148, 191, 0, 0, 140, 191, 0, 224, 74, 65, 255, 255, 0, 128, 255, 127, 0, 192, 209, 59, 133, 192, 0, 0, 140, 191, 0, 224, 74, 65, 255, 127, 255, 127, 255, 255, 255, 191, 67, 239, 148, 191, 0, 0, 140, 191, 0, 224, 74, 65, 255, 127, 255, 127, 255, 255, 255, 191, 67, 239, 148, 191, 0, 0, 38, 192, 0, 224, 74, 65, 255, 127, 255, 127, 255, 255, 255, 191, 209, 59, 133, 192, 0, 0, 38, 192, 0, 224, 74, 65, 255, 127, 255, 127, 255, 255, 255, 191, 95, 136, 117, 64, 0, 0, 192, 189, 0, 224, 10, 65, 255, 255, 255, 255, 255, 255, 0, 192, 95, 136, 117, 64, 0, 0, 38, 192, 0, 224, 10, 65, 255, 255, 255, 255, 255, 255, 0, 192, 47, 196, 218, 64, 0, 0, 38, 192, 0, 224, 10, 65, 255, 255, 255, 255, 255, 255, 0, 192, 47, 196, 218, 64, 0, 0, 192, 189, 0, 224, 10, 65, 255, 255, 255, 255, 255, 255, 0, 192, 95, 136, 117, 64, 0, 0, 192, 189, 0, 224, 10, 65, 0, 0, 0, 128, 255, 127, 255, 191, 95, 136, 117, 64, 0, 0, 192, 189, 0, 224, 74, 65, 0, 0, 0, 128, 255, 127, 255, 191, 95, 136, 117, 64, 0, 0, 38, 192, 0, 224, 74, 65, 0, 0, 0, 128, 255, 127, 255, 191, 95, 136, 117, 64, 0, 0, 38, 192, 0, 224, 10, 65, 0, 0, 0, 128, 255, 127, 255, 191, 47, 196, 218, 64, 0, 0, 38, 192, 0, 224, 10, 65, 0, 128, 0, 0, 255, 127, 0, 192, 95, 136, 117, 64, 0, 0, 38, 192, 0, 224, 10, 65, 0, 128, 0, 0, 255, 127, 0, 192, 95, 136, 117, 64, 0, 0, 38, 192, 0, 224, 74, 65, 0, 128, 0, 0, 255, 127, 0, 192, 47, 196, 218, 64, 0, 0, 38, 192, 0, 224, 74, 65, 0, 128, 0, 0, 255, 127, 0, 192, 47, 196, 218, 64, 0, 0, 192, 189, 0, 224, 10, 65, 0, 128, 255, 255, 255, 127, 255, 191, 47, 196, 218, 64, 0, 0, 192, 189, 0, 224, 74, 65, 0, 128, 255, 255, 255, 127, 255, 191, 95, 136, 117, 64, 0, 0, 192, 189, 0, 224, 74, 65, 0, 128, 255, 255, 255, 127, 255, 191, 95, 136, 117, 64, 0, 0, 192, 189, 0, 224, 10, 65, 0, 128, 255, 255, 255, 127, 255, 191, 47, 196, 218, 64, 0, 0, 192, 189, 0, 224, 10, 65, 255, 255, 0, 128, 255, 127, 0, 192, 47, 196, 218, 64, 0, 0, 38, 192, 0, 224, 10, 65, 255, 255, 0, 128, 255, 127, 0, 192, 47, 196, 218, 64, 0, 0, 38, 192, 0, 224, 74, 65, 255, 255, 0, 128, 255, 127, 0, 192, 47, 196, 218, 64, 0, 0, 192, 189, 0, 224, 74, 65, 255, 255, 0, 128, 255, 127, 0, 192, 95, 136, 117, 64, 0, 0, 192, 189, 0, 224, 74, 65, 255, 127, 255, 127, 255, 255, 255, 191, 47, 196, 218, 64, 0, 0, 192, 189, 0, 224, 74, 65, 255, 127, 255, 127, 255, 255, 255, 191, 47, 196, 218, 64, 0, 0, 38, 192, 0, 224, 74, 65, 255, 127, 255, 127, 255, 255, 255, 191, 95, 136, 117, 64, 0, 0, 38, 192, 0, 224, 74, 65, 255, 127, 255, 127, 255, 255, 255, 191, 244, 78, 185, 193, 0, 0, 180, 63, 0, 224, 74, 65, 255, 191, 255, 255, 255, 127, 255, 191, 244, 78, 185, 193, 0, 0, 38, 192, 0, 224, 10, 65, 255, 191, 255, 255, 255, 127, 255, 191, 244, 78, 161, 193, 0, 0, 38, 192, 0, 224, 10, 65, 255, 191, 255, 255, 255, 127, 255, 191, 244, 78, 161, 193, 0, 0, 180, 63, 0, 224, 74, 65, 255, 191, 255, 255, 255, 127, 255, 191, 244, 78, 185, 193, 0, 0, 180, 63, 0, 224, 74, 65, 0, 0, 0, 128, 255, 127, 255, 191, 244, 78, 185, 193, 0, 0, 38, 192, 0, 224, 74, 65, 0, 0, 0, 128, 255, 127, 255, 191, 244, 78, 185, 193, 0, 0, 38, 192, 0, 224, 10, 65, 0, 0, 0, 128, 255, 127, 255, 191, 244, 78, 161, 193, 0, 0, 38, 192, 0, 224, 10, 65, 0, 128, 0, 0, 255, 127, 0, 192, 244, 78, 185, 193, 0, 0, 38, 192, 0, 224, 10, 65, 0, 128, 0, 0, 255, 127, 0, 192, 244, 78, 185, 193, 0, 0, 38, 192, 0, 224, 74, 65, 0, 128, 0, 0, 255, 127, 0, 192, 244, 78, 161, 193, 0, 0, 38, 192, 0, 224, 74, 65, 0, 128, 0, 0, 255, 127, 0, 192, 244, 78, 161, 193, 0, 0, 180, 63, 0, 224, 74, 65, 255, 255, 0, 128, 255, 127, 0, 192, 244, 78, 161, 193, 0, 0, 38, 192, 0, 224, 10, 65, 255, 255, 0, 128, 255, 127, 0, 192, 244, 78, 161, 193, 0, 0, 38, 192, 0, 224, 74, 65, 255, 255, 0, 128, 255, 127, 0, 192, 244, 78, 161, 193, 0, 0, 180, 63, 0, 224, 74, 65, 255, 127, 255, 127, 255, 255, 255, 191, 244, 78, 161, 193, 0, 0, 38, 192, 0, 224, 74, 65, 255, 127, 255, 127, 255, 255, 255, 191, 244, 78, 185, 193, 0, 0, 38, 192, 0, 224, 74, 65, 255, 127, 255, 127, 255, 255, 255, 191, 244, 78, 185, 193, 0, 0, 180, 63, 0, 224, 74, 65, 255, 127, 255, 127, 255, 255, 255, 191, 244, 78, 209, 193, 0, 0, 104, 63, 0, 224, 10, 65, 255, 255, 255, 255, 255, 255, 0, 192, 244, 78, 209, 193, 0, 0, 192, 189, 0, 224, 10, 65, 255, 255, 255, 255, 255, 255, 0, 192, 244, 78, 201, 193, 0, 0, 192, 189, 0, 224, 10, 65, 255, 255, 255, 255, 255, 255, 0, 192, 244, 78, 201, 193, 0, 0, 104, 63, 0, 224, 10, 65, 255, 255, 255, 255, 255, 255, 0, 192, 244, 78, 209, 193, 0, 0, 104, 63, 0, 224, 10, 65, 0, 0, 0, 128, 255, 127, 255, 191, 244, 78, 209, 193, 0, 0, 104, 63, 0, 224, 26, 65, 0, 0, 0, 128, 255, 127, 255, 191, 244, 78, 209, 193, 0, 0, 192, 189, 0, 224, 26, 65, 0, 0, 0, 128, 255, 127, 255, 191, 244, 78, 209, 193, 0, 0, 192, 189, 0, 224, 10, 65, 0, 0, 0, 128, 255, 127, 255, 191, 244, 78, 201, 193, 0, 0, 192, 189, 0, 224, 10, 65, 0, 128, 0, 0, 255, 127, 0, 192, 244, 78, 209, 193, 0, 0, 192, 189, 0, 224, 10, 65, 0, 128, 0, 0, 255, 127, 0, 192, 244, 78, 209, 193, 0, 0, 192, 189, 0, 224, 26, 65, 0, 128, 0, 0, 255, 127, 0, 192, 244, 78, 201, 193, 0, 0, 192, 189, 0, 224, 26, 65, 0, 128, 0, 0, 255, 127, 0, 192, 244, 78, 201, 193, 0, 0, 104, 63, 0, 224, 10, 65, 0, 128, 255, 255, 255, 127, 255, 191, 244, 78, 201, 193, 0, 0, 104, 63, 0, 224, 26, 65, 0, 128, 255, 255, 255, 127, 255, 191, 244, 78, 209, 193, 0, 0, 104, 63, 0, 224, 26, 65, 0, 128, 255, 255, 255, 127, 255, 191, 244, 78, 209, 193, 0, 0, 104, 63, 0, 224, 10, 65, 0, 128, 255, 255, 255, 127, 255, 191, 244, 78, 201, 193, 0, 0, 104, 63, 0, 224, 10, 65, 255, 255, 0, 128, 255, 127, 0, 192, 244, 78, 201, 193, 0, 0, 192, 189, 0, 224, 10, 65, 255, 255, 0, 128, 255, 127, 0, 192, 244, 78, 201, 193, 0, 0, 192, 189, 0, 224, 26, 65, 255, 255, 0, 128, 255, 127, 0, 192, 244, 78, 201, 193, 0, 0, 104, 63, 0, 224, 26, 65, 255, 255, 0, 128, 255, 127, 0, 192, 244, 78, 209, 193, 0, 0, 104, 63, 0, 224, 26, 65, 255, 127, 255, 127, 255, 255, 255, 191, 244, 78, 201, 193, 0, 0, 104, 63, 0, 224, 26, 65, 255, 127, 255, 127, 255, 255, 255, 191, 244, 78, 201, 193, 0, 0, 192, 189, 0, 224, 26, 65, 255, 127, 255, 127, 255, 255, 255, 191, 244, 78, 209, 193, 0, 0, 192, 189, 0, 224, 26, 65, 255, 127, 255, 127, 255, 255, 255, 191, 47, 196, 250, 64, 0, 0, 208, 62, 0, 224, 10, 65, 255, 255, 255, 255, 255, 255, 0, 192, 47, 196, 250, 64, 0, 0, 38, 192, 0, 224, 10, 65, 255, 255, 255, 255, 255, 255, 0, 192, 24, 98, 45, 65, 0, 0, 38, 192, 0, 224, 10, 65, 255, 255, 255, 255, 255, 255, 0, 192, 24, 98, 45, 65, 0, 0, 208, 62, 0, 224, 10, 65, 255, 255, 255, 255, 255, 255, 0, 192, 47, 196, 250, 64, 0, 0, 208, 62, 0, 224, 10, 65, 0, 0, 0, 128, 255, 127, 255, 191, 47, 196, 250, 64, 0, 0, 208, 62, 0, 224, 74, 65, 0, 0, 0, 128, 255, 127, 255, 191, 47, 196, 250, 64, 0, 0, 38, 192, 0, 224, 74, 65, 0, 0, 0, 128, 255, 127, 255, 191, 47, 196, 250, 64, 0, 0, 38, 192, 0, 224, 10, 65, 0, 0, 0, 128, 255, 127, 255, 191, 24, 98, 45, 65, 0, 0, 38, 192, 0, 224, 10, 65, 0, 128, 0, 0, 255, 127, 0, 192, 47, 196, 250, 64, 0, 0, 38, 192, 0, 224, 10, 65, 0, 128, 0, 0, 255, 127, 0, 192, 47, 196, 250, 64, 0, 0, 38, 192, 0, 224, 74, 65, 0, 128, 0, 0, 255, 127, 0, 192, 24, 98, 45, 65, 0, 0, 38, 192, 0, 224, 74, 65, 0, 128, 0, 0, 255, 127, 0, 192, 24, 98, 45, 65, 0, 0, 208, 62, 0, 224, 10, 65, 0, 128, 255, 255, 255, 127, 255, 191, 24, 98, 45, 65, 0, 0, 208, 62, 0, 224, 74, 65, 0, 128, 255, 255, 255, 127, 255, 191, 47, 196, 250, 64, 0, 0, 208, 62, 0, 224, 74, 65, 0, 128, 255, 255, 255, 127, 255, 191, 47, 196, 250, 64, 0, 0, 208, 62, 0, 224, 10, 65, 0, 128, 255, 255, 255, 127, 255, 191, 24, 98, 45, 65, 0, 0, 208, 62, 0, 224, 10, 65, 255, 255, 0, 128, 255, 127, 0, 192, 24, 98, 45, 65, 0, 0, 38, 192, 0, 224, 10, 65, 255, 255, 0, 128, 255, 127, 0, 192, 24, 98, 45, 65, 0, 0, 38, 192, 0, 224, 74, 65, 255, 255, 0, 128, 255, 127, 0, 192, 24, 98, 45, 65, 0, 0, 208, 62, 0, 224, 74, 65, 255, 255, 0, 128, 255, 127, 0, 192, 47, 196, 250, 64, 0, 0, 208, 62, 0, 224, 74, 65, 255, 127, 255, 127, 255, 255, 255, 191, 24, 98, 45, 65, 0, 0, 208, 62, 0, 224, 74, 65, 255, 127, 255, 127, 255, 255, 255, 191, 24, 98, 45, 65, 0, 0, 38, 192, 0, 224, 74, 65, 255, 127, 255, 127, 255, 255, 255, 191, 47, 196, 250, 64, 0, 0, 38, 192, 0, 224, 74, 65, 255, 127, 255, 127, 255, 255, 255, 191) +}, { +"aabb": AABB(-0.426691, -2.59375, -15.5524, 11.0933, 4.00001, 8.7141), +"attribute_data": PackedByteArray(115, 101, 128, 64, 0, 0, 128, 191, 9, 80, 90, 63, 204, 98, 31, 61, 122, 55, 62, 64, 0, 0, 128, 191, 45, 218, 70, 63, 204, 98, 31, 61, 122, 55, 62, 64, 0, 0, 0, 0, 45, 218, 70, 63, 160, 239, 37, 60, 115, 101, 128, 64, 0, 0, 0, 0, 9, 80, 90, 63, 160, 239, 37, 60, 146, 36, 198, 190, 255, 255, 151, 192, 76, 96, 121, 63, 66, 104, 125, 63, 76, 99, 65, 190, 0, 0, 152, 192, 76, 96, 121, 63, 211, 9, 118, 63, 92, 99, 65, 190, 0, 0, 194, 192, 112, 234, 101, 63, 211, 9, 118, 63, 154, 36, 198, 190, 255, 255, 193, 192, 112, 234, 101, 63, 66, 104, 125, 63, 115, 101, 128, 64, 0, 0, 128, 191, 123, 206, 70, 59, 248, 209, 66, 63, 115, 101, 128, 64, 0, 0, 0, 0, 152, 206, 70, 59, 137, 115, 59, 63, 123, 55, 62, 64, 0, 0, 0, 0, 82, 229, 161, 61, 137, 115, 59, 63, 123, 55, 62, 64, 0, 0, 128, 191, 82, 229, 161, 61, 248, 209, 66, 63), +"format": 4151, +"index_count": 18, +"index_data": PackedByteArray(0, 0, 1, 0, 2, 0, 0, 0, 2, 0, 3, 0, 4, 0, 5, 0, 6, 0, 4, 0, 6, 0, 7, 0, 8, 0, 9, 0, 10, 0, 8, 0, 10, 0, 11, 0), +"material": SubResource("StandardMaterial3D_8xybu"), +"primitive": 3, +"vertex_count": 12, +"vertex_data": PackedByteArray(75, 170, 10, 65, 0, 0, 180, 63, 123, 214, 120, 193, 0, 0, 37, 209, 255, 255, 0, 192, 76, 119, 218, 190, 0, 0, 180, 63, 123, 214, 36, 193, 0, 0, 37, 209, 255, 255, 0, 192, 76, 119, 218, 190, 0, 0, 38, 192, 123, 214, 36, 193, 0, 0, 37, 209, 255, 255, 0, 192, 75, 170, 10, 65, 0, 0, 38, 192, 123, 214, 120, 193, 0, 0, 37, 209, 255, 255, 0, 192, 76, 119, 218, 190, 0, 0, 38, 192, 123, 214, 36, 193, 0, 128, 0, 0, 217, 174, 0, 192, 45, 98, 201, 63, 0, 0, 38, 192, 10, 211, 218, 192, 0, 128, 0, 0, 217, 174, 0, 192, 75, 170, 42, 65, 0, 0, 38, 192, 133, 105, 65, 193, 0, 128, 0, 0, 217, 174, 0, 192, 75, 170, 10, 65, 0, 0, 38, 192, 123, 214, 120, 193, 0, 128, 0, 0, 217, 174, 0, 192, 75, 170, 42, 65, 0, 0, 180, 63, 133, 105, 65, 193, 217, 174, 255, 127, 255, 255, 255, 191, 75, 170, 42, 65, 0, 0, 38, 192, 133, 105, 65, 193, 217, 174, 255, 127, 255, 255, 255, 191, 45, 98, 201, 63, 0, 0, 38, 192, 10, 211, 218, 192, 217, 174, 255, 127, 255, 255, 255, 191, 45, 98, 201, 63, 0, 0, 180, 63, 10, 211, 218, 192, 217, 174, 255, 127, 255, 255, 255, 191) +}, { +"aabb": AABB(-0.426691, -2.59375, -15.5524, 11.0933, 4.00001, 8.7141), +"attribute_data": PackedByteArray(209, 30, 0, 193, 96, 34, 129, 191, 253, 198, 119, 61, 148, 48, 75, 63, 209, 30, 0, 193, 224, 141, 43, 60, 214, 94, 1, 61, 148, 48, 75, 63, 0, 0, 224, 192, 224, 141, 43, 60, 214, 94, 1, 61, 38, 210, 67, 63, 0, 0, 224, 192, 96, 34, 129, 191, 253, 198, 119, 61, 38, 210, 67, 63, 102, 210, 2, 192, 2, 0, 64, 192, 180, 49, 48, 63, 104, 189, 81, 63, 107, 210, 2, 192, 222, 169, 127, 192, 180, 49, 48, 63, 203, 92, 62, 63, 35, 200, 119, 191, 223, 169, 127, 192, 54, 152, 55, 63, 203, 92, 62, 63, 14, 200, 119, 191, 2, 0, 64, 192, 54, 152, 55, 63, 104, 189, 81, 63, 65, 118, 224, 192, 20, 110, 128, 191, 139, 127, 54, 63, 0, 254, 52, 63, 0, 0, 192, 192, 20, 110, 128, 191, 139, 127, 54, 63, 145, 159, 45, 63, 0, 0, 192, 192, 0, 0, 0, 0, 9, 25, 47, 63, 145, 159, 45, 63, 65, 118, 224, 192, 0, 0, 0, 0, 9, 25, 47, 63, 0, 254, 52, 63), +"format": 4151, +"index_count": 18, +"index_data": PackedByteArray(0, 0, 1, 0, 2, 0, 0, 0, 2, 0, 3, 0, 4, 0, 5, 0, 6, 0, 4, 0, 6, 0, 7, 0, 8, 0, 9, 0, 10, 0, 8, 0, 10, 0, 11, 0), +"material": SubResource("StandardMaterial3D_rri1d"), +"primitive": 3, +"vertex_count": 12, +"vertex_data": PackedByteArray(75, 170, 10, 65, 0, 0, 180, 63, 123, 214, 120, 193, 255, 255, 217, 174, 255, 127, 0, 192, 75, 170, 10, 65, 0, 0, 38, 192, 123, 214, 120, 193, 255, 255, 217, 174, 255, 127, 0, 192, 75, 170, 42, 65, 0, 0, 38, 192, 133, 105, 65, 193, 255, 255, 217, 174, 255, 127, 0, 192, 75, 170, 42, 65, 0, 0, 180, 63, 133, 105, 65, 193, 255, 255, 217, 174, 255, 127, 0, 192, 76, 119, 218, 190, 0, 0, 180, 63, 123, 214, 36, 193, 0, 128, 255, 255, 217, 174, 255, 191, 75, 170, 10, 65, 0, 0, 180, 63, 123, 214, 120, 193, 0, 128, 255, 255, 217, 174, 255, 191, 75, 170, 42, 65, 0, 0, 180, 63, 133, 105, 65, 193, 0, 128, 255, 255, 217, 174, 255, 191, 45, 98, 201, 63, 0, 0, 180, 63, 10, 211, 218, 192, 0, 128, 255, 255, 217, 174, 255, 191, 76, 119, 218, 190, 0, 0, 180, 63, 123, 214, 36, 193, 217, 46, 255, 127, 255, 127, 255, 191, 45, 98, 201, 63, 0, 0, 180, 63, 10, 211, 218, 192, 217, 46, 255, 127, 255, 127, 255, 191, 45, 98, 201, 63, 0, 0, 38, 192, 10, 211, 218, 192, 217, 46, 255, 127, 255, 127, 255, 191, 76, 119, 218, 190, 0, 0, 38, 192, 123, 214, 36, 193, 217, 46, 255, 127, 255, 127, 255, 191) +}] + +[sub_resource type="ConcavePolygonShape3D" id="ConcavePolygonShape3D_2ub2n"] +data = PackedVector3Array(-31.1636, -2.5938, -36.3203, -31.1636, -4.5938, -36.3203, 52.8365, -4.5938, -36.3203, -31.1636, -2.5938, -36.3203, 52.8365, -4.5938, -36.3203, 52.8365, -2.5938, -36.3203, -31.1636, -2.5938, -36.3203, -31.1636, -2.5938, 13.6797, -31.1636, -4.5938, 13.6797, -31.1636, -2.5938, -36.3203, -31.1636, -4.5938, 13.6797, -31.1636, -4.5938, -36.3203, 52.8365, -4.5938, -36.3203, -31.1636, -4.5938, -36.3203, -31.1636, -4.5938, 13.6797, 52.8365, -4.5938, -36.3203, -31.1636, -4.5938, 13.6797, 52.8365, -4.5938, 13.6797, 52.8365, -2.5938, -36.3203, 52.8365, -2.5938, 13.6797, -31.1636, -2.5938, 13.6797, 52.8365, -2.5938, -36.3203, -31.1636, -2.5938, 13.6797, -31.1636, -2.5938, -36.3203, 52.8365, -2.5938, -36.3203, 52.8365, -4.5938, -36.3203, 52.8365, -4.5938, 13.6797, 52.8365, -2.5938, -36.3203, 52.8365, -4.5938, 13.6797, 52.8365, -2.5938, 13.6797, -31.1636, -2.5938, 13.6797, 52.8365, -2.5938, 13.6797, 52.8365, -4.5938, 13.6797, -31.1636, -2.5938, 13.6797, 52.8365, -4.5938, 13.6797, -31.1636, -4.5938, 13.6797, -31.1636, 10.4063, -36.3203, -31.1636, -2.5938, -36.3203, 52.8365, -2.5938, -36.3203, -31.1636, 10.4063, -36.3203, 52.8365, -2.5938, -36.3203, 52.8365, 10.4063, -36.3203, -31.1636, 10.4063, -36.3203, -31.1636, 10.4063, -35.3203, -31.1636, -2.5938, -35.3203, -31.1636, 10.4063, -36.3203, -31.1636, -2.5938, -35.3203, -31.1636, -2.5938, -36.3203, 52.8365, -2.5938, -36.3203, -31.1636, -2.5938, -36.3203, -31.1636, -2.5938, -35.3203, 52.8365, -2.5938, -36.3203, -31.1636, -2.5938, -35.3203, 52.8365, -2.5938, -35.3203, 52.8365, 10.4063, -36.3203, 52.8365, 10.4063, -35.3203, -31.1636, 10.4063, -35.3203, 52.8365, 10.4063, -36.3203, -31.1636, 10.4063, -35.3203, -31.1636, 10.4063, -36.3203, 52.8365, 10.4063, -36.3203, 52.8365, -2.5938, -36.3203, 52.8365, -2.5938, -35.3203, 52.8365, 10.4063, -36.3203, 52.8365, -2.5938, -35.3203, 52.8365, 10.4063, -35.3203, -31.1636, 10.4063, -35.3203, 52.8365, 10.4063, -35.3203, 52.8365, -2.5938, -35.3203, -31.1636, 10.4063, -35.3203, 52.8365, -2.5938, -35.3203, -31.1636, -2.5938, -35.3203, -31.1636, 10.4063, -35.3203, -31.1636, -2.5938, -35.3203, -30.1636, -2.5938, -35.3203, -31.1636, 10.4063, -35.3203, -30.1636, -2.5938, -35.3203, -30.1636, 10.4063, -35.3203, -31.1636, 10.4063, -35.3203, -31.1636, 10.4063, 13.6797, -31.1636, -2.5938, 13.6797, -31.1636, 10.4063, -35.3203, -31.1636, -2.5938, 13.6797, -31.1636, -2.5938, -35.3203, -30.1636, -2.5938, -35.3203, -31.1636, -2.5938, -35.3203, -31.1636, -2.5938, 13.6797, -30.1636, -2.5938, -35.3203, -31.1636, -2.5938, 13.6797, -30.1636, -2.5938, 13.6797, -30.1636, 10.4063, -35.3203, -30.1636, 10.4063, 13.6797, -31.1636, 10.4063, 13.6797, -30.1636, 10.4063, -35.3203, -31.1636, 10.4063, 13.6797, -31.1636, 10.4063, -35.3203, -30.1636, 10.4063, -35.3203, -30.1636, -2.5938, -35.3203, -30.1636, -2.5938, 13.6797, -30.1636, 10.4063, -35.3203, -30.1636, -2.5938, 13.6797, -30.1636, 10.4063, 13.6797, -31.1636, 10.4063, 13.6797, -30.1636, 10.4063, 13.6797, -30.1636, -2.5938, 13.6797, -31.1636, 10.4063, 13.6797, -30.1636, -2.5938, 13.6797, -31.1636, -2.5938, 13.6797, -30.1636, 10.4063, 12.6797, -30.1636, -2.5938, 12.6797, 52.8365, -2.5938, 12.6797, -30.1636, 10.4063, 12.6797, 52.8365, -2.5938, 12.6797, 52.8365, 10.4063, 12.6797, -30.1636, 10.4063, 12.6797, -30.1636, 10.4063, 13.6797, -30.1636, -2.5938, 13.6797, -30.1636, 10.4063, 12.6797, -30.1636, -2.5938, 13.6797, -30.1636, -2.5938, 12.6797, 52.8365, -2.5938, 12.6797, -30.1636, -2.5938, 12.6797, -30.1636, -2.5938, 13.6797, 52.8365, -2.5938, 12.6797, -30.1636, -2.5938, 13.6797, 52.8365, -2.5938, 13.6797, 52.8365, 10.4063, 12.6797, 52.8365, 10.4063, 13.6797, -30.1636, 10.4063, 13.6797, 52.8365, 10.4063, 12.6797, -30.1636, 10.4063, 13.6797, -30.1636, 10.4063, 12.6797, 52.8365, 10.4063, 12.6797, 52.8365, -2.5938, 12.6797, 52.8365, -2.5938, 13.6797, 52.8365, 10.4063, 12.6797, 52.8365, -2.5938, 13.6797, 52.8365, 10.4063, 13.6797, -30.1636, 10.4063, 13.6797, 52.8365, 10.4063, 13.6797, 52.8365, -2.5938, 13.6797, -30.1636, 10.4063, 13.6797, 52.8365, -2.5938, 13.6797, -30.1636, -2.5938, 13.6797, 51.8364, 10.4063, -35.3203, 51.8364, -2.5938, -35.3203, 52.8365, -2.5938, -35.3203, 51.8364, 10.4063, -35.3203, 52.8365, -2.5938, -35.3203, 52.8365, 10.4063, -35.3203, 51.8364, 10.4063, -35.3203, 51.8364, 10.4063, 12.6797, 51.8364, -2.5938, 12.6797, 51.8364, 10.4063, -35.3203, 51.8364, -2.5938, 12.6797, 51.8364, -2.5938, -35.3203, 52.8365, -2.5938, -35.3203, 51.8364, -2.5938, -35.3203, 51.8364, -2.5938, 12.6797, 52.8365, -2.5938, -35.3203, 51.8364, -2.5938, 12.6797, 52.8365, -2.5938, 12.6797, 52.8365, 10.4063, -35.3203, 52.8365, 10.4063, 12.6797, 51.8364, 10.4063, 12.6797, 52.8365, 10.4063, -35.3203, 51.8364, 10.4063, 12.6797, 51.8364, 10.4063, -35.3203, 52.8365, 10.4063, -35.3203, 52.8365, -2.5938, -35.3203, 52.8365, -2.5938, 12.6797, 52.8365, 10.4063, -35.3203, 52.8365, -2.5938, 12.6797, 52.8365, 10.4063, 12.6797, 51.8364, 10.4063, 12.6797, 52.8365, 10.4063, 12.6797, 52.8365, -2.5938, 12.6797, 51.8364, 10.4063, 12.6797, 52.8365, -2.5938, 12.6797, 51.8364, -2.5938, 12.6797, 15.8364, 3.4063, -35.3203, -4.1636, -2.5938, -35.3203, 15.8364, -2.5938, -35.3203, 15.8364, 3.4063, -35.3203, 15.8364, 3.4063, -23.3203, -4.1636, -2.5938, -23.3203, 15.8364, 3.4063, -35.3203, -4.1636, -2.5938, -23.3203, -4.1636, -2.5938, -35.3203, 15.8364, -2.5938, -35.3203, -4.1636, -2.5938, -35.3203, -4.1636, -2.5938, -23.3203, 15.8364, -2.5938, -35.3203, -4.1636, -2.5938, -23.3203, 15.8364, -2.5938, -23.3203, 15.8364, -2.5938, -35.3203, 15.8364, -2.5938, -23.3203, 15.8364, 3.4063, -23.3203, 15.8364, -2.5938, -35.3203, 15.8364, 3.4063, -23.3203, 15.8364, 3.4063, -35.3203, 15.8364, 3.4063, -23.3203, 15.8364, -2.5938, -23.3203, -4.1636, -2.5938, -23.3203, -18.1636, 1.9063, 12.6797, -18.1636, -2.5938, 8.6797, -15.1636, -2.5938, 8.6797, -18.1636, 1.9063, 12.6797, -15.1636, -2.5938, 8.6797, -15.1636, 1.9063, 12.6797, -18.1636, 1.9063, 12.6797, -18.1636, -2.5938, 12.6797, -18.1636, -2.5938, 8.6797, -15.1636, -2.5938, 8.6797, -18.1636, -2.5938, 8.6797, -18.1636, -2.5938, 12.6797, -15.1636, -2.5938, 8.6797, -18.1636, -2.5938, 12.6797, -15.1636, -2.5938, 12.6797, -15.1636, 1.9063, 12.6797, -15.1636, -2.5938, 8.6797, -15.1636, -2.5938, 12.6797, -15.1636, 1.9063, 12.6797, -15.1636, -2.5938, 12.6797, -18.1636, -2.5938, 12.6797, -15.1636, 1.9063, 12.6797, -18.1636, -2.5938, 12.6797, -18.1636, 1.9063, 12.6797, -13.1636, 2.4063, 12.6797, -13.1636, -2.5938, 8.6797, -10.1636, -2.5938, 8.6797, -13.1636, 2.4063, 12.6797, -10.1636, -2.5938, 8.6797, -10.1636, 2.4063, 12.6797, -13.1636, 2.4063, 12.6797, -13.1636, -2.5938, 12.6797, -13.1636, -2.5938, 8.6797, -10.1636, -2.5938, 8.6797, -13.1636, -2.5938, 8.6797, -13.1636, -2.5938, 12.6797, -10.1636, -2.5938, 8.6797, -13.1636, -2.5938, 12.6797, -10.1636, -2.5938, 12.6797, -10.1636, 2.4063, 12.6797, -10.1636, -2.5938, 8.6797, -10.1636, -2.5938, 12.6797, -10.1636, 2.4063, 12.6797, -10.1636, -2.5938, 12.6797, -13.1636, -2.5938, 12.6797, -10.1636, 2.4063, 12.6797, -13.1636, -2.5938, 12.6797, -13.1636, 2.4063, 12.6797, -8.1636, -1.5938, 8.6797, -8.1636, -2.5938, 8.6797, -5.1636, -2.5938, 8.6797, -8.1636, -1.5938, 8.6797, -5.1636, -2.5938, 8.6797, -5.1636, -1.5938, 8.6797, -8.1636, -1.5938, 8.6797, -8.1636, -1.5938, 12.6797, -8.1636, -2.5938, 12.6797, -8.1636, -1.5938, 8.6797, -8.1636, -2.5938, 12.6797, -8.1636, -2.5938, 8.6797, -5.1636, -2.5938, 8.6797, -8.1636, -2.5938, 8.6797, -8.1636, -2.5938, 12.6797, -5.1636, -2.5938, 8.6797, -8.1636, -2.5938, 12.6797, -5.1636, -2.5938, 12.6797, -5.1636, -1.5938, 8.6797, -5.1636, -1.5938, 12.6797, -8.1636, -1.5938, 12.6797, -5.1636, -1.5938, 8.6797, -8.1636, -1.5938, 12.6797, -8.1636, -1.5938, 8.6797, -5.1636, -1.5938, 8.6797, -5.1636, -2.5938, 8.6797, -5.1636, -2.5938, 12.6797, -5.1636, -1.5938, 8.6797, -5.1636, -2.5938, 12.6797, -5.1636, -1.5938, 12.6797, -8.1636, -1.5938, 12.6797, -5.1636, -1.5938, 12.6797, -5.1636, -2.5938, 12.6797, -8.1636, -1.5938, 12.6797, -5.1636, -2.5938, 12.6797, -8.1636, -2.5938, 12.6797, -0.1636, -0.5938, 8.6797, -0.1636, -2.5938, 8.6797, 2.8364, -2.5938, 8.6797, -0.1636, -0.5938, 8.6797, 2.8364, -2.5938, 8.6797, 2.8364, -0.5938, 8.6797, -0.1636, -0.5938, 8.6797, -0.1636, -0.5938, 12.6797, -0.1636, -2.5938, 12.6797, -0.1636, -0.5938, 8.6797, -0.1636, -2.5938, 12.6797, -0.1636, -2.5938, 8.6797, 2.8364, -2.5938, 8.6797, -0.1636, -2.5938, 8.6797, -0.1636, -2.5938, 12.6797, 2.8364, -2.5938, 8.6797, -0.1636, -2.5938, 12.6797, 2.8364, -2.5938, 12.6797, 2.8364, -0.5938, 8.6797, 2.8364, -0.5938, 12.6797, -0.1636, -0.5938, 12.6797, 2.8364, -0.5938, 8.6797, -0.1636, -0.5938, 12.6797, -0.1636, -0.5938, 8.6797, 2.8364, -0.5938, 8.6797, 2.8364, -2.5938, 8.6797, 2.8364, -2.5938, 12.6797, 2.8364, -0.5938, 8.6797, 2.8364, -2.5938, 12.6797, 2.8364, -0.5938, 12.6797, -0.1636, -0.5938, 12.6797, 2.8364, -0.5938, 12.6797, 2.8364, -2.5938, 12.6797, -0.1636, -0.5938, 12.6797, 2.8364, -2.5938, 12.6797, -0.1636, -2.5938, 12.6797, -4.1636, -1.0938, 8.6797, -4.1636, -2.5938, 8.6797, -1.1636, -2.5938, 8.6797, -4.1636, -1.0938, 8.6797, -1.1636, -2.5938, 8.6797, -1.1636, -1.0938, 8.6797, -4.1636, -1.0938, 8.6797, -4.1636, -1.0938, 12.6797, -4.1636, -2.5938, 12.6797, -4.1636, -1.0938, 8.6797, -4.1636, -2.5938, 12.6797, -4.1636, -2.5938, 8.6797, -1.1636, -2.5938, 8.6797, -4.1636, -2.5938, 8.6797, -4.1636, -2.5938, 12.6797, -1.1636, -2.5938, 8.6797, -4.1636, -2.5938, 12.6797, -1.1636, -2.5938, 12.6797, -1.1636, -1.0938, 8.6797, -1.1636, -1.0938, 12.6797, -4.1636, -1.0938, 12.6797, -1.1636, -1.0938, 8.6797, -4.1636, -1.0938, 12.6797, -4.1636, -1.0938, 8.6797, -1.1636, -1.0938, 8.6797, -1.1636, -2.5938, 8.6797, -1.1636, -2.5938, 12.6797, -1.1636, -1.0938, 8.6797, -1.1636, -2.5938, 12.6797, -1.1636, -1.0938, 12.6797, -4.1636, -1.0938, 12.6797, -1.1636, -1.0938, 12.6797, -1.1636, -2.5938, 12.6797, -4.1636, -1.0938, 12.6797, -1.1636, -2.5938, 12.6797, -4.1636, -2.5938, 12.6797, 3.8364, -0.0938, 8.6797, 3.8364, -2.5938, 8.6797, 6.8364, -2.5938, 8.6797, 3.8364, -0.0938, 8.6797, 6.8364, -2.5938, 8.6797, 6.8364, -0.0938, 8.6797, 3.8364, -0.0938, 8.6797, 3.8364, -0.0938, 12.6797, 3.8364, -2.5938, 12.6797, 3.8364, -0.0938, 8.6797, 3.8364, -2.5938, 12.6797, 3.8364, -2.5938, 8.6797, 6.8364, -2.5938, 8.6797, 3.8364, -2.5938, 8.6797, 3.8364, -2.5938, 12.6797, 6.8364, -2.5938, 8.6797, 3.8364, -2.5938, 12.6797, 6.8364, -2.5938, 12.6797, 6.8364, -0.0938, 8.6797, 6.8364, -0.0938, 12.6797, 3.8364, -0.0938, 12.6797, 6.8364, -0.0938, 8.6797, 3.8364, -0.0938, 12.6797, 3.8364, -0.0938, 8.6797, 6.8364, -0.0938, 8.6797, 6.8364, -2.5938, 8.6797, 6.8364, -2.5938, 12.6797, 6.8364, -0.0938, 8.6797, 6.8364, -2.5938, 12.6797, 6.8364, -0.0938, 12.6797, 3.8364, -0.0938, 12.6797, 6.8364, -0.0938, 12.6797, 6.8364, -2.5938, 12.6797, 3.8364, -0.0938, 12.6797, 6.8364, -2.5938, 12.6797, 3.8364, -2.5938, 12.6797, -23.1636, 1.4063, 12.6797, -23.1636, -2.5938, 8.6797, -20.1636, -2.5938, 8.6797, -23.1636, 1.4063, 12.6797, -20.1636, -2.5938, 8.6797, -20.1636, 1.4063, 12.6797, -23.1636, 1.4063, 12.6797, -23.1636, -2.5938, 12.6797, -23.1636, -2.5938, 8.6797, -20.1636, -2.5938, 8.6797, -23.1636, -2.5938, 8.6797, -23.1636, -2.5938, 12.6797, -20.1636, -2.5938, 8.6797, -23.1636, -2.5938, 12.6797, -20.1636, -2.5938, 12.6797, -20.1636, 1.4063, 12.6797, -20.1636, -2.5938, 8.6797, -20.1636, -2.5938, 12.6797, -20.1636, 1.4063, 12.6797, -20.1636, -2.5938, 12.6797, -23.1636, -2.5938, 12.6797, -20.1636, 1.4063, 12.6797, -23.1636, -2.5938, 12.6797, -23.1636, 1.4063, 12.6797, -26.1636, 0.9063, 8.6797, -26.1636, -0.0938, 8.6797, -25.1636, -0.0938, 8.6797, -26.1636, 0.9063, 8.6797, -25.1636, -0.0938, 8.6797, -25.1636, 0.9063, 8.6797, -26.1636, 0.9063, 8.6797, -26.1636, 0.9063, 9.6797, -26.1636, -0.0938, 9.6797, -26.1636, 0.9063, 8.6797, -26.1636, -0.0938, 9.6797, -26.1636, -0.0938, 8.6797, -25.1636, -0.0938, 8.6797, -26.1636, -0.0938, 8.6797, -26.1636, -0.0938, 9.6797, -25.1636, -0.0938, 8.6797, -26.1636, -0.0938, 9.6797, -25.1636, -0.0938, 9.6797, -25.1636, 0.9063, 8.6797, -25.1636, 0.9063, 9.6797, -26.1636, 0.9063, 9.6797, -25.1636, 0.9063, 8.6797, -26.1636, 0.9063, 9.6797, -26.1636, 0.9063, 8.6797, -25.1636, 0.9063, 8.6797, -25.1636, -0.0938, 8.6797, -25.1636, -0.0938, 9.6797, -25.1636, 0.9063, 8.6797, -25.1636, -0.0938, 9.6797, -25.1636, 0.9063, 9.6797, -26.1636, 0.9063, 9.6797, -25.1636, 0.9063, 9.6797, -25.1636, -0.0938, 9.6797, -26.1636, 0.9063, 9.6797, -25.1636, -0.0938, 9.6797, -26.1636, -0.0938, 9.6797, 7.8364, 0.4063, 8.6797, 7.8364, -2.5938, 8.6797, 10.8364, -2.5938, 8.6797, 7.8364, 0.4063, 8.6797, 10.8364, -2.5938, 8.6797, 10.8364, 0.4063, 8.6797, 7.8364, 0.4063, 8.6797, 7.8364, 0.4063, 12.6797, 7.8364, -2.5938, 12.6797, 7.8364, 0.4063, 8.6797, 7.8364, -2.5938, 12.6797, 7.8364, -2.5938, 8.6797, 10.8364, -2.5938, 8.6797, 7.8364, -2.5938, 8.6797, 7.8364, -2.5938, 12.6797, 10.8364, -2.5938, 8.6797, 7.8364, -2.5938, 12.6797, 10.8364, -2.5938, 12.6797, 10.8364, 0.4063, 8.6797, 10.8364, 0.4063, 12.6797, 7.8364, 0.4063, 12.6797, 10.8364, 0.4063, 8.6797, 7.8364, 0.4063, 12.6797, 7.8364, 0.4063, 8.6797, 10.8364, 0.4063, 8.6797, 10.8364, -2.5938, 8.6797, 10.8364, -2.5938, 12.6797, 10.8364, 0.4063, 8.6797, 10.8364, -2.5938, 12.6797, 10.8364, 0.4063, 12.6797, 7.8364, 0.4063, 12.6797, 10.8364, 0.4063, 12.6797, 10.8364, -2.5938, 12.6797, 7.8364, 0.4063, 12.6797, 10.8364, -2.5938, 12.6797, 7.8364, -2.5938, 12.6797, 8.6666, 1.4063, -15.5524, -0.4267, 1.4063, -10.3024, -0.4267, -2.5938, -10.3024, 8.6666, 1.4063, -15.5524, -0.4267, -2.5938, -10.3024, 8.6666, -2.5938, -15.5524, -0.4267, -2.5938, -10.3024, 1.5733, -2.5938, -6.8383, 10.6666, -2.5938, -12.0883, -0.4267, -2.5938, -10.3024, 10.6666, -2.5938, -12.0883, 8.6666, -2.5938, -15.5524, 10.6666, 1.4063, -12.0883, 10.6666, -2.5938, -12.0883, 1.5733, -2.5938, -6.8383, 10.6666, 1.4063, -12.0883, 1.5733, -2.5938, -6.8383, 1.5733, 1.4063, -6.8383, 8.6666, 1.4063, -15.5524, 8.6666, -2.5938, -15.5524, 10.6666, -2.5938, -12.0883, 8.6666, 1.4063, -15.5524, 10.6666, -2.5938, -12.0883, 10.6666, 1.4063, -12.0883, -0.4267, 1.4063, -10.3024, 8.6666, 1.4063, -15.5524, 10.6666, 1.4063, -12.0883, -0.4267, 1.4063, -10.3024, 10.6666, 1.4063, -12.0883, 1.5733, 1.4063, -6.8383, -0.4267, 1.4063, -10.3024, 1.5733, 1.4063, -6.8383, 1.5733, -2.5938, -6.8383, -0.4267, 1.4063, -10.3024, 1.5733, -2.5938, -6.8383, -0.4267, -2.5938, -10.3024) + +[sub_resource type="PhysicalSkyMaterial" id="PhysicalSkyMaterial_2n8qo"] + +[sub_resource type="Sky" id="Sky_ybtis"] +sky_material = SubResource("PhysicalSkyMaterial_2n8qo") + +[sub_resource type="Environment" id="Environment_oqaam"] +background_mode = 2 +sky = SubResource("Sky_ybtis") +ambient_light_source = 3 +reflected_light_source = 2 +tonemap_mode = 2 +tonemap_exposure = 2.0 +ssao_enabled = true +volumetric_fog_density = 0.02 +adjustment_enabled = true +adjustment_saturation = 1.27 + +[node name="Map" type="Node3D"] +script = ExtResource("1_lq1d0") + +[node name="LightmapGI" type="LightmapGI" parent="."] +visible = false +light_data = ExtResource("2_rhptu") + +[node name="LightmapProbe" type="LightmapProbe" parent="."] + +[node name="TBLoader" type="TBLoader" parent="."] +map_resource = "res://scenes/map/test.map" +lighting_unwrap_uv2 = true +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -8.32955, -2.68695, 11.5739) + +[node name="Default Layer" type="Node3D" parent="TBLoader"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 31.1636, 2.59375, -13.6797) + +[node name="entity_0_geometry" type="MeshInstance3D" parent="TBLoader/Default Layer"] +mesh = SubResource("ArrayMesh_bdgr3") + +[node name="entity_0_geometry_col" type="StaticBody3D" parent="TBLoader/Default Layer"] + +[node name="CollisionShape3D" type="CollisionShape3D" parent="TBLoader/Default Layer/entity_0_geometry_col"] +shape = SubResource("ConcavePolygonShape3D_2ub2n") + +[node name="PlayerQ3" parent="TBLoader" instance=ExtResource("1_25orc")] +transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, 12.7196, 1.24293, -35.7646) + +[node name="Enemy" parent="TBLoader" instance=ExtResource("5_menuh")] +transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, 33, 3, -42) + +[node name="@@28907" type="OmniLight3D" parent="TBLoader"] +transform = Transform3D(-1, 0, -8.74228e-08, 0, 1, 0, 8.74228e-08, 0, -1, 46.25, 4.25, -1.25) +light_bake_mode = 1 +omni_range = 10.0 + +[node name="DirectionalLight3D" type="DirectionalLight3D" parent="."] +transform = Transform3D(0.92272, 0.189417, -0.335722, 0.371956, -0.208918, 0.904435, 0.101177, -0.959414, -0.263228, 13.9136, 14.2605, -2.0311) +shadow_enabled = true + +[node name="WorldEnvironment" type="WorldEnvironment" parent="."] +environment = SubResource("Environment_oqaam") + +[node name="CanvasLayer" type="CanvasLayer" parent="."] + +[node name="Label" type="Label" parent="CanvasLayer"] +offset_right = 40.0 +offset_bottom = 14.0 +metadata/_edit_use_anchors_ = true diff --git a/scenes/map/autosave/test.1.map b/scenes/map/autosave/test.1.map new file mode 100644 index 0000000..11109e7 --- /dev/null +++ b/scenes/map/autosave/test.1.map @@ -0,0 +1,27 @@ +// Game: Godot +// Format: Standard +// entity 0 +{ +"classname" "worldspawn" +"_tb_mod" "textures;entities" +"_tb_textures" "textures" +// brush 0 +{ +( -480 -592 -16 ) ( -480 -584.8750000000001 -16 ) ( -480 -592 -15 ) dark 0.08771896 0 0 7.125 1 +( -480 -592 -16 ) ( -480 -592 -15 ) ( -472.6250000000001 -592 -16 ) dark 0.084745765 0 0 7.375 1 +( -480 -592 -16 ) ( -472.6250000000001 -592 -16 ) ( -480 -584.8750000000001 -16 ) dark 0.084745765 -0.08771896 0 7.375 7.125 +( 464 320 16 ) ( 464 327.125 16 ) ( 471.3749999999997 320 16 ) dark 0.084745765 -0.08771896 0 7.375 7.125 +( 464 320 16 ) ( 471.3749999999997 320 16 ) ( 464 320 17 ) dark 0.084745765 0 0 7.375 1 +( 464 320 16 ) ( 464 320 17 ) ( 464 327.125 16 ) dark 0.08771896 0 0 7.125 1 +} +} +// entity 1 +{ +"classname" "Player" +"origin" "32 -48 32" +} +// entity 2 +{ +"classname" "light" +"origin" "28 -188 20" +} diff --git a/scenes/map/autosave/test.10.map b/scenes/map/autosave/test.10.map new file mode 100644 index 0000000..f571367 --- /dev/null +++ b/scenes/map/autosave/test.10.map @@ -0,0 +1,153 @@ +// Game: Godot +// Format: Standard +// entity 0 +{ +"classname" "worldspawn" +"_tb_textures" "textures" +// brush 0 +{ +( -800 -272 -32 ) ( -800 -264.875 -32 ) ( -800 -272 -31 ) concrete_15 0 0 0 0.5 0.5 +( -816 0 -32 ) ( -816 0 -31 ) ( -808.625 0 -32 ) concrete_15 0 0 0 0.5 0.5 +( -816 -272 -32 ) ( -808.625 -272 -32 ) ( -816 -264.875 -32 ) concrete_15 0 0 0 0.5 0.5 +( 128 640 0 ) ( 128 647.125 0 ) ( 135.375 640 0 ) concrete_15 0 0 0 0.5 0.5 +( 128 1344 0 ) ( 135.375 1344 0 ) ( 128 1344 1 ) concrete_15 0 0 0 0.5 0.5 +( 0 640 0 ) ( 0 640 1 ) ( 0 647.125 0 ) concrete_15 0 0 0 0.5 0.5 +} +// brush 1 +{ +( -800 0 80 ) ( -800 1 80 ) ( -800 0 81 ) dark 0 512 0 0.015625 0.015625 +( -800 0 80 ) ( -800 0 81 ) ( -799 0 80 ) dark 0 512 0 0.015625 0.015625 +( -800 0 0 ) ( -799 0 0 ) ( -800 1 0 ) dark 0 512 0 0.015625 0.015625 +( -736 144 208 ) ( -736 145 208 ) ( -735 144 208 ) dark 0 512 0 0.015625 0.015625 +( -736 1344 96 ) ( -735 1344 96 ) ( -736 1344 97 ) dark 0 512 0 0.015625 0.015625 +( -784 144 96 ) ( -784 144 97 ) ( -784 145 96 ) dark 0 512 0 0.015625 0.015625 +} +// brush 2 +{ +( -784 0 208 ) ( -784 1 208 ) ( -784 0 209 ) dark 0 512 180 0.015625 0.015625 +( -80 0 208 ) ( -80 0 209 ) ( -79 0 208 ) dark 0 512 180 0.015625 0.015625 +( -80 0 0 ) ( -79 0 0 ) ( -80 1 0 ) dark 0 512 180 0.015625 0.015625 +( 0 16 208 ) ( 0 17 208 ) ( 1 16 208 ) dark 0 512 180 0.015625 0.015625 +( 0 16 224 ) ( 1 16 224 ) ( 0 16 225 ) dark 0 512 180 0.015625 0.015625 +( 0 16 224 ) ( 0 16 225 ) ( 0 17 224 ) dark 0 512 180 0.015625 0.015625 +} +// brush 3 +{ +( -16 496 0 ) ( -16 497 0 ) ( -16 496 1 ) dark 0 512 180 0.015625 0.015625 +( -32 16 0 ) ( -32 16 1 ) ( -31 16 0 ) dark 0 512 180 0.015625 0.015625 +( -32 496 0 ) ( -31 496 0 ) ( -32 497 0 ) dark 0 512 180 0.015625 0.015625 +( 0 624 208 ) ( 0 625 208 ) ( 1 624 208 ) dark 0 512 180 0.015625 0.015625 +( 0 1344 16 ) ( 1 1344 16 ) ( 0 1344 17 ) dark 0 512 180 0.015625 0.015625 +( 0 624 16 ) ( 0 624 17 ) ( 0 625 16 ) dark 0 512 180 0.015625 0.015625 +} +// brush 4 +{ +( -784 1328 0 ) ( -784 1329 0 ) ( -784 1328 1 ) dark 0 512 0 0.015625 0.015625 +( -576 1328 0 ) ( -576 1328 1 ) ( -575 1328 0 ) dark 0 512 0 0.015625 0.015625 +( -576 1328 0 ) ( -575 1328 0 ) ( -576 1329 0 ) dark 0 512 0 0.015625 0.015625 +( -16 1344 208 ) ( -16 1345 208 ) ( -15 1344 208 ) dark 0 512 0 0.015625 0.015625 +( -16 1344 16 ) ( -15 1344 16 ) ( -16 1344 17 ) dark 0 512 0 0.015625 0.015625 +( -16 1344 16 ) ( -16 1344 17 ) ( -16 1345 16 ) dark 0 512 0 0.015625 0.015625 +} +// brush 5 +{ +( -784 752 0 ) ( -784 752 96 ) ( -784 432 0 ) dark 0 512 0 0.015625 0.015625 +( -784 752 96 ) ( -592 752 96 ) ( -592 432 0 ) dark 0 512 0 0.015625 0.015625 +( -592 432 0 ) ( -592 752 0 ) ( -784 752 0 ) dark 0 512 0 0.015625 0.015625 +( -592 752 0 ) ( -592 752 96 ) ( -784 752 96 ) dark 0 512 0 0.015625 0.015625 +( -592 432 0 ) ( -592 752 96 ) ( -592 752 0 ) dark 0 512 0 0.015625 0.015625 +} +// brush 6 +{ +( -80 256 0 ) ( -16 256 72 ) ( -16 208 72 ) dark 0 512 0 0.015625 0.015625 +( -80 208 0 ) ( -16 208 72 ) ( -16 208 0 ) dark 0 512 0 0.015625 0.015625 +( -16 208 0 ) ( -16 256 0 ) ( -80 256 0 ) dark 0 512 0 0.015625 0.015625 +( -16 256 0 ) ( -16 256 72 ) ( -80 256 0 ) dark 0 512 0 0.015625 0.015625 +( -16 208 72 ) ( -16 256 72 ) ( -16 256 0 ) dark 0 512 0 0.015625 0.015625 +} +// brush 7 +{ +( -80 336 0 ) ( -16 336 80 ) ( -16 288 80 ) dark 0 512 0 0.015625 0.015625 +( -80 288 0 ) ( -16 288 80 ) ( -16 288 0 ) dark 0 512 0 0.015625 0.015625 +( -16 288 0 ) ( -16 336 0 ) ( -80 336 0 ) dark 0 512 0 0.015625 0.015625 +( -16 336 0 ) ( -16 336 80 ) ( -80 336 0 ) dark 0 512 0 0.015625 0.015625 +( -16 288 80 ) ( -16 336 80 ) ( -16 336 0 ) dark 0 512 0 0.015625 0.015625 +} +// brush 8 +{ +( -80 416 16 ) ( -80 368 16 ) ( -80 368 0 ) dark 0 512 0 0.015625 0.015625 +( -80 368 16 ) ( -16 368 16 ) ( -16 368 0 ) dark 0 512 0 0.015625 0.015625 +( -16 368 0 ) ( -16 416 0 ) ( -80 416 0 ) dark 0 512 0 0.015625 0.015625 +( -80 416 16 ) ( -16 416 16 ) ( -16 368 16 ) dark 0 512 0 0.015625 0.015625 +( -16 416 0 ) ( -16 416 16 ) ( -80 416 16 ) dark 0 512 0 0.015625 0.015625 +( -16 368 16 ) ( -16 416 16 ) ( -16 416 0 ) dark 0 512 0 0.015625 0.015625 +} +// brush 9 +{ +( -80 544 32 ) ( -80 496 32 ) ( -80 496 0 ) dark 0 512 0 0.015625 0.015625 +( -80 496 32 ) ( -16 496 32 ) ( -16 496 0 ) dark 0 512 0 0.015625 0.015625 +( -16 496 0 ) ( -16 544 0 ) ( -80 544 0 ) dark 0 512 0 0.015625 0.015625 +( -80 544 32 ) ( -16 544 32 ) ( -16 496 32 ) dark 0 512 0 0.015625 0.015625 +( -16 544 0 ) ( -16 544 32 ) ( -80 544 32 ) dark 0 512 0 0.015625 0.015625 +( -16 496 32 ) ( -16 544 32 ) ( -16 544 0 ) dark 0 512 0 0.015625 0.015625 +} +// brush 10 +{ +( -80 480 24 ) ( -80 432 24 ) ( -80 432 0 ) dark 0 512 0 0.015625 0.015625 +( -80 432 24 ) ( -16 432 24 ) ( -16 432 0 ) dark 0 512 0 0.015625 0.015625 +( -16 432 0 ) ( -16 480 0 ) ( -80 480 0 ) dark 0 512 0 0.015625 0.015625 +( -80 480 24 ) ( -16 480 24 ) ( -16 432 24 ) dark 0 512 0 0.015625 0.015625 +( -16 480 0 ) ( -16 480 24 ) ( -80 480 24 ) dark 0 512 0 0.015625 0.015625 +( -16 432 24 ) ( -16 480 24 ) ( -16 480 0 ) dark 0 512 0 0.015625 0.015625 +} +// brush 11 +{ +( -80 608 40 ) ( -80 560 40 ) ( -80 560 0 ) dark 0 512 0 0.015625 0.015625 +( -80 560 40 ) ( -16 560 40 ) ( -16 560 0 ) dark 0 512 0 0.015625 0.015625 +( -16 560 0 ) ( -16 608 0 ) ( -80 608 0 ) dark 0 512 0 0.015625 0.015625 +( -80 608 40 ) ( -16 608 40 ) ( -16 560 40 ) dark 0 512 0 0.015625 0.015625 +( -16 608 0 ) ( -16 608 40 ) ( -80 608 40 ) dark 0 512 0 0.015625 0.015625 +( -16 560 40 ) ( -16 608 40 ) ( -16 608 0 ) dark 0 512 0 0.015625 0.015625 +} +// brush 12 +{ +( -80 176 0 ) ( -16 176 64 ) ( -16 128 64 ) dark 0 512 0 0.015625 0.015625 +( -80 128 0 ) ( -16 128 64 ) ( -16 128 0 ) dark 0 512 0 0.015625 0.015625 +( -16 128 0 ) ( -16 176 0 ) ( -80 176 0 ) dark 0 512 0 0.015625 0.015625 +( -16 176 0 ) ( -16 176 64 ) ( -80 176 0 ) dark 0 512 0 0.015625 0.015625 +( -16 128 64 ) ( -16 176 64 ) ( -16 176 0 ) dark 0 512 0 0.015625 0.015625 +} +// brush 13 +{ +( -80 96 56 ) ( -80 80 56 ) ( -80 80 40 ) dark 0 512 0 0.015625 0.015625 +( -80 80 56 ) ( -64 80 56 ) ( -64 80 40 ) dark 0 512 0 0.015625 0.015625 +( -64 80 40 ) ( -64 96 40 ) ( -80 96 40 ) dark 0 512 0 0.015625 0.015625 +( -80 96 56 ) ( -64 96 56 ) ( -64 80 56 ) dark 0 512 0 0.015625 0.015625 +( -64 96 40 ) ( -64 96 56 ) ( -80 96 56 ) dark 0 512 0 0.015625 0.015625 +( -64 80 56 ) ( -64 96 56 ) ( -64 96 40 ) dark 0 512 0 0.015625 0.015625 +} +// brush 14 +{ +( -80 672 48 ) ( -80 624 48 ) ( -80 624 0 ) dark 0 512 0 0.015625 0.015625 +( -80 624 48 ) ( -16 624 48 ) ( -16 624 0 ) dark 0 512 0 0.015625 0.015625 +( -16 624 0 ) ( -16 672 0 ) ( -80 672 0 ) dark 0 512 0 0.015625 0.015625 +( -80 672 48 ) ( -16 672 48 ) ( -16 624 48 ) dark 0 512 0 0.015625 0.015625 +( -16 672 0 ) ( -16 672 48 ) ( -80 672 48 ) dark 0 512 0 0.015625 0.015625 +( -16 624 48 ) ( -16 672 48 ) ( -16 672 0 ) dark 0 512 0 0.015625 0.015625 +} +} +// entity 1 +{ +"classname" "Player" +"origin" "-576 208 16" +} +// entity 2 +{ +"classname" "enemy_dummy" +"origin" "-672 528 48" +} +// entity 3 +{ +"classname" "light" +"origin" "-20 740 68" +} diff --git a/scenes/map/autosave/test.11.map b/scenes/map/autosave/test.11.map new file mode 100644 index 0000000..ed60762 --- /dev/null +++ b/scenes/map/autosave/test.11.map @@ -0,0 +1,171 @@ +// Game: Godot +// Format: Standard +// entity 0 +{ +"classname" "worldspawn" +"_tb_textures" "textures" +// brush 0 +{ +( -800 -272 -32 ) ( -800 -264.875 -32 ) ( -800 -272 -31 ) concrete_15 0 0 0 1 1 +( -816 0 -32 ) ( -816 0 -31 ) ( -808.625 0 -32 ) concrete_15 0 0 0 1 1 +( -816 -272 -32 ) ( -808.625 -272 -32 ) ( -816 -264.875 -32 ) concrete_15 0 0 0 1 1 +( 128 640 0 ) ( 128 647.125 0 ) ( 135.375 640 0 ) concrete_15 0 0 0 1 1 +( 128 1344 0 ) ( 135.375 1344 0 ) ( 128 1344 1 ) concrete_15 0 0 0 1 1 +( 0 640 0 ) ( 0 640 1 ) ( 0 647.125 0 ) concrete_15 0 0 0 1 1 +} +// brush 1 +{ +( -800 0 80 ) ( -800 1 80 ) ( -800 0 81 ) dark 0 512 0 0.015625 0.015625 +( -800 0 80 ) ( -800 0 81 ) ( -799 0 80 ) dark 0 512 0 0.015625 0.015625 +( -800 0 0 ) ( -799 0 0 ) ( -800 1 0 ) dark 0 512 0 0.015625 0.015625 +( -736 144 208 ) ( -736 145 208 ) ( -735 144 208 ) dark 0 512 0 0.015625 0.015625 +( -736 1344 96 ) ( -735 1344 96 ) ( -736 1344 97 ) dark 0 512 0 0.015625 0.015625 +( -784 144 96 ) ( -784 144 97 ) ( -784 145 96 ) dark 0 512 0 0.015625 0.015625 +} +// brush 2 +{ +( -784 0 208 ) ( -784 1 208 ) ( -784 0 209 ) dark 0 512 180 0.015625 0.015625 +( -80 0 208 ) ( -80 0 209 ) ( -79 0 208 ) dark 0 512 180 0.015625 0.015625 +( -80 0 0 ) ( -79 0 0 ) ( -80 1 0 ) dark 0 512 180 0.015625 0.015625 +( 0 16 208 ) ( 0 17 208 ) ( 1 16 208 ) dark 0 512 180 0.015625 0.015625 +( 0 16 224 ) ( 1 16 224 ) ( 0 16 225 ) dark 0 512 180 0.015625 0.015625 +( 0 16 224 ) ( 0 16 225 ) ( 0 17 224 ) dark 0 512 180 0.015625 0.015625 +} +// brush 3 +{ +( -16 496 0 ) ( -16 497 0 ) ( -16 496 1 ) dark 0 512 180 0.015625 0.015625 +( -32 16 0 ) ( -32 16 1 ) ( -31 16 0 ) dark 0 512 180 0.015625 0.015625 +( -32 496 0 ) ( -31 496 0 ) ( -32 497 0 ) dark 0 512 180 0.015625 0.015625 +( 0 624 208 ) ( 0 625 208 ) ( 1 624 208 ) dark 0 512 180 0.015625 0.015625 +( 0 1344 16 ) ( 1 1344 16 ) ( 0 1344 17 ) dark 0 512 180 0.015625 0.015625 +( 0 624 16 ) ( 0 624 17 ) ( 0 625 16 ) dark 0 512 180 0.015625 0.015625 +} +// brush 4 +{ +( -784 1328 0 ) ( -784 1329 0 ) ( -784 1328 1 ) dark 0 512 0 0.015625 0.015625 +( -576 1328 0 ) ( -576 1328 1 ) ( -575 1328 0 ) dark 0 512 0 0.015625 0.015625 +( -576 1328 0 ) ( -575 1328 0 ) ( -576 1329 0 ) dark 0 512 0 0.015625 0.015625 +( -16 1344 208 ) ( -16 1345 208 ) ( -15 1344 208 ) dark 0 512 0 0.015625 0.015625 +( -16 1344 16 ) ( -15 1344 16 ) ( -16 1344 17 ) dark 0 512 0 0.015625 0.015625 +( -16 1344 16 ) ( -16 1344 17 ) ( -16 1345 16 ) dark 0 512 0 0.015625 0.015625 +} +// brush 5 +{ +( -784 752 0 ) ( -784 752 96 ) ( -784 432 0 ) dark 0 512 0 0.015625 0.015625 +( -784 752 96 ) ( -592 752 96 ) ( -592 432 0 ) dark 0 512 0 0.015625 0.015625 +( -592 432 0 ) ( -592 752 0 ) ( -784 752 0 ) dark 0 512 0 0.015625 0.015625 +( -592 752 0 ) ( -592 752 96 ) ( -784 752 96 ) dark 0 512 0 0.015625 0.015625 +( -592 432 0 ) ( -592 752 96 ) ( -592 752 0 ) dark 0 512 0 0.015625 0.015625 +} +// brush 6 +{ +( -80 256 0 ) ( -16 256 72 ) ( -16 208 72 ) dark 0 512 0 0.015625 0.015625 +( -80 208 0 ) ( -16 208 72 ) ( -16 208 0 ) dark 0 512 0 0.015625 0.015625 +( -16 208 0 ) ( -16 256 0 ) ( -80 256 0 ) dark 0 512 0 0.015625 0.015625 +( -16 256 0 ) ( -16 256 72 ) ( -80 256 0 ) dark 0 512 0 0.015625 0.015625 +( -16 208 72 ) ( -16 256 72 ) ( -16 256 0 ) dark 0 512 0 0.015625 0.015625 +} +// brush 7 +{ +( -80 336 0 ) ( -16 336 80 ) ( -16 288 80 ) dark 0 512 0 0.015625 0.015625 +( -80 288 0 ) ( -16 288 80 ) ( -16 288 0 ) dark 0 512 0 0.015625 0.015625 +( -16 288 0 ) ( -16 336 0 ) ( -80 336 0 ) dark 0 512 0 0.015625 0.015625 +( -16 336 0 ) ( -16 336 80 ) ( -80 336 0 ) dark 0 512 0 0.015625 0.015625 +( -16 288 80 ) ( -16 336 80 ) ( -16 336 0 ) dark 0 512 0 0.015625 0.015625 +} +// brush 8 +{ +( -80 416 16 ) ( -80 368 16 ) ( -80 368 0 ) dark 0 512 0 0.015625 0.015625 +( -80 368 16 ) ( -16 368 16 ) ( -16 368 0 ) dark 0 512 0 0.015625 0.015625 +( -16 368 0 ) ( -16 416 0 ) ( -80 416 0 ) dark 0 512 0 0.015625 0.015625 +( -80 416 16 ) ( -16 416 16 ) ( -16 368 16 ) dark 0 512 0 0.015625 0.015625 +( -16 416 0 ) ( -16 416 16 ) ( -80 416 16 ) dark 0 512 0 0.015625 0.015625 +( -16 368 16 ) ( -16 416 16 ) ( -16 416 0 ) dark 0 512 0 0.015625 0.015625 +} +// brush 9 +{ +( -80 544 32 ) ( -80 496 32 ) ( -80 496 0 ) dark 0 512 0 0.015625 0.015625 +( -80 496 32 ) ( -16 496 32 ) ( -16 496 0 ) dark 0 512 0 0.015625 0.015625 +( -16 496 0 ) ( -16 544 0 ) ( -80 544 0 ) dark 0 512 0 0.015625 0.015625 +( -80 544 32 ) ( -16 544 32 ) ( -16 496 32 ) dark 0 512 0 0.015625 0.015625 +( -16 544 0 ) ( -16 544 32 ) ( -80 544 32 ) dark 0 512 0 0.015625 0.015625 +( -16 496 32 ) ( -16 544 32 ) ( -16 544 0 ) dark 0 512 0 0.015625 0.015625 +} +// brush 10 +{ +( -80 480 24 ) ( -80 432 24 ) ( -80 432 0 ) dark 0 512 0 0.015625 0.015625 +( -80 432 24 ) ( -16 432 24 ) ( -16 432 0 ) dark 0 512 0 0.015625 0.015625 +( -16 432 0 ) ( -16 480 0 ) ( -80 480 0 ) dark 0 512 0 0.015625 0.015625 +( -80 480 24 ) ( -16 480 24 ) ( -16 432 24 ) dark 0 512 0 0.015625 0.015625 +( -16 480 0 ) ( -16 480 24 ) ( -80 480 24 ) dark 0 512 0 0.015625 0.015625 +( -16 432 24 ) ( -16 480 24 ) ( -16 480 0 ) dark 0 512 0 0.015625 0.015625 +} +// brush 11 +{ +( -80 608 40 ) ( -80 560 40 ) ( -80 560 0 ) dark 0 512 0 0.015625 0.015625 +( -80 560 40 ) ( -16 560 40 ) ( -16 560 0 ) dark 0 512 0 0.015625 0.015625 +( -16 560 0 ) ( -16 608 0 ) ( -80 608 0 ) dark 0 512 0 0.015625 0.015625 +( -80 608 40 ) ( -16 608 40 ) ( -16 560 40 ) dark 0 512 0 0.015625 0.015625 +( -16 608 0 ) ( -16 608 40 ) ( -80 608 40 ) dark 0 512 0 0.015625 0.015625 +( -16 560 40 ) ( -16 608 40 ) ( -16 608 0 ) dark 0 512 0 0.015625 0.015625 +} +// brush 12 +{ +( -80 176 0 ) ( -16 176 64 ) ( -16 128 64 ) dark 0 512 0 0.015625 0.015625 +( -80 128 0 ) ( -16 128 64 ) ( -16 128 0 ) dark 0 512 0 0.015625 0.015625 +( -16 128 0 ) ( -16 176 0 ) ( -80 176 0 ) dark 0 512 0 0.015625 0.015625 +( -16 176 0 ) ( -16 176 64 ) ( -80 176 0 ) dark 0 512 0 0.015625 0.015625 +( -16 128 64 ) ( -16 176 64 ) ( -16 176 0 ) dark 0 512 0 0.015625 0.015625 +} +// brush 13 +{ +( -80 96 56 ) ( -80 80 56 ) ( -80 80 40 ) dark 0 512 0 0.015625 0.015625 +( -80 80 56 ) ( -64 80 56 ) ( -64 80 40 ) dark 0 512 0 0.015625 0.015625 +( -64 80 40 ) ( -64 96 40 ) ( -80 96 40 ) dark 0 512 0 0.015625 0.015625 +( -80 96 56 ) ( -64 96 56 ) ( -64 80 56 ) dark 0 512 0 0.015625 0.015625 +( -64 96 40 ) ( -64 96 56 ) ( -80 96 56 ) dark 0 512 0 0.015625 0.015625 +( -64 80 56 ) ( -64 96 56 ) ( -64 96 40 ) dark 0 512 0 0.015625 0.015625 +} +// brush 14 +{ +( -80 672 48 ) ( -80 624 48 ) ( -80 624 0 ) dark 0 512 0 0.015625 0.015625 +( -80 624 48 ) ( -16 624 48 ) ( -16 624 0 ) dark 0 512 0 0.015625 0.015625 +( -16 624 0 ) ( -16 672 0 ) ( -80 672 0 ) dark 0 512 0 0.015625 0.015625 +( -80 672 48 ) ( -16 672 48 ) ( -16 624 48 ) dark 0 512 0 0.015625 0.015625 +( -16 672 0 ) ( -16 672 48 ) ( -80 672 48 ) dark 0 512 0 0.015625 0.015625 +( -16 624 48 ) ( -16 672 48 ) ( -16 672 0 ) dark 0 512 0 0.015625 0.015625 +} +// brush 15 +{ +( -467.7128129211019 637.2820323027552 64 ) ( -383.712812921102 491.7897644669695 64 ) ( -383.712812921102 491.7897644669695 0 ) shipping_container_01_side -175.73987 0 0 0.4330127 0.5 +( -412.2871870788979 669.2820323027552 0 ) ( -412.2871870788979 669.2820323027552 64 ) ( -467.7128129211019 637.2820323027552 64 ) shipping_container_01_front 63.30011 1.3402672 0 0.42977914 0.49051714 +( -328.2871870788979 523.7897644669695 0 ) ( -412.2871870788979 669.2820323027552 0 ) ( -467.7128129211019 637.2820323027552 0 ) shipping_container_01_side -38.589844 9.75885 30 1 1 +( -467.7128129211019 637.2820323027552 64 ) ( -412.2871870788979 669.2820323027552 64 ) ( -328.2871870788979 523.7897644669695 64 ) shipping_container_01_front -75.654724 84.19873 30 0.4645997 1.319437 +( -383.712812921102 491.7897644669695 64 ) ( -328.2871870788979 523.7897644669695 64 ) ( -328.2871870788979 523.7897644669695 0 ) shipping_container_01_front 1.0908203 0 0 0.426851 0.49832597 +( -328.2871870788979 523.7897644669695 64 ) ( -412.2871870788979 669.2820323027552 64 ) ( -412.2871870788979 669.2820323027552 0 ) shipping_container_01_side -249.64062 0 0 0.4330127 0.5 +} +// brush 16 +{ +( -320 304 0 ) ( -320 305 0 ) ( -320 304 1 ) shipping_container_01_front 0 0 0 1 1 +( -320 304 0 ) ( -320 304 1 ) ( -319 304 0 ) shipping_container_01_front 0 0 0 1 1 +( -320 304 0 ) ( -319 304 0 ) ( -320 305 0 ) shipping_container_01_front 0 0 0 1 1 +( -304 320 8 ) ( -304 321 8 ) ( -303 320 8 ) shipping_container_01_front 0 0 0 1 1 +( -304 320 8 ) ( -303 320 8 ) ( -304 320 9 ) shipping_container_01_front 0 0 0 1 1 +( -304 320 8 ) ( -304 320 9 ) ( -304 321 8 ) shipping_container_01_front 0 0 0 1 1 +} +} +// entity 1 +{ +"classname" "Player" +"origin" "-576 208 16" +} +// entity 2 +{ +"classname" "enemy_dummy" +"origin" "-672 528 48" +} +// entity 3 +{ +"classname" "light" +"origin" "-20 740 68" +} diff --git a/scenes/map/autosave/test.12.map b/scenes/map/autosave/test.12.map new file mode 100644 index 0000000..e6e6381 --- /dev/null +++ b/scenes/map/autosave/test.12.map @@ -0,0 +1,172 @@ +// Game: Godot +// Format: Standard +// entity 0 +{ +"classname" "worldspawn" +"_tb_textures" "textures" +// brush 0 +{ +( -800 -272 -32 ) ( -800 -264.875 -32 ) ( -800 -272 -31 ) concrete_15 0 0 0 1 1 +( -816 0 -32 ) ( -816 0 -31 ) ( -808.625 0 -32 ) concrete_15 0 0 0 1 1 +( -816 -272 -32 ) ( -808.625 -272 -32 ) ( -816 -264.875 -32 ) concrete_15 0 0 0 1 1 +( 128 640 0 ) ( 128 647.125 0 ) ( 135.375 640 0 ) concrete_15 0 0 0 1 1 +( 128 1344 0 ) ( 135.375 1344 0 ) ( 128 1344 1 ) concrete_15 0 0 0 1 1 +( 0 640 0 ) ( 0 640 1 ) ( 0 647.125 0 ) concrete_15 0 0 0 1 1 +} +// brush 1 +{ +( -800 0 80 ) ( -800 1 80 ) ( -800 0 81 ) dark 0 512 0 0.015625 0.015625 +( -800 0 80 ) ( -800 0 81 ) ( -799 0 80 ) dark 0 512 0 0.015625 0.015625 +( -800 0 0 ) ( -799 0 0 ) ( -800 1 0 ) dark 0 512 0 0.015625 0.015625 +( -736 144 208 ) ( -736 145 208 ) ( -735 144 208 ) dark 0 512 0 0.015625 0.015625 +( -736 1344 96 ) ( -735 1344 96 ) ( -736 1344 97 ) dark 0 512 0 0.015625 0.015625 +( -784 144 96 ) ( -784 144 97 ) ( -784 145 96 ) dark 0 512 0 0.015625 0.015625 +} +// brush 2 +{ +( -784 0 208 ) ( -784 1 208 ) ( -784 0 209 ) dark 0 512 180 0.015625 0.015625 +( -80 0 208 ) ( -80 0 209 ) ( -79 0 208 ) dark 0 512 180 0.015625 0.015625 +( -80 0 0 ) ( -79 0 0 ) ( -80 1 0 ) dark 0 512 180 0.015625 0.015625 +( 0 16 208 ) ( 0 17 208 ) ( 1 16 208 ) dark 0 512 180 0.015625 0.015625 +( 0 16 224 ) ( 1 16 224 ) ( 0 16 225 ) dark 0 512 180 0.015625 0.015625 +( 0 16 224 ) ( 0 16 225 ) ( 0 17 224 ) dark 0 512 180 0.015625 0.015625 +} +// brush 3 +{ +( -16 496 0 ) ( -16 497 0 ) ( -16 496 1 ) dark 0 512 180 0.015625 0.015625 +( -32 16 0 ) ( -32 16 1 ) ( -31 16 0 ) dark 0 512 180 0.015625 0.015625 +( -32 496 0 ) ( -31 496 0 ) ( -32 497 0 ) dark 0 512 180 0.015625 0.015625 +( 0 624 208 ) ( 0 625 208 ) ( 1 624 208 ) dark 0 512 180 0.015625 0.015625 +( 0 1344 16 ) ( 1 1344 16 ) ( 0 1344 17 ) dark 0 512 180 0.015625 0.015625 +( 0 624 16 ) ( 0 624 17 ) ( 0 625 16 ) dark 0 512 180 0.015625 0.015625 +} +// brush 4 +{ +( -784 1328 0 ) ( -784 1329 0 ) ( -784 1328 1 ) dark 0 512 0 0.015625 0.015625 +( -576 1328 0 ) ( -576 1328 1 ) ( -575 1328 0 ) dark 0 512 0 0.015625 0.015625 +( -576 1328 0 ) ( -575 1328 0 ) ( -576 1329 0 ) dark 0 512 0 0.015625 0.015625 +( -16 1344 208 ) ( -16 1345 208 ) ( -15 1344 208 ) dark 0 512 0 0.015625 0.015625 +( -16 1344 16 ) ( -15 1344 16 ) ( -16 1344 17 ) dark 0 512 0 0.015625 0.015625 +( -16 1344 16 ) ( -16 1344 17 ) ( -16 1345 16 ) dark 0 512 0 0.015625 0.015625 +} +// brush 5 +{ +( -784 752 0 ) ( -784 752 96 ) ( -784 432 0 ) dark 0 512 0 0.015625 0.015625 +( -784 752 96 ) ( -592 752 96 ) ( -592 432 0 ) dark 0 512 0 0.015625 0.015625 +( -592 432 0 ) ( -592 752 0 ) ( -784 752 0 ) dark 0 512 0 0.015625 0.015625 +( -592 752 0 ) ( -592 752 96 ) ( -784 752 96 ) dark 0 512 0 0.015625 0.015625 +( -592 432 0 ) ( -592 752 96 ) ( -592 752 0 ) dark 0 512 0 0.015625 0.015625 +} +// brush 6 +{ +( -80 256 0 ) ( -16 256 72 ) ( -16 208 72 ) dark 0 512 0 0.015625 0.015625 +( -80 208 0 ) ( -16 208 72 ) ( -16 208 0 ) dark 0 512 0 0.015625 0.015625 +( -16 208 0 ) ( -16 256 0 ) ( -80 256 0 ) dark 0 512 0 0.015625 0.015625 +( -16 256 0 ) ( -16 256 72 ) ( -80 256 0 ) dark 0 512 0 0.015625 0.015625 +( -16 208 72 ) ( -16 256 72 ) ( -16 256 0 ) dark 0 512 0 0.015625 0.015625 +} +// brush 7 +{ +( -80 336 0 ) ( -16 336 80 ) ( -16 288 80 ) dark 0 512 0 0.015625 0.015625 +( -80 288 0 ) ( -16 288 80 ) ( -16 288 0 ) dark 0 512 0 0.015625 0.015625 +( -16 288 0 ) ( -16 336 0 ) ( -80 336 0 ) dark 0 512 0 0.015625 0.015625 +( -16 336 0 ) ( -16 336 80 ) ( -80 336 0 ) dark 0 512 0 0.015625 0.015625 +( -16 288 80 ) ( -16 336 80 ) ( -16 336 0 ) dark 0 512 0 0.015625 0.015625 +} +// brush 8 +{ +( -80 416 16 ) ( -80 368 16 ) ( -80 368 0 ) dark 0 512 0 0.015625 0.015625 +( -80 368 16 ) ( -16 368 16 ) ( -16 368 0 ) dark 0 512 0 0.015625 0.015625 +( -16 368 0 ) ( -16 416 0 ) ( -80 416 0 ) dark 0 512 0 0.015625 0.015625 +( -80 416 16 ) ( -16 416 16 ) ( -16 368 16 ) dark 0 512 0 0.015625 0.015625 +( -16 416 0 ) ( -16 416 16 ) ( -80 416 16 ) dark 0 512 0 0.015625 0.015625 +( -16 368 16 ) ( -16 416 16 ) ( -16 416 0 ) dark 0 512 0 0.015625 0.015625 +} +// brush 9 +{ +( -80 544 32 ) ( -80 496 32 ) ( -80 496 0 ) dark 0 512 0 0.015625 0.015625 +( -80 496 32 ) ( -16 496 32 ) ( -16 496 0 ) dark 0 512 0 0.015625 0.015625 +( -16 496 0 ) ( -16 544 0 ) ( -80 544 0 ) dark 0 512 0 0.015625 0.015625 +( -80 544 32 ) ( -16 544 32 ) ( -16 496 32 ) dark 0 512 0 0.015625 0.015625 +( -16 544 0 ) ( -16 544 32 ) ( -80 544 32 ) dark 0 512 0 0.015625 0.015625 +( -16 496 32 ) ( -16 544 32 ) ( -16 544 0 ) dark 0 512 0 0.015625 0.015625 +} +// brush 10 +{ +( -80 480 24 ) ( -80 432 24 ) ( -80 432 0 ) dark 0 512 0 0.015625 0.015625 +( -80 432 24 ) ( -16 432 24 ) ( -16 432 0 ) dark 0 512 0 0.015625 0.015625 +( -16 432 0 ) ( -16 480 0 ) ( -80 480 0 ) dark 0 512 0 0.015625 0.015625 +( -80 480 24 ) ( -16 480 24 ) ( -16 432 24 ) dark 0 512 0 0.015625 0.015625 +( -16 480 0 ) ( -16 480 24 ) ( -80 480 24 ) dark 0 512 0 0.015625 0.015625 +( -16 432 24 ) ( -16 480 24 ) ( -16 480 0 ) dark 0 512 0 0.015625 0.015625 +} +// brush 11 +{ +( -80 608 40 ) ( -80 560 40 ) ( -80 560 0 ) dark 0 512 0 0.015625 0.015625 +( -80 560 40 ) ( -16 560 40 ) ( -16 560 0 ) dark 0 512 0 0.015625 0.015625 +( -16 560 0 ) ( -16 608 0 ) ( -80 608 0 ) dark 0 512 0 0.015625 0.015625 +( -80 608 40 ) ( -16 608 40 ) ( -16 560 40 ) dark 0 512 0 0.015625 0.015625 +( -16 608 0 ) ( -16 608 40 ) ( -80 608 40 ) dark 0 512 0 0.015625 0.015625 +( -16 560 40 ) ( -16 608 40 ) ( -16 608 0 ) dark 0 512 0 0.015625 0.015625 +} +// brush 12 +{ +( -80 176 0 ) ( -16 176 64 ) ( -16 128 64 ) dark 0 512 0 0.015625 0.015625 +( -80 128 0 ) ( -16 128 64 ) ( -16 128 0 ) dark 0 512 0 0.015625 0.015625 +( -16 128 0 ) ( -16 176 0 ) ( -80 176 0 ) dark 0 512 0 0.015625 0.015625 +( -16 176 0 ) ( -16 176 64 ) ( -80 176 0 ) dark 0 512 0 0.015625 0.015625 +( -16 128 64 ) ( -16 176 64 ) ( -16 176 0 ) dark 0 512 0 0.015625 0.015625 +} +// brush 13 +{ +( -80 96 56 ) ( -80 80 56 ) ( -80 80 40 ) dark 0 512 0 0.015625 0.015625 +( -80 80 56 ) ( -64 80 56 ) ( -64 80 40 ) dark 0 512 0 0.015625 0.015625 +( -64 80 40 ) ( -64 96 40 ) ( -80 96 40 ) dark 0 512 0 0.015625 0.015625 +( -80 96 56 ) ( -64 96 56 ) ( -64 80 56 ) dark 0 512 0 0.015625 0.015625 +( -64 96 40 ) ( -64 96 56 ) ( -80 96 56 ) dark 0 512 0 0.015625 0.015625 +( -64 80 56 ) ( -64 96 56 ) ( -64 96 40 ) dark 0 512 0 0.015625 0.015625 +} +// brush 14 +{ +( -80 672 48 ) ( -80 624 48 ) ( -80 624 0 ) dark 0 512 0 0.015625 0.015625 +( -80 624 48 ) ( -16 624 48 ) ( -16 624 0 ) dark 0 512 0 0.015625 0.015625 +( -16 624 0 ) ( -16 672 0 ) ( -80 672 0 ) dark 0 512 0 0.015625 0.015625 +( -80 672 48 ) ( -16 672 48 ) ( -16 624 48 ) dark 0 512 0 0.015625 0.015625 +( -16 672 0 ) ( -16 672 48 ) ( -80 672 48 ) dark 0 512 0 0.015625 0.015625 +( -16 624 48 ) ( -16 672 48 ) ( -16 672 0 ) dark 0 512 0 0.015625 0.015625 +} +// brush 15 +{ +( -467.7128129211019 637.2820323027552 64 ) ( -383.712812921102 491.7897644669695 64 ) ( -383.712812921102 491.7897644669695 0 ) shipping_container_01_side -175.73987 0 0 0.4330127 0.5 +( -412.2871870788979 669.2820323027552 0 ) ( -412.2871870788979 669.2820323027552 64 ) ( -467.7128129211019 637.2820323027552 64 ) shipping_container_01_front 63.30011 1.3402672 0 0.42977914 0.49051714 +( -328.2871870788979 523.7897644669695 0 ) ( -412.2871870788979 669.2820323027552 0 ) ( -467.7128129211019 637.2820323027552 0 ) shipping_container_01_side -38.589844 9.75885 30 1 1 +( -467.7128129211019 637.2820323027552 64 ) ( -412.2871870788979 669.2820323027552 64 ) ( -328.2871870788979 523.7897644669695 64 ) shipping_container_01_front -75.654724 84.19873 30 0.4645997 1.319437 +( -383.712812921102 491.7897644669695 64 ) ( -328.2871870788979 523.7897644669695 64 ) ( -328.2871870788979 523.7897644669695 0 ) shipping_container_01_front 1.0908203 0 0 0.426851 0.49832597 +( -328.2871870788979 523.7897644669695 64 ) ( -412.2871870788979 669.2820323027552 64 ) ( -412.2871870788979 669.2820323027552 0 ) shipping_container_01_side -249.64062 0 0 0.4330127 0.5 +} +// brush 16 +{ +( -320 512 8 ) ( -320 256 8 ) ( -320 256 0 ) shipping_container_01_front 0 0 0 1 1 +( -320 256 8 ) ( -64 256 8 ) ( -64 256 0 ) shipping_container_01_front 0 0 0 1 1 +( -64 256 0 ) ( -64 512 0 ) ( -320 512 0 ) shipping_container_01_front 0 0 0 1 1 +( -320 512 8 ) ( -64 512 8 ) ( -64 256 8 ) shipping_container_01_front 0 0 0 1 1 +( -64 512 0 ) ( -64 512 8 ) ( -320 512 8 ) shipping_container_01_front 0 0 0 1 1 +( -64 320 0 ) ( -160 512 128 ) ( -160 512 0 ) shipping_container_01_front 0 0 0 1 1 +( -64 256 8 ) ( -64 512 8 ) ( -64 512 0 ) shipping_container_01_front 0 0 0 1 1 +} +} +// entity 1 +{ +"classname" "Player" +"origin" "-576 208 16" +} +// entity 2 +{ +"classname" "enemy_dummy" +"origin" "-672 528 48" +} +// entity 3 +{ +"classname" "light" +"origin" "-20 740 68" +} diff --git a/scenes/map/autosave/test.13.map b/scenes/map/autosave/test.13.map new file mode 100644 index 0000000..c931ec1 --- /dev/null +++ b/scenes/map/autosave/test.13.map @@ -0,0 +1,393 @@ +// Game: Godot +// Format: Standard +// entity 0 +{ +"classname" "worldspawn" +"_tb_textures" "textures" +// brush 0 +{ +( -800 -272 -32 ) ( -800 -264.875 -32 ) ( -800 -272 -31 ) concrete_15 0 0 0 1 1 +( -816 0 -32 ) ( -816 0 -31 ) ( -808.625 0 -32 ) concrete_15 0 0 0 1 1 +( -816 -272 -32 ) ( -808.625 -272 -32 ) ( -816 -264.875 -32 ) concrete_15 0 0 0 1 1 +( 128 640 0 ) ( 128 647.125 0 ) ( 135.375 640 0 ) concrete_15 0 0 0 1 1 +( 128 1344 0 ) ( 135.375 1344 0 ) ( 128 1344 1 ) concrete_15 0 0 0 1 1 +( 0 640 0 ) ( 0 640 1 ) ( 0 647.125 0 ) concrete_15 0 0 0 1 1 +} +// brush 1 +{ +( -800 0 80 ) ( -800 1 80 ) ( -800 0 81 ) dark 0 512 0 0.015625 0.015625 +( -800 0 80 ) ( -800 0 81 ) ( -799 0 80 ) dark 0 512 0 0.015625 0.015625 +( -800 0 0 ) ( -799 0 0 ) ( -800 1 0 ) dark 0 512 0 0.015625 0.015625 +( -736 144 208 ) ( -736 145 208 ) ( -735 144 208 ) dark 0 512 0 0.015625 0.015625 +( -736 1344 96 ) ( -735 1344 96 ) ( -736 1344 97 ) dark 0 512 0 0.015625 0.015625 +( -784 144 96 ) ( -784 144 97 ) ( -784 145 96 ) dark 0 512 0 0.015625 0.015625 +} +// brush 2 +{ +( -784 0 208 ) ( -784 1 208 ) ( -784 0 209 ) dark 0 512 180 0.015625 0.015625 +( -80 0 208 ) ( -80 0 209 ) ( -79 0 208 ) dark 0 512 180 0.015625 0.015625 +( -80 0 0 ) ( -79 0 0 ) ( -80 1 0 ) dark 0 512 180 0.015625 0.015625 +( 0 16 208 ) ( 0 17 208 ) ( 1 16 208 ) dark 0 512 180 0.015625 0.015625 +( 0 16 224 ) ( 1 16 224 ) ( 0 16 225 ) dark 0 512 180 0.015625 0.015625 +( 0 16 224 ) ( 0 16 225 ) ( 0 17 224 ) dark 0 512 180 0.015625 0.015625 +} +// brush 3 +{ +( -16 496 0 ) ( -16 497 0 ) ( -16 496 1 ) dark 0 512 180 0.015625 0.015625 +( -32 16 0 ) ( -32 16 1 ) ( -31 16 0 ) dark 0 512 180 0.015625 0.015625 +( -32 496 0 ) ( -31 496 0 ) ( -32 497 0 ) dark 0 512 180 0.015625 0.015625 +( 0 624 208 ) ( 0 625 208 ) ( 1 624 208 ) dark 0 512 180 0.015625 0.015625 +( 0 1344 16 ) ( 1 1344 16 ) ( 0 1344 17 ) dark 0 512 180 0.015625 0.015625 +( 0 624 16 ) ( 0 624 17 ) ( 0 625 16 ) dark 0 512 180 0.015625 0.015625 +} +// brush 4 +{ +( -784 1328 0 ) ( -784 1329 0 ) ( -784 1328 1 ) dark 0 512 0 0.015625 0.015625 +( -576 1328 0 ) ( -576 1328 1 ) ( -575 1328 0 ) dark 0 512 0 0.015625 0.015625 +( -576 1328 0 ) ( -575 1328 0 ) ( -576 1329 0 ) dark 0 512 0 0.015625 0.015625 +( -16 1344 208 ) ( -16 1345 208 ) ( -15 1344 208 ) dark 0 512 0 0.015625 0.015625 +( -16 1344 16 ) ( -15 1344 16 ) ( -16 1344 17 ) dark 0 512 0 0.015625 0.015625 +( -16 1344 16 ) ( -16 1344 17 ) ( -16 1345 16 ) dark 0 512 0 0.015625 0.015625 +} +// brush 5 +{ +( -784 752 0 ) ( -784 752 96 ) ( -784 432 0 ) dark 0 512 0 0.015625 0.015625 +( -784 752 96 ) ( -592 752 96 ) ( -592 432 0 ) dark 0 512 0 0.015625 0.015625 +( -592 432 0 ) ( -592 752 0 ) ( -784 752 0 ) dark 0 512 0 0.015625 0.015625 +( -592 752 0 ) ( -592 752 96 ) ( -784 752 96 ) dark 0 512 0 0.015625 0.015625 +( -592 432 0 ) ( -592 752 96 ) ( -592 752 0 ) dark 0 512 0 0.015625 0.015625 +} +// brush 6 +{ +( -80 256 0 ) ( -16 256 72 ) ( -16 208 72 ) dark 0 512 0 0.015625 0.015625 +( -80 208 0 ) ( -16 208 72 ) ( -16 208 0 ) dark 0 512 0 0.015625 0.015625 +( -16 208 0 ) ( -16 256 0 ) ( -80 256 0 ) dark 0 512 0 0.015625 0.015625 +( -16 256 0 ) ( -16 256 72 ) ( -80 256 0 ) dark 0 512 0 0.015625 0.015625 +( -16 208 72 ) ( -16 256 72 ) ( -16 256 0 ) dark 0 512 0 0.015625 0.015625 +} +// brush 7 +{ +( -80 336 0 ) ( -16 336 80 ) ( -16 288 80 ) dark 0 512 0 0.015625 0.015625 +( -80 288 0 ) ( -16 288 80 ) ( -16 288 0 ) dark 0 512 0 0.015625 0.015625 +( -16 288 0 ) ( -16 336 0 ) ( -80 336 0 ) dark 0 512 0 0.015625 0.015625 +( -16 336 0 ) ( -16 336 80 ) ( -80 336 0 ) dark 0 512 0 0.015625 0.015625 +( -16 288 80 ) ( -16 336 80 ) ( -16 336 0 ) dark 0 512 0 0.015625 0.015625 +} +// brush 8 +{ +( -80 416 16 ) ( -80 368 16 ) ( -80 368 0 ) dark 0 512 0 0.015625 0.015625 +( -80 368 16 ) ( -16 368 16 ) ( -16 368 0 ) dark 0 512 0 0.015625 0.015625 +( -16 368 0 ) ( -16 416 0 ) ( -80 416 0 ) dark 0 512 0 0.015625 0.015625 +( -80 416 16 ) ( -16 416 16 ) ( -16 368 16 ) dark 0 512 0 0.015625 0.015625 +( -16 416 0 ) ( -16 416 16 ) ( -80 416 16 ) dark 0 512 0 0.015625 0.015625 +( -16 368 16 ) ( -16 416 16 ) ( -16 416 0 ) dark 0 512 0 0.015625 0.015625 +} +// brush 9 +{ +( -80 544 32 ) ( -80 496 32 ) ( -80 496 0 ) dark 0 512 0 0.015625 0.015625 +( -80 496 32 ) ( -16 496 32 ) ( -16 496 0 ) dark 0 512 0 0.015625 0.015625 +( -16 496 0 ) ( -16 544 0 ) ( -80 544 0 ) dark 0 512 0 0.015625 0.015625 +( -80 544 32 ) ( -16 544 32 ) ( -16 496 32 ) dark 0 512 0 0.015625 0.015625 +( -16 544 0 ) ( -16 544 32 ) ( -80 544 32 ) dark 0 512 0 0.015625 0.015625 +( -16 496 32 ) ( -16 544 32 ) ( -16 544 0 ) dark 0 512 0 0.015625 0.015625 +} +// brush 10 +{ +( -80 480 24 ) ( -80 432 24 ) ( -80 432 0 ) dark 0 512 0 0.015625 0.015625 +( -80 432 24 ) ( -16 432 24 ) ( -16 432 0 ) dark 0 512 0 0.015625 0.015625 +( -16 432 0 ) ( -16 480 0 ) ( -80 480 0 ) dark 0 512 0 0.015625 0.015625 +( -80 480 24 ) ( -16 480 24 ) ( -16 432 24 ) dark 0 512 0 0.015625 0.015625 +( -16 480 0 ) ( -16 480 24 ) ( -80 480 24 ) dark 0 512 0 0.015625 0.015625 +( -16 432 24 ) ( -16 480 24 ) ( -16 480 0 ) dark 0 512 0 0.015625 0.015625 +} +// brush 11 +{ +( -80 608 40 ) ( -80 560 40 ) ( -80 560 0 ) dark 0 512 0 0.015625 0.015625 +( -80 560 40 ) ( -16 560 40 ) ( -16 560 0 ) dark 0 512 0 0.015625 0.015625 +( -16 560 0 ) ( -16 608 0 ) ( -80 608 0 ) dark 0 512 0 0.015625 0.015625 +( -80 608 40 ) ( -16 608 40 ) ( -16 560 40 ) dark 0 512 0 0.015625 0.015625 +( -16 608 0 ) ( -16 608 40 ) ( -80 608 40 ) dark 0 512 0 0.015625 0.015625 +( -16 560 40 ) ( -16 608 40 ) ( -16 608 0 ) dark 0 512 0 0.015625 0.015625 +} +// brush 12 +{ +( -80 176 0 ) ( -16 176 64 ) ( -16 128 64 ) dark 0 512 0 0.015625 0.015625 +( -80 128 0 ) ( -16 128 64 ) ( -16 128 0 ) dark 0 512 0 0.015625 0.015625 +( -16 128 0 ) ( -16 176 0 ) ( -80 176 0 ) dark 0 512 0 0.015625 0.015625 +( -16 176 0 ) ( -16 176 64 ) ( -80 176 0 ) dark 0 512 0 0.015625 0.015625 +( -16 128 64 ) ( -16 176 64 ) ( -16 176 0 ) dark 0 512 0 0.015625 0.015625 +} +// brush 13 +{ +( -80 96 56 ) ( -80 80 56 ) ( -80 80 40 ) dark 0 512 0 0.015625 0.015625 +( -80 80 56 ) ( -64 80 56 ) ( -64 80 40 ) dark 0 512 0 0.015625 0.015625 +( -64 80 40 ) ( -64 96 40 ) ( -80 96 40 ) dark 0 512 0 0.015625 0.015625 +( -80 96 56 ) ( -64 96 56 ) ( -64 80 56 ) dark 0 512 0 0.015625 0.015625 +( -64 96 40 ) ( -64 96 56 ) ( -80 96 56 ) dark 0 512 0 0.015625 0.015625 +( -64 80 56 ) ( -64 96 56 ) ( -64 96 40 ) dark 0 512 0 0.015625 0.015625 +} +// brush 14 +{ +( -80 672 48 ) ( -80 624 48 ) ( -80 624 0 ) dark 0 512 0 0.015625 0.015625 +( -80 624 48 ) ( -16 624 48 ) ( -16 624 0 ) dark 0 512 0 0.015625 0.015625 +( -16 624 0 ) ( -16 672 0 ) ( -80 672 0 ) dark 0 512 0 0.015625 0.015625 +( -80 672 48 ) ( -16 672 48 ) ( -16 624 48 ) dark 0 512 0 0.015625 0.015625 +( -16 672 0 ) ( -16 672 48 ) ( -80 672 48 ) dark 0 512 0 0.015625 0.015625 +( -16 624 48 ) ( -16 672 48 ) ( -16 672 0 ) dark 0 512 0 0.015625 0.015625 +} +// brush 15 +{ +( -467.7128129211019 637.2820323027552 64 ) ( -383.712812921102 491.7897644669695 64 ) ( -383.712812921102 491.7897644669695 0 ) shipping_container_01_side -175.73987 0 0 0.4330127 0.5 +( -412.2871870788979 669.2820323027552 0 ) ( -412.2871870788979 669.2820323027552 64 ) ( -467.7128129211019 637.2820323027552 64 ) shipping_container_01_front 63.30011 1.3402672 0 0.42977914 0.49051714 +( -328.2871870788979 523.7897644669695 0 ) ( -412.2871870788979 669.2820323027552 0 ) ( -467.7128129211019 637.2820323027552 0 ) shipping_container_01_side -38.589844 9.75885 30 1 1 +( -467.7128129211019 637.2820323027552 64 ) ( -412.2871870788979 669.2820323027552 64 ) ( -328.2871870788979 523.7897644669695 64 ) shipping_container_01_front -75.654724 84.19873 30 0.4645997 1.319437 +( -383.712812921102 491.7897644669695 64 ) ( -328.2871870788979 523.7897644669695 64 ) ( -328.2871870788979 523.7897644669695 0 ) shipping_container_01_front 1.0908203 0 0 0.426851 0.49832597 +( -328.2871870788979 523.7897644669695 64 ) ( -412.2871870788979 669.2820323027552 64 ) ( -412.2871870788979 669.2820323027552 0 ) shipping_container_01_side -249.64062 0 0 0.4330127 0.5 +} +} +// entity 1 +{ +"classname" "Player" +"origin" "-576 208 16" +} +// entity 2 +{ +"classname" "enemy_dummy" +"origin" "-672 528 48" +} +// entity 3 +{ +"classname" "light" +"origin" "-20 740 68" +} +// entity 4 +{ +"classname" "func_group" +"_tb_type" "_tb_group" +"_tb_name" "Arch Group" +"_tb_id" "2" +// brush 0 +{ +( -417 463.5 -16 ) ( -472 392 28 ) ( -472 392 -16 ) shipping_container_01_front 11.636353 -46.545456 0 0.34375 0.34375 +( -384 392 -16 ) ( -384 480 -16 ) ( -472 480 -16 ) shipping_container_01_front -98.90906 -11.636353 0 0.34375 0.34375 +( -472 480 -13.25 ) ( -384 480 -13.25 ) ( -384 392 -13.25 ) shipping_container_01_front -98.90906 -11.636353 0 0.34375 0.34375 +( -400.5 447 -16 ) ( -472 392 -16 ) ( -472 392 28 ) shipping_container_01_front -98.90906 -46.545456 0 0.34375 0.34375 +( -417 463.5 -16 ) ( -400.5 447 -16 ) ( -400.5 447 28 ) shipping_container_01_front 11.636353 -46.545456 0 0.34375 0.34375 +} +// brush 1 +{ +( -384 403 -16 ) ( -472 392 28 ) ( -472 392 -16 ) shipping_container_01_front -98.90906 -46.545456 0 0.34375 0.34375 +( -472 392 -13.25 ) ( -384 392 -13.25 ) ( -384 392 -16 ) shipping_container_01_front -98.90906 -46.545456 0 0.34375 0.34375 +( -384 392 -16 ) ( -384 480 -16 ) ( -472 480 -16 ) shipping_container_01_front -98.90906 -11.636353 0 0.34375 0.34375 +( -472 480 -13.25 ) ( -384 480 -13.25 ) ( -384 392 -13.25 ) shipping_container_01_front -98.90906 -11.636353 0 0.34375 0.34375 +( -384 392 -13.25 ) ( -384 480 -13.25 ) ( -384 480 -16 ) shipping_container_01_front 11.636353 -46.545456 0 0.34375 0.34375 +} +// brush 2 +{ +( -461 480 -16 ) ( -472 392 28 ) ( -472 392 -16 ) shipping_container_01_front 11.636353 -46.545456 0 0.34375 0.34375 +( -384 392 -16 ) ( -384 480 -16 ) ( -472 480 -16 ) shipping_container_01_front -98.9093 -11.636353 0 0.34375 0.34375 +( -472 480 -13.25 ) ( -384 480 -13.25 ) ( -384 392 -13.25 ) shipping_container_01_front -98.9093 -11.636353 0 0.34375 0.34375 +( -461 480 -16 ) ( -439 474.5 -16 ) ( -439 474.5 28 ) shipping_container_01_front -98.90906 -46.545456 0 0.34375 0.34375 +( -439 474.5 -16 ) ( -472 392 -16 ) ( -472 392 28 ) shipping_container_01_front 11.636353 -46.545456 0 0.34375 0.34375 +} +// brush 3 +{ +( -400.5 447 -16 ) ( -472 392 28 ) ( -472 392 -16 ) shipping_container_01_front -98.90906 -46.545456 0 0.34375 0.34375 +( -384 392 -16 ) ( -384 480 -16 ) ( -472 480 -16 ) shipping_container_01_front -98.90918 -11.636353 0 0.34375 0.34375 +( -472 480 -13.25 ) ( -384 480 -13.25 ) ( -384 392 -13.25 ) shipping_container_01_front -98.90918 -11.636353 0 0.34375 0.34375 +( -389.5 425 -16 ) ( -472 392 -16 ) ( -472 392 28 ) shipping_container_01_front -98.90906 -46.545456 0 0.34375 0.34375 +( -384 414 -16 ) ( -417 480 28 ) ( -417 480 -16 ) shipping_container_01_front 11.636353 -46.545456 0 0.34375 0.34375 +} +// brush 4 +{ +( -389.5 425 -16 ) ( -472 392 28 ) ( -472 392 -16 ) shipping_container_01_front -98.90906 -46.545456 0 0.34375 0.34375 +( -384 392 -16 ) ( -384 480 -16 ) ( -472 480 -16 ) shipping_container_01_front -98.90918 -11.636353 0 0.34375 0.34375 +( -472 480 -13.25 ) ( -384 480 -13.25 ) ( -384 392 -13.25 ) shipping_container_01_front -98.90918 -11.636353 0 0.34375 0.34375 +( -384 403 -16 ) ( -472 392 -16 ) ( -472 392 28 ) shipping_container_01_front -98.90906 -46.545456 0 0.34375 0.34375 +( -384 403 -16 ) ( -389.5 425 28 ) ( -389.5 425 -16 ) shipping_container_01_front 11.636353 -46.545456 0 0.34375 0.34375 +} +// brush 5 +{ +( -472 480 -13.25 ) ( -472 392 -13.25 ) ( -472 392 -16 ) shipping_container_01_front 11.636353 -46.545456 0 0.34375 0.34375 +( -472 392 -16 ) ( -461 480 -16 ) ( -472 480 -16 ) shipping_container_01_front -98.9093 -11.636353 0 0.34375 0.34375 +( -472 480 -13.25 ) ( -461 480 -13.25 ) ( -472 392 -13.25 ) shipping_container_01_front -98.9093 -11.636353 0 0.34375 0.34375 +( -461 480 -16 ) ( -461 480 -13.25 ) ( -472 480 -13.25 ) shipping_container_01_front -98.90906 -46.545456 0 0.34375 0.34375 +( -472 392 -13.25 ) ( -461 480 -13.25 ) ( -461 480 -16 ) shipping_container_01_front 11.636353 -46.545456 0 0.34375 0.34375 +} +// brush 6 +{ +( -439 474.5 -16 ) ( -472 392 28 ) ( -472 392 -16 ) shipping_container_01_front 11.636353 -46.545456 0 0.34375 0.34375 +( -384 392 -16 ) ( -384 480 -16 ) ( -472 480 -16 ) shipping_container_01_front -98.90918 -11.636353 0 0.34375 0.34375 +( -472 480 -13.25 ) ( -384 480 -13.25 ) ( -384 392 -13.25 ) shipping_container_01_front -98.90918 -11.636353 0 0.34375 0.34375 +( -450 480 -16 ) ( -406 458 -16 ) ( -406 458 28 ) shipping_container_01_front -98.90906 -46.545456 0 0.34375 0.34375 +( -417 463.5 -16 ) ( -472 392 -16 ) ( -472 392 28 ) shipping_container_01_front 11.636353 -46.545456 0 0.34375 0.34375 +} +// brush 7 +{ +( -472 392 -13.25 ) ( -483 480 -16 ) ( -483 480 -13.25 ) shipping_container_01_front 11.636353 -46.545456 0 0.34375 0.34375 +( -472 392 -16 ) ( -472 480 -16 ) ( -483 480 -16 ) shipping_container_01_front 98.908936 -11.636353 180 0.34375 -0.34375 +( -472 480 -13.25 ) ( -472 392 -13.25 ) ( -483 480 -13.25 ) shipping_container_01_front 98.908936 -11.636353 180 0.34375 -0.34375 +( -483 480 -16 ) ( -472 480 -13.25 ) ( -483 480 -13.25 ) shipping_container_01_front 98.90906 -46.545456 180 0.34375 -0.34375 +( -472 480 -13.25 ) ( -472 392 -16 ) ( -472 392 -13.25 ) shipping_container_01_front 11.636353 -46.545456 0 0.34375 0.34375 +} +// brush 8 +{ +( -505 474.5 -16 ) ( -472 392 28 ) ( -472 392 -16 ) shipping_container_01_front 11.636353 -46.545456 0 0.34375 0.34375 +( -483 480 -16 ) ( -505 474.5 28 ) ( -505 474.5 -16 ) shipping_container_01_front 98.90906 -46.545456 180 0.34375 -0.34375 +( -560 392 -16 ) ( -472 480 -16 ) ( -560 480 -16 ) shipping_container_01_front 98.908936 -11.636353 180 0.34375 -0.34375 +( -472 480 -13.25 ) ( -560 392 -13.25 ) ( -560 480 -13.25 ) shipping_container_01_front 98.908936 -11.636353 180 0.34375 -0.34375 +( -483 480 -16 ) ( -472 392 -16 ) ( -472 392 28 ) shipping_container_01_front 11.636353 -46.545456 0 0.34375 0.34375 +} +// brush 9 +{ +( -527 463.5 -16 ) ( -472 392 28 ) ( -472 392 -16 ) shipping_container_01_front 11.636353 -46.545456 0 0.34375 0.34375 +( -494 480 -16 ) ( -538 458 28 ) ( -538 458 -16 ) shipping_container_01_front 98.90906 -46.545456 180 0.34375 -0.34375 +( -560 392 -16 ) ( -472 480 -16 ) ( -560 480 -16 ) shipping_container_01_front 98.9093 -11.636353 180 0.34375 -0.34375 +( -472 480 -13.25 ) ( -560 392 -13.25 ) ( -560 480 -13.25 ) shipping_container_01_front 98.9093 -11.636353 180 0.34375 -0.34375 +( -505 474.5 -16 ) ( -472 392 -16 ) ( -472 392 28 ) shipping_container_01_front 11.636353 -46.545456 0 0.34375 0.34375 +} +// brush 10 +{ +( -527 463.5 -16 ) ( -543.5 447 28 ) ( -543.5 447 -16 ) shipping_container_01_front 11.636353 -46.545456 0 0.34375 0.34375 +( -543.5 447 -16 ) ( -472 392 28 ) ( -472 392 -16 ) shipping_container_01_front 98.90906 -46.545456 180 0.34375 -0.34375 +( -560 392 -16 ) ( -472 480 -16 ) ( -560 480 -16 ) shipping_container_01_front 98.908936 -11.636353 180 0.34375 -0.34375 +( -472 480 -13.25 ) ( -560 392 -13.25 ) ( -560 480 -13.25 ) shipping_container_01_front 98.908936 -11.636353 180 0.34375 -0.34375 +( -527 463.5 -16 ) ( -472 392 -16 ) ( -472 392 28 ) shipping_container_01_front 11.636353 -46.545456 0 0.34375 0.34375 +} +// brush 11 +{ +( -560 403 -16 ) ( -554.5 425 -16 ) ( -554.5 425 28 ) shipping_container_01_front 11.636353 -46.545456 0 0.34375 0.34375 +( -560 403 -16 ) ( -472 392 28 ) ( -472 392 -16 ) shipping_container_01_front 98.90906 -46.545456 180 0.34375 -0.34375 +( -560 392 -16 ) ( -472 480 -16 ) ( -560 480 -16 ) shipping_container_01_front 98.9093 -11.636353 180 0.34375 -0.34375 +( -472 480 -13.25 ) ( -560 392 -13.25 ) ( -560 480 -13.25 ) shipping_container_01_front 98.9093 -11.636353 180 0.34375 -0.34375 +( -554.5 425 -16 ) ( -472 392 -16 ) ( -472 392 28 ) shipping_container_01_front 98.90906 -46.545456 180 0.34375 -0.34375 +} +// brush 12 +{ +( -560 414 -16 ) ( -527 480 -16 ) ( -527 480 28 ) shipping_container_01_front 11.636353 -46.545456 0 0.34375 0.34375 +( -554.5 425 -16 ) ( -472 392 28 ) ( -472 392 -16 ) shipping_container_01_front 98.90906 -46.545456 180 0.34375 -0.34375 +( -560 392 -16 ) ( -472 480 -16 ) ( -560 480 -16 ) shipping_container_01_front 98.9093 -11.636353 180 0.34375 -0.34375 +( -472 480 -13.25 ) ( -560 392 -13.25 ) ( -560 480 -13.25 ) shipping_container_01_front 98.9093 -11.636353 180 0.34375 -0.34375 +( -543.5 447 -16 ) ( -472 392 -16 ) ( -472 392 28 ) shipping_container_01_front 98.90906 -46.545456 180 0.34375 -0.34375 +} +// brush 13 +{ +( -560 392 -13.25 ) ( -560 480 -16 ) ( -560 480 -13.25 ) shipping_container_01_front 11.636353 -46.545456 0 0.34375 0.34375 +( -472 392 -13.25 ) ( -560 392 -16 ) ( -560 392 -13.25 ) shipping_container_01_front 98.90906 -46.545456 180 0.34375 -0.34375 +( -560 392 -16 ) ( -472 480 -16 ) ( -560 480 -16 ) shipping_container_01_front 98.908936 -11.636353 180 0.34375 -0.34375 +( -472 480 -13.25 ) ( -560 392 -13.25 ) ( -560 480 -13.25 ) shipping_container_01_front 98.908936 -11.636353 180 0.34375 -0.34375 +( -560 403 -16 ) ( -472 392 -16 ) ( -472 392 28 ) shipping_container_01_front 98.90906 -46.545456 180 0.34375 -0.34375 +} +// brush 14 +{ +( -472 304 -13.25 ) ( -472 392 -16 ) ( -472 392 -13.25 ) shipping_container_01_front -11.636353 -46.545456 180 0.34375 -0.34375 +( -461 304 -16 ) ( -472 304 -13.25 ) ( -461 304 -13.25 ) shipping_container_01_front -98.90906 -46.545456 0 0.34375 0.34375 +( -472 392 -16 ) ( -472 304 -16 ) ( -461 304 -16 ) shipping_container_01_front -98.9093 11.636414 0 0.34375 -0.34375 +( -472 304 -13.25 ) ( -472 392 -13.25 ) ( -461 304 -13.25 ) shipping_container_01_front -98.9093 11.636414 0 0.34375 -0.34375 +( -472 392 -13.25 ) ( -461 304 -16 ) ( -461 304 -13.25 ) shipping_container_01_front -11.636353 -46.545456 180 0.34375 -0.34375 +} +// brush 15 +{ +( -461 304 -16 ) ( -472 392 -16 ) ( -472 392 28 ) shipping_container_01_front -11.636353 -46.545456 180 0.34375 -0.34375 +( -384 392 -16 ) ( -472 304 -16 ) ( -384 304 -16 ) shipping_container_01_front -98.9093 11.636353 0 0.34375 -0.34375 +( -472 304 -13.25 ) ( -384 392 -13.25 ) ( -384 304 -13.25 ) shipping_container_01_front -98.9093 11.636353 0 0.34375 -0.34375 +( -461 304 -16 ) ( -439 309.5 28 ) ( -439 309.5 -16 ) shipping_container_01_front -98.90906 -46.545456 0 0.34375 0.34375 +( -439 309.5 -16 ) ( -472 392 28 ) ( -472 392 -16 ) shipping_container_01_front -11.636353 -46.545456 180 0.34375 -0.34375 +} +// brush 16 +{ +( -439 309.5 -16 ) ( -472 392 -16 ) ( -472 392 28 ) shipping_container_01_front -11.636353 -46.545456 180 0.34375 -0.34375 +( -384 392 -16 ) ( -472 304 -16 ) ( -384 304 -16 ) shipping_container_01_front -98.90918 11.636353 0 0.34375 -0.34375 +( -472 304 -13.25 ) ( -384 392 -13.25 ) ( -384 304 -13.25 ) shipping_container_01_front -98.90918 11.636353 0 0.34375 -0.34375 +( -450 304 -16 ) ( -406 326 28 ) ( -406 326 -16 ) shipping_container_01_front -98.90906 -46.545456 0 0.34375 0.34375 +( -417 320.5 -16 ) ( -472 392 28 ) ( -472 392 -16 ) shipping_container_01_front -11.636353 -46.545456 180 0.34375 -0.34375 +} +// brush 17 +{ +( -417 320.5 -16 ) ( -472 392 -16 ) ( -472 392 28 ) shipping_container_01_front -11.636353 -46.545456 180 0.34375 -0.34375 +( -384 392 -16 ) ( -472 304 -16 ) ( -384 304 -16 ) shipping_container_01_front -98.9093 11.636414 0 0.34375 -0.34375 +( -472 304 -13.25 ) ( -384 392 -13.25 ) ( -384 304 -13.25 ) shipping_container_01_front -98.9093 11.636414 0 0.34375 -0.34375 +( -400.5 337 -16 ) ( -472 392 28 ) ( -472 392 -16 ) shipping_container_01_front -98.90906 -46.545456 0 0.34375 0.34375 +( -417 320.5 -16 ) ( -400.5 337 28 ) ( -400.5 337 -16 ) shipping_container_01_front -11.6362915 -46.545456 180 0.34375 -0.34375 +} +// brush 18 +{ +( -389.5 359 -16 ) ( -472 392 -16 ) ( -472 392 28 ) shipping_container_01_front -98.90906 -46.545456 0 0.34375 0.34375 +( -384 392 -16 ) ( -472 304 -16 ) ( -384 304 -16 ) shipping_container_01_front -98.90918 11.636353 0 0.34375 -0.34375 +( -472 304 -13.25 ) ( -384 392 -13.25 ) ( -384 304 -13.25 ) shipping_container_01_front -98.90918 11.636353 0 0.34375 -0.34375 +( -384 381 -16 ) ( -472 392 28 ) ( -472 392 -16 ) shipping_container_01_front -98.90906 -46.545456 0 0.34375 0.34375 +( -384 381 -16 ) ( -389.5 359 -16 ) ( -389.5 359 28 ) shipping_container_01_front -11.636353 -46.545456 180 0.34375 -0.34375 +} +// brush 19 +{ +( -400.5 337 -16 ) ( -472 392 -16 ) ( -472 392 28 ) shipping_container_01_front -98.90906 -46.545456 0 0.34375 0.34375 +( -384 392 -16 ) ( -472 304 -16 ) ( -384 304 -16 ) shipping_container_01_front -98.90918 11.636353 0 0.34375 -0.34375 +( -472 304 -13.25 ) ( -384 392 -13.25 ) ( -384 304 -13.25 ) shipping_container_01_front -98.90918 11.636353 0 0.34375 -0.34375 +( -389.5 359 -16 ) ( -472 392 28 ) ( -472 392 -16 ) shipping_container_01_front -98.90906 -46.545456 0 0.34375 0.34375 +( -384 370 -16 ) ( -417 304 -16 ) ( -417 304 28 ) shipping_container_01_front -11.636353 -46.545456 180 0.34375 -0.34375 +} +// brush 20 +{ +( -384 381 -16 ) ( -472 392 -16 ) ( -472 392 28 ) shipping_container_01_front -98.90906 -46.545456 0 0.34375 0.34375 +( -384 392 -16 ) ( -472 304 -16 ) ( -384 304 -16 ) shipping_container_01_front -98.9093 11.636353 0 0.34375 -0.34375 +( -472 304 -13.25 ) ( -384 392 -13.25 ) ( -384 304 -13.25 ) shipping_container_01_front -98.9093 11.636353 0 0.34375 -0.34375 +( -472 392 -13.25 ) ( -384 392 -16 ) ( -384 392 -13.25 ) shipping_container_01_front -98.90906 -46.545456 0 0.34375 0.34375 +( -384 392 -13.25 ) ( -384 304 -16 ) ( -384 304 -13.25 ) shipping_container_01_front -11.636353 -46.545456 180 0.34375 -0.34375 +} +// brush 21 +{ +( -560 370 -16 ) ( -527 304 28 ) ( -527 304 -16 ) shipping_container_01_front -11.636353 -46.545456 180 0.34375 -0.34375 +( -554.5 359 -16 ) ( -472 392 -16 ) ( -472 392 28 ) shipping_container_01_front 98.90906 -46.545456 180 0.34375 -0.34375 +( -560 392 -16 ) ( -560 304 -16 ) ( -472 304 -16 ) shipping_container_01_front 98.9093 11.636353 180 0.34375 0.34375 +( -472 304 -13.25 ) ( -560 304 -13.25 ) ( -560 392 -13.25 ) shipping_container_01_front 98.9093 11.636353 180 0.34375 0.34375 +( -543.5 337 -16 ) ( -472 392 28 ) ( -472 392 -16 ) shipping_container_01_front 98.90906 -46.545456 180 0.34375 -0.34375 +} +// brush 22 +{ +( -527 320.5 -16 ) ( -543.5 337 -16 ) ( -543.5 337 28 ) shipping_container_01_front -11.636353 -46.545456 180 0.34375 -0.34375 +( -543.5 337 -16 ) ( -472 392 -16 ) ( -472 392 28 ) shipping_container_01_front 98.90906 -46.545456 180 0.34375 -0.34375 +( -560 392 -16 ) ( -560 304 -16 ) ( -472 304 -16 ) shipping_container_01_front 98.90918 11.636414 180 0.34375 0.34375 +( -472 304 -13.25 ) ( -560 304 -13.25 ) ( -560 392 -13.25 ) shipping_container_01_front 98.90918 11.636414 180 0.34375 0.34375 +( -527 320.5 -16 ) ( -472 392 28 ) ( -472 392 -16 ) shipping_container_01_front -11.636353 -46.545456 180 0.34375 -0.34375 +} +// brush 23 +{ +( -472 392 -16 ) ( -472 392 -13.25 ) ( -527 320.49999999999636 -13.25 ) shipping_container_01_front -11.636353 -46.545456 180 0.34375 -0.34375 +( -505 309.4999999999946 -16 ) ( -527 320.49999999999636 -16 ) ( -527 320.49999999999636 -13.25 ) shipping_container_01_front 98.90906 -46.545456 180 0.34375 -0.34375 +( -505 309.4999999999946 -16 ) ( -472 392 -16 ) ( -527 320.49999999999636 -16 ) shipping_container_01_front 98.9093 11.636353 180 0.34375 0.34375 +( -527 320.49999999999636 -13.25 ) ( -472 392 -13.25 ) ( -505 309.4999999999982 -13.25 ) shipping_container_01_front 98.9093 11.636353 180 0.34375 0.34375 +( -505 309.4999999999982 -13.25 ) ( -472 392 -13.25 ) ( -472 392 -16 ) shipping_container_01_front -11.636353 -46.545456 180 0.34375 -0.34375 +} +// brush 24 +{ +( -505 309.5 -16 ) ( -472 392 -16 ) ( -472 392 28 ) shipping_container_01_front -11.636353 -46.545456 180 0.34375 -0.34375 +( -483 304 -16 ) ( -505 309.5 -16 ) ( -505 309.5 28 ) shipping_container_01_front 98.90906 -46.545456 180 0.34375 -0.34375 +( -560 392 -16 ) ( -560 304 -16 ) ( -472 304 -16 ) shipping_container_01_front 98.90918 11.636353 180 0.34375 0.34375 +( -472 304 -13.25 ) ( -560 304 -13.25 ) ( -560 392 -13.25 ) shipping_container_01_front 98.90918 11.636353 180 0.34375 0.34375 +( -483 304 -16 ) ( -472 392 28 ) ( -472 392 -16 ) shipping_container_01_front -11.636353 -46.545456 180 0.34375 -0.34375 +} +// brush 25 +{ +( -472 392 -13.25 ) ( -483 304 -13.25 ) ( -483 304 -16 ) shipping_container_01_front -11.636353 -46.545456 180 0.34375 -0.34375 +( -483 304 -16 ) ( -483 304 -13.25 ) ( -472 304 -13.25 ) shipping_container_01_front 98.90906 -46.545456 180 0.34375 -0.34375 +( -472 392 -16 ) ( -483 304 -16 ) ( -472 304 -16 ) shipping_container_01_front 98.90918 11.636414 180 0.34375 0.34375 +( -472 304 -13.25 ) ( -483 304 -13.25 ) ( -472 392 -13.25 ) shipping_container_01_front 98.90918 11.636414 180 0.34375 0.34375 +( -472 304 -13.25 ) ( -472 392 -13.25 ) ( -472 392 -16 ) shipping_container_01_front -11.636353 -46.545456 180 0.34375 -0.34375 +} +// brush 26 +{ +( -560 381 -16 ) ( -554.5 359 28 ) ( -554.5 359 -16 ) shipping_container_01_front -11.636353 -46.545456 180 0.34375 -0.34375 +( -560 381 -16 ) ( -472 392 -16 ) ( -472 392 28 ) shipping_container_01_front 98.90906 -46.545456 180 0.34375 -0.34375 +( -560 392 -16 ) ( -560 304 -16 ) ( -472 304 -16 ) shipping_container_01_front 98.9093 11.636353 180 0.34375 0.34375 +( -472 304 -13.25 ) ( -560 304 -13.25 ) ( -560 392 -13.25 ) shipping_container_01_front 98.9093 11.636353 180 0.34375 0.34375 +( -554.5 359 -16 ) ( -472 392 28 ) ( -472 392 -16 ) shipping_container_01_front 98.90906 -46.545456 180 0.34375 -0.34375 +} +// brush 27 +{ +( -560 392 -13.25 ) ( -560 304 -13.25 ) ( -560 304 -16 ) shipping_container_01_front -11.636353 -46.545456 180 0.34375 -0.34375 +( -560 392 -16 ) ( -560 304 -16 ) ( -472 304 -16 ) shipping_container_01_front 98.908936 11.636353 180 0.34375 0.34375 +( -472 304 -13.25 ) ( -560 304 -13.25 ) ( -560 392 -13.25 ) shipping_container_01_front 98.908936 11.636353 180 0.34375 0.34375 +( -472 392 -13.25 ) ( -560 392 -13.25 ) ( -560 392 -16 ) shipping_container_01_front 98.90906 -46.545456 180 0.34375 -0.34375 +( -560 381 -16 ) ( -472 392 28 ) ( -472 392 -16 ) shipping_container_01_front 98.90906 -46.545456 180 0.34375 -0.34375 +} +} diff --git a/scenes/map/autosave/test.2.map b/scenes/map/autosave/test.2.map new file mode 100644 index 0000000..e7ac932 --- /dev/null +++ b/scenes/map/autosave/test.2.map @@ -0,0 +1,26 @@ +// Game: Godot +// Format: Standard +// entity 0 +{ +"classname" "worldspawn" +"_tb_textures" "textures" +// brush 0 +{ +( -464 -592 -16 ) ( -464 -584.8750000000001 -16 ) ( -464 -592 -15 ) dark 0 0 0 1 1 +( -464 -592 -16 ) ( -464 -592 -15 ) ( -456.6250000000001 -592 -16 ) dark 0 0 0 1 1 +( -464 -592 -16 ) ( -456.6250000000001 -592 -16 ) ( -464 -584.8750000000001 -16 ) dark 0 0 0 1 1 +( 480 320 16 ) ( 480 327.125 16 ) ( 487.3749999999998 320 16 ) dark 0 0 0 1 1 +( 480 320 16 ) ( 487.3749999999998 320 16 ) ( 480 320 17 ) dark 0 0 0 1 1 +( 480 320 16 ) ( 480 320 17 ) ( 480 327.125 16 ) dark 0 0 0 1 1 +} +} +// entity 1 +{ +"classname" "Player" +"origin" "32 -48 32" +} +// entity 2 +{ +"classname" "light" +"origin" "28 -188 20" +} diff --git a/scenes/map/autosave/test.3.map b/scenes/map/autosave/test.3.map new file mode 100644 index 0000000..170db17 --- /dev/null +++ b/scenes/map/autosave/test.3.map @@ -0,0 +1,24 @@ +// Game: Godot +// Format: Standard +// entity 0 +{ +"classname" "worldspawn" +"_tb_textures" "textures" +// brush 0 +{ +( -1024 -592 -16 ) ( -1024 -584.8750000000001 -16 ) ( -1024 -592 -15 ) dark 0 0 -360 0.1 0.1 +( -464 -288 -16 ) ( -464 -288 -15 ) ( -456.6250000000001 -288 -16 ) dark 0 0 -360 0.1 0.1 +( -464 -592 -16 ) ( -456.6250000000001 -592 -16 ) ( -464 -584.8750000000001 -16 ) dark 0 0 -360 0.1 0.1 +( 480 320 16 ) ( 480 327.125 16 ) ( 487.3749999999998 320 16 ) dark 0 0 -360 0.1 0.1 +( 480 320 16 ) ( 487.3749999999998 320 16 ) ( 480 320 17 ) dark 0 0 -360 0.1 0.1 +( 352 320 16 ) ( 352 320 17 ) ( 352 327.125 16 ) dark 0 0 -360 0.1 0.1 +} +} +// entity 1 +{ +"classname" "func_group" +"_tb_type" "_tb_layer" +"_tb_name" "Map" +"_tb_id" "1" +"_tb_layer_sort_index" "0" +} diff --git a/scenes/map/autosave/test.4.map b/scenes/map/autosave/test.4.map new file mode 100644 index 0000000..0bb506b --- /dev/null +++ b/scenes/map/autosave/test.4.map @@ -0,0 +1,57 @@ +// Game: Godot +// Format: Standard +// entity 0 +{ +"classname" "worldspawn" +"_tb_textures" "textures" +// brush 0 +{ +( -448 -592 -16 ) ( -448 -584.8750000000001 -16 ) ( -448 -592 -15 ) dark 0 0 -360 0.0625 0.0625 +( -464 -320 -16 ) ( -464 -320 -15 ) ( -456.6250000000001 -320 -16 ) dark 0 0 -360 0.0625 0.0625 +( -464 -592 -16 ) ( -456.6250000000001 -592 -16 ) ( -464 -584.8750000000001 -16 ) dark 0 0 -360 0.0625 0.0625 +( 480 320 16 ) ( 480 327.125 16 ) ( 487.3749999999998 320 16 ) dark 0 0 -360 0.0625 0.0625 +( 480 1024 16 ) ( 487.3749999999998 1024 16 ) ( 480 1024 17 ) dark 0 0 -360 0.0625 0.0625 +( 352 320 16 ) ( 352 320 17 ) ( 352 327.125 16 ) dark 0 0 -360 0.0625 0.0625 +} +// brush 1 +{ +( -448 -320 96 ) ( -448 -319 96 ) ( -448 -320 97 ) dark 0 -256 0 0.0625 0.0625 +( -448 -320 96 ) ( -448 -320 97 ) ( -447 -320 96 ) dark 0 -256 0 0.0625 0.0625 +( -448 -320 16 ) ( -447 -320 16 ) ( -448 -319 16 ) dark 0 -256 0 0.0625 0.0625 +( -384 -176 224 ) ( -384 -175 224 ) ( -383 -176 224 ) dark 0 -256 0 0.0625 0.0625 +( -384 1024 112 ) ( -383 1024 112 ) ( -384 1024 113 ) dark 0 -256 0 0.0625 0.0625 +( -432 -176 112 ) ( -432 -176 113 ) ( -432 -175 112 ) dark 0 -256 0 0.0625 0.0625 +} +// brush 2 +{ +( -432 -320 224 ) ( -432 -319 224 ) ( -432 -320 225 ) dark 0 -256 0 0.0625 0.0625 +( 272 -320 224 ) ( 272 -320 225 ) ( 273 -320 224 ) dark 0 -256 0 0.0625 0.0625 +( 272 -320 16 ) ( 273 -320 16 ) ( 272 -319 16 ) dark 0 -256 0 0.0625 0.0625 +( 352 -304 224 ) ( 352 -303 224 ) ( 353 -304 224 ) dark 0 -256 0 0.0625 0.0625 +( 352 -304 240 ) ( 353 -304 240 ) ( 352 -304 241 ) dark 0 -256 0 0.0625 0.0625 +( 352 -304 240 ) ( 352 -304 241 ) ( 352 -303 240 ) dark 0 -256 0 0.0625 0.0625 +} +// brush 3 +{ +( 336 176 16 ) ( 336 177 16 ) ( 336 176 17 ) dark 0 -256 0 0.0625 0.0625 +( 320 -304 16 ) ( 320 -304 17 ) ( 321 -304 16 ) dark 0 -256 0 0.0625 0.0625 +( 320 176 16 ) ( 321 176 16 ) ( 320 177 16 ) dark 0 -256 0 0.0625 0.0625 +( 352 304 224 ) ( 352 305 224 ) ( 353 304 224 ) dark 0 -256 0 0.0625 0.0625 +( 352 1024 32 ) ( 353 1024 32 ) ( 352 1024 33 ) dark 0 -256 0 0.0625 0.0625 +( 352 304 32 ) ( 352 304 33 ) ( 352 305 32 ) dark 0 -256 0 0.0625 0.0625 +} +// brush 4 +{ +( -432 1008 16 ) ( -432 1009 16 ) ( -432 1008 17 ) dark 0 -256 0 0.0625 0.0625 +( -224 1008 16 ) ( -224 1008 17 ) ( -223 1008 16 ) dark 0 -256 0 0.0625 0.0625 +( -224 1008 16 ) ( -223 1008 16 ) ( -224 1009 16 ) dark 0 -256 0 0.0625 0.0625 +( 336 1024 224 ) ( 336 1025 224 ) ( 337 1024 224 ) dark 0 -256 0 0.0625 0.0625 +( 336 1024 32 ) ( 337 1024 32 ) ( 336 1024 33 ) dark 0 -256 0 0.0625 0.0625 +( 336 1024 32 ) ( 336 1024 33 ) ( 336 1025 32 ) dark 0 -256 0 0.0625 0.0625 +} +} +// entity 1 +{ +"classname" "Player" +"origin" "-176 -80 32" +} diff --git a/scenes/map/autosave/test.5.map b/scenes/map/autosave/test.5.map new file mode 100644 index 0000000..47c61f4 --- /dev/null +++ b/scenes/map/autosave/test.5.map @@ -0,0 +1,57 @@ +// Game: Godot +// Format: Standard +// entity 0 +{ +"classname" "worldspawn" +"_tb_textures" "textures" +// brush 0 +{ +( -800 -272 -16 ) ( -800 -264.875 -16 ) ( -800 -272 -15 ) dark 0 0 0 0.03125 0.03125 +( -816 0 -16 ) ( -816 0 -15 ) ( -808.625 0 -16 ) dark 0 0 0 0.03125 0.03125 +( -816 -272 -16 ) ( -808.625 -272 -16 ) ( -816 -264.875 -16 ) dark 0 0 0 0.03125 0.03125 +( 128 640 16 ) ( 128 647.125 16 ) ( 135.375 640 16 ) dark 0 0 0 0.03125 0.03125 +( 128 1344 16 ) ( 135.375 1344 16 ) ( 128 1344 17 ) dark 0 0 0 0.03125 0.03125 +( 0 640 16 ) ( 0 640 17 ) ( 0 647.125 16 ) dark 0 0 0 0.03125 0.03125 +} +// brush 1 +{ +( -800 0 96 ) ( -800 1 96 ) ( -800 0 97 ) dark 0 -384 0 0.03125 0.03125 +( -800 0 96 ) ( -800 0 97 ) ( -799 0 96 ) dark 0 -384 0 0.03125 0.03125 +( -800 0 16 ) ( -799 0 16 ) ( -800 1 16 ) dark 0 -384 0 0.03125 0.03125 +( -736 144 224 ) ( -736 145 224 ) ( -735 144 224 ) dark 0 -384 0 0.03125 0.03125 +( -736 1344 112 ) ( -735 1344 112 ) ( -736 1344 113 ) dark 0 -384 0 0.03125 0.03125 +( -784 144 112 ) ( -784 144 113 ) ( -784 145 112 ) dark 0 -384 0 0.03125 0.03125 +} +// brush 2 +{ +( -784 0 224 ) ( -784 1 224 ) ( -784 0 225 ) dark 0 0 0 0.03125 0.03125 +( -80 0 224 ) ( -80 0 225 ) ( -79 0 224 ) dark 0 0 0 0.03125 0.03125 +( -80 0 16 ) ( -79 0 16 ) ( -80 1 16 ) dark 0 0 0 0.03125 0.03125 +( 0 16 224 ) ( 0 17 224 ) ( 1 16 224 ) dark 0 0 0 0.03125 0.03125 +( 0 16 240 ) ( 1 16 240 ) ( 0 16 241 ) dark 0 0 0 0.03125 0.03125 +( 0 16 240 ) ( 0 16 241 ) ( 0 17 240 ) dark 0 0 0 0.03125 0.03125 +} +// brush 3 +{ +( -16 496 16 ) ( -16 497 16 ) ( -16 496 17 ) dark 0 0 0 0.03125 0.03125 +( -32 16 16 ) ( -32 16 17 ) ( -31 16 16 ) dark 0 0 0 0.03125 0.03125 +( -32 496 16 ) ( -31 496 16 ) ( -32 497 16 ) dark 0 0 0 0.03125 0.03125 +( 0 624 224 ) ( 0 625 224 ) ( 1 624 224 ) dark 0 0 0 0.03125 0.03125 +( 0 1344 32 ) ( 1 1344 32 ) ( 0 1344 33 ) dark 0 0 0 0.03125 0.03125 +( 0 624 32 ) ( 0 624 33 ) ( 0 625 32 ) dark 0 0 0 0.03125 0.03125 +} +// brush 4 +{ +( -784 1328 16 ) ( -784 1329 16 ) ( -784 1328 17 ) dark 0 0 0 0.03125 0.03125 +( -576 1328 16 ) ( -576 1328 17 ) ( -575 1328 16 ) dark 0 0 0 0.03125 0.03125 +( -576 1328 16 ) ( -575 1328 16 ) ( -576 1329 16 ) dark 0 0 0 0.03125 0.03125 +( -16 1344 224 ) ( -16 1345 224 ) ( -15 1344 224 ) dark 0 0 0 0.03125 0.03125 +( -16 1344 32 ) ( -15 1344 32 ) ( -16 1344 33 ) dark 0 0 0 0.03125 0.03125 +( -16 1344 32 ) ( -16 1344 33 ) ( -16 1345 32 ) dark 0 0 0 0.03125 0.03125 +} +} +// entity 1 +{ +"classname" "Player" +"origin" "-528 240 32" +} diff --git a/scenes/map/autosave/test.6.map b/scenes/map/autosave/test.6.map new file mode 100644 index 0000000..67fbf8d --- /dev/null +++ b/scenes/map/autosave/test.6.map @@ -0,0 +1,65 @@ +// Game: Godot +// Format: Standard +// entity 0 +{ +"classname" "worldspawn" +"_tb_textures" "textures" +// brush 0 +{ +( -800 -272 -32 ) ( -800 -264.875 -32 ) ( -800 -272 -31 ) dark 0 512 0 0.015625 0.015625 +( -816 0 -32 ) ( -816 0 -31 ) ( -808.625 0 -32 ) dark 0 512 0 0.015625 0.015625 +( -816 -272 -32 ) ( -808.625 -272 -32 ) ( -816 -264.875 -32 ) dark 0 512 0 0.015625 0.015625 +( 128 640 0 ) ( 128 647.125 0 ) ( 135.375 640 0 ) dark 0 512 0 0.015625 0.015625 +( 128 1344 0 ) ( 135.375 1344 0 ) ( 128 1344 1 ) dark 0 512 0 0.015625 0.015625 +( 0 640 0 ) ( 0 640 1 ) ( 0 647.125 0 ) dark 0 512 0 0.015625 0.015625 +} +// brush 1 +{ +( -800 0 80 ) ( -800 1 80 ) ( -800 0 81 ) dark 0 512 0 0.015625 0.015625 +( -800 0 80 ) ( -800 0 81 ) ( -799 0 80 ) dark 0 512 0 0.015625 0.015625 +( -800 0 0 ) ( -799 0 0 ) ( -800 1 0 ) dark 0 512 0 0.015625 0.015625 +( -736 144 208 ) ( -736 145 208 ) ( -735 144 208 ) dark 0 512 0 0.015625 0.015625 +( -736 1344 96 ) ( -735 1344 96 ) ( -736 1344 97 ) dark 0 512 0 0.015625 0.015625 +( -784 144 96 ) ( -784 144 97 ) ( -784 145 96 ) dark 0 512 0 0.015625 0.015625 +} +// brush 2 +{ +( -784 0 208 ) ( -784 1 208 ) ( -784 0 209 ) dark 0 512 0 0.015625 0.015625 +( -80 0 208 ) ( -80 0 209 ) ( -79 0 208 ) dark 0 512 0 0.015625 0.015625 +( -80 0 0 ) ( -79 0 0 ) ( -80 1 0 ) dark 0 512 0 0.015625 0.015625 +( 0 16 208 ) ( 0 17 208 ) ( 1 16 208 ) dark 0 512 0 0.015625 0.015625 +( 0 16 224 ) ( 1 16 224 ) ( 0 16 225 ) dark 0 512 0 0.015625 0.015625 +( 0 16 224 ) ( 0 16 225 ) ( 0 17 224 ) dark 0 512 0 0.015625 0.015625 +} +// brush 3 +{ +( -16 496 0 ) ( -16 497 0 ) ( -16 496 1 ) dark 0 512 0 0.015625 0.015625 +( -32 16 0 ) ( -32 16 1 ) ( -31 16 0 ) dark 0 512 0 0.015625 0.015625 +( -32 496 0 ) ( -31 496 0 ) ( -32 497 0 ) dark 0 512 0 0.015625 0.015625 +( 0 624 208 ) ( 0 625 208 ) ( 1 624 208 ) dark 0 512 0 0.015625 0.015625 +( 0 1344 16 ) ( 1 1344 16 ) ( 0 1344 17 ) dark 0 512 0 0.015625 0.015625 +( 0 624 16 ) ( 0 624 17 ) ( 0 625 16 ) dark 0 512 0 0.015625 0.015625 +} +// brush 4 +{ +( -784 1328 0 ) ( -784 1329 0 ) ( -784 1328 1 ) dark 0 512 0 0.015625 0.015625 +( -576 1328 0 ) ( -576 1328 1 ) ( -575 1328 0 ) dark 0 512 0 0.015625 0.015625 +( -576 1328 0 ) ( -575 1328 0 ) ( -576 1329 0 ) dark 0 512 0 0.015625 0.015625 +( -16 1344 208 ) ( -16 1345 208 ) ( -15 1344 208 ) dark 0 512 0 0.015625 0.015625 +( -16 1344 16 ) ( -15 1344 16 ) ( -16 1344 17 ) dark 0 512 0 0.015625 0.015625 +( -16 1344 16 ) ( -16 1344 17 ) ( -16 1345 16 ) dark 0 512 0 0.015625 0.015625 +} +// brush 5 +{ +( -784 752 0 ) ( -784 752 96 ) ( -784 432 0 ) dark 0 512 0 0.015625 0.015625 +( -784 752 96 ) ( -592 752 96 ) ( -592 432 0 ) dark 0 512 0 0.015625 0.015625 +( -592 432 0 ) ( -592 752 0 ) ( -784 752 0 ) dark 0 512 0 0.015625 0.015625 +( -592 752 0 ) ( -592 752 96 ) ( -784 752 96 ) dark 0 512 0 0.015625 0.015625 +( -592 432 0 ) ( -592 752 96 ) ( -592 752 0 ) dark 0 512 0 0.015625 0.015625 +} +} +// entity 1 +{ +"classname" "Player" +"origin" "-672 240 16" +} diff --git a/scenes/map/autosave/test.7.map b/scenes/map/autosave/test.7.map new file mode 100644 index 0000000..0cb78c5 --- /dev/null +++ b/scenes/map/autosave/test.7.map @@ -0,0 +1,70 @@ +// Game: Godot +// Format: Standard +// entity 0 +{ +"classname" "worldspawn" +"_tb_textures" "textures" +// brush 0 +{ +( -800 -272 -32 ) ( -800 -264.875 -32 ) ( -800 -272 -31 ) dark 0 512 0 0.015625 0.015625 +( -816 0 -32 ) ( -816 0 -31 ) ( -808.625 0 -32 ) dark 0 512 0 0.015625 0.015625 +( -816 -272 -32 ) ( -808.625 -272 -32 ) ( -816 -264.875 -32 ) dark 0 512 0 0.015625 0.015625 +( 128 640 0 ) ( 128 647.125 0 ) ( 135.375 640 0 ) dark 0 512 0 0.015625 0.015625 +( 128 1344 0 ) ( 135.375 1344 0 ) ( 128 1344 1 ) dark 0 512 0 0.015625 0.015625 +( 0 640 0 ) ( 0 640 1 ) ( 0 647.125 0 ) dark 0 512 0 0.015625 0.015625 +} +// brush 1 +{ +( -800 0 80 ) ( -800 1 80 ) ( -800 0 81 ) dark 0 512 0 0.015625 0.015625 +( -800 0 80 ) ( -800 0 81 ) ( -799 0 80 ) dark 0 512 0 0.015625 0.015625 +( -800 0 0 ) ( -799 0 0 ) ( -800 1 0 ) dark 0 512 0 0.015625 0.015625 +( -736 144 208 ) ( -736 145 208 ) ( -735 144 208 ) dark 0 512 0 0.015625 0.015625 +( -736 1344 96 ) ( -735 1344 96 ) ( -736 1344 97 ) dark 0 512 0 0.015625 0.015625 +( -784 144 96 ) ( -784 144 97 ) ( -784 145 96 ) dark 0 512 0 0.015625 0.015625 +} +// brush 2 +{ +( -784 0 208 ) ( -784 1 208 ) ( -784 0 209 ) dark 0 512 0 0.015625 0.015625 +( -80 0 208 ) ( -80 0 209 ) ( -79 0 208 ) dark 0 512 0 0.015625 0.015625 +( -80 0 0 ) ( -79 0 0 ) ( -80 1 0 ) dark 0 512 0 0.015625 0.015625 +( 0 16 208 ) ( 0 17 208 ) ( 1 16 208 ) dark 0 512 0 0.015625 0.015625 +( 0 16 224 ) ( 1 16 224 ) ( 0 16 225 ) dark 0 512 0 0.015625 0.015625 +( 0 16 224 ) ( 0 16 225 ) ( 0 17 224 ) dark 0 512 0 0.015625 0.015625 +} +// brush 3 +{ +( -16 496 0 ) ( -16 497 0 ) ( -16 496 1 ) dark 0 512 0 0.015625 0.015625 +( -32 16 0 ) ( -32 16 1 ) ( -31 16 0 ) dark 0 512 0 0.015625 0.015625 +( -32 496 0 ) ( -31 496 0 ) ( -32 497 0 ) dark 0 512 0 0.015625 0.015625 +( 0 624 208 ) ( 0 625 208 ) ( 1 624 208 ) dark 0 512 0 0.015625 0.015625 +( 0 1344 16 ) ( 1 1344 16 ) ( 0 1344 17 ) dark 0 512 0 0.015625 0.015625 +( 0 624 16 ) ( 0 624 17 ) ( 0 625 16 ) dark 0 512 0 0.015625 0.015625 +} +// brush 4 +{ +( -784 1328 0 ) ( -784 1329 0 ) ( -784 1328 1 ) dark 0 512 0 0.015625 0.015625 +( -576 1328 0 ) ( -576 1328 1 ) ( -575 1328 0 ) dark 0 512 0 0.015625 0.015625 +( -576 1328 0 ) ( -575 1328 0 ) ( -576 1329 0 ) dark 0 512 0 0.015625 0.015625 +( -16 1344 208 ) ( -16 1345 208 ) ( -15 1344 208 ) dark 0 512 0 0.015625 0.015625 +( -16 1344 16 ) ( -15 1344 16 ) ( -16 1344 17 ) dark 0 512 0 0.015625 0.015625 +( -16 1344 16 ) ( -16 1344 17 ) ( -16 1345 16 ) dark 0 512 0 0.015625 0.015625 +} +// brush 5 +{ +( -784 752 0 ) ( -784 752 96 ) ( -784 432 0 ) dark 0 512 0 0.015625 0.015625 +( -784 752 96 ) ( -592 752 96 ) ( -592 432 0 ) dark 0 512 0 0.015625 0.015625 +( -592 432 0 ) ( -592 752 0 ) ( -784 752 0 ) dark 0 512 0 0.015625 0.015625 +( -592 752 0 ) ( -592 752 96 ) ( -784 752 96 ) dark 0 512 0 0.015625 0.015625 +( -592 432 0 ) ( -592 752 96 ) ( -592 752 0 ) dark 0 512 0 0.015625 0.015625 +} +} +// entity 1 +{ +"classname" "Player" +"origin" "-576 208 16" +} +// entity 2 +{ +"classname" "enemy_dummy" +"origin" "-240 480 16" +} diff --git a/scenes/map/autosave/test.8.map b/scenes/map/autosave/test.8.map new file mode 100644 index 0000000..a908893 --- /dev/null +++ b/scenes/map/autosave/test.8.map @@ -0,0 +1,157 @@ +// Game: Godot +// Format: Standard +// entity 0 +{ +"classname" "worldspawn" +"_tb_textures" "textures" +// brush 0 +{ +( -800 -272 -32 ) ( -800 -264.875 -32 ) ( -800 -272 -31 ) dark 0 512 0 0.015625 0.015625 +( -816 0 -32 ) ( -816 0 -31 ) ( -808.625 0 -32 ) dark 0 512 0 0.015625 0.015625 +( -816 -272 -32 ) ( -808.625 -272 -32 ) ( -816 -264.875 -32 ) dark 0 512 0 0.015625 0.015625 +( 128 640 0 ) ( 128 647.125 0 ) ( 135.375 640 0 ) dark 0 512 0 0.015625 0.015625 +( 128 1344 0 ) ( 135.375 1344 0 ) ( 128 1344 1 ) dark 0 512 0 0.015625 0.015625 +( 0 640 0 ) ( 0 640 1 ) ( 0 647.125 0 ) dark 0 512 0 0.015625 0.015625 +} +// brush 1 +{ +( -800 0 80 ) ( -800 1 80 ) ( -800 0 81 ) dark 0 512 0 0.015625 0.015625 +( -800 0 80 ) ( -800 0 81 ) ( -799 0 80 ) dark 0 512 0 0.015625 0.015625 +( -800 0 0 ) ( -799 0 0 ) ( -800 1 0 ) dark 0 512 0 0.015625 0.015625 +( -736 144 208 ) ( -736 145 208 ) ( -735 144 208 ) dark 0 512 0 0.015625 0.015625 +( -736 1344 96 ) ( -735 1344 96 ) ( -736 1344 97 ) dark 0 512 0 0.015625 0.015625 +( -784 144 96 ) ( -784 144 97 ) ( -784 145 96 ) dark 0 512 0 0.015625 0.015625 +} +// brush 2 +{ +( -784 0 208 ) ( -784 1 208 ) ( -784 0 209 ) dark 0 512 0 0.015625 0.015625 +( -80 0 208 ) ( -80 0 209 ) ( -79 0 208 ) dark 0 512 0 0.015625 0.015625 +( -80 0 0 ) ( -79 0 0 ) ( -80 1 0 ) dark 0 512 0 0.015625 0.015625 +( 0 16 208 ) ( 0 17 208 ) ( 1 16 208 ) dark 0 512 0 0.015625 0.015625 +( 0 16 224 ) ( 1 16 224 ) ( 0 16 225 ) dark 0 512 0 0.015625 0.015625 +( 0 16 224 ) ( 0 16 225 ) ( 0 17 224 ) dark 0 512 0 0.015625 0.015625 +} +// brush 3 +{ +( -16 496 0 ) ( -16 497 0 ) ( -16 496 1 ) dark 0 512 0 0.015625 0.015625 +( -32 16 0 ) ( -32 16 1 ) ( -31 16 0 ) dark 0 512 0 0.015625 0.015625 +( -32 496 0 ) ( -31 496 0 ) ( -32 497 0 ) dark 0 512 0 0.015625 0.015625 +( 0 624 208 ) ( 0 625 208 ) ( 1 624 208 ) dark 0 512 0 0.015625 0.015625 +( 0 1344 16 ) ( 1 1344 16 ) ( 0 1344 17 ) dark 0 512 0 0.015625 0.015625 +( 0 624 16 ) ( 0 624 17 ) ( 0 625 16 ) dark 0 512 0 0.015625 0.015625 +} +// brush 4 +{ +( -784 1328 0 ) ( -784 1329 0 ) ( -784 1328 1 ) dark 0 512 0 0.015625 0.015625 +( -576 1328 0 ) ( -576 1328 1 ) ( -575 1328 0 ) dark 0 512 0 0.015625 0.015625 +( -576 1328 0 ) ( -575 1328 0 ) ( -576 1329 0 ) dark 0 512 0 0.015625 0.015625 +( -16 1344 208 ) ( -16 1345 208 ) ( -15 1344 208 ) dark 0 512 0 0.015625 0.015625 +( -16 1344 16 ) ( -15 1344 16 ) ( -16 1344 17 ) dark 0 512 0 0.015625 0.015625 +( -16 1344 16 ) ( -16 1344 17 ) ( -16 1345 16 ) dark 0 512 0 0.015625 0.015625 +} +// brush 5 +{ +( -784 752 0 ) ( -784 752 96 ) ( -784 432 0 ) dark 0 512 0 0.015625 0.015625 +( -784 752 96 ) ( -592 752 96 ) ( -592 432 0 ) dark 0 512 0 0.015625 0.015625 +( -592 432 0 ) ( -592 752 0 ) ( -784 752 0 ) dark 0 512 0 0.015625 0.015625 +( -592 752 0 ) ( -592 752 96 ) ( -784 752 96 ) dark 0 512 0 0.015625 0.015625 +( -592 432 0 ) ( -592 752 96 ) ( -592 752 0 ) dark 0 512 0 0.015625 0.015625 +} +// brush 6 +{ +( -80 256 0 ) ( -16 256 72 ) ( -16 208 72 ) dark -512 512 0 0.015625 0.015625 +( -80 208 0 ) ( -16 208 72 ) ( -16 208 0 ) dark 0 512 0 0.015625 0.015625 +( -16 208 0 ) ( -16 256 0 ) ( -80 256 0 ) dark 0 512 0 0.015625 0.015625 +( -16 256 0 ) ( -16 256 72 ) ( -80 256 0 ) dark 0 512 0 0.015625 0.015625 +( -16 208 72 ) ( -16 256 72 ) ( -16 256 0 ) dark 0 512 0 0.015625 0.015625 +} +// brush 7 +{ +( -80 336 0 ) ( -16 336 80 ) ( -16 288 80 ) dark 0 512 0 0.015625 0.015625 +( -80 288 0 ) ( -16 288 80 ) ( -16 288 0 ) dark -3.6571045 512 0 0.015625 0.015625 +( -16 288 0 ) ( -16 336 0 ) ( -80 336 0 ) dark 0 512 0 0.015625 0.015625 +( -16 336 0 ) ( -16 336 80 ) ( -80 336 0 ) dark -3.6571045 512 0 0.015625 0.015625 +( -16 288 80 ) ( -16 336 80 ) ( -16 336 0 ) dark 0 512 0 0.015625 0.015625 +} +// brush 8 +{ +( -80 416 16 ) ( -80 368 16 ) ( -80 368 0 ) dark 0 512 0 0.015625 0.015625 +( -80 368 16 ) ( -16 368 16 ) ( -16 368 0 ) dark 0 512 0 0.015625 0.015625 +( -16 368 0 ) ( -16 416 0 ) ( -80 416 0 ) dark 0 512 0 0.015625 0.015625 +( -80 416 16 ) ( -16 416 16 ) ( -16 368 16 ) dark 0 512 0 0.015625 0.015625 +( -16 416 0 ) ( -16 416 16 ) ( -80 416 16 ) dark 0 512 0 0.015625 0.015625 +( -16 368 16 ) ( -16 416 16 ) ( -16 416 0 ) dark 0 512 0 0.015625 0.015625 +} +// brush 9 +{ +( -80 544 32 ) ( -80 496 32 ) ( -80 496 0 ) dark 0 512 0 0.015625 0.015625 +( -80 496 32 ) ( -16 496 32 ) ( -16 496 0 ) dark 0 512 0 0.015625 0.015625 +( -16 496 0 ) ( -16 544 0 ) ( -80 544 0 ) dark 0 512 0 0.015625 0.015625 +( -80 544 32 ) ( -16 544 32 ) ( -16 496 32 ) dark 0 512 0 0.015625 0.015625 +( -16 544 0 ) ( -16 544 32 ) ( -80 544 32 ) dark 0 512 0 0.015625 0.015625 +( -16 496 32 ) ( -16 544 32 ) ( -16 544 0 ) dark 0 512 0 0.015625 0.015625 +} +// brush 10 +{ +( -432 784 160 ) ( -432 480 160 ) ( -432 480 0 ) dark 0 512 0 0.015625 0.015625 +( -432 480 160 ) ( -272 480 160 ) ( -272 480 0 ) dark 0 512 0 0.015625 0.015625 +( -272 480 0 ) ( -272 784 0 ) ( -432 784 0 ) dark 0 512 0 0.015625 0.015625 +( -432 784 160 ) ( -272 784 160 ) ( -272 480 160 ) dark 0 512 0 0.015625 0.015625 +( -272 784 0 ) ( -272 784 160 ) ( -432 784 160 ) dark 0 512 0 0.015625 0.015625 +( -272 480 160 ) ( -272 784 160 ) ( -272 784 0 ) dark 0 512 0 0.015625 0.015625 +} +// brush 11 +{ +( -80 480 24 ) ( -80 432 24 ) ( -80 432 0 ) dark 64 512 0 0.015625 0.015625 +( -80 432 24 ) ( -16 432 24 ) ( -16 432 0 ) dark -80 512 0 0.015625 0.015625 +( -16 432 0 ) ( -16 480 0 ) ( -80 480 0 ) dark -80 512 0 0.015625 0.015625 +( -80 480 24 ) ( -16 480 24 ) ( -16 432 24 ) dark -80 512 0 0.015625 0.015625 +( -16 480 0 ) ( -16 480 24 ) ( -80 480 24 ) dark -80 512 0 0.015625 0.015625 +( -16 432 24 ) ( -16 480 24 ) ( -16 480 0 ) dark 64 512 0 0.015625 0.015625 +} +// brush 12 +{ +( -80 608 40 ) ( -80 560 40 ) ( -80 560 0 ) dark 0 512 0 0.015625 0.015625 +( -80 560 40 ) ( -16 560 40 ) ( -16 560 0 ) dark 0 512 0 0.015625 0.015625 +( -16 560 0 ) ( -16 608 0 ) ( -80 608 0 ) dark 0 512 0 0.015625 0.015625 +( -80 608 40 ) ( -16 608 40 ) ( -16 560 40 ) dark 0 512 0 0.015625 0.015625 +( -16 608 0 ) ( -16 608 40 ) ( -80 608 40 ) dark 0 512 0 0.015625 0.015625 +( -16 560 40 ) ( -16 608 40 ) ( -16 608 0 ) dark 0 512 0 0.015625 0.015625 +} +// brush 13 +{ +( -80 176 0 ) ( -16 176 64 ) ( -16 128 64 ) dark 0 512 0 0.015625 0.015625 +( -80 128 0 ) ( -16 128 64 ) ( -16 128 0 ) dark 0 512 0 0.015625 0.015625 +( -16 128 0 ) ( -16 176 0 ) ( -80 176 0 ) dark 0 512 0 0.015625 0.015625 +( -16 176 0 ) ( -16 176 64 ) ( -80 176 0 ) dark 0 512 0 0.015625 0.015625 +( -16 128 64 ) ( -16 176 64 ) ( -16 176 0 ) dark 0 512 0 0.015625 0.015625 +} +// brush 14 +{ +( -80 96 56 ) ( -80 80 56 ) ( -80 80 40 ) dark 0 512 0 0.015625 0.015625 +( -80 80 56 ) ( -64 80 56 ) ( -64 80 40 ) dark -512 512 0 0.015625 0.015625 +( -64 80 40 ) ( -64 96 40 ) ( -80 96 40 ) dark -512 512 0 0.015625 0.015625 +( -80 96 56 ) ( -64 96 56 ) ( -64 80 56 ) dark -512 512 0 0.015625 0.015625 +( -64 96 40 ) ( -64 96 56 ) ( -80 96 56 ) dark -512 512 0 0.015625 0.015625 +( -64 80 56 ) ( -64 96 56 ) ( -64 96 40 ) dark 0 512 0 0.015625 0.015625 +} +// brush 15 +{ +( -80 672 48 ) ( -80 624 48 ) ( -80 624 0 ) dark 0 512 0 0.015625 0.015625 +( -80 624 48 ) ( -16 624 48 ) ( -16 624 0 ) dark 0 512 0 0.015625 0.015625 +( -16 624 0 ) ( -16 672 0 ) ( -80 672 0 ) dark 0 512 0 0.015625 0.015625 +( -80 672 48 ) ( -16 672 48 ) ( -16 624 48 ) dark 0 512 0 0.015625 0.015625 +( -16 672 0 ) ( -16 672 48 ) ( -80 672 48 ) dark 0 512 0 0.015625 0.015625 +( -16 624 48 ) ( -16 672 48 ) ( -16 672 0 ) dark 0 512 0 0.015625 0.015625 +} +} +// entity 1 +{ +"classname" "Player" +"origin" "-576 208 16" +} +// entity 2 +{ +"classname" "enemy_dummy" +"origin" "-672 528 48" +} diff --git a/scenes/map/autosave/test.9.map b/scenes/map/autosave/test.9.map new file mode 100644 index 0000000..f571367 --- /dev/null +++ b/scenes/map/autosave/test.9.map @@ -0,0 +1,153 @@ +// Game: Godot +// Format: Standard +// entity 0 +{ +"classname" "worldspawn" +"_tb_textures" "textures" +// brush 0 +{ +( -800 -272 -32 ) ( -800 -264.875 -32 ) ( -800 -272 -31 ) concrete_15 0 0 0 0.5 0.5 +( -816 0 -32 ) ( -816 0 -31 ) ( -808.625 0 -32 ) concrete_15 0 0 0 0.5 0.5 +( -816 -272 -32 ) ( -808.625 -272 -32 ) ( -816 -264.875 -32 ) concrete_15 0 0 0 0.5 0.5 +( 128 640 0 ) ( 128 647.125 0 ) ( 135.375 640 0 ) concrete_15 0 0 0 0.5 0.5 +( 128 1344 0 ) ( 135.375 1344 0 ) ( 128 1344 1 ) concrete_15 0 0 0 0.5 0.5 +( 0 640 0 ) ( 0 640 1 ) ( 0 647.125 0 ) concrete_15 0 0 0 0.5 0.5 +} +// brush 1 +{ +( -800 0 80 ) ( -800 1 80 ) ( -800 0 81 ) dark 0 512 0 0.015625 0.015625 +( -800 0 80 ) ( -800 0 81 ) ( -799 0 80 ) dark 0 512 0 0.015625 0.015625 +( -800 0 0 ) ( -799 0 0 ) ( -800 1 0 ) dark 0 512 0 0.015625 0.015625 +( -736 144 208 ) ( -736 145 208 ) ( -735 144 208 ) dark 0 512 0 0.015625 0.015625 +( -736 1344 96 ) ( -735 1344 96 ) ( -736 1344 97 ) dark 0 512 0 0.015625 0.015625 +( -784 144 96 ) ( -784 144 97 ) ( -784 145 96 ) dark 0 512 0 0.015625 0.015625 +} +// brush 2 +{ +( -784 0 208 ) ( -784 1 208 ) ( -784 0 209 ) dark 0 512 180 0.015625 0.015625 +( -80 0 208 ) ( -80 0 209 ) ( -79 0 208 ) dark 0 512 180 0.015625 0.015625 +( -80 0 0 ) ( -79 0 0 ) ( -80 1 0 ) dark 0 512 180 0.015625 0.015625 +( 0 16 208 ) ( 0 17 208 ) ( 1 16 208 ) dark 0 512 180 0.015625 0.015625 +( 0 16 224 ) ( 1 16 224 ) ( 0 16 225 ) dark 0 512 180 0.015625 0.015625 +( 0 16 224 ) ( 0 16 225 ) ( 0 17 224 ) dark 0 512 180 0.015625 0.015625 +} +// brush 3 +{ +( -16 496 0 ) ( -16 497 0 ) ( -16 496 1 ) dark 0 512 180 0.015625 0.015625 +( -32 16 0 ) ( -32 16 1 ) ( -31 16 0 ) dark 0 512 180 0.015625 0.015625 +( -32 496 0 ) ( -31 496 0 ) ( -32 497 0 ) dark 0 512 180 0.015625 0.015625 +( 0 624 208 ) ( 0 625 208 ) ( 1 624 208 ) dark 0 512 180 0.015625 0.015625 +( 0 1344 16 ) ( 1 1344 16 ) ( 0 1344 17 ) dark 0 512 180 0.015625 0.015625 +( 0 624 16 ) ( 0 624 17 ) ( 0 625 16 ) dark 0 512 180 0.015625 0.015625 +} +// brush 4 +{ +( -784 1328 0 ) ( -784 1329 0 ) ( -784 1328 1 ) dark 0 512 0 0.015625 0.015625 +( -576 1328 0 ) ( -576 1328 1 ) ( -575 1328 0 ) dark 0 512 0 0.015625 0.015625 +( -576 1328 0 ) ( -575 1328 0 ) ( -576 1329 0 ) dark 0 512 0 0.015625 0.015625 +( -16 1344 208 ) ( -16 1345 208 ) ( -15 1344 208 ) dark 0 512 0 0.015625 0.015625 +( -16 1344 16 ) ( -15 1344 16 ) ( -16 1344 17 ) dark 0 512 0 0.015625 0.015625 +( -16 1344 16 ) ( -16 1344 17 ) ( -16 1345 16 ) dark 0 512 0 0.015625 0.015625 +} +// brush 5 +{ +( -784 752 0 ) ( -784 752 96 ) ( -784 432 0 ) dark 0 512 0 0.015625 0.015625 +( -784 752 96 ) ( -592 752 96 ) ( -592 432 0 ) dark 0 512 0 0.015625 0.015625 +( -592 432 0 ) ( -592 752 0 ) ( -784 752 0 ) dark 0 512 0 0.015625 0.015625 +( -592 752 0 ) ( -592 752 96 ) ( -784 752 96 ) dark 0 512 0 0.015625 0.015625 +( -592 432 0 ) ( -592 752 96 ) ( -592 752 0 ) dark 0 512 0 0.015625 0.015625 +} +// brush 6 +{ +( -80 256 0 ) ( -16 256 72 ) ( -16 208 72 ) dark 0 512 0 0.015625 0.015625 +( -80 208 0 ) ( -16 208 72 ) ( -16 208 0 ) dark 0 512 0 0.015625 0.015625 +( -16 208 0 ) ( -16 256 0 ) ( -80 256 0 ) dark 0 512 0 0.015625 0.015625 +( -16 256 0 ) ( -16 256 72 ) ( -80 256 0 ) dark 0 512 0 0.015625 0.015625 +( -16 208 72 ) ( -16 256 72 ) ( -16 256 0 ) dark 0 512 0 0.015625 0.015625 +} +// brush 7 +{ +( -80 336 0 ) ( -16 336 80 ) ( -16 288 80 ) dark 0 512 0 0.015625 0.015625 +( -80 288 0 ) ( -16 288 80 ) ( -16 288 0 ) dark 0 512 0 0.015625 0.015625 +( -16 288 0 ) ( -16 336 0 ) ( -80 336 0 ) dark 0 512 0 0.015625 0.015625 +( -16 336 0 ) ( -16 336 80 ) ( -80 336 0 ) dark 0 512 0 0.015625 0.015625 +( -16 288 80 ) ( -16 336 80 ) ( -16 336 0 ) dark 0 512 0 0.015625 0.015625 +} +// brush 8 +{ +( -80 416 16 ) ( -80 368 16 ) ( -80 368 0 ) dark 0 512 0 0.015625 0.015625 +( -80 368 16 ) ( -16 368 16 ) ( -16 368 0 ) dark 0 512 0 0.015625 0.015625 +( -16 368 0 ) ( -16 416 0 ) ( -80 416 0 ) dark 0 512 0 0.015625 0.015625 +( -80 416 16 ) ( -16 416 16 ) ( -16 368 16 ) dark 0 512 0 0.015625 0.015625 +( -16 416 0 ) ( -16 416 16 ) ( -80 416 16 ) dark 0 512 0 0.015625 0.015625 +( -16 368 16 ) ( -16 416 16 ) ( -16 416 0 ) dark 0 512 0 0.015625 0.015625 +} +// brush 9 +{ +( -80 544 32 ) ( -80 496 32 ) ( -80 496 0 ) dark 0 512 0 0.015625 0.015625 +( -80 496 32 ) ( -16 496 32 ) ( -16 496 0 ) dark 0 512 0 0.015625 0.015625 +( -16 496 0 ) ( -16 544 0 ) ( -80 544 0 ) dark 0 512 0 0.015625 0.015625 +( -80 544 32 ) ( -16 544 32 ) ( -16 496 32 ) dark 0 512 0 0.015625 0.015625 +( -16 544 0 ) ( -16 544 32 ) ( -80 544 32 ) dark 0 512 0 0.015625 0.015625 +( -16 496 32 ) ( -16 544 32 ) ( -16 544 0 ) dark 0 512 0 0.015625 0.015625 +} +// brush 10 +{ +( -80 480 24 ) ( -80 432 24 ) ( -80 432 0 ) dark 0 512 0 0.015625 0.015625 +( -80 432 24 ) ( -16 432 24 ) ( -16 432 0 ) dark 0 512 0 0.015625 0.015625 +( -16 432 0 ) ( -16 480 0 ) ( -80 480 0 ) dark 0 512 0 0.015625 0.015625 +( -80 480 24 ) ( -16 480 24 ) ( -16 432 24 ) dark 0 512 0 0.015625 0.015625 +( -16 480 0 ) ( -16 480 24 ) ( -80 480 24 ) dark 0 512 0 0.015625 0.015625 +( -16 432 24 ) ( -16 480 24 ) ( -16 480 0 ) dark 0 512 0 0.015625 0.015625 +} +// brush 11 +{ +( -80 608 40 ) ( -80 560 40 ) ( -80 560 0 ) dark 0 512 0 0.015625 0.015625 +( -80 560 40 ) ( -16 560 40 ) ( -16 560 0 ) dark 0 512 0 0.015625 0.015625 +( -16 560 0 ) ( -16 608 0 ) ( -80 608 0 ) dark 0 512 0 0.015625 0.015625 +( -80 608 40 ) ( -16 608 40 ) ( -16 560 40 ) dark 0 512 0 0.015625 0.015625 +( -16 608 0 ) ( -16 608 40 ) ( -80 608 40 ) dark 0 512 0 0.015625 0.015625 +( -16 560 40 ) ( -16 608 40 ) ( -16 608 0 ) dark 0 512 0 0.015625 0.015625 +} +// brush 12 +{ +( -80 176 0 ) ( -16 176 64 ) ( -16 128 64 ) dark 0 512 0 0.015625 0.015625 +( -80 128 0 ) ( -16 128 64 ) ( -16 128 0 ) dark 0 512 0 0.015625 0.015625 +( -16 128 0 ) ( -16 176 0 ) ( -80 176 0 ) dark 0 512 0 0.015625 0.015625 +( -16 176 0 ) ( -16 176 64 ) ( -80 176 0 ) dark 0 512 0 0.015625 0.015625 +( -16 128 64 ) ( -16 176 64 ) ( -16 176 0 ) dark 0 512 0 0.015625 0.015625 +} +// brush 13 +{ +( -80 96 56 ) ( -80 80 56 ) ( -80 80 40 ) dark 0 512 0 0.015625 0.015625 +( -80 80 56 ) ( -64 80 56 ) ( -64 80 40 ) dark 0 512 0 0.015625 0.015625 +( -64 80 40 ) ( -64 96 40 ) ( -80 96 40 ) dark 0 512 0 0.015625 0.015625 +( -80 96 56 ) ( -64 96 56 ) ( -64 80 56 ) dark 0 512 0 0.015625 0.015625 +( -64 96 40 ) ( -64 96 56 ) ( -80 96 56 ) dark 0 512 0 0.015625 0.015625 +( -64 80 56 ) ( -64 96 56 ) ( -64 96 40 ) dark 0 512 0 0.015625 0.015625 +} +// brush 14 +{ +( -80 672 48 ) ( -80 624 48 ) ( -80 624 0 ) dark 0 512 0 0.015625 0.015625 +( -80 624 48 ) ( -16 624 48 ) ( -16 624 0 ) dark 0 512 0 0.015625 0.015625 +( -16 624 0 ) ( -16 672 0 ) ( -80 672 0 ) dark 0 512 0 0.015625 0.015625 +( -80 672 48 ) ( -16 672 48 ) ( -16 624 48 ) dark 0 512 0 0.015625 0.015625 +( -16 672 0 ) ( -16 672 48 ) ( -80 672 48 ) dark 0 512 0 0.015625 0.015625 +( -16 624 48 ) ( -16 672 48 ) ( -16 672 0 ) dark 0 512 0 0.015625 0.015625 +} +} +// entity 1 +{ +"classname" "Player" +"origin" "-576 208 16" +} +// entity 2 +{ +"classname" "enemy_dummy" +"origin" "-672 528 48" +} +// entity 3 +{ +"classname" "light" +"origin" "-20 740 68" +} diff --git a/scenes/map/test.map b/scenes/map/test.map new file mode 100644 index 0000000..f4c3282 --- /dev/null +++ b/scenes/map/test.map @@ -0,0 +1,193 @@ +// Game: Godot +// Format: Standard +// entity 0 +{ +"classname" "worldspawn" +"_tb_textures" "textures" +// brush 0 +{ +( -800 -272 -32 ) ( -800 -264.875 -32 ) ( -800 -272 -31 ) concrete_15 0 0 0 1 1 +( -816 0 -32 ) ( -816 0 -31 ) ( -808.625 0 -32 ) concrete_15 0 0 0 1 1 +( -816 -272 -32 ) ( -808.625 -272 -32 ) ( -816 -264.875 -32 ) concrete_15 0 0 0 1 1 +( 128 640 0 ) ( 128 647.125 0 ) ( 135.375 640 0 ) concrete_15 0 0 0 1 1 +( 128 1344 0 ) ( 135.375 1344 0 ) ( 128 1344 1 ) concrete_15 0 0 0 1 1 +( 0 640 0 ) ( 0 640 1 ) ( 0 647.125 0 ) concrete_15 0 0 0 1 1 +} +// brush 1 +{ +( -800 0 80 ) ( -800 1 80 ) ( -800 0 81 ) dark 0 512 0 0.015625 0.015625 +( -800 0 80 ) ( -800 0 81 ) ( -799 0 80 ) dark 0 512 0 0.015625 0.015625 +( -800 0 0 ) ( -799 0 0 ) ( -800 1 0 ) dark 0 512 0 0.015625 0.015625 +( -736 144 208 ) ( -736 145 208 ) ( -735 144 208 ) dark 0 512 0 0.015625 0.015625 +( -736 1344 96 ) ( -735 1344 96 ) ( -736 1344 97 ) dark 0 512 0 0.015625 0.015625 +( -784 144 96 ) ( -784 144 97 ) ( -784 145 96 ) dark 0 512 0 0.015625 0.015625 +} +// brush 2 +{ +( -784 0 208 ) ( -784 1 208 ) ( -784 0 209 ) dark 0 512 180 0.015625 0.015625 +( -80 0 208 ) ( -80 0 209 ) ( -79 0 208 ) dark 0 512 180 0.015625 0.015625 +( -80 0 0 ) ( -79 0 0 ) ( -80 1 0 ) dark 0 512 180 0.015625 0.015625 +( 0 16 208 ) ( 0 17 208 ) ( 1 16 208 ) dark 0 512 180 0.015625 0.015625 +( 0 16 224 ) ( 1 16 224 ) ( 0 16 225 ) dark 0 512 180 0.015625 0.015625 +( 0 16 224 ) ( 0 16 225 ) ( 0 17 224 ) dark 0 512 180 0.015625 0.015625 +} +// brush 3 +{ +( -16 496 0 ) ( -16 497 0 ) ( -16 496 1 ) dark 0 512 180 0.015625 0.015625 +( -32 16 0 ) ( -32 16 1 ) ( -31 16 0 ) dark 0 512 180 0.015625 0.015625 +( -32 496 0 ) ( -31 496 0 ) ( -32 497 0 ) dark 0 512 180 0.015625 0.015625 +( 0 624 208 ) ( 0 625 208 ) ( 1 624 208 ) dark 0 512 180 0.015625 0.015625 +( 0 1344 16 ) ( 1 1344 16 ) ( 0 1344 17 ) dark 0 512 180 0.015625 0.015625 +( 0 624 16 ) ( 0 624 17 ) ( 0 625 16 ) dark 0 512 180 0.015625 0.015625 +} +// brush 4 +{ +( -784 1328 0 ) ( -784 1329 0 ) ( -784 1328 1 ) dark 0 512 0 0.015625 0.015625 +( -576 1328 0 ) ( -576 1328 1 ) ( -575 1328 0 ) dark 0 512 0 0.015625 0.015625 +( -576 1328 0 ) ( -575 1328 0 ) ( -576 1329 0 ) dark 0 512 0 0.015625 0.015625 +( -16 1344 208 ) ( -16 1345 208 ) ( -15 1344 208 ) dark 0 512 0 0.015625 0.015625 +( -16 1344 16 ) ( -15 1344 16 ) ( -16 1344 17 ) dark 0 512 0 0.015625 0.015625 +( -16 1344 16 ) ( -16 1344 17 ) ( -16 1345 16 ) dark 0 512 0 0.015625 0.015625 +} +// brush 5 +{ +( -784 752 0 ) ( -784 752 96 ) ( -784 432 0 ) dark 0 512 0 0.015625 0.015625 +( -784 752 96 ) ( -592 752 96 ) ( -592 432 0 ) dark 0 512 0 0.015625 0.015625 +( -592 432 0 ) ( -592 752 0 ) ( -784 752 0 ) dark 0 512 0 0.015625 0.015625 +( -592 752 0 ) ( -592 752 96 ) ( -784 752 96 ) dark 0 512 0 0.015625 0.015625 +( -592 432 0 ) ( -592 752 96 ) ( -592 752 0 ) dark 0 512 0 0.015625 0.015625 +} +// brush 6 +{ +( -80 256 0 ) ( -16 256 72 ) ( -16 208 72 ) dark 0 512 0 0.015625 0.015625 +( -80 208 0 ) ( -16 208 72 ) ( -16 208 0 ) dark 0 512 0 0.015625 0.015625 +( -16 208 0 ) ( -16 256 0 ) ( -80 256 0 ) dark 0 512 0 0.015625 0.015625 +( -16 256 0 ) ( -16 256 72 ) ( -80 256 0 ) dark 0 512 0 0.015625 0.015625 +( -16 208 72 ) ( -16 256 72 ) ( -16 256 0 ) dark 0 512 0 0.015625 0.015625 +} +// brush 7 +{ +( -80 336 0 ) ( -16 336 80 ) ( -16 288 80 ) dark 0 512 0 0.015625 0.015625 +( -80 288 0 ) ( -16 288 80 ) ( -16 288 0 ) dark 0 512 0 0.015625 0.015625 +( -16 288 0 ) ( -16 336 0 ) ( -80 336 0 ) dark 0 512 0 0.015625 0.015625 +( -16 336 0 ) ( -16 336 80 ) ( -80 336 0 ) dark 0 512 0 0.015625 0.015625 +( -16 288 80 ) ( -16 336 80 ) ( -16 336 0 ) dark 0 512 0 0.015625 0.015625 +} +// brush 8 +{ +( -80 416 16 ) ( -80 368 16 ) ( -80 368 0 ) dark 0 512 0 0.015625 0.015625 +( -80 368 16 ) ( -16 368 16 ) ( -16 368 0 ) dark 0 512 0 0.015625 0.015625 +( -16 368 0 ) ( -16 416 0 ) ( -80 416 0 ) dark 0 512 0 0.015625 0.015625 +( -80 416 16 ) ( -16 416 16 ) ( -16 368 16 ) dark 0 512 0 0.015625 0.015625 +( -16 416 0 ) ( -16 416 16 ) ( -80 416 16 ) dark 0 512 0 0.015625 0.015625 +( -16 368 16 ) ( -16 416 16 ) ( -16 416 0 ) dark 0 512 0 0.015625 0.015625 +} +// brush 9 +{ +( -80 544 32 ) ( -80 496 32 ) ( -80 496 0 ) dark 0 512 0 0.015625 0.015625 +( -80 496 32 ) ( -16 496 32 ) ( -16 496 0 ) dark 0 512 0 0.015625 0.015625 +( -16 496 0 ) ( -16 544 0 ) ( -80 544 0 ) dark 0 512 0 0.015625 0.015625 +( -80 544 32 ) ( -16 544 32 ) ( -16 496 32 ) dark 0 512 0 0.015625 0.015625 +( -16 544 0 ) ( -16 544 32 ) ( -80 544 32 ) dark 0 512 0 0.015625 0.015625 +( -16 496 32 ) ( -16 544 32 ) ( -16 544 0 ) dark 0 512 0 0.015625 0.015625 +} +// brush 10 +{ +( -80 480 24 ) ( -80 432 24 ) ( -80 432 0 ) dark 0 512 0 0.015625 0.015625 +( -80 432 24 ) ( -16 432 24 ) ( -16 432 0 ) dark 0 512 0 0.015625 0.015625 +( -16 432 0 ) ( -16 480 0 ) ( -80 480 0 ) dark 0 512 0 0.015625 0.015625 +( -80 480 24 ) ( -16 480 24 ) ( -16 432 24 ) dark 0 512 0 0.015625 0.015625 +( -16 480 0 ) ( -16 480 24 ) ( -80 480 24 ) dark 0 512 0 0.015625 0.015625 +( -16 432 24 ) ( -16 480 24 ) ( -16 480 0 ) dark 0 512 0 0.015625 0.015625 +} +// brush 11 +{ +( -80 608 40 ) ( -80 560 40 ) ( -80 560 0 ) dark 0 512 0 0.015625 0.015625 +( -80 560 40 ) ( -16 560 40 ) ( -16 560 0 ) dark 0 512 0 0.015625 0.015625 +( -16 560 0 ) ( -16 608 0 ) ( -80 608 0 ) dark 0 512 0 0.015625 0.015625 +( -80 608 40 ) ( -16 608 40 ) ( -16 560 40 ) dark 0 512 0 0.015625 0.015625 +( -16 608 0 ) ( -16 608 40 ) ( -80 608 40 ) dark 0 512 0 0.015625 0.015625 +( -16 560 40 ) ( -16 608 40 ) ( -16 608 0 ) dark 0 512 0 0.015625 0.015625 +} +// brush 12 +{ +( -80 176 0 ) ( -16 176 64 ) ( -16 128 64 ) dark 0 512 0 0.015625 0.015625 +( -80 128 0 ) ( -16 128 64 ) ( -16 128 0 ) dark 0 512 0 0.015625 0.015625 +( -16 128 0 ) ( -16 176 0 ) ( -80 176 0 ) dark 0 512 0 0.015625 0.015625 +( -16 176 0 ) ( -16 176 64 ) ( -80 176 0 ) dark 0 512 0 0.015625 0.015625 +( -16 128 64 ) ( -16 176 64 ) ( -16 176 0 ) dark 0 512 0 0.015625 0.015625 +} +// brush 13 +{ +( -80 96 56 ) ( -80 80 56 ) ( -80 80 40 ) dark 0 512 0 0.015625 0.015625 +( -80 80 56 ) ( -64 80 56 ) ( -64 80 40 ) dark 0 512 0 0.015625 0.015625 +( -64 80 40 ) ( -64 96 40 ) ( -80 96 40 ) dark 0 512 0 0.015625 0.015625 +( -80 96 56 ) ( -64 96 56 ) ( -64 80 56 ) dark 0 512 0 0.015625 0.015625 +( -64 96 40 ) ( -64 96 56 ) ( -80 96 56 ) dark 0 512 0 0.015625 0.015625 +( -64 80 56 ) ( -64 96 56 ) ( -64 96 40 ) dark 0 512 0 0.015625 0.015625 +} +// brush 14 +{ +( -80 672 48 ) ( -80 624 48 ) ( -80 624 0 ) dark 0 512 0 0.015625 0.015625 +( -80 624 48 ) ( -16 624 48 ) ( -16 624 0 ) dark 0 512 0 0.015625 0.015625 +( -16 624 0 ) ( -16 672 0 ) ( -80 672 0 ) dark 0 512 0 0.015625 0.015625 +( -80 672 48 ) ( -16 672 48 ) ( -16 624 48 ) dark 0 512 0 0.015625 0.015625 +( -16 672 0 ) ( -16 672 48 ) ( -80 672 48 ) dark 0 512 0 0.015625 0.015625 +( -16 624 48 ) ( -16 672 48 ) ( -16 672 0 ) dark 0 512 0 0.015625 0.015625 +} +// brush 15 +{ +( -467.7128129211019 637.2820323027552 64 ) ( -383.712812921102 491.7897644669695 64 ) ( -383.712812921102 491.7897644669695 0 ) shipping_container_01_side -175.73987 0 0 0.4330127 0.5 +( -412.2871870788979 669.2820323027552 0 ) ( -412.2871870788979 669.2820323027552 64 ) ( -467.7128129211019 637.2820323027552 64 ) shipping_container_01_front 63.30011 1.3402672 0 0.42977914 0.49051714 +( -328.2871870788979 523.7897644669695 0 ) ( -412.2871870788979 669.2820323027552 0 ) ( -467.7128129211019 637.2820323027552 0 ) shipping_container_01_side -38.589844 9.75885 30 1 1 +( -467.7128129211019 637.2820323027552 64 ) ( -412.2871870788979 669.2820323027552 64 ) ( -328.2871870788979 523.7897644669695 64 ) shipping_container_01_front -75.654724 84.19873 30 0.4645997 1.319437 +( -383.712812921102 491.7897644669695 64 ) ( -328.2871870788979 523.7897644669695 64 ) ( -328.2871870788979 523.7897644669695 0 ) shipping_container_01_front 1.0908203 0 0 0.426851 0.49832597 +( -328.2871870788979 523.7897644669695 64 ) ( -412.2871870788979 669.2820323027552 64 ) ( -412.2871870788979 669.2820323027552 0 ) shipping_container_01_side -249.64062 0 0 0.4330127 0.5 +} +// brush 16 +{ +( -784 1120 80 ) ( -784 1121 80 ) ( -784 1120 81 ) __TB_empty 0 0 0 1 1 +( -784 1120 80 ) ( -784 1120 81 ) ( -783 1120 80 ) __TB_empty 0 0 0 1 1 +( -784 1120 80 ) ( -783 1120 80 ) ( -784 1121 80 ) __TB_empty 0 0 0 1 1 +( -640 1344 96 ) ( -640 1345 96 ) ( -639 1344 96 ) __TB_empty 0 0 0 1 1 +( -640 1344 96 ) ( -639 1344 96 ) ( -640 1344 97 ) __TB_empty 0 0 0 1 1 +( -640 1344 96 ) ( -640 1344 97 ) ( -640 1345 96 ) __TB_empty 0 0 0 1 1 +} +// brush 17 +{ +( -784 1120 0 ) ( -784 1121 0 ) ( -784 1120 1 ) __TB_empty 0 0 0 1 1 +( -784 1120 0 ) ( -784 1120 1 ) ( -783 1120 0 ) __TB_empty 0 0 0 1 1 +( -784 1120 0 ) ( -783 1120 0 ) ( -784 1121 0 ) __TB_empty 0 0 0 1 1 +( -640 1136 80 ) ( -640 1137 80 ) ( -639 1136 80 ) __TB_empty 0 0 0 1 1 +( -640 1136 80 ) ( -639 1136 80 ) ( -640 1136 81 ) __TB_empty 0 0 0 1 1 +( -640 1136 80 ) ( -640 1136 81 ) ( -640 1137 80 ) __TB_empty 0 0 0 1 1 +} +// brush 18 +{ +( -656 1168 0 ) ( -656 1169 0 ) ( -656 1168 1 ) __TB_empty 0 0 0 1 1 +( -656 1168 0 ) ( -656 1168 1 ) ( -655 1168 0 ) __TB_empty 0 0 0 1 1 +( -656 1168 0 ) ( -655 1168 0 ) ( -656 1169 0 ) __TB_empty 0 0 0 1 1 +( -640 1344 80 ) ( -640 1345 80 ) ( -639 1344 80 ) __TB_empty 0 0 0 1 1 +( -640 1344 80 ) ( -639 1344 80 ) ( -640 1344 81 ) __TB_empty 0 0 0 1 1 +( -640 1344 80 ) ( -640 1344 81 ) ( -640 1345 80 ) __TB_empty 0 0 0 1 1 +} +// brush 19 +{ +( -736 1232 0 ) ( -736 1233 0 ) ( -736 1232 1 ) __TB_empty 0 0 0 1 1 +( -736 1232 0 ) ( -736 1232 1 ) ( -735 1232 0 ) __TB_empty 0 0 0 1 1 +( -736 1232 0 ) ( -735 1232 0 ) ( -736 1233 0 ) __TB_empty 0 0 0 1 1 +( -704 1264 32 ) ( -704 1265 32 ) ( -703 1264 32 ) __TB_empty 0 0 0 1 1 +( -704 1264 32 ) ( -703 1264 32 ) ( -704 1264 33 ) __TB_empty 0 0 0 1 1 +( -704 1264 32 ) ( -704 1264 33 ) ( -704 1265 32 ) __TB_empty 0 0 0 1 1 +} +} +// entity 1 +{ +"classname" "light" +"origin" "-724 1324 44" +} +// entity 2 +{ +"classname" "Player" +"origin" "-560 304 16" +} diff --git a/scenes/map/test.mtl b/scenes/map/test.mtl new file mode 100644 index 0000000..60e8469 --- /dev/null +++ b/scenes/map/test.mtl @@ -0,0 +1,15 @@ +newmtl __TB_empty +map_Kd textures/__TB_empty.png + +newmtl concrete_15 +map_Kd textures/concrete_15.jpg + +newmtl dark +map_Kd textures/dark.png + +newmtl shipping_container_01_front +map_Kd textures/shipping_container_01_front.jpg + +newmtl shipping_container_01_side +map_Kd textures/shipping_container_01_side.jpg + diff --git a/scenes/map/test.obj b/scenes/map/test.obj new file mode 100644 index 0000000..ef10794 --- /dev/null +++ b/scenes/map/test.obj @@ -0,0 +1,636 @@ +mtllib test.mtl +# vertices +v -800 -32 -1344 +v -800 -32 -0 +v -800 0 -0 +v -800 0 -1344 +v 0 0 -0 +v 0 -32 -0 +v 0 -32 -1344 +v 0 0 -1344 +v -800 0 -1344 +v -800 0 -0 +v -800 208 -0 +v -800 208 -1344 +v -784 208 -0 +v -784 0 -0 +v -784 0 -1344 +v -784 208 -1344 +v -784 0 -16 +v -784 0 -0 +v -784 208 -0 +v -784 208 -16 +v 0 208 -0 +v 0 0 -0 +v 0 0 -16 +v 0 208 -16 +v -16 0 -1344 +v -16 0 -16 +v -16 208 -16 +v -16 208 -1344 +v 0 208 -16 +v 0 0 -16 +v 0 0 -1344 +v 0 208 -1344 +v -784 0 -1344 +v -784 0 -1328 +v -784 208 -1328 +v -784 208 -1344 +v -16 208 -1328 +v -16 0 -1328 +v -16 0 -1344 +v -16 208 -1344 +v -784 0 -752 +v -784 0 -432 +v -784 96 -752 +v -592 96 -752 +v -592 0 -432 +v -592 0 -752 +v -16 72 -256 +v -80 0 -256 +v -80 0 -208 +v -16 72 -208 +v -16 0 -208 +v -16 0 -256 +v -16 80 -336 +v -80 0 -336 +v -80 0 -288 +v -16 80 -288 +v -16 0 -288 +v -16 0 -336 +v -80 0 -416 +v -80 0 -368 +v -80 16 -368 +v -80 16 -416 +v -16 16 -368 +v -16 0 -368 +v -16 0 -416 +v -16 16 -416 +v -80 0 -544 +v -80 0 -496 +v -80 32 -496 +v -80 32 -544 +v -16 32 -496 +v -16 0 -496 +v -16 0 -544 +v -16 32 -544 +v -80 0 -480 +v -80 0 -432 +v -80 24 -432 +v -80 24 -480 +v -16 24 -432 +v -16 0 -432 +v -16 0 -480 +v -16 24 -480 +v -80 0 -608 +v -80 0 -560 +v -80 40 -560 +v -80 40 -608 +v -16 40 -560 +v -16 0 -560 +v -16 0 -608 +v -16 40 -608 +v -16 64 -176 +v -80 0 -176 +v -80 0 -128 +v -16 64 -128 +v -16 0 -128 +v -16 0 -176 +v -80 40 -96 +v -80 40 -80 +v -80 56 -80 +v -80 56 -96 +v -64 56 -80 +v -64 40 -80 +v -64 40 -96 +v -64 56 -96 +v -80 0 -672 +v -80 0 -624 +v -80 48 -624 +v -80 48 -672 +v -16 48 -624 +v -16 0 -624 +v -16 0 -672 +v -16 48 -672 +v -383.71281292110143 64 -491.789764466972 +v -467.71281292110143 64 -637.2820323027554 +v -467.71281292110143 0 -637.2820323027554 +v -383.7128129211016 0 -491.7897644669698 +v -412.2871870789022 0 -669.2820323027554 +v -412.2871870788979 64 -669.2820323027552 +v -328.2871870789022 0 -523.7897644669683 +v -328.2871870788988 64 -523.7897644669711 +v -784 80 -1344 +v -784 80 -1120 +v -784 96 -1120 +v -784 96 -1344 +v -640 96 -1120 +v -640 80 -1120 +v -640 80 -1344 +v -640 96 -1344 +v -784 0 -1136 +v -784 0 -1120 +v -784 80 -1120 +v -784 80 -1136 +v -640 80 -1120 +v -640 0 -1120 +v -640 0 -1136 +v -640 80 -1136 +v -656 0 -1344 +v -656 0 -1168 +v -656 80 -1168 +v -656 80 -1344 +v -640 80 -1168 +v -640 0 -1168 +v -640 0 -1344 +v -640 80 -1344 +v -736 0 -1264 +v -736 0 -1232 +v -736 32 -1232 +v -736 32 -1264 +v -704 32 -1232 +v -704 0 -1232 +v -704 0 -1264 +v -704 32 -1264 + +# texture coordinates +vt 21 -0.5 +vt 0 -0.5 +vt 0 -0 +vt 21 -0 +vt -12.5 -0 +vt -12.5 -0.5 +vt -12.5 21 +vt 0 21 +vt 84 -0.5 +vt 0 12.5 +vt 84 12.5 +vt -49 12.5 +vt -50 12.5 +vt -50 -0.5 +vt -49 -0.5 +vt -50 83.5 +vt -49 83.5 +vt -1 -0.5 +vt 0 -13.5 +vt -1 -13.5 +vt 49 -13.5 +vt 49 -0.5 +vt 49 -1.5 +vt 0 -1.5 +vt -84 -0.5 +vt -84 -13.5 +vt 1 -13.5 +vt 1 -0.5 +vt 1 -1.5 +vt 1 -84.5 +vt 0 -84.5 +vt 83 -0.5 +vt 83 12.5 +vt -1 12.5 +vt -1 82.5 +vt -49 82.5 +vt -1 83.5 +vt 47 -0.5 +vt 27 -0.5 +vt 47 5.5 +vt -37 46.5 +vt -49 46.5 +vt -49 26.5 +vt -37 26.5 +vt -37 -0.5 +vt -49 5.5 +vt -37 5.5 +vt 16 4 +vt 16 -0.5 +vt 13 -0.5 +vt 13 4 +vt -1 4 +vt -5 -0.5 +vt -5 12.5 +vt -5 15.5 +vt -1 15.5 +vt 21 4.5 +vt 18 -0.5 +vt 18 4.5 +vt -1 4.5 +vt -1 17.5 +vt -5 17.5 +vt -5 20.5 +vt -1 20.5 +vt 26 -0.5 +vt 23 -0.5 +vt 23 0.5 +vt 26 0.5 +vt -1 0.5 +vt -5 0.5 +vt -1 22.5 +vt -5 22.5 +vt -5 25.5 +vt -1 25.5 +vt 34 -0.5 +vt 31 -0.5 +vt 31 1.5 +vt 34 1.5 +vt -1 1.5 +vt -5 1.5 +vt -1 30.5 +vt -5 30.5 +vt -5 33.5 +vt -1 33.5 +vt 30 -0.5 +vt 27 1 +vt 30 1 +vt -1 1 +vt -5 1 +vt -1 26.5 +vt -5 26.5 +vt -5 29.5 +vt -1 29.5 +vt 38 -0.5 +vt 35 -0.5 +vt 35 2 +vt 38 2 +vt -1 2 +vt -5 2 +vt -1 34.5 +vt -5 34.5 +vt -5 37.5 +vt -1 37.5 +vt -1 10.5 +vt -5 10.5 +vt -5 7.5 +vt -1 7.5 +vt -1 3.5 +vt 11 3.5 +vt 8 3.5 +vt 8 -0.5 +vt 11 -0.5 +vt 6 2 +vt 5 2 +vt 5 3 +vt 6 3 +vt -4 3 +vt -5 3 +vt -4 2 +vt -4 4.5 +vt -5 4.5 +vt -5 5.5 +vt -4 5.5 +vt 42 -0.5 +vt 39 -0.5 +vt 39 2.5 +vt 42 2.5 +vt -1 2.5 +vt -5 2.5 +vt -1 38.5 +vt -5 38.5 +vt -5 41.5 +vt -1 41.5 +vt 2.9721363 1 +vt 4.012384 1 +vt 4.012384 -0 +vt 2.9721363 -0 +vt -7 -0.010470837 +vt -8.0075245 -0.010470837 +vt -8.0075245 1.0088615 +vt -7 1.0088615 +vt -0.18885452 4.75 +vt -0.38699692 4.75 +vt -0.38699692 6.0625 +vt -0.18885452 6.0625 +vt -0.96789175 3.9947429 +vt -2.044087 3.9947429 +vt -2.044087 3.0000005 +vt -0.96789175 3.0000005 +vt -6 1.0033593 +vt -7.0144353 1.0033593 +vt -7.0144353 -0 +vt -6 -0 +vt 35 2.5 +vt 35 3 +vt 42 3 +vt -20 3 +vt -24.5 3 +vt -24.5 2.5 +vt -20 2.5 +vt -20 35 +vt -24.5 35 +vt -24.5 42 +vt -20 42 +vt 35.5 -0 +vt 35 -0 +vt 35.5 2.5 +vt -24.5 -0 +vt -20 -0 +vt -24.5 35.5 +vt -20 35.5 +vt 42 -0 +vt 36.5 -0 +vt 36.5 2.5 +vt -20.5 2.5 +vt -20.5 -0 +vt -20 36.5 +vt -20.5 36.5 +vt -20.5 42 +vt 39.5 -0 +vt 38.5 -0 +vt 38.5 1 +vt 39.5 1 +vt -22 1 +vt -23 1 +vt -23 -0 +vt -22 -0 +vt -22 38.5 +vt -23 38.5 +vt -23 39.5 +vt -22 39.5 + +# normals +vn -1 0 -0 +vn 0 0 1 +vn 0 -1 -0 +vn 0 1 -0 +vn 0 0 -1 +vn 1 0 -0 +vn 0 0.9578262852211514 0.28734788556634544 +vn -0.7474093186836598 0.6643638388299198 -0 +vn -0.7808688094430304 0.6246950475544243 -0 +vn -0.7071067811865476 0.7071067811865476 -0 +vn -0.8660254037844389 0 0.4999999999999995 +vn -0.5000000000000006 0 -0.8660254037844384 +vn 0.4999999999999998 0 0.8660254037844389 +vn 0.8660254037844387 0 -0.5 + +o entity0_brush0 +usemtl concrete_15 +f 1/1/1 2/2/1 3/3/1 4/4/1 +usemtl concrete_15 +f 5/3/2 3/5/2 2/6/2 6/2/2 +usemtl concrete_15 +f 6/3/3 2/5/3 1/7/3 7/8/3 +usemtl concrete_15 +f 8/8/4 4/7/4 3/5/4 5/3/4 +usemtl concrete_15 +f 7/2/5 1/6/5 4/5/5 8/3/5 +usemtl concrete_15 +f 8/4/6 5/3/6 6/2/6 7/1/6 + +o entity0_brush1 +usemtl dark +f 9/9/1 10/2/1 11/10/1 12/11/1 +usemtl dark +f 13/12/2 11/13/2 10/14/2 14/15/2 +usemtl dark +f 14/15/3 10/14/3 9/16/3 15/17/3 +usemtl dark +f 16/17/4 12/16/4 11/14/4 13/15/4 +usemtl dark +f 15/15/5 9/14/5 12/13/5 16/12/5 +usemtl dark +f 16/11/6 13/10/6 14/2/6 15/9/6 + +o entity0_brush2 +usemtl dark +f 17/18/1 18/2/1 19/19/1 20/20/1 +usemtl dark +f 21/19/2 19/21/2 18/22/2 22/2/2 +usemtl dark +f 22/2/3 18/22/3 17/23/3 23/24/3 +usemtl dark +f 24/24/4 20/23/4 19/22/4 21/2/4 +usemtl dark +f 23/2/5 17/22/5 20/21/5 24/19/5 +usemtl dark +f 24/20/6 21/19/6 22/2/6 23/18/6 + +o entity0_brush3 +usemtl dark +f 25/25/1 26/18/1 27/20/1 28/26/1 +usemtl dark +f 29/19/2 27/27/2 26/28/2 30/2/2 +usemtl dark +f 30/24/3 26/29/3 25/30/3 31/31/3 +usemtl dark +f 32/31/4 28/30/4 27/29/4 29/24/4 +usemtl dark +f 31/2/5 25/28/5 28/27/5 32/19/5 +usemtl dark +f 32/26/6 29/20/6 30/18/6 31/25/6 + +o entity0_brush4 +usemtl dark +f 33/9/1 34/32/1 35/33/1 36/11/1 +usemtl dark +f 37/34/2 35/12/2 34/15/2 38/18/2 +usemtl dark +f 38/35/3 34/36/3 33/17/3 39/37/3 +usemtl dark +f 40/37/4 36/17/4 35/36/4 37/35/4 +usemtl dark +f 39/18/5 33/15/5 36/12/5 40/34/5 +usemtl dark +f 40/11/6 37/33/6 38/32/6 39/9/6 + +o entity0_brush5 +usemtl dark +f 41/38/1 42/39/1 43/40/1 +usemtl dark +f 44/41/7 43/42/7 42/43/7 45/44/7 +usemtl dark +f 45/44/3 42/43/3 41/42/3 46/41/3 +usemtl dark +f 46/45/5 41/15/5 43/46/5 44/47/5 +usemtl dark +f 45/39/6 46/38/6 44/40/6 + +o entity0_brush6 +usemtl dark +f 47/48/8 48/49/8 49/50/8 50/51/8 +usemtl dark +f 50/52/2 49/53/2 51/18/2 +usemtl dark +f 51/34/3 49/54/3 48/55/3 52/56/3 +usemtl dark +f 52/18/5 48/53/5 47/52/5 +usemtl dark +f 47/48/6 50/51/6 51/50/6 52/49/6 + +o entity0_brush7 +usemtl dark +f 53/57/9 54/1/9 55/58/9 56/59/9 +usemtl dark +f 56/60/2 55/53/2 57/18/2 +usemtl dark +f 57/61/3 55/62/3 54/63/3 58/64/3 +usemtl dark +f 58/18/5 54/53/5 53/60/5 +usemtl dark +f 53/57/6 56/59/6 57/58/6 58/1/6 + +o entity0_brush8 +usemtl dark +f 59/65/1 60/66/1 61/67/1 62/68/1 +usemtl dark +f 63/69/2 61/70/2 60/53/2 64/18/2 +usemtl dark +f 64/71/3 60/72/3 59/73/3 65/74/3 +usemtl dark +f 66/74/4 62/73/4 61/72/4 63/71/4 +usemtl dark +f 65/18/5 59/53/5 62/70/5 66/69/5 +usemtl dark +f 66/68/6 63/67/6 64/66/6 65/65/6 + +o entity0_brush9 +usemtl dark +f 67/75/1 68/76/1 69/77/1 70/78/1 +usemtl dark +f 71/79/2 69/80/2 68/53/2 72/18/2 +usemtl dark +f 72/81/3 68/82/3 67/83/3 73/84/3 +usemtl dark +f 74/84/4 70/83/4 69/82/4 71/81/4 +usemtl dark +f 73/18/5 67/53/5 70/80/5 74/79/5 +usemtl dark +f 74/78/6 71/77/6 72/76/6 73/75/6 + +o entity0_brush10 +usemtl dark +f 75/85/1 76/39/1 77/86/1 78/87/1 +usemtl dark +f 79/88/2 77/89/2 76/53/2 80/18/2 +usemtl dark +f 80/90/3 76/91/3 75/92/3 81/93/3 +usemtl dark +f 82/93/4 78/92/4 77/91/4 79/90/4 +usemtl dark +f 81/18/5 75/53/5 78/89/5 82/88/5 +usemtl dark +f 82/87/6 79/86/6 80/39/6 81/85/6 + +o entity0_brush11 +usemtl dark +f 83/94/1 84/95/1 85/96/1 86/97/1 +usemtl dark +f 87/98/2 85/99/2 84/53/2 88/18/2 +usemtl dark +f 88/100/3 84/101/3 83/102/3 89/103/3 +usemtl dark +f 90/103/4 86/102/4 85/101/4 87/100/4 +usemtl dark +f 89/18/5 83/53/5 86/99/5 90/98/5 +usemtl dark +f 90/97/6 87/96/6 88/95/6 89/94/6 + +o entity0_brush12 +usemtl dark +f 91/104/10 92/105/10 93/106/10 94/107/10 +usemtl dark +f 94/108/2 93/53/2 95/18/2 +usemtl dark +f 95/107/3 93/106/3 92/105/3 96/104/3 +usemtl dark +f 96/18/5 92/53/5 91/108/5 +usemtl dark +f 91/109/6 94/110/6 95/111/6 96/112/6 + +o entity0_brush13 +usemtl dark +f 97/113/1 98/114/1 99/115/1 100/116/1 +usemtl dark +f 101/117/2 99/118/2 98/99/2 102/119/2 +usemtl dark +f 102/120/3 98/121/3 97/122/3 103/123/3 +usemtl dark +f 104/123/4 100/122/4 99/121/4 101/120/4 +usemtl dark +f 103/119/5 97/99/5 100/118/5 104/117/5 +usemtl dark +f 104/116/6 101/115/6 102/114/6 103/113/6 + +o entity0_brush14 +usemtl dark +f 105/124/1 106/125/1 107/126/1 108/127/1 +usemtl dark +f 109/128/2 107/129/2 106/53/2 110/18/2 +usemtl dark +f 110/130/3 106/131/3 105/132/3 111/133/3 +usemtl dark +f 112/133/4 108/132/4 107/131/4 109/130/4 +usemtl dark +f 111/18/5 105/53/5 108/129/5 112/128/5 +usemtl dark +f 112/127/6 109/126/6 110/125/6 111/124/6 + +o entity0_brush15 +usemtl shipping_container_01_side +f 113/134/11 114/135/11 115/136/11 116/137/11 +usemtl shipping_container_01_front +f 117/138/12 115/139/12 114/140/12 118/141/12 +usemtl shipping_container_01_side +f 119/142/3 116/143/3 115/144/3 117/145/3 +usemtl shipping_container_01_front +f 118/146/4 114/147/4 113/148/4 120/149/4 +usemtl shipping_container_01_front +f 120/150/13 113/151/13 116/152/13 119/153/13 +usemtl shipping_container_01_side +f 118/135/14 120/134/14 119/137/14 117/136/14 + +o entity0_brush16 +usemtl __TB_empty +f 121/127/1 122/154/1 123/155/1 124/156/1 +usemtl __TB_empty +f 125/157/2 123/158/2 122/159/2 126/160/2 +usemtl __TB_empty +f 126/161/3 122/162/3 121/163/3 127/164/3 +usemtl __TB_empty +f 128/164/4 124/163/4 123/162/4 125/161/4 +usemtl __TB_empty +f 127/160/5 121/159/5 124/158/5 128/157/5 +usemtl __TB_empty +f 128/156/6 125/155/6 126/154/6 127/127/6 + +o entity0_brush17 +usemtl __TB_empty +f 129/165/1 130/166/1 131/154/1 132/167/1 +usemtl __TB_empty +f 133/160/2 131/159/2 130/168/2 134/169/2 +usemtl __TB_empty +f 134/161/3 130/162/3 129/170/3 135/171/3 +usemtl __TB_empty +f 136/171/4 132/170/4 131/162/4 133/161/4 +usemtl __TB_empty +f 135/169/5 129/168/5 132/159/5 136/160/5 +usemtl __TB_empty +f 136/167/6 133/154/6 134/166/6 135/165/6 + +o entity0_brush18 +usemtl __TB_empty +f 137/172/1 138/173/1 139/174/1 140/127/1 +usemtl __TB_empty +f 141/160/2 139/175/2 138/176/2 142/169/2 +usemtl __TB_empty +f 142/177/3 138/178/3 137/179/3 143/164/3 +usemtl __TB_empty +f 144/164/4 140/179/4 139/178/4 141/177/4 +usemtl __TB_empty +f 143/169/5 137/176/5 140/175/5 144/160/5 +usemtl __TB_empty +f 144/127/6 141/174/6 142/173/6 143/172/6 + +o entity0_brush19 +usemtl __TB_empty +f 145/180/1 146/181/1 147/182/1 148/183/1 +usemtl __TB_empty +f 149/184/2 147/185/2 146/186/2 150/187/2 +usemtl __TB_empty +f 150/188/3 146/189/3 145/190/3 151/191/3 +usemtl __TB_empty +f 152/191/4 148/190/4 147/189/4 149/188/4 +usemtl __TB_empty +f 151/187/5 145/186/5 148/185/5 152/184/5 +usemtl __TB_empty +f 152/183/6 149/182/6 150/181/6 151/180/6 + diff --git a/scenes/map/test.obj.import b/scenes/map/test.obj.import new file mode 100644 index 0000000..62ab7df --- /dev/null +++ b/scenes/map/test.obj.import @@ -0,0 +1,21 @@ +[remap] + +importer="wavefront_obj" +importer_version=1 +type="Mesh" +uid="uid://dp182aa7i4tc2" +path="res://.godot/imported/test.obj-d0933098473ad0b52c714a3e29132649.mesh" + +[deps] + +files=["res://.godot/imported/test.obj-d0933098473ad0b52c714a3e29132649.mesh"] + +source_file="res://scenes/map/test.obj" +dest_files=["res://.godot/imported/test.obj-d0933098473ad0b52c714a3e29132649.mesh", "res://.godot/imported/test.obj-d0933098473ad0b52c714a3e29132649.mesh"] + +[params] + +generate_tangents=true +scale_mesh=Vector3(1, 1, 1) +offset_mesh=Vector3(0, 0, 0) +optimize_mesh=true diff --git a/scenes/weapons/Chainsaw.tscn b/scenes/weapons/Chainsaw.tscn new file mode 100644 index 0000000..0c06f0b --- /dev/null +++ b/scenes/weapons/Chainsaw.tscn @@ -0,0 +1,10 @@ +[gd_scene load_steps=2 format=3] + +[ext_resource type="PackedScene" uid="uid://ccbo4ow0r0q4y" path="res://assets/Weapons/Chainsaw/Chainsaw.glb" id="1_7u4ni"] + +[node name="Chainsaw" instance=ExtResource("1_7u4ni")] + +[node name="Cube014" parent="." index="0"] +transform = Transform3D(-1.5, 0, -1.31134e-07, 0, 1.5, 0, 1.31134e-07, 0, -1.5, 0, 0, 0) +layers = 2 +cast_shadow = 0 diff --git a/textures/concrete_15.jpg b/textures/concrete_15.jpg new file mode 100644 index 0000000..6f3d04b Binary files /dev/null and b/textures/concrete_15.jpg differ diff --git a/textures/concrete_15.jpg.import b/textures/concrete_15.jpg.import new file mode 100644 index 0000000..3d27388 --- /dev/null +++ b/textures/concrete_15.jpg.import @@ -0,0 +1,36 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bx4pdgghucl4k" +path.s3tc="res://.godot/imported/concrete_15.jpg-42bf7bde5374d09a0bcdd2247a5e3ed8.s3tc.ctex" +path.etc2="res://.godot/imported/concrete_15.jpg-42bf7bde5374d09a0bcdd2247a5e3ed8.etc2.ctex" +metadata={ +"imported_formats": ["s3tc", "etc2"], +"vram_texture": true +} + +[deps] + +source_file="res://textures/concrete_15.jpg" +dest_files=["res://.godot/imported/concrete_15.jpg-42bf7bde5374d09a0bcdd2247a5e3ed8.s3tc.ctex", "res://.godot/imported/concrete_15.jpg-42bf7bde5374d09a0bcdd2247a5e3ed8.etc2.ctex"] + +[params] + +compress/mode=2 +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/bptc_ldr=0 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/textures/concrete_floor_01.jpg b/textures/concrete_floor_01.jpg new file mode 100644 index 0000000..5613059 Binary files /dev/null and b/textures/concrete_floor_01.jpg differ diff --git a/textures/concrete_floor_01.jpg.import b/textures/concrete_floor_01.jpg.import new file mode 100644 index 0000000..1eef2a6 --- /dev/null +++ b/textures/concrete_floor_01.jpg.import @@ -0,0 +1,36 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dpbikwjv4uetu" +path.s3tc="res://.godot/imported/concrete_floor_01.jpg-d3402f38e00e3b9e2ee61f78df3279e4.s3tc.ctex" +path.etc2="res://.godot/imported/concrete_floor_01.jpg-d3402f38e00e3b9e2ee61f78df3279e4.etc2.ctex" +metadata={ +"imported_formats": ["s3tc", "etc2"], +"vram_texture": true +} + +[deps] + +source_file="res://textures/concrete_floor_01.jpg" +dest_files=["res://.godot/imported/concrete_floor_01.jpg-d3402f38e00e3b9e2ee61f78df3279e4.s3tc.ctex", "res://.godot/imported/concrete_floor_01.jpg-d3402f38e00e3b9e2ee61f78df3279e4.etc2.ctex"] + +[params] + +compress/mode=2 +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/bptc_ldr=0 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/textures/shipping_container_01_front.jpg b/textures/shipping_container_01_front.jpg new file mode 100644 index 0000000..bb3f6ca Binary files /dev/null and b/textures/shipping_container_01_front.jpg differ diff --git a/textures/shipping_container_01_front.jpg.import b/textures/shipping_container_01_front.jpg.import new file mode 100644 index 0000000..b2bf9d3 --- /dev/null +++ b/textures/shipping_container_01_front.jpg.import @@ -0,0 +1,36 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c52qu6ad3taix" +path.s3tc="res://.godot/imported/shipping_container_01_front.jpg-6818bcd06a43db2b17373db471516d58.s3tc.ctex" +path.etc2="res://.godot/imported/shipping_container_01_front.jpg-6818bcd06a43db2b17373db471516d58.etc2.ctex" +metadata={ +"imported_formats": ["s3tc", "etc2"], +"vram_texture": true +} + +[deps] + +source_file="res://textures/shipping_container_01_front.jpg" +dest_files=["res://.godot/imported/shipping_container_01_front.jpg-6818bcd06a43db2b17373db471516d58.s3tc.ctex", "res://.godot/imported/shipping_container_01_front.jpg-6818bcd06a43db2b17373db471516d58.etc2.ctex"] + +[params] + +compress/mode=2 +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/bptc_ldr=0 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/textures/shipping_container_01_side.jpg b/textures/shipping_container_01_side.jpg new file mode 100644 index 0000000..be21553 Binary files /dev/null and b/textures/shipping_container_01_side.jpg differ diff --git a/textures/shipping_container_01_side.jpg.import b/textures/shipping_container_01_side.jpg.import new file mode 100644 index 0000000..eb7a325 --- /dev/null +++ b/textures/shipping_container_01_side.jpg.import @@ -0,0 +1,36 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bt671xkej3a2s" +path.s3tc="res://.godot/imported/shipping_container_01_side.jpg-9d52ac7e86de9e14fde2e6a8a43fe4af.s3tc.ctex" +path.etc2="res://.godot/imported/shipping_container_01_side.jpg-9d52ac7e86de9e14fde2e6a8a43fe4af.etc2.ctex" +metadata={ +"imported_formats": ["s3tc", "etc2"], +"vram_texture": true +} + +[deps] + +source_file="res://textures/shipping_container_01_side.jpg" +dest_files=["res://.godot/imported/shipping_container_01_side.jpg-9d52ac7e86de9e14fde2e6a8a43fe4af.s3tc.ctex", "res://.godot/imported/shipping_container_01_side.jpg-9d52ac7e86de9e14fde2e6a8a43fe4af.etc2.ctex"] + +[params] + +compress/mode=2 +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/bptc_ldr=0 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0