├── .import └── newfile.txt ├── LICENSE ├── Player Camera.gd ├── Player.gd ├── Spatial.tscn ├── bullet.tscn ├── default_env.tres ├── export_presets.cfg ├── icon.png ├── icon.png.import ├── project.godot └── sci fi modular ├── floor 1 ├── floor 1 ao.png ├── floor 1 ao.png.import ├── floor 1 normal.png ├── floor 1 normal.png.import ├── floor 1.3b.jpg ├── floor 1.3b.jpg.import ├── floor 1.blend ├── floor 1.blend1 ├── floor 1.dae ├── floor 1.dae.import ├── floor 1.mtl ├── floor 1.obj ├── floor 1.obj.import ├── floor 1_Albedo.png ├── floor 1_Albedo.png.import ├── floor 1_Emission.png ├── floor 1_Emission.png.import ├── floor 1_Height.png ├── floor 1_Height.png.import ├── floor 1_Metallic.png ├── floor 1_Metallic.png.import ├── floor 1_Normal.png ├── floor 1_Normal.png.import ├── floor 1_Occlusion.png └── floor 1_Occlusion.png.import ├── floor 2 ├── floor 2 ao.png ├── floor 2 ao.png.import ├── floor 2 normal.png ├── floor 2 normal.png.import ├── floor 2.3b.jpg ├── floor 2.3b.jpg.import ├── floor 2.blend ├── floor 2.blend1 ├── floor 2.mtl ├── floor 2.obj ├── floor 2.obj.import ├── floor 2_Albedo.png ├── floor 2_Albedo.png.import ├── floor 2_Emission.png ├── floor 2_Emission.png.import ├── floor 2_Height.png ├── floor 2_Height.png.import ├── floor 2_Metallic.png ├── floor 2_Metallic.png.import ├── floor 2_Normal.png ├── floor 2_Normal.png.import ├── floor 2_Occlusion.png └── floor 2_Occlusion.png.import ├── wall 1 ├── wall 1.3b ├── wall 1.3b.jpg ├── wall 1.3b.jpg.import ├── wall 1.blend ├── wall 1.blend1 ├── wall 1.dae ├── wall 1.dae.import ├── wall 1.mtl ├── wall 1.obj ├── wall 1.obj.import ├── wall 1_Albedo.png ├── wall 1_Albedo.png.import ├── wall 1_Emission.png ├── wall 1_Emission.png.import ├── wall 1_Height.png ├── wall 1_Height.png.import ├── wall 1_Metallic.png ├── wall 1_Metallic.png.import ├── wall 1_Normal.png ├── wall 1_Normal.png.import ├── wall 1_Occlusion.png ├── wall 1_Occlusion.png.import ├── wall-ao.png ├── wall-ao.png.import ├── wall-normal.png └── wall-normal.png.import └── wall 2 ├── wall 2 ao.png ├── wall 2 ao.png.import ├── wall 2 normal.png ├── wall 2 normal.png.import ├── wall 2.3b ├── wall 2.3b.jpg ├── wall 2.3b.jpg.import ├── wall 2.blend ├── wall 2.blend1 ├── wall 2.dae ├── wall 2.dae.import ├── wall 2.mtl ├── wall 2.obj ├── wall 2.obj.import ├── wall 2_Albedo.png ├── wall 2_Albedo.png.import ├── wall 2_Emission.png ├── wall 2_Emission.png.import ├── wall 2_Height.png ├── wall 2_Height.png.import ├── wall 2_Metallic.png ├── wall 2_Metallic.png.import ├── wall 2_Normal.png ├── wall 2_Normal.png.import ├── wall 2_Occlusion.png └── wall 2_Occlusion.png.import /.import/newfile.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2018 wburton95 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /Player Camera.gd: -------------------------------------------------------------------------------- 1 | extends Camera 2 | 3 | var mouse_threshold = 10 4 | var mouse_sens_dampened = 0.001 5 | var mouse_sens = 0.01 6 | var mouse_acceleration = 0.1 7 | 8 | func _ready(): 9 | 10 | 11 | pass 12 | 13 | func _process(delta): 14 | 15 | #Get y viewport. 16 | 17 | var viewcoords = get_viewport().size 18 | var mouse_pos = get_viewport().get_mouse_position() 19 | var center_y = viewcoords.y / 2 20 | 21 | #Mouse look Y axis. 22 | 23 | if mouse_pos.y <= center_y: 24 | rotate_x(-mouse_sens_dampened - delta) 25 | if mouse_pos.y <= center_y + mouse_threshold: 26 | rotate_x(-mouse_sens - delta) 27 | if mouse_pos.y <= center_y + mouse_threshold * 2: 28 | rotate_x(-mouse_acceleration - delta) 29 | 30 | if mouse_pos.y >= center_y: 31 | rotate_x(mouse_sens_dampened + delta) 32 | if mouse_pos.y >= center_y - mouse_threshold: 33 | rotate_x(mouse_sens + delta) 34 | if mouse_pos.y >= center_y - mouse_threshold * 2: 35 | rotate_x(mouse_acceleration + delta) 36 | 37 | pass 38 | -------------------------------------------------------------------------------- /Player.gd: -------------------------------------------------------------------------------- 1 | extends KinematicBody 2 | 3 | var FOWARD = 200 4 | var MOVEMENT = 200 5 | var JUMP = Vector3(0,100,0) 6 | var RUN_SPEED = 300 7 | 8 | var mouse_threshold = 10 9 | var mouse_sens_dampened = 0.001 10 | var mouse_sens = 0.01 11 | var mouse_acceleration = 0.1 12 | 13 | func _ready(): 14 | 15 | pass 16 | 17 | func _physics_process(delta): 18 | 19 | 20 | #Close window/ end test. 21 | 22 | if Input.is_key_pressed(KEY_ESCAPE): 23 | get_tree().quit() 24 | 25 | #Gravity and slope. 26 | 27 | move_and_slide(Vector3(0,-6,0),Vector3(0,1,0)) 28 | 29 | #Jump. 30 | 31 | if is_on_floor() and Input.is_key_pressed(KEY_SPACE): 32 | move_and_slide(JUMP) 33 | 34 | 35 | #Get viewport. 36 | 37 | var viewcoords = get_viewport().size 38 | var center_x = viewcoords.x / 2 39 | var center_y = viewcoords.y / 2 40 | var mouse_pos = get_viewport().get_mouse_position() 41 | 42 | #Warp mouse to center. 43 | 44 | get_viewport().warp_mouse(Vector2(center_x,center_y)) 45 | 46 | #Mouselook on X axis. 47 | 48 | if mouse_pos.x <= center_x: 49 | rotate_y(mouse_sens_dampened + delta) 50 | if mouse_pos.x <= center_x + mouse_threshold: 51 | rotate_y(mouse_sens + delta) 52 | if mouse_pos.x <= center_x + mouse_threshold * 2: 53 | rotate_y(mouse_acceleration + delta) 54 | 55 | if mouse_pos.x >= center_x: 56 | rotate_y(-mouse_sens_dampened - delta) 57 | if mouse_pos.x >= center_x - mouse_threshold: 58 | rotate_y(-mouse_sens - delta) 59 | if mouse_pos.x >= center_x - mouse_threshold * 2: 60 | rotate_y(-mouse_acceleration - delta) 61 | 62 | #Local move and run. 63 | 64 | if Input.is_key_pressed(KEY_SHIFT) and Input.is_key_pressed(KEY_W): 65 | move_and_slide(transform.basis.z * delta * RUN_SPEED) 66 | 67 | if Input.is_key_pressed(KEY_W): 68 | move_and_slide(transform.basis.z * delta * FOWARD) 69 | if Input.is_key_pressed(KEY_A): 70 | move_and_slide(transform.basis.x * delta * MOVEMENT) 71 | if Input.is_key_pressed(KEY_S): 72 | move_and_slide(transform.basis.z * delta * -MOVEMENT) 73 | if Input.is_key_pressed(KEY_D): 74 | move_and_slide(transform.basis.x * delta * -MOVEMENT) 75 | 76 | pass -------------------------------------------------------------------------------- /bullet.tscn: -------------------------------------------------------------------------------- 1 | [gd_scene load_steps=4 format=2] 2 | 3 | [sub_resource type="SphereShape" id=1] 4 | 5 | radius = 1.0 6 | 7 | [sub_resource type="SphereMesh" id=2] 8 | 9 | radius = 1.0 10 | height = 2.0 11 | radial_segments = 64 12 | rings = 32 13 | is_hemisphere = false 14 | 15 | [sub_resource type="SpatialMaterial" id=3] 16 | 17 | render_priority = 0 18 | flags_transparent = false 19 | flags_unshaded = false 20 | flags_vertex_lighting = false 21 | flags_no_depth_test = false 22 | flags_use_point_size = false 23 | flags_world_triplanar = false 24 | flags_fixed_size = false 25 | flags_albedo_tex_force_srgb = false 26 | vertex_color_use_as_albedo = false 27 | vertex_color_is_srgb = false 28 | params_diffuse_mode = 0 29 | params_specular_mode = 0 30 | params_blend_mode = 0 31 | params_cull_mode = 0 32 | params_depth_draw_mode = 0 33 | params_line_width = 1.0 34 | params_point_size = 1.0 35 | params_billboard_mode = 0 36 | params_grow = false 37 | params_use_alpha_scissor = false 38 | albedo_color = Color( 1, 1, 1, 1 ) 39 | metallic = 1.0 40 | metallic_specular = 0.0 41 | metallic_texture_channel = 0 42 | roughness = 0.2 43 | roughness_texture_channel = 0 44 | emission_enabled = false 45 | normal_enabled = false 46 | rim_enabled = false 47 | clearcoat_enabled = false 48 | anisotropy_enabled = false 49 | ao_enabled = false 50 | depth_enabled = false 51 | subsurf_scatter_enabled = false 52 | transmission_enabled = false 53 | refraction_enabled = false 54 | detail_enabled = false 55 | uv1_scale = Vector3( 1, 1, 1 ) 56 | uv1_offset = Vector3( 0, 0, 0 ) 57 | uv1_triplanar = false 58 | uv1_triplanar_sharpness = 1.0 59 | uv2_scale = Vector3( 1, 1, 1 ) 60 | uv2_offset = Vector3( 0, 0, 0 ) 61 | uv2_triplanar = false 62 | uv2_triplanar_sharpness = 1.0 63 | proximity_fade_enable = false 64 | distance_fade_enable = false 65 | _sections_unfolded = [ "Parameters", "Roughness" ] 66 | 67 | [node name="Spatial" type="Spatial"] 68 | 69 | [node name="RigidBody" type="RigidBody" parent="." index="0"] 70 | 71 | input_ray_pickable = true 72 | input_capture_on_drag = false 73 | collision_layer = 1 74 | collision_mask = 1 75 | mode = 0 76 | mass = 0.204082 77 | friction = 1.0 78 | bounce = 0.3 79 | gravity_scale = 1.0 80 | custom_integrator = false 81 | continuous_cd = false 82 | contacts_reported = 0 83 | contact_monitor = false 84 | sleeping = false 85 | can_sleep = true 86 | axis_lock_linear_x = false 87 | axis_lock_linear_y = false 88 | axis_lock_linear_z = false 89 | axis_lock_angular_x = false 90 | axis_lock_angular_y = false 91 | axis_lock_angular_z = false 92 | linear_velocity = Vector3( 0, 0, 0 ) 93 | linear_damp = -1.0 94 | angular_velocity = Vector3( 0, 0, 0 ) 95 | angular_damp = -1.0 96 | 97 | [node name="CollisionShape" type="CollisionShape" parent="RigidBody" index="0"] 98 | 99 | transform = Transform( 0.5, 0, 0, 0, 0.5, 0, 0, 0, 0.5, 0, 0, 0 ) 100 | shape = SubResource( 1 ) 101 | disabled = false 102 | _sections_unfolded = [ "Transform" ] 103 | 104 | [node name="MeshInstance" type="MeshInstance" parent="RigidBody/CollisionShape" index="0"] 105 | 106 | layers = 1 107 | material_override = null 108 | cast_shadow = 1 109 | extra_cull_margin = 0.0 110 | use_in_baked_light = false 111 | lod_min_distance = 0.0 112 | lod_min_hysteresis = 0.0 113 | lod_max_distance = 0.0 114 | lod_max_hysteresis = 0.0 115 | mesh = SubResource( 2 ) 116 | skeleton = NodePath("..") 117 | material/0 = SubResource( 3 ) 118 | _sections_unfolded = [ "Transform", "material" ] 119 | 120 | 121 | -------------------------------------------------------------------------------- /default_env.tres: -------------------------------------------------------------------------------- 1 | [gd_resource type="Environment" load_steps=2 format=2] 2 | 3 | [sub_resource type="ProceduralSky" id=1] 4 | 5 | radiance_size = 4 6 | sky_top_color = Color( 0.0470588, 0.454902, 0.976471, 1 ) 7 | sky_horizon_color = Color( 0.556863, 0.823529, 0.909804, 1 ) 8 | sky_curve = 0.25 9 | sky_energy = 1.0 10 | ground_bottom_color = Color( 0.101961, 0.145098, 0.188235, 1 ) 11 | ground_horizon_color = Color( 0.482353, 0.788235, 0.952941, 1 ) 12 | ground_curve = 0.01 13 | ground_energy = 1.0 14 | sun_color = Color( 1, 1, 1, 1 ) 15 | sun_latitude = 35.0 16 | sun_longitude = 0.0 17 | sun_angle_min = 1.0 18 | sun_angle_max = 100.0 19 | sun_curve = 0.05 20 | sun_energy = 16.0 21 | texture_size = 2 22 | 23 | [resource] 24 | 25 | background_mode = 2 26 | background_sky = SubResource( 1 ) 27 | background_sky_custom_fov = 0.0 28 | background_color = Color( 0, 0, 0, 1 ) 29 | background_energy = 1.0 30 | background_canvas_max_layer = 0 31 | ambient_light_color = Color( 0, 0, 0, 1 ) 32 | ambient_light_energy = 1.0 33 | ambient_light_sky_contribution = 1.0 34 | fog_enabled = false 35 | fog_color = Color( 0.5, 0.6, 0.7, 1 ) 36 | fog_sun_color = Color( 1, 0.9, 0.7, 1 ) 37 | fog_sun_amount = 0.0 38 | fog_depth_enabled = true 39 | fog_depth_begin = 10.0 40 | fog_depth_curve = 1.0 41 | fog_transmit_enabled = false 42 | fog_transmit_curve = 1.0 43 | fog_height_enabled = false 44 | fog_height_min = 0.0 45 | fog_height_max = 100.0 46 | fog_height_curve = 1.0 47 | tonemap_mode = 0 48 | tonemap_exposure = 1.0 49 | tonemap_white = 1.0 50 | auto_exposure_enabled = false 51 | auto_exposure_scale = 0.4 52 | auto_exposure_min_luma = 0.05 53 | auto_exposure_max_luma = 8.0 54 | auto_exposure_speed = 0.5 55 | ss_reflections_enabled = false 56 | ss_reflections_max_steps = 64 57 | ss_reflections_fade_in = 0.15 58 | ss_reflections_fade_out = 2.0 59 | ss_reflections_depth_tolerance = 0.2 60 | ss_reflections_roughness = true 61 | ssao_enabled = false 62 | ssao_radius = 1.0 63 | ssao_intensity = 1.0 64 | ssao_radius2 = 0.0 65 | ssao_intensity2 = 1.0 66 | ssao_bias = 0.01 67 | ssao_light_affect = 0.0 68 | ssao_color = Color( 0, 0, 0, 1 ) 69 | ssao_quality = 0 70 | ssao_blur = 3 71 | ssao_edge_sharpness = 4.0 72 | dof_blur_far_enabled = false 73 | dof_blur_far_distance = 10.0 74 | dof_blur_far_transition = 5.0 75 | dof_blur_far_amount = 0.1 76 | dof_blur_far_quality = 1 77 | dof_blur_near_enabled = false 78 | dof_blur_near_distance = 2.0 79 | dof_blur_near_transition = 1.0 80 | dof_blur_near_amount = 0.1 81 | dof_blur_near_quality = 1 82 | glow_enabled = false 83 | glow_levels/1 = false 84 | glow_levels/2 = false 85 | glow_levels/3 = true 86 | glow_levels/4 = false 87 | glow_levels/5 = true 88 | glow_levels/6 = false 89 | glow_levels/7 = false 90 | glow_intensity = 0.8 91 | glow_strength = 1.0 92 | glow_bloom = 0.0 93 | glow_blend_mode = 2 94 | glow_hdr_threshold = 1.0 95 | glow_hdr_scale = 2.0 96 | glow_bicubic_upscale = false 97 | adjustment_enabled = false 98 | adjustment_brightness = 1.0 99 | adjustment_contrast = 1.0 100 | adjustment_saturation = 1.0 101 | 102 | -------------------------------------------------------------------------------- /export_presets.cfg: -------------------------------------------------------------------------------- 1 | [preset.0] 2 | 3 | name="demo" 4 | platform="Windows Desktop" 5 | runnable=true 6 | custom_features="" 7 | export_filter="all_resources" 8 | include_filter="" 9 | exclude_filter="" 10 | patch_list=PoolStringArray( ) 11 | 12 | [preset.0.options] 13 | 14 | texture_format/s3tc=true 15 | texture_format/etc=false 16 | texture_format/etc2=false 17 | binary_format/64_bits=true 18 | custom_template/release="" 19 | custom_template/debug="" 20 | application/icon="" 21 | application/file_version="" 22 | application/product_version="" 23 | application/company_name="" 24 | application/product_name="" 25 | application/file_description="" 26 | application/copyright="" 27 | application/trademarks="" 28 | -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wburton95/Godot-FPS-Demo/6c31c50920702280601cc5c7ef65cacb65eeda11/icon.png -------------------------------------------------------------------------------- /icon.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex" 6 | 7 | [deps] 8 | 9 | source_file="res://icon.png" 10 | source_md5="ae7e641067601e2184afcade49abd283" 11 | 12 | dest_files=[ "res://.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex" ] 13 | dest_md5="84511021bbc8c9d37c7f0f4d181de883" 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/normal_map=0 21 | flags/repeat=0 22 | flags/filter=true 23 | flags/mipmaps=false 24 | flags/anisotropic=false 25 | flags/srgb=2 26 | process/fix_alpha_border=true 27 | process/premult_alpha=false 28 | process/HDR_as_SRGB=false 29 | stream=false 30 | size_limit=0 31 | detect_3d=true 32 | svg/scale=1.0 33 | -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- 1 | ; Engine configuration file. 2 | ; It's best edited using the editor UI and not directly, 3 | ; since the parameters that go here are not all obvious. 4 | ; 5 | ; Format: 6 | ; [section] ; section goes between [] 7 | ; param=value ; assign values to parameters 8 | 9 | config_version=3 10 | 11 | [application] 12 | 13 | config/name="New Game Project" 14 | run/main_scene="res://Spatial.tscn" 15 | config/icon="res://icon.png" 16 | 17 | [rendering] 18 | 19 | environment/default_environment="res://default_env.tres" 20 | -------------------------------------------------------------------------------- /sci fi modular/floor 1/floor 1 ao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wburton95/Godot-FPS-Demo/6c31c50920702280601cc5c7ef65cacb65eeda11/sci fi modular/floor 1/floor 1 ao.png -------------------------------------------------------------------------------- /sci fi modular/floor 1/floor 1 ao.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/floor 1 ao.png-e5771bf1fbd7424d117b00b003e93255.stex" 6 | 7 | [deps] 8 | 9 | source_file="res://sci-fi modular/floor 1/floor 1 ao.png" 10 | source_md5="5731c3858eb39877c9c3bfe048756687" 11 | 12 | dest_files=[ "res://.import/floor 1 ao.png-e5771bf1fbd7424d117b00b003e93255.stex" ] 13 | dest_md5="cba125e913b68d6d43e85dc2a63aadf9" 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/normal_map=0 21 | flags/repeat=0 22 | flags/filter=true 23 | flags/mipmaps=false 24 | flags/anisotropic=false 25 | flags/srgb=2 26 | process/fix_alpha_border=true 27 | process/premult_alpha=false 28 | process/HDR_as_SRGB=false 29 | stream=false 30 | size_limit=0 31 | detect_3d=true 32 | svg/scale=1.0 33 | -------------------------------------------------------------------------------- /sci fi modular/floor 1/floor 1 normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wburton95/Godot-FPS-Demo/6c31c50920702280601cc5c7ef65cacb65eeda11/sci fi modular/floor 1/floor 1 normal.png -------------------------------------------------------------------------------- /sci fi modular/floor 1/floor 1 normal.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/floor 1 normal.png-8d0d66494a4fbebc4f1bf80e532a6f34.stex" 6 | 7 | [deps] 8 | 9 | source_file="res://sci-fi modular/floor 1/floor 1 normal.png" 10 | source_md5="708f4a3967199ba776b18a0246d42b4b" 11 | 12 | dest_files=[ "res://.import/floor 1 normal.png-8d0d66494a4fbebc4f1bf80e532a6f34.stex" ] 13 | dest_md5="defb20a84534e754a518e19b28f2d166" 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/normal_map=0 21 | flags/repeat=0 22 | flags/filter=true 23 | flags/mipmaps=false 24 | flags/anisotropic=false 25 | flags/srgb=2 26 | process/fix_alpha_border=true 27 | process/premult_alpha=false 28 | process/HDR_as_SRGB=false 29 | stream=false 30 | size_limit=0 31 | detect_3d=true 32 | svg/scale=1.0 33 | -------------------------------------------------------------------------------- /sci fi modular/floor 1/floor 1.3b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wburton95/Godot-FPS-Demo/6c31c50920702280601cc5c7ef65cacb65eeda11/sci fi modular/floor 1/floor 1.3b.jpg -------------------------------------------------------------------------------- /sci fi modular/floor 1/floor 1.3b.jpg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/floor 1.3b.jpg-ad6ce641bd332fd07e48e9573588ac76.stex" 6 | 7 | [deps] 8 | 9 | source_file="res://sci-fi modular/floor 1/floor 1.3b.jpg" 10 | source_md5="abed02fe3c2597f0f8761e68e489df61" 11 | 12 | dest_files=[ "res://.import/floor 1.3b.jpg-ad6ce641bd332fd07e48e9573588ac76.stex" ] 13 | dest_md5="cb053bb86683c9ded53e6ac969b55d77" 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/normal_map=0 21 | flags/repeat=0 22 | flags/filter=true 23 | flags/mipmaps=false 24 | flags/anisotropic=false 25 | flags/srgb=2 26 | process/fix_alpha_border=true 27 | process/premult_alpha=false 28 | process/HDR_as_SRGB=false 29 | stream=false 30 | size_limit=0 31 | detect_3d=true 32 | svg/scale=1.0 33 | -------------------------------------------------------------------------------- /sci fi modular/floor 1/floor 1.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wburton95/Godot-FPS-Demo/6c31c50920702280601cc5c7ef65cacb65eeda11/sci fi modular/floor 1/floor 1.blend -------------------------------------------------------------------------------- /sci fi modular/floor 1/floor 1.blend1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wburton95/Godot-FPS-Demo/6c31c50920702280601cc5c7ef65cacb65eeda11/sci fi modular/floor 1/floor 1.blend1 -------------------------------------------------------------------------------- /sci fi modular/floor 1/floor 1.dae.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="scene" 4 | type="PackedScene" 5 | path="res://.import/floor 1.dae-81aaf78bd9f21419efbe4e8612fb783c.scn" 6 | 7 | [deps] 8 | 9 | source_file="res://sci-fi modular/floor 1/floor 1.dae" 10 | source_md5="09cc4f200c6e178a79f500373004a784" 11 | 12 | dest_files=[ "res://.import/floor 1.dae-81aaf78bd9f21419efbe4e8612fb783c.scn" ] 13 | dest_md5="64deffa389cc6aa8fced2a0903ee3859" 14 | 15 | [params] 16 | 17 | nodes/root_type="Spatial" 18 | nodes/root_name="Scene Root" 19 | nodes/root_scale=1.0 20 | nodes/custom_script="" 21 | nodes/storage=0 22 | materials/location=1 23 | materials/storage=1 24 | materials/keep_on_reimport=true 25 | meshes/compress=true 26 | meshes/ensure_tangents=true 27 | meshes/storage=0 28 | meshes/light_baking=0 29 | meshes/lightmap_texel_size=0.1 30 | external_files/store_in_subdir=false 31 | animation/import=true 32 | animation/fps=15 33 | animation/filter_script="" 34 | animation/storage=false 35 | animation/keep_custom_tracks=false 36 | animation/optimizer/enabled=true 37 | animation/optimizer/max_linear_error=0.05 38 | animation/optimizer/max_angular_error=0.01 39 | animation/optimizer/max_angle=22 40 | animation/optimizer/remove_unused_tracks=true 41 | animation/clips/amount=0 42 | animation/clip_1/name="" 43 | animation/clip_1/start_frame=0 44 | animation/clip_1/end_frame=0 45 | animation/clip_1/loops=false 46 | animation/clip_2/name="" 47 | animation/clip_2/start_frame=0 48 | animation/clip_2/end_frame=0 49 | animation/clip_2/loops=false 50 | animation/clip_3/name="" 51 | animation/clip_3/start_frame=0 52 | animation/clip_3/end_frame=0 53 | animation/clip_3/loops=false 54 | animation/clip_4/name="" 55 | animation/clip_4/start_frame=0 56 | animation/clip_4/end_frame=0 57 | animation/clip_4/loops=false 58 | animation/clip_5/name="" 59 | animation/clip_5/start_frame=0 60 | animation/clip_5/end_frame=0 61 | animation/clip_5/loops=false 62 | animation/clip_6/name="" 63 | animation/clip_6/start_frame=0 64 | animation/clip_6/end_frame=0 65 | animation/clip_6/loops=false 66 | animation/clip_7/name="" 67 | animation/clip_7/start_frame=0 68 | animation/clip_7/end_frame=0 69 | animation/clip_7/loops=false 70 | animation/clip_8/name="" 71 | animation/clip_8/start_frame=0 72 | animation/clip_8/end_frame=0 73 | animation/clip_8/loops=false 74 | animation/clip_9/name="" 75 | animation/clip_9/start_frame=0 76 | animation/clip_9/end_frame=0 77 | animation/clip_9/loops=false 78 | animation/clip_10/name="" 79 | animation/clip_10/start_frame=0 80 | animation/clip_10/end_frame=0 81 | animation/clip_10/loops=false 82 | animation/clip_11/name="" 83 | animation/clip_11/start_frame=0 84 | animation/clip_11/end_frame=0 85 | animation/clip_11/loops=false 86 | animation/clip_12/name="" 87 | animation/clip_12/start_frame=0 88 | animation/clip_12/end_frame=0 89 | animation/clip_12/loops=false 90 | animation/clip_13/name="" 91 | animation/clip_13/start_frame=0 92 | animation/clip_13/end_frame=0 93 | animation/clip_13/loops=false 94 | animation/clip_14/name="" 95 | animation/clip_14/start_frame=0 96 | animation/clip_14/end_frame=0 97 | animation/clip_14/loops=false 98 | animation/clip_15/name="" 99 | animation/clip_15/start_frame=0 100 | animation/clip_15/end_frame=0 101 | animation/clip_15/loops=false 102 | animation/clip_16/name="" 103 | animation/clip_16/start_frame=0 104 | animation/clip_16/end_frame=0 105 | animation/clip_16/loops=false 106 | animation/clip_17/name="" 107 | animation/clip_17/start_frame=0 108 | animation/clip_17/end_frame=0 109 | animation/clip_17/loops=false 110 | animation/clip_18/name="" 111 | animation/clip_18/start_frame=0 112 | animation/clip_18/end_frame=0 113 | animation/clip_18/loops=false 114 | animation/clip_19/name="" 115 | animation/clip_19/start_frame=0 116 | animation/clip_19/end_frame=0 117 | animation/clip_19/loops=false 118 | animation/clip_20/name="" 119 | animation/clip_20/start_frame=0 120 | animation/clip_20/end_frame=0 121 | animation/clip_20/loops=false 122 | animation/clip_21/name="" 123 | animation/clip_21/start_frame=0 124 | animation/clip_21/end_frame=0 125 | animation/clip_21/loops=false 126 | animation/clip_22/name="" 127 | animation/clip_22/start_frame=0 128 | animation/clip_22/end_frame=0 129 | animation/clip_22/loops=false 130 | animation/clip_23/name="" 131 | animation/clip_23/start_frame=0 132 | animation/clip_23/end_frame=0 133 | animation/clip_23/loops=false 134 | animation/clip_24/name="" 135 | animation/clip_24/start_frame=0 136 | animation/clip_24/end_frame=0 137 | animation/clip_24/loops=false 138 | animation/clip_25/name="" 139 | animation/clip_25/start_frame=0 140 | animation/clip_25/end_frame=0 141 | animation/clip_25/loops=false 142 | animation/clip_26/name="" 143 | animation/clip_26/start_frame=0 144 | animation/clip_26/end_frame=0 145 | animation/clip_26/loops=false 146 | animation/clip_27/name="" 147 | animation/clip_27/start_frame=0 148 | animation/clip_27/end_frame=0 149 | animation/clip_27/loops=false 150 | animation/clip_28/name="" 151 | animation/clip_28/start_frame=0 152 | animation/clip_28/end_frame=0 153 | animation/clip_28/loops=false 154 | animation/clip_29/name="" 155 | animation/clip_29/start_frame=0 156 | animation/clip_29/end_frame=0 157 | animation/clip_29/loops=false 158 | animation/clip_30/name="" 159 | animation/clip_30/start_frame=0 160 | animation/clip_30/end_frame=0 161 | animation/clip_30/loops=false 162 | animation/clip_31/name="" 163 | animation/clip_31/start_frame=0 164 | animation/clip_31/end_frame=0 165 | animation/clip_31/loops=false 166 | animation/clip_32/name="" 167 | animation/clip_32/start_frame=0 168 | animation/clip_32/end_frame=0 169 | animation/clip_32/loops=false 170 | animation/clip_33/name="" 171 | animation/clip_33/start_frame=0 172 | animation/clip_33/end_frame=0 173 | animation/clip_33/loops=false 174 | animation/clip_34/name="" 175 | animation/clip_34/start_frame=0 176 | animation/clip_34/end_frame=0 177 | animation/clip_34/loops=false 178 | animation/clip_35/name="" 179 | animation/clip_35/start_frame=0 180 | animation/clip_35/end_frame=0 181 | animation/clip_35/loops=false 182 | animation/clip_36/name="" 183 | animation/clip_36/start_frame=0 184 | animation/clip_36/end_frame=0 185 | animation/clip_36/loops=false 186 | animation/clip_37/name="" 187 | animation/clip_37/start_frame=0 188 | animation/clip_37/end_frame=0 189 | animation/clip_37/loops=false 190 | animation/clip_38/name="" 191 | animation/clip_38/start_frame=0 192 | animation/clip_38/end_frame=0 193 | animation/clip_38/loops=false 194 | animation/clip_39/name="" 195 | animation/clip_39/start_frame=0 196 | animation/clip_39/end_frame=0 197 | animation/clip_39/loops=false 198 | animation/clip_40/name="" 199 | animation/clip_40/start_frame=0 200 | animation/clip_40/end_frame=0 201 | animation/clip_40/loops=false 202 | animation/clip_41/name="" 203 | animation/clip_41/start_frame=0 204 | animation/clip_41/end_frame=0 205 | animation/clip_41/loops=false 206 | animation/clip_42/name="" 207 | animation/clip_42/start_frame=0 208 | animation/clip_42/end_frame=0 209 | animation/clip_42/loops=false 210 | animation/clip_43/name="" 211 | animation/clip_43/start_frame=0 212 | animation/clip_43/end_frame=0 213 | animation/clip_43/loops=false 214 | animation/clip_44/name="" 215 | animation/clip_44/start_frame=0 216 | animation/clip_44/end_frame=0 217 | animation/clip_44/loops=false 218 | animation/clip_45/name="" 219 | animation/clip_45/start_frame=0 220 | animation/clip_45/end_frame=0 221 | animation/clip_45/loops=false 222 | animation/clip_46/name="" 223 | animation/clip_46/start_frame=0 224 | animation/clip_46/end_frame=0 225 | animation/clip_46/loops=false 226 | animation/clip_47/name="" 227 | animation/clip_47/start_frame=0 228 | animation/clip_47/end_frame=0 229 | animation/clip_47/loops=false 230 | animation/clip_48/name="" 231 | animation/clip_48/start_frame=0 232 | animation/clip_48/end_frame=0 233 | animation/clip_48/loops=false 234 | animation/clip_49/name="" 235 | animation/clip_49/start_frame=0 236 | animation/clip_49/end_frame=0 237 | animation/clip_49/loops=false 238 | animation/clip_50/name="" 239 | animation/clip_50/start_frame=0 240 | animation/clip_50/end_frame=0 241 | animation/clip_50/loops=false 242 | animation/clip_51/name="" 243 | animation/clip_51/start_frame=0 244 | animation/clip_51/end_frame=0 245 | animation/clip_51/loops=false 246 | animation/clip_52/name="" 247 | animation/clip_52/start_frame=0 248 | animation/clip_52/end_frame=0 249 | animation/clip_52/loops=false 250 | animation/clip_53/name="" 251 | animation/clip_53/start_frame=0 252 | animation/clip_53/end_frame=0 253 | animation/clip_53/loops=false 254 | animation/clip_54/name="" 255 | animation/clip_54/start_frame=0 256 | animation/clip_54/end_frame=0 257 | animation/clip_54/loops=false 258 | animation/clip_55/name="" 259 | animation/clip_55/start_frame=0 260 | animation/clip_55/end_frame=0 261 | animation/clip_55/loops=false 262 | animation/clip_56/name="" 263 | animation/clip_56/start_frame=0 264 | animation/clip_56/end_frame=0 265 | animation/clip_56/loops=false 266 | animation/clip_57/name="" 267 | animation/clip_57/start_frame=0 268 | animation/clip_57/end_frame=0 269 | animation/clip_57/loops=false 270 | animation/clip_58/name="" 271 | animation/clip_58/start_frame=0 272 | animation/clip_58/end_frame=0 273 | animation/clip_58/loops=false 274 | animation/clip_59/name="" 275 | animation/clip_59/start_frame=0 276 | animation/clip_59/end_frame=0 277 | animation/clip_59/loops=false 278 | animation/clip_60/name="" 279 | animation/clip_60/start_frame=0 280 | animation/clip_60/end_frame=0 281 | animation/clip_60/loops=false 282 | animation/clip_61/name="" 283 | animation/clip_61/start_frame=0 284 | animation/clip_61/end_frame=0 285 | animation/clip_61/loops=false 286 | animation/clip_62/name="" 287 | animation/clip_62/start_frame=0 288 | animation/clip_62/end_frame=0 289 | animation/clip_62/loops=false 290 | animation/clip_63/name="" 291 | animation/clip_63/start_frame=0 292 | animation/clip_63/end_frame=0 293 | animation/clip_63/loops=false 294 | animation/clip_64/name="" 295 | animation/clip_64/start_frame=0 296 | animation/clip_64/end_frame=0 297 | animation/clip_64/loops=false 298 | animation/clip_65/name="" 299 | animation/clip_65/start_frame=0 300 | animation/clip_65/end_frame=0 301 | animation/clip_65/loops=false 302 | animation/clip_66/name="" 303 | animation/clip_66/start_frame=0 304 | animation/clip_66/end_frame=0 305 | animation/clip_66/loops=false 306 | animation/clip_67/name="" 307 | animation/clip_67/start_frame=0 308 | animation/clip_67/end_frame=0 309 | animation/clip_67/loops=false 310 | animation/clip_68/name="" 311 | animation/clip_68/start_frame=0 312 | animation/clip_68/end_frame=0 313 | animation/clip_68/loops=false 314 | animation/clip_69/name="" 315 | animation/clip_69/start_frame=0 316 | animation/clip_69/end_frame=0 317 | animation/clip_69/loops=false 318 | animation/clip_70/name="" 319 | animation/clip_70/start_frame=0 320 | animation/clip_70/end_frame=0 321 | animation/clip_70/loops=false 322 | animation/clip_71/name="" 323 | animation/clip_71/start_frame=0 324 | animation/clip_71/end_frame=0 325 | animation/clip_71/loops=false 326 | animation/clip_72/name="" 327 | animation/clip_72/start_frame=0 328 | animation/clip_72/end_frame=0 329 | animation/clip_72/loops=false 330 | animation/clip_73/name="" 331 | animation/clip_73/start_frame=0 332 | animation/clip_73/end_frame=0 333 | animation/clip_73/loops=false 334 | animation/clip_74/name="" 335 | animation/clip_74/start_frame=0 336 | animation/clip_74/end_frame=0 337 | animation/clip_74/loops=false 338 | animation/clip_75/name="" 339 | animation/clip_75/start_frame=0 340 | animation/clip_75/end_frame=0 341 | animation/clip_75/loops=false 342 | animation/clip_76/name="" 343 | animation/clip_76/start_frame=0 344 | animation/clip_76/end_frame=0 345 | animation/clip_76/loops=false 346 | animation/clip_77/name="" 347 | animation/clip_77/start_frame=0 348 | animation/clip_77/end_frame=0 349 | animation/clip_77/loops=false 350 | animation/clip_78/name="" 351 | animation/clip_78/start_frame=0 352 | animation/clip_78/end_frame=0 353 | animation/clip_78/loops=false 354 | animation/clip_79/name="" 355 | animation/clip_79/start_frame=0 356 | animation/clip_79/end_frame=0 357 | animation/clip_79/loops=false 358 | animation/clip_80/name="" 359 | animation/clip_80/start_frame=0 360 | animation/clip_80/end_frame=0 361 | animation/clip_80/loops=false 362 | animation/clip_81/name="" 363 | animation/clip_81/start_frame=0 364 | animation/clip_81/end_frame=0 365 | animation/clip_81/loops=false 366 | animation/clip_82/name="" 367 | animation/clip_82/start_frame=0 368 | animation/clip_82/end_frame=0 369 | animation/clip_82/loops=false 370 | animation/clip_83/name="" 371 | animation/clip_83/start_frame=0 372 | animation/clip_83/end_frame=0 373 | animation/clip_83/loops=false 374 | animation/clip_84/name="" 375 | animation/clip_84/start_frame=0 376 | animation/clip_84/end_frame=0 377 | animation/clip_84/loops=false 378 | animation/clip_85/name="" 379 | animation/clip_85/start_frame=0 380 | animation/clip_85/end_frame=0 381 | animation/clip_85/loops=false 382 | animation/clip_86/name="" 383 | animation/clip_86/start_frame=0 384 | animation/clip_86/end_frame=0 385 | animation/clip_86/loops=false 386 | animation/clip_87/name="" 387 | animation/clip_87/start_frame=0 388 | animation/clip_87/end_frame=0 389 | animation/clip_87/loops=false 390 | animation/clip_88/name="" 391 | animation/clip_88/start_frame=0 392 | animation/clip_88/end_frame=0 393 | animation/clip_88/loops=false 394 | animation/clip_89/name="" 395 | animation/clip_89/start_frame=0 396 | animation/clip_89/end_frame=0 397 | animation/clip_89/loops=false 398 | animation/clip_90/name="" 399 | animation/clip_90/start_frame=0 400 | animation/clip_90/end_frame=0 401 | animation/clip_90/loops=false 402 | animation/clip_91/name="" 403 | animation/clip_91/start_frame=0 404 | animation/clip_91/end_frame=0 405 | animation/clip_91/loops=false 406 | animation/clip_92/name="" 407 | animation/clip_92/start_frame=0 408 | animation/clip_92/end_frame=0 409 | animation/clip_92/loops=false 410 | animation/clip_93/name="" 411 | animation/clip_93/start_frame=0 412 | animation/clip_93/end_frame=0 413 | animation/clip_93/loops=false 414 | animation/clip_94/name="" 415 | animation/clip_94/start_frame=0 416 | animation/clip_94/end_frame=0 417 | animation/clip_94/loops=false 418 | animation/clip_95/name="" 419 | animation/clip_95/start_frame=0 420 | animation/clip_95/end_frame=0 421 | animation/clip_95/loops=false 422 | animation/clip_96/name="" 423 | animation/clip_96/start_frame=0 424 | animation/clip_96/end_frame=0 425 | animation/clip_96/loops=false 426 | animation/clip_97/name="" 427 | animation/clip_97/start_frame=0 428 | animation/clip_97/end_frame=0 429 | animation/clip_97/loops=false 430 | animation/clip_98/name="" 431 | animation/clip_98/start_frame=0 432 | animation/clip_98/end_frame=0 433 | animation/clip_98/loops=false 434 | animation/clip_99/name="" 435 | animation/clip_99/start_frame=0 436 | animation/clip_99/end_frame=0 437 | animation/clip_99/loops=false 438 | animation/clip_100/name="" 439 | animation/clip_100/start_frame=0 440 | animation/clip_100/end_frame=0 441 | animation/clip_100/loops=false 442 | animation/clip_101/name="" 443 | animation/clip_101/start_frame=0 444 | animation/clip_101/end_frame=0 445 | animation/clip_101/loops=false 446 | animation/clip_102/name="" 447 | animation/clip_102/start_frame=0 448 | animation/clip_102/end_frame=0 449 | animation/clip_102/loops=false 450 | animation/clip_103/name="" 451 | animation/clip_103/start_frame=0 452 | animation/clip_103/end_frame=0 453 | animation/clip_103/loops=false 454 | animation/clip_104/name="" 455 | animation/clip_104/start_frame=0 456 | animation/clip_104/end_frame=0 457 | animation/clip_104/loops=false 458 | animation/clip_105/name="" 459 | animation/clip_105/start_frame=0 460 | animation/clip_105/end_frame=0 461 | animation/clip_105/loops=false 462 | animation/clip_106/name="" 463 | animation/clip_106/start_frame=0 464 | animation/clip_106/end_frame=0 465 | animation/clip_106/loops=false 466 | animation/clip_107/name="" 467 | animation/clip_107/start_frame=0 468 | animation/clip_107/end_frame=0 469 | animation/clip_107/loops=false 470 | animation/clip_108/name="" 471 | animation/clip_108/start_frame=0 472 | animation/clip_108/end_frame=0 473 | animation/clip_108/loops=false 474 | animation/clip_109/name="" 475 | animation/clip_109/start_frame=0 476 | animation/clip_109/end_frame=0 477 | animation/clip_109/loops=false 478 | animation/clip_110/name="" 479 | animation/clip_110/start_frame=0 480 | animation/clip_110/end_frame=0 481 | animation/clip_110/loops=false 482 | animation/clip_111/name="" 483 | animation/clip_111/start_frame=0 484 | animation/clip_111/end_frame=0 485 | animation/clip_111/loops=false 486 | animation/clip_112/name="" 487 | animation/clip_112/start_frame=0 488 | animation/clip_112/end_frame=0 489 | animation/clip_112/loops=false 490 | animation/clip_113/name="" 491 | animation/clip_113/start_frame=0 492 | animation/clip_113/end_frame=0 493 | animation/clip_113/loops=false 494 | animation/clip_114/name="" 495 | animation/clip_114/start_frame=0 496 | animation/clip_114/end_frame=0 497 | animation/clip_114/loops=false 498 | animation/clip_115/name="" 499 | animation/clip_115/start_frame=0 500 | animation/clip_115/end_frame=0 501 | animation/clip_115/loops=false 502 | animation/clip_116/name="" 503 | animation/clip_116/start_frame=0 504 | animation/clip_116/end_frame=0 505 | animation/clip_116/loops=false 506 | animation/clip_117/name="" 507 | animation/clip_117/start_frame=0 508 | animation/clip_117/end_frame=0 509 | animation/clip_117/loops=false 510 | animation/clip_118/name="" 511 | animation/clip_118/start_frame=0 512 | animation/clip_118/end_frame=0 513 | animation/clip_118/loops=false 514 | animation/clip_119/name="" 515 | animation/clip_119/start_frame=0 516 | animation/clip_119/end_frame=0 517 | animation/clip_119/loops=false 518 | animation/clip_120/name="" 519 | animation/clip_120/start_frame=0 520 | animation/clip_120/end_frame=0 521 | animation/clip_120/loops=false 522 | animation/clip_121/name="" 523 | animation/clip_121/start_frame=0 524 | animation/clip_121/end_frame=0 525 | animation/clip_121/loops=false 526 | animation/clip_122/name="" 527 | animation/clip_122/start_frame=0 528 | animation/clip_122/end_frame=0 529 | animation/clip_122/loops=false 530 | animation/clip_123/name="" 531 | animation/clip_123/start_frame=0 532 | animation/clip_123/end_frame=0 533 | animation/clip_123/loops=false 534 | animation/clip_124/name="" 535 | animation/clip_124/start_frame=0 536 | animation/clip_124/end_frame=0 537 | animation/clip_124/loops=false 538 | animation/clip_125/name="" 539 | animation/clip_125/start_frame=0 540 | animation/clip_125/end_frame=0 541 | animation/clip_125/loops=false 542 | animation/clip_126/name="" 543 | animation/clip_126/start_frame=0 544 | animation/clip_126/end_frame=0 545 | animation/clip_126/loops=false 546 | animation/clip_127/name="" 547 | animation/clip_127/start_frame=0 548 | animation/clip_127/end_frame=0 549 | animation/clip_127/loops=false 550 | animation/clip_128/name="" 551 | animation/clip_128/start_frame=0 552 | animation/clip_128/end_frame=0 553 | animation/clip_128/loops=false 554 | animation/clip_129/name="" 555 | animation/clip_129/start_frame=0 556 | animation/clip_129/end_frame=0 557 | animation/clip_129/loops=false 558 | animation/clip_130/name="" 559 | animation/clip_130/start_frame=0 560 | animation/clip_130/end_frame=0 561 | animation/clip_130/loops=false 562 | animation/clip_131/name="" 563 | animation/clip_131/start_frame=0 564 | animation/clip_131/end_frame=0 565 | animation/clip_131/loops=false 566 | animation/clip_132/name="" 567 | animation/clip_132/start_frame=0 568 | animation/clip_132/end_frame=0 569 | animation/clip_132/loops=false 570 | animation/clip_133/name="" 571 | animation/clip_133/start_frame=0 572 | animation/clip_133/end_frame=0 573 | animation/clip_133/loops=false 574 | animation/clip_134/name="" 575 | animation/clip_134/start_frame=0 576 | animation/clip_134/end_frame=0 577 | animation/clip_134/loops=false 578 | animation/clip_135/name="" 579 | animation/clip_135/start_frame=0 580 | animation/clip_135/end_frame=0 581 | animation/clip_135/loops=false 582 | animation/clip_136/name="" 583 | animation/clip_136/start_frame=0 584 | animation/clip_136/end_frame=0 585 | animation/clip_136/loops=false 586 | animation/clip_137/name="" 587 | animation/clip_137/start_frame=0 588 | animation/clip_137/end_frame=0 589 | animation/clip_137/loops=false 590 | animation/clip_138/name="" 591 | animation/clip_138/start_frame=0 592 | animation/clip_138/end_frame=0 593 | animation/clip_138/loops=false 594 | animation/clip_139/name="" 595 | animation/clip_139/start_frame=0 596 | animation/clip_139/end_frame=0 597 | animation/clip_139/loops=false 598 | animation/clip_140/name="" 599 | animation/clip_140/start_frame=0 600 | animation/clip_140/end_frame=0 601 | animation/clip_140/loops=false 602 | animation/clip_141/name="" 603 | animation/clip_141/start_frame=0 604 | animation/clip_141/end_frame=0 605 | animation/clip_141/loops=false 606 | animation/clip_142/name="" 607 | animation/clip_142/start_frame=0 608 | animation/clip_142/end_frame=0 609 | animation/clip_142/loops=false 610 | animation/clip_143/name="" 611 | animation/clip_143/start_frame=0 612 | animation/clip_143/end_frame=0 613 | animation/clip_143/loops=false 614 | animation/clip_144/name="" 615 | animation/clip_144/start_frame=0 616 | animation/clip_144/end_frame=0 617 | animation/clip_144/loops=false 618 | animation/clip_145/name="" 619 | animation/clip_145/start_frame=0 620 | animation/clip_145/end_frame=0 621 | animation/clip_145/loops=false 622 | animation/clip_146/name="" 623 | animation/clip_146/start_frame=0 624 | animation/clip_146/end_frame=0 625 | animation/clip_146/loops=false 626 | animation/clip_147/name="" 627 | animation/clip_147/start_frame=0 628 | animation/clip_147/end_frame=0 629 | animation/clip_147/loops=false 630 | animation/clip_148/name="" 631 | animation/clip_148/start_frame=0 632 | animation/clip_148/end_frame=0 633 | animation/clip_148/loops=false 634 | animation/clip_149/name="" 635 | animation/clip_149/start_frame=0 636 | animation/clip_149/end_frame=0 637 | animation/clip_149/loops=false 638 | animation/clip_150/name="" 639 | animation/clip_150/start_frame=0 640 | animation/clip_150/end_frame=0 641 | animation/clip_150/loops=false 642 | animation/clip_151/name="" 643 | animation/clip_151/start_frame=0 644 | animation/clip_151/end_frame=0 645 | animation/clip_151/loops=false 646 | animation/clip_152/name="" 647 | animation/clip_152/start_frame=0 648 | animation/clip_152/end_frame=0 649 | animation/clip_152/loops=false 650 | animation/clip_153/name="" 651 | animation/clip_153/start_frame=0 652 | animation/clip_153/end_frame=0 653 | animation/clip_153/loops=false 654 | animation/clip_154/name="" 655 | animation/clip_154/start_frame=0 656 | animation/clip_154/end_frame=0 657 | animation/clip_154/loops=false 658 | animation/clip_155/name="" 659 | animation/clip_155/start_frame=0 660 | animation/clip_155/end_frame=0 661 | animation/clip_155/loops=false 662 | animation/clip_156/name="" 663 | animation/clip_156/start_frame=0 664 | animation/clip_156/end_frame=0 665 | animation/clip_156/loops=false 666 | animation/clip_157/name="" 667 | animation/clip_157/start_frame=0 668 | animation/clip_157/end_frame=0 669 | animation/clip_157/loops=false 670 | animation/clip_158/name="" 671 | animation/clip_158/start_frame=0 672 | animation/clip_158/end_frame=0 673 | animation/clip_158/loops=false 674 | animation/clip_159/name="" 675 | animation/clip_159/start_frame=0 676 | animation/clip_159/end_frame=0 677 | animation/clip_159/loops=false 678 | animation/clip_160/name="" 679 | animation/clip_160/start_frame=0 680 | animation/clip_160/end_frame=0 681 | animation/clip_160/loops=false 682 | animation/clip_161/name="" 683 | animation/clip_161/start_frame=0 684 | animation/clip_161/end_frame=0 685 | animation/clip_161/loops=false 686 | animation/clip_162/name="" 687 | animation/clip_162/start_frame=0 688 | animation/clip_162/end_frame=0 689 | animation/clip_162/loops=false 690 | animation/clip_163/name="" 691 | animation/clip_163/start_frame=0 692 | animation/clip_163/end_frame=0 693 | animation/clip_163/loops=false 694 | animation/clip_164/name="" 695 | animation/clip_164/start_frame=0 696 | animation/clip_164/end_frame=0 697 | animation/clip_164/loops=false 698 | animation/clip_165/name="" 699 | animation/clip_165/start_frame=0 700 | animation/clip_165/end_frame=0 701 | animation/clip_165/loops=false 702 | animation/clip_166/name="" 703 | animation/clip_166/start_frame=0 704 | animation/clip_166/end_frame=0 705 | animation/clip_166/loops=false 706 | animation/clip_167/name="" 707 | animation/clip_167/start_frame=0 708 | animation/clip_167/end_frame=0 709 | animation/clip_167/loops=false 710 | animation/clip_168/name="" 711 | animation/clip_168/start_frame=0 712 | animation/clip_168/end_frame=0 713 | animation/clip_168/loops=false 714 | animation/clip_169/name="" 715 | animation/clip_169/start_frame=0 716 | animation/clip_169/end_frame=0 717 | animation/clip_169/loops=false 718 | animation/clip_170/name="" 719 | animation/clip_170/start_frame=0 720 | animation/clip_170/end_frame=0 721 | animation/clip_170/loops=false 722 | animation/clip_171/name="" 723 | animation/clip_171/start_frame=0 724 | animation/clip_171/end_frame=0 725 | animation/clip_171/loops=false 726 | animation/clip_172/name="" 727 | animation/clip_172/start_frame=0 728 | animation/clip_172/end_frame=0 729 | animation/clip_172/loops=false 730 | animation/clip_173/name="" 731 | animation/clip_173/start_frame=0 732 | animation/clip_173/end_frame=0 733 | animation/clip_173/loops=false 734 | animation/clip_174/name="" 735 | animation/clip_174/start_frame=0 736 | animation/clip_174/end_frame=0 737 | animation/clip_174/loops=false 738 | animation/clip_175/name="" 739 | animation/clip_175/start_frame=0 740 | animation/clip_175/end_frame=0 741 | animation/clip_175/loops=false 742 | animation/clip_176/name="" 743 | animation/clip_176/start_frame=0 744 | animation/clip_176/end_frame=0 745 | animation/clip_176/loops=false 746 | animation/clip_177/name="" 747 | animation/clip_177/start_frame=0 748 | animation/clip_177/end_frame=0 749 | animation/clip_177/loops=false 750 | animation/clip_178/name="" 751 | animation/clip_178/start_frame=0 752 | animation/clip_178/end_frame=0 753 | animation/clip_178/loops=false 754 | animation/clip_179/name="" 755 | animation/clip_179/start_frame=0 756 | animation/clip_179/end_frame=0 757 | animation/clip_179/loops=false 758 | animation/clip_180/name="" 759 | animation/clip_180/start_frame=0 760 | animation/clip_180/end_frame=0 761 | animation/clip_180/loops=false 762 | animation/clip_181/name="" 763 | animation/clip_181/start_frame=0 764 | animation/clip_181/end_frame=0 765 | animation/clip_181/loops=false 766 | animation/clip_182/name="" 767 | animation/clip_182/start_frame=0 768 | animation/clip_182/end_frame=0 769 | animation/clip_182/loops=false 770 | animation/clip_183/name="" 771 | animation/clip_183/start_frame=0 772 | animation/clip_183/end_frame=0 773 | animation/clip_183/loops=false 774 | animation/clip_184/name="" 775 | animation/clip_184/start_frame=0 776 | animation/clip_184/end_frame=0 777 | animation/clip_184/loops=false 778 | animation/clip_185/name="" 779 | animation/clip_185/start_frame=0 780 | animation/clip_185/end_frame=0 781 | animation/clip_185/loops=false 782 | animation/clip_186/name="" 783 | animation/clip_186/start_frame=0 784 | animation/clip_186/end_frame=0 785 | animation/clip_186/loops=false 786 | animation/clip_187/name="" 787 | animation/clip_187/start_frame=0 788 | animation/clip_187/end_frame=0 789 | animation/clip_187/loops=false 790 | animation/clip_188/name="" 791 | animation/clip_188/start_frame=0 792 | animation/clip_188/end_frame=0 793 | animation/clip_188/loops=false 794 | animation/clip_189/name="" 795 | animation/clip_189/start_frame=0 796 | animation/clip_189/end_frame=0 797 | animation/clip_189/loops=false 798 | animation/clip_190/name="" 799 | animation/clip_190/start_frame=0 800 | animation/clip_190/end_frame=0 801 | animation/clip_190/loops=false 802 | animation/clip_191/name="" 803 | animation/clip_191/start_frame=0 804 | animation/clip_191/end_frame=0 805 | animation/clip_191/loops=false 806 | animation/clip_192/name="" 807 | animation/clip_192/start_frame=0 808 | animation/clip_192/end_frame=0 809 | animation/clip_192/loops=false 810 | animation/clip_193/name="" 811 | animation/clip_193/start_frame=0 812 | animation/clip_193/end_frame=0 813 | animation/clip_193/loops=false 814 | animation/clip_194/name="" 815 | animation/clip_194/start_frame=0 816 | animation/clip_194/end_frame=0 817 | animation/clip_194/loops=false 818 | animation/clip_195/name="" 819 | animation/clip_195/start_frame=0 820 | animation/clip_195/end_frame=0 821 | animation/clip_195/loops=false 822 | animation/clip_196/name="" 823 | animation/clip_196/start_frame=0 824 | animation/clip_196/end_frame=0 825 | animation/clip_196/loops=false 826 | animation/clip_197/name="" 827 | animation/clip_197/start_frame=0 828 | animation/clip_197/end_frame=0 829 | animation/clip_197/loops=false 830 | animation/clip_198/name="" 831 | animation/clip_198/start_frame=0 832 | animation/clip_198/end_frame=0 833 | animation/clip_198/loops=false 834 | animation/clip_199/name="" 835 | animation/clip_199/start_frame=0 836 | animation/clip_199/end_frame=0 837 | animation/clip_199/loops=false 838 | animation/clip_200/name="" 839 | animation/clip_200/start_frame=0 840 | animation/clip_200/end_frame=0 841 | animation/clip_200/loops=false 842 | animation/clip_201/name="" 843 | animation/clip_201/start_frame=0 844 | animation/clip_201/end_frame=0 845 | animation/clip_201/loops=false 846 | animation/clip_202/name="" 847 | animation/clip_202/start_frame=0 848 | animation/clip_202/end_frame=0 849 | animation/clip_202/loops=false 850 | animation/clip_203/name="" 851 | animation/clip_203/start_frame=0 852 | animation/clip_203/end_frame=0 853 | animation/clip_203/loops=false 854 | animation/clip_204/name="" 855 | animation/clip_204/start_frame=0 856 | animation/clip_204/end_frame=0 857 | animation/clip_204/loops=false 858 | animation/clip_205/name="" 859 | animation/clip_205/start_frame=0 860 | animation/clip_205/end_frame=0 861 | animation/clip_205/loops=false 862 | animation/clip_206/name="" 863 | animation/clip_206/start_frame=0 864 | animation/clip_206/end_frame=0 865 | animation/clip_206/loops=false 866 | animation/clip_207/name="" 867 | animation/clip_207/start_frame=0 868 | animation/clip_207/end_frame=0 869 | animation/clip_207/loops=false 870 | animation/clip_208/name="" 871 | animation/clip_208/start_frame=0 872 | animation/clip_208/end_frame=0 873 | animation/clip_208/loops=false 874 | animation/clip_209/name="" 875 | animation/clip_209/start_frame=0 876 | animation/clip_209/end_frame=0 877 | animation/clip_209/loops=false 878 | animation/clip_210/name="" 879 | animation/clip_210/start_frame=0 880 | animation/clip_210/end_frame=0 881 | animation/clip_210/loops=false 882 | animation/clip_211/name="" 883 | animation/clip_211/start_frame=0 884 | animation/clip_211/end_frame=0 885 | animation/clip_211/loops=false 886 | animation/clip_212/name="" 887 | animation/clip_212/start_frame=0 888 | animation/clip_212/end_frame=0 889 | animation/clip_212/loops=false 890 | animation/clip_213/name="" 891 | animation/clip_213/start_frame=0 892 | animation/clip_213/end_frame=0 893 | animation/clip_213/loops=false 894 | animation/clip_214/name="" 895 | animation/clip_214/start_frame=0 896 | animation/clip_214/end_frame=0 897 | animation/clip_214/loops=false 898 | animation/clip_215/name="" 899 | animation/clip_215/start_frame=0 900 | animation/clip_215/end_frame=0 901 | animation/clip_215/loops=false 902 | animation/clip_216/name="" 903 | animation/clip_216/start_frame=0 904 | animation/clip_216/end_frame=0 905 | animation/clip_216/loops=false 906 | animation/clip_217/name="" 907 | animation/clip_217/start_frame=0 908 | animation/clip_217/end_frame=0 909 | animation/clip_217/loops=false 910 | animation/clip_218/name="" 911 | animation/clip_218/start_frame=0 912 | animation/clip_218/end_frame=0 913 | animation/clip_218/loops=false 914 | animation/clip_219/name="" 915 | animation/clip_219/start_frame=0 916 | animation/clip_219/end_frame=0 917 | animation/clip_219/loops=false 918 | animation/clip_220/name="" 919 | animation/clip_220/start_frame=0 920 | animation/clip_220/end_frame=0 921 | animation/clip_220/loops=false 922 | animation/clip_221/name="" 923 | animation/clip_221/start_frame=0 924 | animation/clip_221/end_frame=0 925 | animation/clip_221/loops=false 926 | animation/clip_222/name="" 927 | animation/clip_222/start_frame=0 928 | animation/clip_222/end_frame=0 929 | animation/clip_222/loops=false 930 | animation/clip_223/name="" 931 | animation/clip_223/start_frame=0 932 | animation/clip_223/end_frame=0 933 | animation/clip_223/loops=false 934 | animation/clip_224/name="" 935 | animation/clip_224/start_frame=0 936 | animation/clip_224/end_frame=0 937 | animation/clip_224/loops=false 938 | animation/clip_225/name="" 939 | animation/clip_225/start_frame=0 940 | animation/clip_225/end_frame=0 941 | animation/clip_225/loops=false 942 | animation/clip_226/name="" 943 | animation/clip_226/start_frame=0 944 | animation/clip_226/end_frame=0 945 | animation/clip_226/loops=false 946 | animation/clip_227/name="" 947 | animation/clip_227/start_frame=0 948 | animation/clip_227/end_frame=0 949 | animation/clip_227/loops=false 950 | animation/clip_228/name="" 951 | animation/clip_228/start_frame=0 952 | animation/clip_228/end_frame=0 953 | animation/clip_228/loops=false 954 | animation/clip_229/name="" 955 | animation/clip_229/start_frame=0 956 | animation/clip_229/end_frame=0 957 | animation/clip_229/loops=false 958 | animation/clip_230/name="" 959 | animation/clip_230/start_frame=0 960 | animation/clip_230/end_frame=0 961 | animation/clip_230/loops=false 962 | animation/clip_231/name="" 963 | animation/clip_231/start_frame=0 964 | animation/clip_231/end_frame=0 965 | animation/clip_231/loops=false 966 | animation/clip_232/name="" 967 | animation/clip_232/start_frame=0 968 | animation/clip_232/end_frame=0 969 | animation/clip_232/loops=false 970 | animation/clip_233/name="" 971 | animation/clip_233/start_frame=0 972 | animation/clip_233/end_frame=0 973 | animation/clip_233/loops=false 974 | animation/clip_234/name="" 975 | animation/clip_234/start_frame=0 976 | animation/clip_234/end_frame=0 977 | animation/clip_234/loops=false 978 | animation/clip_235/name="" 979 | animation/clip_235/start_frame=0 980 | animation/clip_235/end_frame=0 981 | animation/clip_235/loops=false 982 | animation/clip_236/name="" 983 | animation/clip_236/start_frame=0 984 | animation/clip_236/end_frame=0 985 | animation/clip_236/loops=false 986 | animation/clip_237/name="" 987 | animation/clip_237/start_frame=0 988 | animation/clip_237/end_frame=0 989 | animation/clip_237/loops=false 990 | animation/clip_238/name="" 991 | animation/clip_238/start_frame=0 992 | animation/clip_238/end_frame=0 993 | animation/clip_238/loops=false 994 | animation/clip_239/name="" 995 | animation/clip_239/start_frame=0 996 | animation/clip_239/end_frame=0 997 | animation/clip_239/loops=false 998 | animation/clip_240/name="" 999 | animation/clip_240/start_frame=0 1000 | animation/clip_240/end_frame=0 1001 | animation/clip_240/loops=false 1002 | animation/clip_241/name="" 1003 | animation/clip_241/start_frame=0 1004 | animation/clip_241/end_frame=0 1005 | animation/clip_241/loops=false 1006 | animation/clip_242/name="" 1007 | animation/clip_242/start_frame=0 1008 | animation/clip_242/end_frame=0 1009 | animation/clip_242/loops=false 1010 | animation/clip_243/name="" 1011 | animation/clip_243/start_frame=0 1012 | animation/clip_243/end_frame=0 1013 | animation/clip_243/loops=false 1014 | animation/clip_244/name="" 1015 | animation/clip_244/start_frame=0 1016 | animation/clip_244/end_frame=0 1017 | animation/clip_244/loops=false 1018 | animation/clip_245/name="" 1019 | animation/clip_245/start_frame=0 1020 | animation/clip_245/end_frame=0 1021 | animation/clip_245/loops=false 1022 | animation/clip_246/name="" 1023 | animation/clip_246/start_frame=0 1024 | animation/clip_246/end_frame=0 1025 | animation/clip_246/loops=false 1026 | animation/clip_247/name="" 1027 | animation/clip_247/start_frame=0 1028 | animation/clip_247/end_frame=0 1029 | animation/clip_247/loops=false 1030 | animation/clip_248/name="" 1031 | animation/clip_248/start_frame=0 1032 | animation/clip_248/end_frame=0 1033 | animation/clip_248/loops=false 1034 | animation/clip_249/name="" 1035 | animation/clip_249/start_frame=0 1036 | animation/clip_249/end_frame=0 1037 | animation/clip_249/loops=false 1038 | animation/clip_250/name="" 1039 | animation/clip_250/start_frame=0 1040 | animation/clip_250/end_frame=0 1041 | animation/clip_250/loops=false 1042 | animation/clip_251/name="" 1043 | animation/clip_251/start_frame=0 1044 | animation/clip_251/end_frame=0 1045 | animation/clip_251/loops=false 1046 | animation/clip_252/name="" 1047 | animation/clip_252/start_frame=0 1048 | animation/clip_252/end_frame=0 1049 | animation/clip_252/loops=false 1050 | animation/clip_253/name="" 1051 | animation/clip_253/start_frame=0 1052 | animation/clip_253/end_frame=0 1053 | animation/clip_253/loops=false 1054 | animation/clip_254/name="" 1055 | animation/clip_254/start_frame=0 1056 | animation/clip_254/end_frame=0 1057 | animation/clip_254/loops=false 1058 | animation/clip_255/name="" 1059 | animation/clip_255/start_frame=0 1060 | animation/clip_255/end_frame=0 1061 | animation/clip_255/loops=false 1062 | animation/clip_256/name="" 1063 | animation/clip_256/start_frame=0 1064 | animation/clip_256/end_frame=0 1065 | animation/clip_256/loops=false 1066 | -------------------------------------------------------------------------------- /sci fi modular/floor 1/floor 1.mtl: -------------------------------------------------------------------------------- 1 | newmtl None 2 | Ns 100.000 3 | d 1.00000 4 | illum 2 5 | Kd 1.00000 1.00000 1.00000 6 | Ka 0.00000 0.00000 0.00000 7 | Ks 1.00000 1.00000 1.00000 8 | Ke 0.00000e+0 0.00000e+0 0.00000e+0 9 | map_Kd floor 1_Albedo.png 10 | bump floor 1_Height.png 11 | map_bump floor 1_Normal.png 12 | -------------------------------------------------------------------------------- /sci fi modular/floor 1/floor 1.obj: -------------------------------------------------------------------------------- 1 | # Wavefront Obj file 2 | # 3 | # verts: 4 uv-s: 4 4 | mtllib floor 1.mtl 5 | 6 | g lp_Plane.005 7 | 8 | v 0.000000 0.002360 0.000000 9 | v 2.000000 0.002360 0.000000 10 | v 0.000000 0.002360 -2.000000 11 | v 2.000000 0.002360 -2.000000 12 | # 4 positions 13 | 14 | vt 0.000100 0.000100 15 | vt 0.999900 0.000100 16 | vt 0.999900 0.999900 17 | vt 0.000100 0.999900 18 | # 4 texture coordinates 19 | 20 | vn 0.000000 1.000000 0.000000 21 | # 1 normals 22 | 23 | usemtl None 24 | f 1/1/1 2/2/1 4/3/1 3/4/1 25 | 26 | # 1 faces 27 | -------------------------------------------------------------------------------- /sci fi modular/floor 1/floor 1.obj.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="wavefront_obj" 4 | type="Mesh" 5 | path="res://.import/floor 1.obj-065e7c09f179a74d2a9512561e8c1d72.mesh" 6 | 7 | [deps] 8 | 9 | files=[ "res://.import/floor 1.obj-065e7c09f179a74d2a9512561e8c1d72.mesh" ] 10 | 11 | source_file="res://sci-fi modular/floor 1/floor 1.obj" 12 | source_md5="98f841b3191cf010646207867cbf248b" 13 | 14 | dest_files=[ "res://.import/floor 1.obj-065e7c09f179a74d2a9512561e8c1d72.mesh", "res://.import/floor 1.obj-065e7c09f179a74d2a9512561e8c1d72.mesh" ] 15 | dest_md5="9f14239a4b9c1a4ec527b811091bca84" 16 | 17 | [params] 18 | 19 | generate_tangents=true 20 | -------------------------------------------------------------------------------- /sci fi modular/floor 1/floor 1_Albedo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wburton95/Godot-FPS-Demo/6c31c50920702280601cc5c7ef65cacb65eeda11/sci fi modular/floor 1/floor 1_Albedo.png -------------------------------------------------------------------------------- /sci fi modular/floor 1/floor 1_Albedo.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path.s3tc="res://.import/floor 1_Albedo.png-c0a64d1a12d26507bf18121c56df6f03.s3tc.stex" 6 | path.etc2="res://.import/floor 1_Albedo.png-c0a64d1a12d26507bf18121c56df6f03.etc2.stex" 7 | 8 | [deps] 9 | 10 | source_file="res://sci-fi modular/floor 1/floor 1_Albedo.png" 11 | source_md5="0810d6ee66995b32e5550e74c76f64f2" 12 | 13 | dest_files=[ "res://.import/floor 1_Albedo.png-c0a64d1a12d26507bf18121c56df6f03.s3tc.stex", "res://.import/floor 1_Albedo.png-c0a64d1a12d26507bf18121c56df6f03.etc2.stex" ] 14 | dest_md5="7d02c554a4424e92c243b37095a7a63b" 15 | 16 | [params] 17 | 18 | compress/mode=2 19 | compress/lossy_quality=0.7 20 | compress/hdr_mode=0 21 | compress/normal_map=0 22 | flags/repeat=true 23 | flags/filter=true 24 | flags/mipmaps=true 25 | flags/anisotropic=false 26 | flags/srgb=1 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | stream=false 31 | size_limit=0 32 | detect_3d=false 33 | svg/scale=1.0 34 | -------------------------------------------------------------------------------- /sci fi modular/floor 1/floor 1_Emission.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wburton95/Godot-FPS-Demo/6c31c50920702280601cc5c7ef65cacb65eeda11/sci fi modular/floor 1/floor 1_Emission.png -------------------------------------------------------------------------------- /sci fi modular/floor 1/floor 1_Emission.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/floor 1_Emission.png-203f1f4865cce8b4ca1e4328aecb288f.stex" 6 | 7 | [deps] 8 | 9 | source_file="res://sci-fi modular/floor 1/floor 1_Emission.png" 10 | source_md5="9b00921685afb8cc77218cdf39ce78c2" 11 | 12 | dest_files=[ "res://.import/floor 1_Emission.png-203f1f4865cce8b4ca1e4328aecb288f.stex" ] 13 | dest_md5="b2a026b91140a898553a2900f0c33a93" 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/normal_map=0 21 | flags/repeat=0 22 | flags/filter=true 23 | flags/mipmaps=false 24 | flags/anisotropic=false 25 | flags/srgb=2 26 | process/fix_alpha_border=true 27 | process/premult_alpha=false 28 | process/HDR_as_SRGB=false 29 | stream=false 30 | size_limit=0 31 | detect_3d=true 32 | svg/scale=1.0 33 | -------------------------------------------------------------------------------- /sci fi modular/floor 1/floor 1_Height.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wburton95/Godot-FPS-Demo/6c31c50920702280601cc5c7ef65cacb65eeda11/sci fi modular/floor 1/floor 1_Height.png -------------------------------------------------------------------------------- /sci fi modular/floor 1/floor 1_Height.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/floor 1_Height.png-c9c054efb880b77eb6c5bffa065c4273.stex" 6 | 7 | [deps] 8 | 9 | source_file="res://sci-fi modular/floor 1/floor 1_Height.png" 10 | source_md5="5260abe44c188549064382db56506be6" 11 | 12 | dest_files=[ "res://.import/floor 1_Height.png-c9c054efb880b77eb6c5bffa065c4273.stex" ] 13 | dest_md5="81572eceebc471ee4b9d992feace3d81" 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/normal_map=0 21 | flags/repeat=0 22 | flags/filter=true 23 | flags/mipmaps=false 24 | flags/anisotropic=false 25 | flags/srgb=2 26 | process/fix_alpha_border=true 27 | process/premult_alpha=false 28 | process/HDR_as_SRGB=false 29 | stream=false 30 | size_limit=0 31 | detect_3d=true 32 | svg/scale=1.0 33 | -------------------------------------------------------------------------------- /sci fi modular/floor 1/floor 1_Metallic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wburton95/Godot-FPS-Demo/6c31c50920702280601cc5c7ef65cacb65eeda11/sci fi modular/floor 1/floor 1_Metallic.png -------------------------------------------------------------------------------- /sci fi modular/floor 1/floor 1_Metallic.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path.s3tc="res://.import/floor 1_Metallic.png-e70c85fbba9cd3c260078418d6808cd9.s3tc.stex" 6 | path.etc2="res://.import/floor 1_Metallic.png-e70c85fbba9cd3c260078418d6808cd9.etc2.stex" 7 | 8 | [deps] 9 | 10 | source_file="res://sci-fi modular/floor 1/floor 1_Metallic.png" 11 | source_md5="b52c238f7e8d10de0680b08bb678762b" 12 | 13 | dest_files=[ "res://.import/floor 1_Metallic.png-e70c85fbba9cd3c260078418d6808cd9.s3tc.stex", "res://.import/floor 1_Metallic.png-e70c85fbba9cd3c260078418d6808cd9.etc2.stex" ] 14 | dest_md5="6605858fa245ea4d42596ec5b3f386f6" 15 | 16 | [params] 17 | 18 | compress/mode=2 19 | compress/lossy_quality=0.7 20 | compress/hdr_mode=0 21 | compress/normal_map=0 22 | flags/repeat=true 23 | flags/filter=true 24 | flags/mipmaps=true 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | stream=false 31 | size_limit=0 32 | detect_3d=false 33 | svg/scale=1.0 34 | -------------------------------------------------------------------------------- /sci fi modular/floor 1/floor 1_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wburton95/Godot-FPS-Demo/6c31c50920702280601cc5c7ef65cacb65eeda11/sci fi modular/floor 1/floor 1_Normal.png -------------------------------------------------------------------------------- /sci fi modular/floor 1/floor 1_Normal.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path.s3tc="res://.import/floor 1_Normal.png-61cf4b8b65d87cbc0451fac2b2d02bb3.s3tc.stex" 6 | path.etc2="res://.import/floor 1_Normal.png-61cf4b8b65d87cbc0451fac2b2d02bb3.etc2.stex" 7 | 8 | [deps] 9 | 10 | source_file="res://sci-fi modular/floor 1/floor 1_Normal.png" 11 | source_md5="a4bde2d5c8a21e0522e318eb08fb56ac" 12 | 13 | dest_files=[ "res://.import/floor 1_Normal.png-61cf4b8b65d87cbc0451fac2b2d02bb3.s3tc.stex", "res://.import/floor 1_Normal.png-61cf4b8b65d87cbc0451fac2b2d02bb3.etc2.stex" ] 14 | dest_md5="dce2a21b9d06873d1f188bb9bec4406e" 15 | 16 | [params] 17 | 18 | compress/mode=2 19 | compress/lossy_quality=0.7 20 | compress/hdr_mode=0 21 | compress/normal_map=1 22 | flags/repeat=true 23 | flags/filter=true 24 | flags/mipmaps=true 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | stream=false 31 | size_limit=0 32 | detect_3d=false 33 | svg/scale=1.0 34 | -------------------------------------------------------------------------------- /sci fi modular/floor 1/floor 1_Occlusion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wburton95/Godot-FPS-Demo/6c31c50920702280601cc5c7ef65cacb65eeda11/sci fi modular/floor 1/floor 1_Occlusion.png -------------------------------------------------------------------------------- /sci fi modular/floor 1/floor 1_Occlusion.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/floor 1_Occlusion.png-e97b3b70015b0cc76588f55f534eff82.stex" 6 | 7 | [deps] 8 | 9 | source_file="res://sci-fi modular/floor 1/floor 1_Occlusion.png" 10 | source_md5="b9d6865dfcc22751ce4c4fb5cdf11980" 11 | 12 | dest_files=[ "res://.import/floor 1_Occlusion.png-e97b3b70015b0cc76588f55f534eff82.stex" ] 13 | dest_md5="569da0e0ff264db7acada6c43292937a" 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/normal_map=0 21 | flags/repeat=0 22 | flags/filter=true 23 | flags/mipmaps=false 24 | flags/anisotropic=false 25 | flags/srgb=2 26 | process/fix_alpha_border=true 27 | process/premult_alpha=false 28 | process/HDR_as_SRGB=false 29 | stream=false 30 | size_limit=0 31 | detect_3d=true 32 | svg/scale=1.0 33 | -------------------------------------------------------------------------------- /sci fi modular/floor 2/floor 2 ao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wburton95/Godot-FPS-Demo/6c31c50920702280601cc5c7ef65cacb65eeda11/sci fi modular/floor 2/floor 2 ao.png -------------------------------------------------------------------------------- /sci fi modular/floor 2/floor 2 ao.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/floor 2 ao.png-2e733d4f4fa0fdf2932e1351f22282c8.stex" 6 | 7 | [deps] 8 | 9 | source_file="res://sci-fi modular/floor 2/floor 2 ao.png" 10 | source_md5="ba5e836671793e3060e7d88bc22553b3" 11 | 12 | dest_files=[ "res://.import/floor 2 ao.png-2e733d4f4fa0fdf2932e1351f22282c8.stex" ] 13 | dest_md5="179aefff93e481ea799d66307ab9b5ab" 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/normal_map=0 21 | flags/repeat=0 22 | flags/filter=true 23 | flags/mipmaps=false 24 | flags/anisotropic=false 25 | flags/srgb=2 26 | process/fix_alpha_border=true 27 | process/premult_alpha=false 28 | process/HDR_as_SRGB=false 29 | stream=false 30 | size_limit=0 31 | detect_3d=true 32 | svg/scale=1.0 33 | -------------------------------------------------------------------------------- /sci fi modular/floor 2/floor 2 normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wburton95/Godot-FPS-Demo/6c31c50920702280601cc5c7ef65cacb65eeda11/sci fi modular/floor 2/floor 2 normal.png -------------------------------------------------------------------------------- /sci fi modular/floor 2/floor 2 normal.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/floor 2 normal.png-f191e3c196b78bcee15c82a89d3f07f3.stex" 6 | 7 | [deps] 8 | 9 | source_file="res://sci-fi modular/floor 2/floor 2 normal.png" 10 | source_md5="91f109f7bded9fae9c7a077bcd92057e" 11 | 12 | dest_files=[ "res://.import/floor 2 normal.png-f191e3c196b78bcee15c82a89d3f07f3.stex" ] 13 | dest_md5="1f64be182c5a9ade037e587bd8e22e94" 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/normal_map=0 21 | flags/repeat=0 22 | flags/filter=true 23 | flags/mipmaps=false 24 | flags/anisotropic=false 25 | flags/srgb=2 26 | process/fix_alpha_border=true 27 | process/premult_alpha=false 28 | process/HDR_as_SRGB=false 29 | stream=false 30 | size_limit=0 31 | detect_3d=true 32 | svg/scale=1.0 33 | -------------------------------------------------------------------------------- /sci fi modular/floor 2/floor 2.3b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wburton95/Godot-FPS-Demo/6c31c50920702280601cc5c7ef65cacb65eeda11/sci fi modular/floor 2/floor 2.3b.jpg -------------------------------------------------------------------------------- /sci fi modular/floor 2/floor 2.3b.jpg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/floor 2.3b.jpg-c1b0babd179bfe2b59585a2bb77595d5.stex" 6 | 7 | [deps] 8 | 9 | source_file="res://sci-fi modular/floor 2/floor 2.3b.jpg" 10 | source_md5="418e9749d17a16b6fa5ceb55d4c758bb" 11 | 12 | dest_files=[ "res://.import/floor 2.3b.jpg-c1b0babd179bfe2b59585a2bb77595d5.stex" ] 13 | dest_md5="d2c1bb07e93a525f8c0f5925bef367dd" 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/normal_map=0 21 | flags/repeat=0 22 | flags/filter=true 23 | flags/mipmaps=false 24 | flags/anisotropic=false 25 | flags/srgb=2 26 | process/fix_alpha_border=true 27 | process/premult_alpha=false 28 | process/HDR_as_SRGB=false 29 | stream=false 30 | size_limit=0 31 | detect_3d=true 32 | svg/scale=1.0 33 | -------------------------------------------------------------------------------- /sci fi modular/floor 2/floor 2.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wburton95/Godot-FPS-Demo/6c31c50920702280601cc5c7ef65cacb65eeda11/sci fi modular/floor 2/floor 2.blend -------------------------------------------------------------------------------- /sci fi modular/floor 2/floor 2.blend1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wburton95/Godot-FPS-Demo/6c31c50920702280601cc5c7ef65cacb65eeda11/sci fi modular/floor 2/floor 2.blend1 -------------------------------------------------------------------------------- /sci fi modular/floor 2/floor 2.mtl: -------------------------------------------------------------------------------- 1 | newmtl None 2 | Ns 100.000 3 | d 1.00000 4 | illum 2 5 | Kd 1.00000 1.00000 1.00000 6 | Ka 0.00000 0.00000 0.00000 7 | Ks 1.00000 1.00000 1.00000 8 | Ke 0.00000e+0 0.00000e+0 0.00000e+0 9 | map_Kd floor 2_Albedo.png 10 | bump floor 2_Height.png 11 | map_bump floor 2_Normal.png 12 | -------------------------------------------------------------------------------- /sci fi modular/floor 2/floor 2.obj: -------------------------------------------------------------------------------- 1 | # Wavefront Obj file 2 | # 3 | # verts: 4 uv-s: 4 4 | mtllib floor 2.mtl 5 | 6 | g lp_Plane.004 7 | 8 | v 0.000000 0.000000 0.000000 9 | v 2.000000 0.000000 0.000000 10 | v 0.000000 0.000000 -2.000000 11 | v 2.000000 0.000000 -2.000000 12 | # 4 positions 13 | 14 | vt 0.000100 0.000100 15 | vt 0.999900 0.000100 16 | vt 0.999900 0.999900 17 | vt 0.000100 0.999900 18 | # 4 texture coordinates 19 | 20 | vn 0.000000 1.000000 0.000000 21 | # 1 normals 22 | 23 | usemtl None 24 | f 1/1/1 2/2/1 4/3/1 3/4/1 25 | 26 | # 1 faces 27 | -------------------------------------------------------------------------------- /sci fi modular/floor 2/floor 2.obj.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="wavefront_obj" 4 | type="Mesh" 5 | path="res://.import/floor 2.obj-9fdf061cd560e9d172bc97f76f47fb9b.mesh" 6 | 7 | [deps] 8 | 9 | files=[ "res://.import/floor 2.obj-9fdf061cd560e9d172bc97f76f47fb9b.mesh" ] 10 | 11 | source_file="res://sci-fi modular/floor 2/floor 2.obj" 12 | source_md5="99275a36d565f99d05b27163a31ddfce" 13 | 14 | dest_files=[ "res://.import/floor 2.obj-9fdf061cd560e9d172bc97f76f47fb9b.mesh", "res://.import/floor 2.obj-9fdf061cd560e9d172bc97f76f47fb9b.mesh" ] 15 | dest_md5="6f84ceca855cf938673936b6f0667061" 16 | 17 | [params] 18 | 19 | generate_tangents=true 20 | -------------------------------------------------------------------------------- /sci fi modular/floor 2/floor 2_Albedo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wburton95/Godot-FPS-Demo/6c31c50920702280601cc5c7ef65cacb65eeda11/sci fi modular/floor 2/floor 2_Albedo.png -------------------------------------------------------------------------------- /sci fi modular/floor 2/floor 2_Albedo.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path.s3tc="res://.import/floor 2_Albedo.png-3578d56d6e0b0fb1ee376245c97c456d.s3tc.stex" 6 | path.etc2="res://.import/floor 2_Albedo.png-3578d56d6e0b0fb1ee376245c97c456d.etc2.stex" 7 | 8 | [deps] 9 | 10 | source_file="res://sci-fi modular/floor 2/floor 2_Albedo.png" 11 | source_md5="2fdd79e38fbda1a6fc7bfe0f23132d00" 12 | 13 | dest_files=[ "res://.import/floor 2_Albedo.png-3578d56d6e0b0fb1ee376245c97c456d.s3tc.stex", "res://.import/floor 2_Albedo.png-3578d56d6e0b0fb1ee376245c97c456d.etc2.stex" ] 14 | dest_md5="bf6b0baf5b9f207040d385ec0f4ce946" 15 | 16 | [params] 17 | 18 | compress/mode=2 19 | compress/lossy_quality=0.7 20 | compress/hdr_mode=0 21 | compress/normal_map=0 22 | flags/repeat=true 23 | flags/filter=true 24 | flags/mipmaps=true 25 | flags/anisotropic=false 26 | flags/srgb=1 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | stream=false 31 | size_limit=0 32 | detect_3d=false 33 | svg/scale=1.0 34 | -------------------------------------------------------------------------------- /sci fi modular/floor 2/floor 2_Emission.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wburton95/Godot-FPS-Demo/6c31c50920702280601cc5c7ef65cacb65eeda11/sci fi modular/floor 2/floor 2_Emission.png -------------------------------------------------------------------------------- /sci fi modular/floor 2/floor 2_Emission.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/floor 2_Emission.png-2d972998a22713a6d50753d32f12d13b.stex" 6 | 7 | [deps] 8 | 9 | source_file="res://sci-fi modular/floor 2/floor 2_Emission.png" 10 | source_md5="9b00921685afb8cc77218cdf39ce78c2" 11 | 12 | dest_files=[ "res://.import/floor 2_Emission.png-2d972998a22713a6d50753d32f12d13b.stex" ] 13 | dest_md5="b2a026b91140a898553a2900f0c33a93" 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/normal_map=0 21 | flags/repeat=0 22 | flags/filter=true 23 | flags/mipmaps=false 24 | flags/anisotropic=false 25 | flags/srgb=2 26 | process/fix_alpha_border=true 27 | process/premult_alpha=false 28 | process/HDR_as_SRGB=false 29 | stream=false 30 | size_limit=0 31 | detect_3d=true 32 | svg/scale=1.0 33 | -------------------------------------------------------------------------------- /sci fi modular/floor 2/floor 2_Height.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wburton95/Godot-FPS-Demo/6c31c50920702280601cc5c7ef65cacb65eeda11/sci fi modular/floor 2/floor 2_Height.png -------------------------------------------------------------------------------- /sci fi modular/floor 2/floor 2_Height.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/floor 2_Height.png-422ec81139790823c21790e2ae39d63e.stex" 6 | 7 | [deps] 8 | 9 | source_file="res://sci-fi modular/floor 2/floor 2_Height.png" 10 | source_md5="b45f4e5ff0e93379f75eaaeda3f336c2" 11 | 12 | dest_files=[ "res://.import/floor 2_Height.png-422ec81139790823c21790e2ae39d63e.stex" ] 13 | dest_md5="8381f201186d054f7aa27388abf08f10" 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/normal_map=0 21 | flags/repeat=0 22 | flags/filter=true 23 | flags/mipmaps=false 24 | flags/anisotropic=false 25 | flags/srgb=2 26 | process/fix_alpha_border=true 27 | process/premult_alpha=false 28 | process/HDR_as_SRGB=false 29 | stream=false 30 | size_limit=0 31 | detect_3d=true 32 | svg/scale=1.0 33 | -------------------------------------------------------------------------------- /sci fi modular/floor 2/floor 2_Metallic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wburton95/Godot-FPS-Demo/6c31c50920702280601cc5c7ef65cacb65eeda11/sci fi modular/floor 2/floor 2_Metallic.png -------------------------------------------------------------------------------- /sci fi modular/floor 2/floor 2_Metallic.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path.s3tc="res://.import/floor 2_Metallic.png-73de599214c20bf86aa792c9e68dd169.s3tc.stex" 6 | path.etc2="res://.import/floor 2_Metallic.png-73de599214c20bf86aa792c9e68dd169.etc2.stex" 7 | 8 | [deps] 9 | 10 | source_file="res://sci-fi modular/floor 2/floor 2_Metallic.png" 11 | source_md5="a37353acca6a5232ad174c9b25d4dc62" 12 | 13 | dest_files=[ "res://.import/floor 2_Metallic.png-73de599214c20bf86aa792c9e68dd169.s3tc.stex", "res://.import/floor 2_Metallic.png-73de599214c20bf86aa792c9e68dd169.etc2.stex" ] 14 | dest_md5="67c7a65fbdbbd75d667e14919ba56092" 15 | 16 | [params] 17 | 18 | compress/mode=2 19 | compress/lossy_quality=0.7 20 | compress/hdr_mode=0 21 | compress/normal_map=0 22 | flags/repeat=true 23 | flags/filter=true 24 | flags/mipmaps=true 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | stream=false 31 | size_limit=0 32 | detect_3d=false 33 | svg/scale=1.0 34 | -------------------------------------------------------------------------------- /sci fi modular/floor 2/floor 2_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wburton95/Godot-FPS-Demo/6c31c50920702280601cc5c7ef65cacb65eeda11/sci fi modular/floor 2/floor 2_Normal.png -------------------------------------------------------------------------------- /sci fi modular/floor 2/floor 2_Normal.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path.s3tc="res://.import/floor 2_Normal.png-65071dfc93d7c8e917b7a57a989d1717.s3tc.stex" 6 | path.etc2="res://.import/floor 2_Normal.png-65071dfc93d7c8e917b7a57a989d1717.etc2.stex" 7 | 8 | [deps] 9 | 10 | source_file="res://sci-fi modular/floor 2/floor 2_Normal.png" 11 | source_md5="da20275f8cd9510f68eacd3e9993d5ef" 12 | 13 | dest_files=[ "res://.import/floor 2_Normal.png-65071dfc93d7c8e917b7a57a989d1717.s3tc.stex", "res://.import/floor 2_Normal.png-65071dfc93d7c8e917b7a57a989d1717.etc2.stex" ] 14 | dest_md5="08f282786193c2c41c551505f1e891ef" 15 | 16 | [params] 17 | 18 | compress/mode=2 19 | compress/lossy_quality=0.7 20 | compress/hdr_mode=0 21 | compress/normal_map=1 22 | flags/repeat=true 23 | flags/filter=true 24 | flags/mipmaps=true 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | stream=false 31 | size_limit=0 32 | detect_3d=false 33 | svg/scale=1.0 34 | -------------------------------------------------------------------------------- /sci fi modular/floor 2/floor 2_Occlusion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wburton95/Godot-FPS-Demo/6c31c50920702280601cc5c7ef65cacb65eeda11/sci fi modular/floor 2/floor 2_Occlusion.png -------------------------------------------------------------------------------- /sci fi modular/floor 2/floor 2_Occlusion.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/floor 2_Occlusion.png-ef97b2edd1d8215d3d9463357e6b97c8.stex" 6 | 7 | [deps] 8 | 9 | source_file="res://sci-fi modular/floor 2/floor 2_Occlusion.png" 10 | source_md5="5487fdec939da7844d46829c79734ab2" 11 | 12 | dest_files=[ "res://.import/floor 2_Occlusion.png-ef97b2edd1d8215d3d9463357e6b97c8.stex" ] 13 | dest_md5="6d4c59e97bb74b316228d97036bfd25e" 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/normal_map=0 21 | flags/repeat=0 22 | flags/filter=true 23 | flags/mipmaps=false 24 | flags/anisotropic=false 25 | flags/srgb=2 26 | process/fix_alpha_border=true 27 | process/premult_alpha=false 28 | process/HDR_as_SRGB=false 29 | stream=false 30 | size_limit=0 31 | detect_3d=true 32 | svg/scale=1.0 33 | -------------------------------------------------------------------------------- /sci fi modular/wall 1/wall 1.3b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wburton95/Godot-FPS-Demo/6c31c50920702280601cc5c7ef65cacb65eeda11/sci fi modular/wall 1/wall 1.3b -------------------------------------------------------------------------------- /sci fi modular/wall 1/wall 1.3b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wburton95/Godot-FPS-Demo/6c31c50920702280601cc5c7ef65cacb65eeda11/sci fi modular/wall 1/wall 1.3b.jpg -------------------------------------------------------------------------------- /sci fi modular/wall 1/wall 1.3b.jpg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/wall 1.3b.jpg-00874f403915fd40b2888c4fb3b593a5.stex" 6 | 7 | [deps] 8 | 9 | source_file="res://sci-fi modular/wall 1/wall 1.3b.jpg" 10 | source_md5="64d88d90fa142386bf0bc6c2665efb25" 11 | 12 | dest_files=[ "res://.import/wall 1.3b.jpg-00874f403915fd40b2888c4fb3b593a5.stex" ] 13 | dest_md5="e64e79b56d5dfc801b089721ba8e37eb" 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/normal_map=0 21 | flags/repeat=0 22 | flags/filter=true 23 | flags/mipmaps=false 24 | flags/anisotropic=false 25 | flags/srgb=2 26 | process/fix_alpha_border=true 27 | process/premult_alpha=false 28 | process/HDR_as_SRGB=false 29 | stream=false 30 | size_limit=0 31 | detect_3d=true 32 | svg/scale=1.0 33 | -------------------------------------------------------------------------------- /sci fi modular/wall 1/wall 1.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wburton95/Godot-FPS-Demo/6c31c50920702280601cc5c7ef65cacb65eeda11/sci fi modular/wall 1/wall 1.blend -------------------------------------------------------------------------------- /sci fi modular/wall 1/wall 1.blend1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wburton95/Godot-FPS-Demo/6c31c50920702280601cc5c7ef65cacb65eeda11/sci fi modular/wall 1/wall 1.blend1 -------------------------------------------------------------------------------- /sci fi modular/wall 1/wall 1.dae.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="scene" 4 | type="PackedScene" 5 | path="res://.import/wall 1.dae-d259b227f23af945c453758a02bccd20.scn" 6 | 7 | [deps] 8 | 9 | source_file="res://sci-fi modular/wall 1/wall 1.dae" 10 | source_md5="0e20fce4a278ccbf90a0f613a3e01b60" 11 | 12 | dest_files=[ "res://.import/wall 1.dae-d259b227f23af945c453758a02bccd20.scn" ] 13 | dest_md5="4158f484bf362acc8dbfaf4c71ce9553" 14 | 15 | [params] 16 | 17 | nodes/root_type="Spatial" 18 | nodes/root_name="Scene Root" 19 | nodes/root_scale=1.0 20 | nodes/custom_script="" 21 | nodes/storage=0 22 | materials/location=1 23 | materials/storage=1 24 | materials/keep_on_reimport=true 25 | meshes/compress=true 26 | meshes/ensure_tangents=true 27 | meshes/storage=0 28 | meshes/light_baking=0 29 | meshes/lightmap_texel_size=0.1 30 | external_files/store_in_subdir=false 31 | animation/import=true 32 | animation/fps=15 33 | animation/filter_script="" 34 | animation/storage=false 35 | animation/keep_custom_tracks=false 36 | animation/optimizer/enabled=true 37 | animation/optimizer/max_linear_error=0.05 38 | animation/optimizer/max_angular_error=0.01 39 | animation/optimizer/max_angle=22 40 | animation/optimizer/remove_unused_tracks=true 41 | animation/clips/amount=0 42 | animation/clip_1/name="" 43 | animation/clip_1/start_frame=0 44 | animation/clip_1/end_frame=0 45 | animation/clip_1/loops=false 46 | animation/clip_2/name="" 47 | animation/clip_2/start_frame=0 48 | animation/clip_2/end_frame=0 49 | animation/clip_2/loops=false 50 | animation/clip_3/name="" 51 | animation/clip_3/start_frame=0 52 | animation/clip_3/end_frame=0 53 | animation/clip_3/loops=false 54 | animation/clip_4/name="" 55 | animation/clip_4/start_frame=0 56 | animation/clip_4/end_frame=0 57 | animation/clip_4/loops=false 58 | animation/clip_5/name="" 59 | animation/clip_5/start_frame=0 60 | animation/clip_5/end_frame=0 61 | animation/clip_5/loops=false 62 | animation/clip_6/name="" 63 | animation/clip_6/start_frame=0 64 | animation/clip_6/end_frame=0 65 | animation/clip_6/loops=false 66 | animation/clip_7/name="" 67 | animation/clip_7/start_frame=0 68 | animation/clip_7/end_frame=0 69 | animation/clip_7/loops=false 70 | animation/clip_8/name="" 71 | animation/clip_8/start_frame=0 72 | animation/clip_8/end_frame=0 73 | animation/clip_8/loops=false 74 | animation/clip_9/name="" 75 | animation/clip_9/start_frame=0 76 | animation/clip_9/end_frame=0 77 | animation/clip_9/loops=false 78 | animation/clip_10/name="" 79 | animation/clip_10/start_frame=0 80 | animation/clip_10/end_frame=0 81 | animation/clip_10/loops=false 82 | animation/clip_11/name="" 83 | animation/clip_11/start_frame=0 84 | animation/clip_11/end_frame=0 85 | animation/clip_11/loops=false 86 | animation/clip_12/name="" 87 | animation/clip_12/start_frame=0 88 | animation/clip_12/end_frame=0 89 | animation/clip_12/loops=false 90 | animation/clip_13/name="" 91 | animation/clip_13/start_frame=0 92 | animation/clip_13/end_frame=0 93 | animation/clip_13/loops=false 94 | animation/clip_14/name="" 95 | animation/clip_14/start_frame=0 96 | animation/clip_14/end_frame=0 97 | animation/clip_14/loops=false 98 | animation/clip_15/name="" 99 | animation/clip_15/start_frame=0 100 | animation/clip_15/end_frame=0 101 | animation/clip_15/loops=false 102 | animation/clip_16/name="" 103 | animation/clip_16/start_frame=0 104 | animation/clip_16/end_frame=0 105 | animation/clip_16/loops=false 106 | animation/clip_17/name="" 107 | animation/clip_17/start_frame=0 108 | animation/clip_17/end_frame=0 109 | animation/clip_17/loops=false 110 | animation/clip_18/name="" 111 | animation/clip_18/start_frame=0 112 | animation/clip_18/end_frame=0 113 | animation/clip_18/loops=false 114 | animation/clip_19/name="" 115 | animation/clip_19/start_frame=0 116 | animation/clip_19/end_frame=0 117 | animation/clip_19/loops=false 118 | animation/clip_20/name="" 119 | animation/clip_20/start_frame=0 120 | animation/clip_20/end_frame=0 121 | animation/clip_20/loops=false 122 | animation/clip_21/name="" 123 | animation/clip_21/start_frame=0 124 | animation/clip_21/end_frame=0 125 | animation/clip_21/loops=false 126 | animation/clip_22/name="" 127 | animation/clip_22/start_frame=0 128 | animation/clip_22/end_frame=0 129 | animation/clip_22/loops=false 130 | animation/clip_23/name="" 131 | animation/clip_23/start_frame=0 132 | animation/clip_23/end_frame=0 133 | animation/clip_23/loops=false 134 | animation/clip_24/name="" 135 | animation/clip_24/start_frame=0 136 | animation/clip_24/end_frame=0 137 | animation/clip_24/loops=false 138 | animation/clip_25/name="" 139 | animation/clip_25/start_frame=0 140 | animation/clip_25/end_frame=0 141 | animation/clip_25/loops=false 142 | animation/clip_26/name="" 143 | animation/clip_26/start_frame=0 144 | animation/clip_26/end_frame=0 145 | animation/clip_26/loops=false 146 | animation/clip_27/name="" 147 | animation/clip_27/start_frame=0 148 | animation/clip_27/end_frame=0 149 | animation/clip_27/loops=false 150 | animation/clip_28/name="" 151 | animation/clip_28/start_frame=0 152 | animation/clip_28/end_frame=0 153 | animation/clip_28/loops=false 154 | animation/clip_29/name="" 155 | animation/clip_29/start_frame=0 156 | animation/clip_29/end_frame=0 157 | animation/clip_29/loops=false 158 | animation/clip_30/name="" 159 | animation/clip_30/start_frame=0 160 | animation/clip_30/end_frame=0 161 | animation/clip_30/loops=false 162 | animation/clip_31/name="" 163 | animation/clip_31/start_frame=0 164 | animation/clip_31/end_frame=0 165 | animation/clip_31/loops=false 166 | animation/clip_32/name="" 167 | animation/clip_32/start_frame=0 168 | animation/clip_32/end_frame=0 169 | animation/clip_32/loops=false 170 | animation/clip_33/name="" 171 | animation/clip_33/start_frame=0 172 | animation/clip_33/end_frame=0 173 | animation/clip_33/loops=false 174 | animation/clip_34/name="" 175 | animation/clip_34/start_frame=0 176 | animation/clip_34/end_frame=0 177 | animation/clip_34/loops=false 178 | animation/clip_35/name="" 179 | animation/clip_35/start_frame=0 180 | animation/clip_35/end_frame=0 181 | animation/clip_35/loops=false 182 | animation/clip_36/name="" 183 | animation/clip_36/start_frame=0 184 | animation/clip_36/end_frame=0 185 | animation/clip_36/loops=false 186 | animation/clip_37/name="" 187 | animation/clip_37/start_frame=0 188 | animation/clip_37/end_frame=0 189 | animation/clip_37/loops=false 190 | animation/clip_38/name="" 191 | animation/clip_38/start_frame=0 192 | animation/clip_38/end_frame=0 193 | animation/clip_38/loops=false 194 | animation/clip_39/name="" 195 | animation/clip_39/start_frame=0 196 | animation/clip_39/end_frame=0 197 | animation/clip_39/loops=false 198 | animation/clip_40/name="" 199 | animation/clip_40/start_frame=0 200 | animation/clip_40/end_frame=0 201 | animation/clip_40/loops=false 202 | animation/clip_41/name="" 203 | animation/clip_41/start_frame=0 204 | animation/clip_41/end_frame=0 205 | animation/clip_41/loops=false 206 | animation/clip_42/name="" 207 | animation/clip_42/start_frame=0 208 | animation/clip_42/end_frame=0 209 | animation/clip_42/loops=false 210 | animation/clip_43/name="" 211 | animation/clip_43/start_frame=0 212 | animation/clip_43/end_frame=0 213 | animation/clip_43/loops=false 214 | animation/clip_44/name="" 215 | animation/clip_44/start_frame=0 216 | animation/clip_44/end_frame=0 217 | animation/clip_44/loops=false 218 | animation/clip_45/name="" 219 | animation/clip_45/start_frame=0 220 | animation/clip_45/end_frame=0 221 | animation/clip_45/loops=false 222 | animation/clip_46/name="" 223 | animation/clip_46/start_frame=0 224 | animation/clip_46/end_frame=0 225 | animation/clip_46/loops=false 226 | animation/clip_47/name="" 227 | animation/clip_47/start_frame=0 228 | animation/clip_47/end_frame=0 229 | animation/clip_47/loops=false 230 | animation/clip_48/name="" 231 | animation/clip_48/start_frame=0 232 | animation/clip_48/end_frame=0 233 | animation/clip_48/loops=false 234 | animation/clip_49/name="" 235 | animation/clip_49/start_frame=0 236 | animation/clip_49/end_frame=0 237 | animation/clip_49/loops=false 238 | animation/clip_50/name="" 239 | animation/clip_50/start_frame=0 240 | animation/clip_50/end_frame=0 241 | animation/clip_50/loops=false 242 | animation/clip_51/name="" 243 | animation/clip_51/start_frame=0 244 | animation/clip_51/end_frame=0 245 | animation/clip_51/loops=false 246 | animation/clip_52/name="" 247 | animation/clip_52/start_frame=0 248 | animation/clip_52/end_frame=0 249 | animation/clip_52/loops=false 250 | animation/clip_53/name="" 251 | animation/clip_53/start_frame=0 252 | animation/clip_53/end_frame=0 253 | animation/clip_53/loops=false 254 | animation/clip_54/name="" 255 | animation/clip_54/start_frame=0 256 | animation/clip_54/end_frame=0 257 | animation/clip_54/loops=false 258 | animation/clip_55/name="" 259 | animation/clip_55/start_frame=0 260 | animation/clip_55/end_frame=0 261 | animation/clip_55/loops=false 262 | animation/clip_56/name="" 263 | animation/clip_56/start_frame=0 264 | animation/clip_56/end_frame=0 265 | animation/clip_56/loops=false 266 | animation/clip_57/name="" 267 | animation/clip_57/start_frame=0 268 | animation/clip_57/end_frame=0 269 | animation/clip_57/loops=false 270 | animation/clip_58/name="" 271 | animation/clip_58/start_frame=0 272 | animation/clip_58/end_frame=0 273 | animation/clip_58/loops=false 274 | animation/clip_59/name="" 275 | animation/clip_59/start_frame=0 276 | animation/clip_59/end_frame=0 277 | animation/clip_59/loops=false 278 | animation/clip_60/name="" 279 | animation/clip_60/start_frame=0 280 | animation/clip_60/end_frame=0 281 | animation/clip_60/loops=false 282 | animation/clip_61/name="" 283 | animation/clip_61/start_frame=0 284 | animation/clip_61/end_frame=0 285 | animation/clip_61/loops=false 286 | animation/clip_62/name="" 287 | animation/clip_62/start_frame=0 288 | animation/clip_62/end_frame=0 289 | animation/clip_62/loops=false 290 | animation/clip_63/name="" 291 | animation/clip_63/start_frame=0 292 | animation/clip_63/end_frame=0 293 | animation/clip_63/loops=false 294 | animation/clip_64/name="" 295 | animation/clip_64/start_frame=0 296 | animation/clip_64/end_frame=0 297 | animation/clip_64/loops=false 298 | animation/clip_65/name="" 299 | animation/clip_65/start_frame=0 300 | animation/clip_65/end_frame=0 301 | animation/clip_65/loops=false 302 | animation/clip_66/name="" 303 | animation/clip_66/start_frame=0 304 | animation/clip_66/end_frame=0 305 | animation/clip_66/loops=false 306 | animation/clip_67/name="" 307 | animation/clip_67/start_frame=0 308 | animation/clip_67/end_frame=0 309 | animation/clip_67/loops=false 310 | animation/clip_68/name="" 311 | animation/clip_68/start_frame=0 312 | animation/clip_68/end_frame=0 313 | animation/clip_68/loops=false 314 | animation/clip_69/name="" 315 | animation/clip_69/start_frame=0 316 | animation/clip_69/end_frame=0 317 | animation/clip_69/loops=false 318 | animation/clip_70/name="" 319 | animation/clip_70/start_frame=0 320 | animation/clip_70/end_frame=0 321 | animation/clip_70/loops=false 322 | animation/clip_71/name="" 323 | animation/clip_71/start_frame=0 324 | animation/clip_71/end_frame=0 325 | animation/clip_71/loops=false 326 | animation/clip_72/name="" 327 | animation/clip_72/start_frame=0 328 | animation/clip_72/end_frame=0 329 | animation/clip_72/loops=false 330 | animation/clip_73/name="" 331 | animation/clip_73/start_frame=0 332 | animation/clip_73/end_frame=0 333 | animation/clip_73/loops=false 334 | animation/clip_74/name="" 335 | animation/clip_74/start_frame=0 336 | animation/clip_74/end_frame=0 337 | animation/clip_74/loops=false 338 | animation/clip_75/name="" 339 | animation/clip_75/start_frame=0 340 | animation/clip_75/end_frame=0 341 | animation/clip_75/loops=false 342 | animation/clip_76/name="" 343 | animation/clip_76/start_frame=0 344 | animation/clip_76/end_frame=0 345 | animation/clip_76/loops=false 346 | animation/clip_77/name="" 347 | animation/clip_77/start_frame=0 348 | animation/clip_77/end_frame=0 349 | animation/clip_77/loops=false 350 | animation/clip_78/name="" 351 | animation/clip_78/start_frame=0 352 | animation/clip_78/end_frame=0 353 | animation/clip_78/loops=false 354 | animation/clip_79/name="" 355 | animation/clip_79/start_frame=0 356 | animation/clip_79/end_frame=0 357 | animation/clip_79/loops=false 358 | animation/clip_80/name="" 359 | animation/clip_80/start_frame=0 360 | animation/clip_80/end_frame=0 361 | animation/clip_80/loops=false 362 | animation/clip_81/name="" 363 | animation/clip_81/start_frame=0 364 | animation/clip_81/end_frame=0 365 | animation/clip_81/loops=false 366 | animation/clip_82/name="" 367 | animation/clip_82/start_frame=0 368 | animation/clip_82/end_frame=0 369 | animation/clip_82/loops=false 370 | animation/clip_83/name="" 371 | animation/clip_83/start_frame=0 372 | animation/clip_83/end_frame=0 373 | animation/clip_83/loops=false 374 | animation/clip_84/name="" 375 | animation/clip_84/start_frame=0 376 | animation/clip_84/end_frame=0 377 | animation/clip_84/loops=false 378 | animation/clip_85/name="" 379 | animation/clip_85/start_frame=0 380 | animation/clip_85/end_frame=0 381 | animation/clip_85/loops=false 382 | animation/clip_86/name="" 383 | animation/clip_86/start_frame=0 384 | animation/clip_86/end_frame=0 385 | animation/clip_86/loops=false 386 | animation/clip_87/name="" 387 | animation/clip_87/start_frame=0 388 | animation/clip_87/end_frame=0 389 | animation/clip_87/loops=false 390 | animation/clip_88/name="" 391 | animation/clip_88/start_frame=0 392 | animation/clip_88/end_frame=0 393 | animation/clip_88/loops=false 394 | animation/clip_89/name="" 395 | animation/clip_89/start_frame=0 396 | animation/clip_89/end_frame=0 397 | animation/clip_89/loops=false 398 | animation/clip_90/name="" 399 | animation/clip_90/start_frame=0 400 | animation/clip_90/end_frame=0 401 | animation/clip_90/loops=false 402 | animation/clip_91/name="" 403 | animation/clip_91/start_frame=0 404 | animation/clip_91/end_frame=0 405 | animation/clip_91/loops=false 406 | animation/clip_92/name="" 407 | animation/clip_92/start_frame=0 408 | animation/clip_92/end_frame=0 409 | animation/clip_92/loops=false 410 | animation/clip_93/name="" 411 | animation/clip_93/start_frame=0 412 | animation/clip_93/end_frame=0 413 | animation/clip_93/loops=false 414 | animation/clip_94/name="" 415 | animation/clip_94/start_frame=0 416 | animation/clip_94/end_frame=0 417 | animation/clip_94/loops=false 418 | animation/clip_95/name="" 419 | animation/clip_95/start_frame=0 420 | animation/clip_95/end_frame=0 421 | animation/clip_95/loops=false 422 | animation/clip_96/name="" 423 | animation/clip_96/start_frame=0 424 | animation/clip_96/end_frame=0 425 | animation/clip_96/loops=false 426 | animation/clip_97/name="" 427 | animation/clip_97/start_frame=0 428 | animation/clip_97/end_frame=0 429 | animation/clip_97/loops=false 430 | animation/clip_98/name="" 431 | animation/clip_98/start_frame=0 432 | animation/clip_98/end_frame=0 433 | animation/clip_98/loops=false 434 | animation/clip_99/name="" 435 | animation/clip_99/start_frame=0 436 | animation/clip_99/end_frame=0 437 | animation/clip_99/loops=false 438 | animation/clip_100/name="" 439 | animation/clip_100/start_frame=0 440 | animation/clip_100/end_frame=0 441 | animation/clip_100/loops=false 442 | animation/clip_101/name="" 443 | animation/clip_101/start_frame=0 444 | animation/clip_101/end_frame=0 445 | animation/clip_101/loops=false 446 | animation/clip_102/name="" 447 | animation/clip_102/start_frame=0 448 | animation/clip_102/end_frame=0 449 | animation/clip_102/loops=false 450 | animation/clip_103/name="" 451 | animation/clip_103/start_frame=0 452 | animation/clip_103/end_frame=0 453 | animation/clip_103/loops=false 454 | animation/clip_104/name="" 455 | animation/clip_104/start_frame=0 456 | animation/clip_104/end_frame=0 457 | animation/clip_104/loops=false 458 | animation/clip_105/name="" 459 | animation/clip_105/start_frame=0 460 | animation/clip_105/end_frame=0 461 | animation/clip_105/loops=false 462 | animation/clip_106/name="" 463 | animation/clip_106/start_frame=0 464 | animation/clip_106/end_frame=0 465 | animation/clip_106/loops=false 466 | animation/clip_107/name="" 467 | animation/clip_107/start_frame=0 468 | animation/clip_107/end_frame=0 469 | animation/clip_107/loops=false 470 | animation/clip_108/name="" 471 | animation/clip_108/start_frame=0 472 | animation/clip_108/end_frame=0 473 | animation/clip_108/loops=false 474 | animation/clip_109/name="" 475 | animation/clip_109/start_frame=0 476 | animation/clip_109/end_frame=0 477 | animation/clip_109/loops=false 478 | animation/clip_110/name="" 479 | animation/clip_110/start_frame=0 480 | animation/clip_110/end_frame=0 481 | animation/clip_110/loops=false 482 | animation/clip_111/name="" 483 | animation/clip_111/start_frame=0 484 | animation/clip_111/end_frame=0 485 | animation/clip_111/loops=false 486 | animation/clip_112/name="" 487 | animation/clip_112/start_frame=0 488 | animation/clip_112/end_frame=0 489 | animation/clip_112/loops=false 490 | animation/clip_113/name="" 491 | animation/clip_113/start_frame=0 492 | animation/clip_113/end_frame=0 493 | animation/clip_113/loops=false 494 | animation/clip_114/name="" 495 | animation/clip_114/start_frame=0 496 | animation/clip_114/end_frame=0 497 | animation/clip_114/loops=false 498 | animation/clip_115/name="" 499 | animation/clip_115/start_frame=0 500 | animation/clip_115/end_frame=0 501 | animation/clip_115/loops=false 502 | animation/clip_116/name="" 503 | animation/clip_116/start_frame=0 504 | animation/clip_116/end_frame=0 505 | animation/clip_116/loops=false 506 | animation/clip_117/name="" 507 | animation/clip_117/start_frame=0 508 | animation/clip_117/end_frame=0 509 | animation/clip_117/loops=false 510 | animation/clip_118/name="" 511 | animation/clip_118/start_frame=0 512 | animation/clip_118/end_frame=0 513 | animation/clip_118/loops=false 514 | animation/clip_119/name="" 515 | animation/clip_119/start_frame=0 516 | animation/clip_119/end_frame=0 517 | animation/clip_119/loops=false 518 | animation/clip_120/name="" 519 | animation/clip_120/start_frame=0 520 | animation/clip_120/end_frame=0 521 | animation/clip_120/loops=false 522 | animation/clip_121/name="" 523 | animation/clip_121/start_frame=0 524 | animation/clip_121/end_frame=0 525 | animation/clip_121/loops=false 526 | animation/clip_122/name="" 527 | animation/clip_122/start_frame=0 528 | animation/clip_122/end_frame=0 529 | animation/clip_122/loops=false 530 | animation/clip_123/name="" 531 | animation/clip_123/start_frame=0 532 | animation/clip_123/end_frame=0 533 | animation/clip_123/loops=false 534 | animation/clip_124/name="" 535 | animation/clip_124/start_frame=0 536 | animation/clip_124/end_frame=0 537 | animation/clip_124/loops=false 538 | animation/clip_125/name="" 539 | animation/clip_125/start_frame=0 540 | animation/clip_125/end_frame=0 541 | animation/clip_125/loops=false 542 | animation/clip_126/name="" 543 | animation/clip_126/start_frame=0 544 | animation/clip_126/end_frame=0 545 | animation/clip_126/loops=false 546 | animation/clip_127/name="" 547 | animation/clip_127/start_frame=0 548 | animation/clip_127/end_frame=0 549 | animation/clip_127/loops=false 550 | animation/clip_128/name="" 551 | animation/clip_128/start_frame=0 552 | animation/clip_128/end_frame=0 553 | animation/clip_128/loops=false 554 | animation/clip_129/name="" 555 | animation/clip_129/start_frame=0 556 | animation/clip_129/end_frame=0 557 | animation/clip_129/loops=false 558 | animation/clip_130/name="" 559 | animation/clip_130/start_frame=0 560 | animation/clip_130/end_frame=0 561 | animation/clip_130/loops=false 562 | animation/clip_131/name="" 563 | animation/clip_131/start_frame=0 564 | animation/clip_131/end_frame=0 565 | animation/clip_131/loops=false 566 | animation/clip_132/name="" 567 | animation/clip_132/start_frame=0 568 | animation/clip_132/end_frame=0 569 | animation/clip_132/loops=false 570 | animation/clip_133/name="" 571 | animation/clip_133/start_frame=0 572 | animation/clip_133/end_frame=0 573 | animation/clip_133/loops=false 574 | animation/clip_134/name="" 575 | animation/clip_134/start_frame=0 576 | animation/clip_134/end_frame=0 577 | animation/clip_134/loops=false 578 | animation/clip_135/name="" 579 | animation/clip_135/start_frame=0 580 | animation/clip_135/end_frame=0 581 | animation/clip_135/loops=false 582 | animation/clip_136/name="" 583 | animation/clip_136/start_frame=0 584 | animation/clip_136/end_frame=0 585 | animation/clip_136/loops=false 586 | animation/clip_137/name="" 587 | animation/clip_137/start_frame=0 588 | animation/clip_137/end_frame=0 589 | animation/clip_137/loops=false 590 | animation/clip_138/name="" 591 | animation/clip_138/start_frame=0 592 | animation/clip_138/end_frame=0 593 | animation/clip_138/loops=false 594 | animation/clip_139/name="" 595 | animation/clip_139/start_frame=0 596 | animation/clip_139/end_frame=0 597 | animation/clip_139/loops=false 598 | animation/clip_140/name="" 599 | animation/clip_140/start_frame=0 600 | animation/clip_140/end_frame=0 601 | animation/clip_140/loops=false 602 | animation/clip_141/name="" 603 | animation/clip_141/start_frame=0 604 | animation/clip_141/end_frame=0 605 | animation/clip_141/loops=false 606 | animation/clip_142/name="" 607 | animation/clip_142/start_frame=0 608 | animation/clip_142/end_frame=0 609 | animation/clip_142/loops=false 610 | animation/clip_143/name="" 611 | animation/clip_143/start_frame=0 612 | animation/clip_143/end_frame=0 613 | animation/clip_143/loops=false 614 | animation/clip_144/name="" 615 | animation/clip_144/start_frame=0 616 | animation/clip_144/end_frame=0 617 | animation/clip_144/loops=false 618 | animation/clip_145/name="" 619 | animation/clip_145/start_frame=0 620 | animation/clip_145/end_frame=0 621 | animation/clip_145/loops=false 622 | animation/clip_146/name="" 623 | animation/clip_146/start_frame=0 624 | animation/clip_146/end_frame=0 625 | animation/clip_146/loops=false 626 | animation/clip_147/name="" 627 | animation/clip_147/start_frame=0 628 | animation/clip_147/end_frame=0 629 | animation/clip_147/loops=false 630 | animation/clip_148/name="" 631 | animation/clip_148/start_frame=0 632 | animation/clip_148/end_frame=0 633 | animation/clip_148/loops=false 634 | animation/clip_149/name="" 635 | animation/clip_149/start_frame=0 636 | animation/clip_149/end_frame=0 637 | animation/clip_149/loops=false 638 | animation/clip_150/name="" 639 | animation/clip_150/start_frame=0 640 | animation/clip_150/end_frame=0 641 | animation/clip_150/loops=false 642 | animation/clip_151/name="" 643 | animation/clip_151/start_frame=0 644 | animation/clip_151/end_frame=0 645 | animation/clip_151/loops=false 646 | animation/clip_152/name="" 647 | animation/clip_152/start_frame=0 648 | animation/clip_152/end_frame=0 649 | animation/clip_152/loops=false 650 | animation/clip_153/name="" 651 | animation/clip_153/start_frame=0 652 | animation/clip_153/end_frame=0 653 | animation/clip_153/loops=false 654 | animation/clip_154/name="" 655 | animation/clip_154/start_frame=0 656 | animation/clip_154/end_frame=0 657 | animation/clip_154/loops=false 658 | animation/clip_155/name="" 659 | animation/clip_155/start_frame=0 660 | animation/clip_155/end_frame=0 661 | animation/clip_155/loops=false 662 | animation/clip_156/name="" 663 | animation/clip_156/start_frame=0 664 | animation/clip_156/end_frame=0 665 | animation/clip_156/loops=false 666 | animation/clip_157/name="" 667 | animation/clip_157/start_frame=0 668 | animation/clip_157/end_frame=0 669 | animation/clip_157/loops=false 670 | animation/clip_158/name="" 671 | animation/clip_158/start_frame=0 672 | animation/clip_158/end_frame=0 673 | animation/clip_158/loops=false 674 | animation/clip_159/name="" 675 | animation/clip_159/start_frame=0 676 | animation/clip_159/end_frame=0 677 | animation/clip_159/loops=false 678 | animation/clip_160/name="" 679 | animation/clip_160/start_frame=0 680 | animation/clip_160/end_frame=0 681 | animation/clip_160/loops=false 682 | animation/clip_161/name="" 683 | animation/clip_161/start_frame=0 684 | animation/clip_161/end_frame=0 685 | animation/clip_161/loops=false 686 | animation/clip_162/name="" 687 | animation/clip_162/start_frame=0 688 | animation/clip_162/end_frame=0 689 | animation/clip_162/loops=false 690 | animation/clip_163/name="" 691 | animation/clip_163/start_frame=0 692 | animation/clip_163/end_frame=0 693 | animation/clip_163/loops=false 694 | animation/clip_164/name="" 695 | animation/clip_164/start_frame=0 696 | animation/clip_164/end_frame=0 697 | animation/clip_164/loops=false 698 | animation/clip_165/name="" 699 | animation/clip_165/start_frame=0 700 | animation/clip_165/end_frame=0 701 | animation/clip_165/loops=false 702 | animation/clip_166/name="" 703 | animation/clip_166/start_frame=0 704 | animation/clip_166/end_frame=0 705 | animation/clip_166/loops=false 706 | animation/clip_167/name="" 707 | animation/clip_167/start_frame=0 708 | animation/clip_167/end_frame=0 709 | animation/clip_167/loops=false 710 | animation/clip_168/name="" 711 | animation/clip_168/start_frame=0 712 | animation/clip_168/end_frame=0 713 | animation/clip_168/loops=false 714 | animation/clip_169/name="" 715 | animation/clip_169/start_frame=0 716 | animation/clip_169/end_frame=0 717 | animation/clip_169/loops=false 718 | animation/clip_170/name="" 719 | animation/clip_170/start_frame=0 720 | animation/clip_170/end_frame=0 721 | animation/clip_170/loops=false 722 | animation/clip_171/name="" 723 | animation/clip_171/start_frame=0 724 | animation/clip_171/end_frame=0 725 | animation/clip_171/loops=false 726 | animation/clip_172/name="" 727 | animation/clip_172/start_frame=0 728 | animation/clip_172/end_frame=0 729 | animation/clip_172/loops=false 730 | animation/clip_173/name="" 731 | animation/clip_173/start_frame=0 732 | animation/clip_173/end_frame=0 733 | animation/clip_173/loops=false 734 | animation/clip_174/name="" 735 | animation/clip_174/start_frame=0 736 | animation/clip_174/end_frame=0 737 | animation/clip_174/loops=false 738 | animation/clip_175/name="" 739 | animation/clip_175/start_frame=0 740 | animation/clip_175/end_frame=0 741 | animation/clip_175/loops=false 742 | animation/clip_176/name="" 743 | animation/clip_176/start_frame=0 744 | animation/clip_176/end_frame=0 745 | animation/clip_176/loops=false 746 | animation/clip_177/name="" 747 | animation/clip_177/start_frame=0 748 | animation/clip_177/end_frame=0 749 | animation/clip_177/loops=false 750 | animation/clip_178/name="" 751 | animation/clip_178/start_frame=0 752 | animation/clip_178/end_frame=0 753 | animation/clip_178/loops=false 754 | animation/clip_179/name="" 755 | animation/clip_179/start_frame=0 756 | animation/clip_179/end_frame=0 757 | animation/clip_179/loops=false 758 | animation/clip_180/name="" 759 | animation/clip_180/start_frame=0 760 | animation/clip_180/end_frame=0 761 | animation/clip_180/loops=false 762 | animation/clip_181/name="" 763 | animation/clip_181/start_frame=0 764 | animation/clip_181/end_frame=0 765 | animation/clip_181/loops=false 766 | animation/clip_182/name="" 767 | animation/clip_182/start_frame=0 768 | animation/clip_182/end_frame=0 769 | animation/clip_182/loops=false 770 | animation/clip_183/name="" 771 | animation/clip_183/start_frame=0 772 | animation/clip_183/end_frame=0 773 | animation/clip_183/loops=false 774 | animation/clip_184/name="" 775 | animation/clip_184/start_frame=0 776 | animation/clip_184/end_frame=0 777 | animation/clip_184/loops=false 778 | animation/clip_185/name="" 779 | animation/clip_185/start_frame=0 780 | animation/clip_185/end_frame=0 781 | animation/clip_185/loops=false 782 | animation/clip_186/name="" 783 | animation/clip_186/start_frame=0 784 | animation/clip_186/end_frame=0 785 | animation/clip_186/loops=false 786 | animation/clip_187/name="" 787 | animation/clip_187/start_frame=0 788 | animation/clip_187/end_frame=0 789 | animation/clip_187/loops=false 790 | animation/clip_188/name="" 791 | animation/clip_188/start_frame=0 792 | animation/clip_188/end_frame=0 793 | animation/clip_188/loops=false 794 | animation/clip_189/name="" 795 | animation/clip_189/start_frame=0 796 | animation/clip_189/end_frame=0 797 | animation/clip_189/loops=false 798 | animation/clip_190/name="" 799 | animation/clip_190/start_frame=0 800 | animation/clip_190/end_frame=0 801 | animation/clip_190/loops=false 802 | animation/clip_191/name="" 803 | animation/clip_191/start_frame=0 804 | animation/clip_191/end_frame=0 805 | animation/clip_191/loops=false 806 | animation/clip_192/name="" 807 | animation/clip_192/start_frame=0 808 | animation/clip_192/end_frame=0 809 | animation/clip_192/loops=false 810 | animation/clip_193/name="" 811 | animation/clip_193/start_frame=0 812 | animation/clip_193/end_frame=0 813 | animation/clip_193/loops=false 814 | animation/clip_194/name="" 815 | animation/clip_194/start_frame=0 816 | animation/clip_194/end_frame=0 817 | animation/clip_194/loops=false 818 | animation/clip_195/name="" 819 | animation/clip_195/start_frame=0 820 | animation/clip_195/end_frame=0 821 | animation/clip_195/loops=false 822 | animation/clip_196/name="" 823 | animation/clip_196/start_frame=0 824 | animation/clip_196/end_frame=0 825 | animation/clip_196/loops=false 826 | animation/clip_197/name="" 827 | animation/clip_197/start_frame=0 828 | animation/clip_197/end_frame=0 829 | animation/clip_197/loops=false 830 | animation/clip_198/name="" 831 | animation/clip_198/start_frame=0 832 | animation/clip_198/end_frame=0 833 | animation/clip_198/loops=false 834 | animation/clip_199/name="" 835 | animation/clip_199/start_frame=0 836 | animation/clip_199/end_frame=0 837 | animation/clip_199/loops=false 838 | animation/clip_200/name="" 839 | animation/clip_200/start_frame=0 840 | animation/clip_200/end_frame=0 841 | animation/clip_200/loops=false 842 | animation/clip_201/name="" 843 | animation/clip_201/start_frame=0 844 | animation/clip_201/end_frame=0 845 | animation/clip_201/loops=false 846 | animation/clip_202/name="" 847 | animation/clip_202/start_frame=0 848 | animation/clip_202/end_frame=0 849 | animation/clip_202/loops=false 850 | animation/clip_203/name="" 851 | animation/clip_203/start_frame=0 852 | animation/clip_203/end_frame=0 853 | animation/clip_203/loops=false 854 | animation/clip_204/name="" 855 | animation/clip_204/start_frame=0 856 | animation/clip_204/end_frame=0 857 | animation/clip_204/loops=false 858 | animation/clip_205/name="" 859 | animation/clip_205/start_frame=0 860 | animation/clip_205/end_frame=0 861 | animation/clip_205/loops=false 862 | animation/clip_206/name="" 863 | animation/clip_206/start_frame=0 864 | animation/clip_206/end_frame=0 865 | animation/clip_206/loops=false 866 | animation/clip_207/name="" 867 | animation/clip_207/start_frame=0 868 | animation/clip_207/end_frame=0 869 | animation/clip_207/loops=false 870 | animation/clip_208/name="" 871 | animation/clip_208/start_frame=0 872 | animation/clip_208/end_frame=0 873 | animation/clip_208/loops=false 874 | animation/clip_209/name="" 875 | animation/clip_209/start_frame=0 876 | animation/clip_209/end_frame=0 877 | animation/clip_209/loops=false 878 | animation/clip_210/name="" 879 | animation/clip_210/start_frame=0 880 | animation/clip_210/end_frame=0 881 | animation/clip_210/loops=false 882 | animation/clip_211/name="" 883 | animation/clip_211/start_frame=0 884 | animation/clip_211/end_frame=0 885 | animation/clip_211/loops=false 886 | animation/clip_212/name="" 887 | animation/clip_212/start_frame=0 888 | animation/clip_212/end_frame=0 889 | animation/clip_212/loops=false 890 | animation/clip_213/name="" 891 | animation/clip_213/start_frame=0 892 | animation/clip_213/end_frame=0 893 | animation/clip_213/loops=false 894 | animation/clip_214/name="" 895 | animation/clip_214/start_frame=0 896 | animation/clip_214/end_frame=0 897 | animation/clip_214/loops=false 898 | animation/clip_215/name="" 899 | animation/clip_215/start_frame=0 900 | animation/clip_215/end_frame=0 901 | animation/clip_215/loops=false 902 | animation/clip_216/name="" 903 | animation/clip_216/start_frame=0 904 | animation/clip_216/end_frame=0 905 | animation/clip_216/loops=false 906 | animation/clip_217/name="" 907 | animation/clip_217/start_frame=0 908 | animation/clip_217/end_frame=0 909 | animation/clip_217/loops=false 910 | animation/clip_218/name="" 911 | animation/clip_218/start_frame=0 912 | animation/clip_218/end_frame=0 913 | animation/clip_218/loops=false 914 | animation/clip_219/name="" 915 | animation/clip_219/start_frame=0 916 | animation/clip_219/end_frame=0 917 | animation/clip_219/loops=false 918 | animation/clip_220/name="" 919 | animation/clip_220/start_frame=0 920 | animation/clip_220/end_frame=0 921 | animation/clip_220/loops=false 922 | animation/clip_221/name="" 923 | animation/clip_221/start_frame=0 924 | animation/clip_221/end_frame=0 925 | animation/clip_221/loops=false 926 | animation/clip_222/name="" 927 | animation/clip_222/start_frame=0 928 | animation/clip_222/end_frame=0 929 | animation/clip_222/loops=false 930 | animation/clip_223/name="" 931 | animation/clip_223/start_frame=0 932 | animation/clip_223/end_frame=0 933 | animation/clip_223/loops=false 934 | animation/clip_224/name="" 935 | animation/clip_224/start_frame=0 936 | animation/clip_224/end_frame=0 937 | animation/clip_224/loops=false 938 | animation/clip_225/name="" 939 | animation/clip_225/start_frame=0 940 | animation/clip_225/end_frame=0 941 | animation/clip_225/loops=false 942 | animation/clip_226/name="" 943 | animation/clip_226/start_frame=0 944 | animation/clip_226/end_frame=0 945 | animation/clip_226/loops=false 946 | animation/clip_227/name="" 947 | animation/clip_227/start_frame=0 948 | animation/clip_227/end_frame=0 949 | animation/clip_227/loops=false 950 | animation/clip_228/name="" 951 | animation/clip_228/start_frame=0 952 | animation/clip_228/end_frame=0 953 | animation/clip_228/loops=false 954 | animation/clip_229/name="" 955 | animation/clip_229/start_frame=0 956 | animation/clip_229/end_frame=0 957 | animation/clip_229/loops=false 958 | animation/clip_230/name="" 959 | animation/clip_230/start_frame=0 960 | animation/clip_230/end_frame=0 961 | animation/clip_230/loops=false 962 | animation/clip_231/name="" 963 | animation/clip_231/start_frame=0 964 | animation/clip_231/end_frame=0 965 | animation/clip_231/loops=false 966 | animation/clip_232/name="" 967 | animation/clip_232/start_frame=0 968 | animation/clip_232/end_frame=0 969 | animation/clip_232/loops=false 970 | animation/clip_233/name="" 971 | animation/clip_233/start_frame=0 972 | animation/clip_233/end_frame=0 973 | animation/clip_233/loops=false 974 | animation/clip_234/name="" 975 | animation/clip_234/start_frame=0 976 | animation/clip_234/end_frame=0 977 | animation/clip_234/loops=false 978 | animation/clip_235/name="" 979 | animation/clip_235/start_frame=0 980 | animation/clip_235/end_frame=0 981 | animation/clip_235/loops=false 982 | animation/clip_236/name="" 983 | animation/clip_236/start_frame=0 984 | animation/clip_236/end_frame=0 985 | animation/clip_236/loops=false 986 | animation/clip_237/name="" 987 | animation/clip_237/start_frame=0 988 | animation/clip_237/end_frame=0 989 | animation/clip_237/loops=false 990 | animation/clip_238/name="" 991 | animation/clip_238/start_frame=0 992 | animation/clip_238/end_frame=0 993 | animation/clip_238/loops=false 994 | animation/clip_239/name="" 995 | animation/clip_239/start_frame=0 996 | animation/clip_239/end_frame=0 997 | animation/clip_239/loops=false 998 | animation/clip_240/name="" 999 | animation/clip_240/start_frame=0 1000 | animation/clip_240/end_frame=0 1001 | animation/clip_240/loops=false 1002 | animation/clip_241/name="" 1003 | animation/clip_241/start_frame=0 1004 | animation/clip_241/end_frame=0 1005 | animation/clip_241/loops=false 1006 | animation/clip_242/name="" 1007 | animation/clip_242/start_frame=0 1008 | animation/clip_242/end_frame=0 1009 | animation/clip_242/loops=false 1010 | animation/clip_243/name="" 1011 | animation/clip_243/start_frame=0 1012 | animation/clip_243/end_frame=0 1013 | animation/clip_243/loops=false 1014 | animation/clip_244/name="" 1015 | animation/clip_244/start_frame=0 1016 | animation/clip_244/end_frame=0 1017 | animation/clip_244/loops=false 1018 | animation/clip_245/name="" 1019 | animation/clip_245/start_frame=0 1020 | animation/clip_245/end_frame=0 1021 | animation/clip_245/loops=false 1022 | animation/clip_246/name="" 1023 | animation/clip_246/start_frame=0 1024 | animation/clip_246/end_frame=0 1025 | animation/clip_246/loops=false 1026 | animation/clip_247/name="" 1027 | animation/clip_247/start_frame=0 1028 | animation/clip_247/end_frame=0 1029 | animation/clip_247/loops=false 1030 | animation/clip_248/name="" 1031 | animation/clip_248/start_frame=0 1032 | animation/clip_248/end_frame=0 1033 | animation/clip_248/loops=false 1034 | animation/clip_249/name="" 1035 | animation/clip_249/start_frame=0 1036 | animation/clip_249/end_frame=0 1037 | animation/clip_249/loops=false 1038 | animation/clip_250/name="" 1039 | animation/clip_250/start_frame=0 1040 | animation/clip_250/end_frame=0 1041 | animation/clip_250/loops=false 1042 | animation/clip_251/name="" 1043 | animation/clip_251/start_frame=0 1044 | animation/clip_251/end_frame=0 1045 | animation/clip_251/loops=false 1046 | animation/clip_252/name="" 1047 | animation/clip_252/start_frame=0 1048 | animation/clip_252/end_frame=0 1049 | animation/clip_252/loops=false 1050 | animation/clip_253/name="" 1051 | animation/clip_253/start_frame=0 1052 | animation/clip_253/end_frame=0 1053 | animation/clip_253/loops=false 1054 | animation/clip_254/name="" 1055 | animation/clip_254/start_frame=0 1056 | animation/clip_254/end_frame=0 1057 | animation/clip_254/loops=false 1058 | animation/clip_255/name="" 1059 | animation/clip_255/start_frame=0 1060 | animation/clip_255/end_frame=0 1061 | animation/clip_255/loops=false 1062 | animation/clip_256/name="" 1063 | animation/clip_256/start_frame=0 1064 | animation/clip_256/end_frame=0 1065 | animation/clip_256/loops=false 1066 | -------------------------------------------------------------------------------- /sci fi modular/wall 1/wall 1.mtl: -------------------------------------------------------------------------------- 1 | newmtl None 2 | Ns 100.000 3 | d 1.00000 4 | illum 2 5 | Kd 1.00000 1.00000 1.00000 6 | Ka 0.00000 0.00000 0.00000 7 | Ks 1.00000 1.00000 1.00000 8 | Ke 0.00000e+0 0.00000e+0 0.00000e+0 9 | map_Kd wall 1_Albedo.png 10 | bump wall 1_Height.png 11 | map_bump wall 1_Normal.png 12 | -------------------------------------------------------------------------------- /sci fi modular/wall 1/wall 1.obj.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="wavefront_obj" 4 | type="Mesh" 5 | path="res://.import/wall 1.obj-d4616adb126e1b0360f8ba0d9b3966cd.mesh" 6 | 7 | [deps] 8 | 9 | files=[ "res://.import/wall 1.obj-d4616adb126e1b0360f8ba0d9b3966cd.mesh" ] 10 | 11 | source_file="res://sci-fi modular/wall 1/wall 1.obj" 12 | source_md5="689bab0374ad83659bb48929abf25ceb" 13 | 14 | dest_files=[ "res://.import/wall 1.obj-d4616adb126e1b0360f8ba0d9b3966cd.mesh", "res://.import/wall 1.obj-d4616adb126e1b0360f8ba0d9b3966cd.mesh" ] 15 | dest_md5="a5230695457d66fd9d5ae7247db1efa6" 16 | 17 | [params] 18 | 19 | generate_tangents=true 20 | -------------------------------------------------------------------------------- /sci fi modular/wall 1/wall 1_Albedo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wburton95/Godot-FPS-Demo/6c31c50920702280601cc5c7ef65cacb65eeda11/sci fi modular/wall 1/wall 1_Albedo.png -------------------------------------------------------------------------------- /sci fi modular/wall 1/wall 1_Albedo.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path.s3tc="res://.import/wall 1_Albedo.png-50b64069143c09b2375b43eddfe41f7c.s3tc.stex" 6 | path.etc2="res://.import/wall 1_Albedo.png-50b64069143c09b2375b43eddfe41f7c.etc2.stex" 7 | 8 | [deps] 9 | 10 | source_file="res://sci-fi modular/wall 1/wall 1_Albedo.png" 11 | source_md5="3051a5e7361fb084a4c4f23b99427638" 12 | 13 | dest_files=[ "res://.import/wall 1_Albedo.png-50b64069143c09b2375b43eddfe41f7c.s3tc.stex", "res://.import/wall 1_Albedo.png-50b64069143c09b2375b43eddfe41f7c.etc2.stex" ] 14 | dest_md5="3a092da7c8b62eb009732aa133128303" 15 | 16 | [params] 17 | 18 | compress/mode=2 19 | compress/lossy_quality=0.7 20 | compress/hdr_mode=0 21 | compress/normal_map=0 22 | flags/repeat=true 23 | flags/filter=true 24 | flags/mipmaps=true 25 | flags/anisotropic=false 26 | flags/srgb=1 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | stream=false 31 | size_limit=0 32 | detect_3d=false 33 | svg/scale=1.0 34 | -------------------------------------------------------------------------------- /sci fi modular/wall 1/wall 1_Emission.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wburton95/Godot-FPS-Demo/6c31c50920702280601cc5c7ef65cacb65eeda11/sci fi modular/wall 1/wall 1_Emission.png -------------------------------------------------------------------------------- /sci fi modular/wall 1/wall 1_Emission.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/wall 1_Emission.png-58af0b2418e0428c62fe47be831b83ac.stex" 6 | 7 | [deps] 8 | 9 | source_file="res://sci-fi modular/wall 1/wall 1_Emission.png" 10 | source_md5="9b00921685afb8cc77218cdf39ce78c2" 11 | 12 | dest_files=[ "res://.import/wall 1_Emission.png-58af0b2418e0428c62fe47be831b83ac.stex" ] 13 | dest_md5="b2a026b91140a898553a2900f0c33a93" 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/normal_map=0 21 | flags/repeat=0 22 | flags/filter=true 23 | flags/mipmaps=false 24 | flags/anisotropic=false 25 | flags/srgb=2 26 | process/fix_alpha_border=true 27 | process/premult_alpha=false 28 | process/HDR_as_SRGB=false 29 | stream=false 30 | size_limit=0 31 | detect_3d=true 32 | svg/scale=1.0 33 | -------------------------------------------------------------------------------- /sci fi modular/wall 1/wall 1_Height.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wburton95/Godot-FPS-Demo/6c31c50920702280601cc5c7ef65cacb65eeda11/sci fi modular/wall 1/wall 1_Height.png -------------------------------------------------------------------------------- /sci fi modular/wall 1/wall 1_Height.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/wall 1_Height.png-184b56427011cea684f9e7c99c26362b.stex" 6 | 7 | [deps] 8 | 9 | source_file="res://sci-fi modular/wall 1/wall 1_Height.png" 10 | source_md5="b45f4e5ff0e93379f75eaaeda3f336c2" 11 | 12 | dest_files=[ "res://.import/wall 1_Height.png-184b56427011cea684f9e7c99c26362b.stex" ] 13 | dest_md5="8381f201186d054f7aa27388abf08f10" 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/normal_map=0 21 | flags/repeat=0 22 | flags/filter=true 23 | flags/mipmaps=false 24 | flags/anisotropic=false 25 | flags/srgb=2 26 | process/fix_alpha_border=true 27 | process/premult_alpha=false 28 | process/HDR_as_SRGB=false 29 | stream=false 30 | size_limit=0 31 | detect_3d=true 32 | svg/scale=1.0 33 | -------------------------------------------------------------------------------- /sci fi modular/wall 1/wall 1_Metallic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wburton95/Godot-FPS-Demo/6c31c50920702280601cc5c7ef65cacb65eeda11/sci fi modular/wall 1/wall 1_Metallic.png -------------------------------------------------------------------------------- /sci fi modular/wall 1/wall 1_Metallic.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path.s3tc="res://.import/wall 1_Metallic.png-93adfefe583480ede6b0435c578a934e.s3tc.stex" 6 | path.etc2="res://.import/wall 1_Metallic.png-93adfefe583480ede6b0435c578a934e.etc2.stex" 7 | 8 | [deps] 9 | 10 | source_file="res://sci-fi modular/wall 1/wall 1_Metallic.png" 11 | source_md5="308df9e07fd33886d4f30b6103cc8a1b" 12 | 13 | dest_files=[ "res://.import/wall 1_Metallic.png-93adfefe583480ede6b0435c578a934e.s3tc.stex", "res://.import/wall 1_Metallic.png-93adfefe583480ede6b0435c578a934e.etc2.stex" ] 14 | dest_md5="b2e74d5680d0149daff104961cbabf87" 15 | 16 | [params] 17 | 18 | compress/mode=2 19 | compress/lossy_quality=0.7 20 | compress/hdr_mode=0 21 | compress/normal_map=0 22 | flags/repeat=true 23 | flags/filter=true 24 | flags/mipmaps=true 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | stream=false 31 | size_limit=0 32 | detect_3d=false 33 | svg/scale=1.0 34 | -------------------------------------------------------------------------------- /sci fi modular/wall 1/wall 1_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wburton95/Godot-FPS-Demo/6c31c50920702280601cc5c7ef65cacb65eeda11/sci fi modular/wall 1/wall 1_Normal.png -------------------------------------------------------------------------------- /sci fi modular/wall 1/wall 1_Normal.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path.s3tc="res://.import/wall 1_Normal.png-a837d4c6fea557ab27adf21d739a7bc2.s3tc.stex" 6 | path.etc2="res://.import/wall 1_Normal.png-a837d4c6fea557ab27adf21d739a7bc2.etc2.stex" 7 | 8 | [deps] 9 | 10 | source_file="res://sci-fi modular/wall 1/wall 1_Normal.png" 11 | source_md5="c4883ea4a9326766055bc84b6c96e692" 12 | 13 | dest_files=[ "res://.import/wall 1_Normal.png-a837d4c6fea557ab27adf21d739a7bc2.s3tc.stex", "res://.import/wall 1_Normal.png-a837d4c6fea557ab27adf21d739a7bc2.etc2.stex" ] 14 | dest_md5="89380f335632147936644f10c8837008" 15 | 16 | [params] 17 | 18 | compress/mode=2 19 | compress/lossy_quality=0.7 20 | compress/hdr_mode=0 21 | compress/normal_map=1 22 | flags/repeat=true 23 | flags/filter=true 24 | flags/mipmaps=true 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | stream=false 31 | size_limit=0 32 | detect_3d=false 33 | svg/scale=1.0 34 | -------------------------------------------------------------------------------- /sci fi modular/wall 1/wall 1_Occlusion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wburton95/Godot-FPS-Demo/6c31c50920702280601cc5c7ef65cacb65eeda11/sci fi modular/wall 1/wall 1_Occlusion.png -------------------------------------------------------------------------------- /sci fi modular/wall 1/wall 1_Occlusion.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path.s3tc="res://.import/wall 1_Occlusion.png-4d033c08044250b9eb83a16005509151.s3tc.stex" 6 | path.etc2="res://.import/wall 1_Occlusion.png-4d033c08044250b9eb83a16005509151.etc2.stex" 7 | 8 | [deps] 9 | 10 | source_file="res://sci-fi modular/wall 1/wall 1_Occlusion.png" 11 | source_md5="b4aa3633d3c5b0e337099d38a88fb50e" 12 | 13 | dest_files=[ "res://.import/wall 1_Occlusion.png-4d033c08044250b9eb83a16005509151.s3tc.stex", "res://.import/wall 1_Occlusion.png-4d033c08044250b9eb83a16005509151.etc2.stex" ] 14 | dest_md5="d92ed9ed19abfba09137b4c9fd8d110f" 15 | 16 | [params] 17 | 18 | compress/mode=2 19 | compress/lossy_quality=0.7 20 | compress/hdr_mode=0 21 | compress/normal_map=0 22 | flags/repeat=true 23 | flags/filter=true 24 | flags/mipmaps=true 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | stream=false 31 | size_limit=0 32 | detect_3d=false 33 | svg/scale=1.0 34 | -------------------------------------------------------------------------------- /sci fi modular/wall 1/wall-ao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wburton95/Godot-FPS-Demo/6c31c50920702280601cc5c7ef65cacb65eeda11/sci fi modular/wall 1/wall-ao.png -------------------------------------------------------------------------------- /sci fi modular/wall 1/wall-ao.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/wall-ao.png-22eef1120d2a25ac588386e353371b7f.stex" 6 | 7 | [deps] 8 | 9 | source_file="res://sci-fi modular/wall 1/wall-ao.png" 10 | source_md5="d1eeccbf807b830a2d7ca27c07f92c92" 11 | 12 | dest_files=[ "res://.import/wall-ao.png-22eef1120d2a25ac588386e353371b7f.stex" ] 13 | dest_md5="94bcf3858e349d64fbdf8a8d7773e061" 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/normal_map=0 21 | flags/repeat=0 22 | flags/filter=true 23 | flags/mipmaps=false 24 | flags/anisotropic=false 25 | flags/srgb=2 26 | process/fix_alpha_border=true 27 | process/premult_alpha=false 28 | process/HDR_as_SRGB=false 29 | stream=false 30 | size_limit=0 31 | detect_3d=true 32 | svg/scale=1.0 33 | -------------------------------------------------------------------------------- /sci fi modular/wall 1/wall-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wburton95/Godot-FPS-Demo/6c31c50920702280601cc5c7ef65cacb65eeda11/sci fi modular/wall 1/wall-normal.png -------------------------------------------------------------------------------- /sci fi modular/wall 1/wall-normal.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path.s3tc="res://.import/wall-normal.png-c05d7436fef501e8e013d29807883bea.s3tc.stex" 6 | path.etc2="res://.import/wall-normal.png-c05d7436fef501e8e013d29807883bea.etc2.stex" 7 | 8 | [deps] 9 | 10 | source_file="res://sci-fi modular/wall 1/wall-normal.png" 11 | source_md5="a3891e44146fea2220b4627914659aa8" 12 | 13 | dest_files=[ "res://.import/wall-normal.png-c05d7436fef501e8e013d29807883bea.s3tc.stex", "res://.import/wall-normal.png-c05d7436fef501e8e013d29807883bea.etc2.stex" ] 14 | dest_md5="3310bdf94d33e1d1628c8174d76c9551" 15 | 16 | [params] 17 | 18 | compress/mode=2 19 | compress/lossy_quality=0.7 20 | compress/hdr_mode=0 21 | compress/normal_map=1 22 | flags/repeat=true 23 | flags/filter=true 24 | flags/mipmaps=true 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | stream=false 31 | size_limit=0 32 | detect_3d=false 33 | svg/scale=1.0 34 | -------------------------------------------------------------------------------- /sci fi modular/wall 2/wall 2 ao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wburton95/Godot-FPS-Demo/6c31c50920702280601cc5c7ef65cacb65eeda11/sci fi modular/wall 2/wall 2 ao.png -------------------------------------------------------------------------------- /sci fi modular/wall 2/wall 2 ao.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/wall 2 ao.png-5dbcebabdc9fec0025341cb4bb161226.stex" 6 | 7 | [deps] 8 | 9 | source_file="res://sci-fi modular/wall 2/wall 2 ao.png" 10 | source_md5="348a020cccb230a7b99c5c323c2a3df7" 11 | 12 | dest_files=[ "res://.import/wall 2 ao.png-5dbcebabdc9fec0025341cb4bb161226.stex" ] 13 | dest_md5="6bd2e5629191b2598119130bcb1edd1e" 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/normal_map=0 21 | flags/repeat=0 22 | flags/filter=true 23 | flags/mipmaps=false 24 | flags/anisotropic=false 25 | flags/srgb=2 26 | process/fix_alpha_border=true 27 | process/premult_alpha=false 28 | process/HDR_as_SRGB=false 29 | stream=false 30 | size_limit=0 31 | detect_3d=true 32 | svg/scale=1.0 33 | -------------------------------------------------------------------------------- /sci fi modular/wall 2/wall 2 normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wburton95/Godot-FPS-Demo/6c31c50920702280601cc5c7ef65cacb65eeda11/sci fi modular/wall 2/wall 2 normal.png -------------------------------------------------------------------------------- /sci fi modular/wall 2/wall 2 normal.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/wall 2 normal.png-09d9a42d6c7d9b6a7126543437136be5.stex" 6 | 7 | [deps] 8 | 9 | source_file="res://sci-fi modular/wall 2/wall 2 normal.png" 10 | source_md5="f008963bf917b5c262b48474a1fe8dd2" 11 | 12 | dest_files=[ "res://.import/wall 2 normal.png-09d9a42d6c7d9b6a7126543437136be5.stex" ] 13 | dest_md5="19b6d2322847ae2771cb0302c824d3ff" 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/normal_map=0 21 | flags/repeat=0 22 | flags/filter=true 23 | flags/mipmaps=false 24 | flags/anisotropic=false 25 | flags/srgb=2 26 | process/fix_alpha_border=true 27 | process/premult_alpha=false 28 | process/HDR_as_SRGB=false 29 | stream=false 30 | size_limit=0 31 | detect_3d=true 32 | svg/scale=1.0 33 | -------------------------------------------------------------------------------- /sci fi modular/wall 2/wall 2.3b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wburton95/Godot-FPS-Demo/6c31c50920702280601cc5c7ef65cacb65eeda11/sci fi modular/wall 2/wall 2.3b -------------------------------------------------------------------------------- /sci fi modular/wall 2/wall 2.3b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wburton95/Godot-FPS-Demo/6c31c50920702280601cc5c7ef65cacb65eeda11/sci fi modular/wall 2/wall 2.3b.jpg -------------------------------------------------------------------------------- /sci fi modular/wall 2/wall 2.3b.jpg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/wall 2.3b.jpg-6af7e6106a382e2a2dcd613c71765e11.stex" 6 | 7 | [deps] 8 | 9 | source_file="res://sci-fi modular/wall 2/wall 2.3b.jpg" 10 | source_md5="cab04e391133fbe3ca1d1ff80e7bdda1" 11 | 12 | dest_files=[ "res://.import/wall 2.3b.jpg-6af7e6106a382e2a2dcd613c71765e11.stex" ] 13 | dest_md5="673d7fc9915ba72957ef3d96c7224af0" 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/normal_map=0 21 | flags/repeat=0 22 | flags/filter=true 23 | flags/mipmaps=false 24 | flags/anisotropic=false 25 | flags/srgb=2 26 | process/fix_alpha_border=true 27 | process/premult_alpha=false 28 | process/HDR_as_SRGB=false 29 | stream=false 30 | size_limit=0 31 | detect_3d=true 32 | svg/scale=1.0 33 | -------------------------------------------------------------------------------- /sci fi modular/wall 2/wall 2.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wburton95/Godot-FPS-Demo/6c31c50920702280601cc5c7ef65cacb65eeda11/sci fi modular/wall 2/wall 2.blend -------------------------------------------------------------------------------- /sci fi modular/wall 2/wall 2.blend1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wburton95/Godot-FPS-Demo/6c31c50920702280601cc5c7ef65cacb65eeda11/sci fi modular/wall 2/wall 2.blend1 -------------------------------------------------------------------------------- /sci fi modular/wall 2/wall 2.dae: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Blender User 6 | Blender 2.79.0 commit date:2017-09-11, commit time:10:43, hash:5bd8ac9 7 | 8 | 2018-01-30T10:18:45 9 | 2018-01-30T10:18:45 10 | 11 | Z_UP 12 | 13 | 14 | 15 | 16 | 17 | 18 | 0 0 0 0 2 0 0 1.698908 0.03668892 0 1.457501 0.03668886 0 1.457501 0.06610506 0 1.179868 0.09993535 0 0.3266592 0.09994804 0 0.3266497 1.179868 0 0.1518324 1.465385 0 0.0282672 1.465386 0 0.0282672 1.972178 0 0.2283279 1.972178 0 0 2 0 1.964292 0.1052402 0 1.964292 0.03668904 0 1.457499 0.136461 -0.1430648 1.179868 0.09993535 -0.14306 0.3266592 0.09994804 -0.1430648 0.3266497 1.179868 0 0.8201318 1.900065 0 0.5350599 1.869246 0 0.5350621 1.71718 0 0.3583729 1.465383 -0.08421123 0.0282672 1.465386 -0.08421123 0.0282672 1.972178 0 0.5350585 1.972178 -0.08421123 0.5350585 1.972178 0 2 2 0 0.535059 1.934802 0 1.673341 1.900052 0 1.67335 0.8201318 0 1.457497 0.2916862 0 1.634186 0.5434838 0 1.964292 0.5434803 -0.1430648 1.67335 0.8201318 -0.1430648 0.8201318 1.900065 -0.08421254 0.5350621 1.71718 -0.08421254 0.3583729 1.465383 -0.14306 1.673341 1.900052 -0.08421254 1.457497 0.2916862 -0.08421123 1.457501 0.03668886 -0.08421254 1.634186 0.5434838 -0.08421123 1.964292 0.03668904 -0.08421123 1.964292 0.5434803 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 1.488e-5 1 0 1.488e-5 1 0 1.488e-5 1 0 1 8.8609e-6 0 1 8.82859e-6 0 1 8.86415e-6 1 0 0 1 0 0 1.47163e-6 1.08266e-5 1 5.2846e-7 9.10493e-6 1 8.16563e-7 1.23511e-5 1 0 1 0 2.20078e-6 0 -1 7.08482e-7 0 -1 4.76468e-7 0 -1 1 0 0 1 0 0 1 0 0 0 -0.8249248 0.5652427 0 -0.8249248 0.5652426 1 -1.47044e-6 -1.15835e-6 1 -2.31879e-6 -1.82865e-6 1 1.45703e-6 1.15835e-6 0 0.8249248 -0.5652425 0 0.8249249 -0.5652425 0 0.8249248 -0.5652425 1 0 0 1 0 0 1 0 0 0 -0.8185731 0.5744024 0 -0.8185732 0.5744022 0 -0.8185732 0.5744022 1 1.09389e-6 -3.06961e-6 1 0 -5.25929e-6 1 2.15531e-6 -2.0215e-6 0 -1 -1.39182e-5 0 -1 -1.4099e-5 0 -1 -1.36231e-5 0 -1.49499e-5 -1 0 -1.49499e-5 -1 0 -1.49499e-5 -1 0 -1 -8.90912e-6 0 -1 -8.87681e-6 0 -1 -8.91238e-6 -6.55552e-7 1 1.62521e-5 0 1 1.80462e-5 -2.01452e-7 1 1.51819e-5 0 0.8185736 -0.5744018 0 0.8185738 -0.5744013 0 0.8185741 -0.5744011 1 -2.1527e-6 2.0215e-6 1 -2.9231e-6 7.47718e-7 1 -1.11713e-6 3.06961e-6 0 -3.52873e-7 1 0 -3.51305e-7 1 0 -3.5448e-7 1 0 -1.04726e-5 -1 0 -1.04726e-5 -1 2.51627e-7 -1 -6.2491e-7 0 -1 -7.09949e-7 2.16387e-7 -1 -8.86987e-7 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -1.25557e-7 1 0 0 0 1 8.82533e-6 0 1.35065e-5 1 0 8.65757e-6 1 0 0 -1 1 0 0 1 0 0 1 0 0 1 0 -1.25557e-7 0 -0.8249248 0.5652426 1 5.56687e-6 4.40174e-6 1 2.30889e-6 1.82865e-6 1 -5.56329e-6 -4.40174e-6 0 -0.8185732 0.5744025 1 4.09066e-6 0 1 2.91986e-6 -7.4772e-7 0 -1 -1.18358e-5 2.00635e-7 -1 -1.3741e-5 0 -1 -1.39371e-5 0 -1.49499e-5 -1 0 -1 -8.87356e-6 0 1 1.32182e-5 0 1 1.39961e-5 0 1 1.29125e-5 0 0.8185734 -0.5744019 1 0 5.25929e-6 1 -4.04613e-6 0 0 -3.54927e-7 1 0 -3.50933e-7 1 0 -1 -2.03921e-6 0 -1 -8.07548e-7 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 |

0 0 7 1 9 2 1 3 14 4 2 5 15 6 5 7 4 8 5 9 17 10 6 11 7 12 17 13 18 14 7 1 21 15 22 16 8 17 37 18 23 19 9 20 24 20 10 20 11 21 24 22 26 23 30 24 31 25 32 26 30 27 16 28 5 28 34 29 35 30 18 31 7 32 35 33 19 34 20 35 19 36 28 37 21 38 37 39 22 40 36 41 26 42 24 43 36 44 20 45 26 46 19 47 38 48 29 49 30 50 38 51 34 52 4 53 3 54 40 55 31 56 41 57 32 58 42 59 41 60 39 61 2 62 42 63 40 64 32 65 43 66 33 66 13 67 43 68 42 69 0 0 1 3 3 70 3 70 4 8 5 7 1 3 2 5 3 70 10 71 11 72 12 73 7 1 8 74 9 2 9 2 10 71 12 73 0 0 3 70 5 7 6 75 7 1 0 0 0 0 5 7 6 75 9 2 12 73 0 0 1 3 13 76 14 4 5 9 16 9 17 10 7 12 6 77 17 13 19 36 20 35 21 15 22 16 8 74 7 1 19 36 21 15 7 1 23 19 9 78 8 17 8 17 22 79 37 18 9 20 23 20 24 20 26 23 25 80 11 21 11 21 10 80 24 22 13 76 1 3 33 81 27 82 12 73 25 83 25 83 28 37 19 36 12 73 11 72 25 83 33 81 1 3 27 82 32 26 33 81 30 24 27 82 25 83 19 36 27 82 19 36 29 84 5 7 15 6 31 25 27 82 29 84 30 24 30 24 5 7 31 25 33 81 27 82 30 24 30 27 34 85 16 28 18 31 17 86 16 87 16 87 34 29 18 31 38 88 35 30 34 29 7 32 18 32 35 33 21 38 36 89 37 39 24 43 23 90 37 91 37 91 36 41 24 43 25 92 26 46 28 93 36 44 21 94 20 45 20 45 28 93 26 46 19 47 35 95 38 48 30 50 29 96 38 51 40 55 39 97 15 98 15 98 4 53 40 55 39 97 31 99 15 98 31 56 39 100 41 57 39 61 40 101 42 59 42 59 43 102 41 60 40 64 3 103 2 62 2 62 14 104 42 63 32 65 41 66 43 66 42 69 14 105 13 67 13 67 33 106 43 68

44 |
45 |
46 |
47 | 48 | 49 | 50 | -0.05447453 -0.09246718 -0.09246718 -0.05447453 -0.09246718 1.792467 -0.05447453 0.09246718 -0.09246718 -0.05447453 0.09246718 1.792467 -0.005415081 -0.09246718 -0.09246718 -0.005415081 -0.09246718 1.792467 -0.005415081 0.09246718 -0.09246718 -0.005415081 0.09246718 1.792467 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | -1 0 0 0 1 0 1 0 0 0 -1 0 0 0 -1 0 0 1 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 |

1 0 2 0 0 0 3 1 6 1 2 1 7 2 4 2 6 2 5 3 0 3 4 3 6 4 0 4 2 4 3 5 5 5 7 5 1 0 3 0 2 0 3 1 7 1 6 1 7 2 5 2 4 2 5 3 1 3 0 3 6 4 4 4 0 4 3 5 1 5 5 5

76 |
77 |
78 |
79 | 80 | 81 | 82 | 0 1.698788 0.03670358 0 1.457516 0.06610321 0 1.457516 0.03670346 0 1.964278 0.1052834 0 1.87764 0.3367386 0 1.88019 0.3222716 0 1.875166 0.3084678 0 1.731499 0.10329 0 1.720246 0.09384763 0 1.705779 0.09129667 0 1.691975 0.09632086 0 1.650628 0.1252726 0 1.641186 0.1365256 0 1.457516 0.1364631 0 1.964278 0.03670364 0 1.638635 0.1509926 0 1.643659 0.1647964 0 1.787326 0.3699742 0 1.798579 0.3794166 0 1.813046 0.3819676 0 1.82685 0.3769433 0 1.868197 0.3479915 0 1.964277 0.5434657 0 1.63527 0.5434656 0 1.457515 0.2916787 -0.03062903 1.87764 0.3367386 -0.03062903 1.88019 0.3222716 -0.03062915 1.875166 0.3084678 -0.03062915 1.731499 0.10329 -0.03062903 1.720246 0.09384763 -0.03062903 1.705779 0.09129667 -0.03062915 1.691975 0.09632086 -0.03062915 1.650628 0.1252726 -0.03062903 1.641186 0.1365256 -0.03062903 1.638635 0.1509926 -0.03062915 1.643659 0.1647964 -0.03062915 1.787326 0.3699742 -0.03062903 1.798579 0.3794166 -0.03062903 1.813046 0.3819676 -0.03062915 1.82685 0.3769433 -0.03062915 1.868197 0.3479915 -0.08419656 1.457515 0.2916787 -0.08419656 1.457516 0.03670346 -0.08419656 1.964277 0.5434657 -0.08419656 1.964278 0.03670364 -0.08419656 1.63527 0.5434656 0 0.1518354 1.465401 0 0.1969614 1.567782 0 0.1831577 1.572807 0 0.1418102 1.601758 0 0.1323679 1.613011 0 0.129817 1.627478 0 0.1348412 1.641282 0 0.2785082 1.84646 0 0.2897611 1.855902 0 0.3042282 1.858453 0 0.5350438 1.869245 0 0.5350438 1.934803 0 0.2284482 1.972163 0 0.0282818 1.972163 0 0.0282818 1.465401 0 0.318032 1.853429 0 0.3593794 1.824477 0 0.3688217 1.813224 0 0.3713726 1.798757 0 0.3663485 1.784953 0 0.2226814 1.579776 0 0.2114285 1.570333 0 0.3572894 1.465401 0 0.5350438 1.717188 -0.03062903 0.1969614 1.567782 -0.03062915 0.1831577 1.572807 -0.03062915 0.1418102 1.601758 -0.03062903 0.1323679 1.613011 -0.03062903 0.129817 1.627478 -0.03062915 0.1348412 1.641282 -0.03062915 0.2785082 1.84646 -0.03062903 0.2897612 1.855902 -0.03062903 0.3042283 1.858453 0 0.5350438 1.972163 -0.03062915 0.318032 1.853429 -0.03062915 0.3593794 1.824477 -0.03062903 0.3688217 1.813224 -0.03062903 0.3713726 1.798757 -0.03062915 0.3663485 1.784953 -0.03062915 0.2226814 1.579776 -0.03062903 0.2114285 1.570333 -0.08419656 0.5350438 1.717188 -0.08419656 0.5350438 1.972163 -0.08419656 0.0282818 1.465401 -0.08419656 0.0282818 1.972163 -0.08419656 0.3572894 1.465401 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 -0.9848079 -0.1736477 0 -0.9848091 -0.1736407 0 -0.9848099 -0.1736361 0 -0.8870107 0.461749 0 -0.9396911 0.3420245 0 -0.8870092 0.4617519 0 -0.737277 0.6755905 0 -0.7372786 0.6755889 0 -0.6427878 0.7660443 0 -0.6427918 0.7660411 0 -0.1736481 0.9848078 0 -0.1736481 0.9848079 0 0.4617506 0.8870098 0 0.3420214 0.9396923 0 0.4617502 0.8870101 0 0.6755918 0.7372759 0 0.6755933 0.7372745 0 0.7660495 0.6427817 0 0.7660529 0.6427777 0 0.9848083 0.1736453 0 0.9848059 0.1736591 0 0.9848099 0.1736361 0 0.8870103 -0.4617496 0 0.9396899 -0.3420278 0 0.8870081 -0.461754 0 0.7372815 -0.6755858 0 0.7372794 -0.675588 0 0.642795 -0.7660383 0 0.6427912 -0.7660415 0 0.1736495 -0.9848076 0 0.1736471 -0.984808 0 0.1736511 -0.9848073 0 -0.4617543 -0.8870079 0 -0.3420244 -0.9396911 0 -0.4617497 -0.8870103 0 -0.6755944 -0.7372736 0 -0.6755926 -0.7372753 0 -0.7660512 -0.6427795 0 -0.7660529 -0.6427778 1 3.293e-6 5.76503e-7 1 -5.53577e-7 3.26939e-6 1 -3.293e-6 -5.76464e-7 2.47212e-7 -1 -1.45752e-6 0 -1 -1.51336e-6 3.42707e-7 -1 -1.01612e-6 -1 0 0 -1 0 0 -1 0 0 0 -0.8169336 0.5767319 0 -0.8169338 0.5767316 0 -0.8169338 0.5767315 0 3.52897e-7 -1 0 3.5464e-7 -1 0 3.51197e-7 -1 -2.51827e-7 1 4.84621e-7 -2.16457e-7 1 3.94534e-7 0 1 4.57133e-7 0 -3.6233e-7 1 0 -3.6233e-7 1 0 -3.6233e-7 1 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0.4617497 0.8870104 0 0.3420224 0.9396919 0 0.4617502 0.8870102 0 0.6755904 0.7372772 9.20477e-7 0.6755908 0.7372769 7.26429e-7 0.7660455 0.6427864 2.55164e-6 0.7660457 0.6427862 4.71868e-7 0.9848079 0.1736478 1.43383e-6 0.9848079 0.1736478 -1.64155e-7 0.9848079 0.1736478 0 0.8870112 -0.461748 0 0.9396926 -0.3420205 0 0.8870103 -0.4617497 0 0.7372775 -0.6755901 -9.12657e-7 0.7372766 -0.675591 1.84539e-6 0.4226189 -0.9063075 -4.28576e-6 0.4226182 -0.9063079 -1.75548e-6 0.17365 -0.9848075 8.27931e-6 0.173649 -0.9848076 1 0 0 1 0 0 1 0 0 -2.19608e-6 -0.4617506 -0.8870099 -1.73311e-6 -0.3420233 -0.9396916 0 -0.4617505 -0.8870099 0 -0.6755891 -0.7372784 0 -0.675589 -0.7372785 0 -0.7660427 -0.6427899 -1.91939e-7 -0.7660423 -0.6427903 -7.12902e-7 -0.9848087 -0.173643 9.62246e-7 -0.9848075 -0.1736499 -1.82049e-6 -0.9848096 -0.1736384 -8.36652e-7 -0.887011 0.4617483 -6.60276e-7 -0.9396931 0.3420189 0 -0.887011 0.4617483 0 -0.7372772 0.6755904 0 -0.6427868 0.7660452 0 -0.6427875 0.7660447 0 -0.1736504 0.9848074 0 -0.1736504 0.9848074 0 -0.1736504 0.9848074 1 5.90473e-7 -3.2695e-6 1 5.92393e-7 -3.2694e-6 1 -3.26988e-6 -5.76478e-7 0 1 3.13041e-7 0 1 5.55545e-7 0 1 1.21252e-7 -1 0 0 0 0.8169335 -0.576732 0 0.8169333 -0.5767321 4.4029e-6 0 1 9.53397e-7 0 1 1.4164e-6 0 1 0 -1 0 0 0 -1 1.47562e-6 0 -1 5.32763e-7 0 -1 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 -0.984807 -0.1736522 0 -0.939693 0.3420192 0 -0.1736481 0.9848079 0 0.3420248 0.939691 0 0.9848043 0.1736683 0 0.9396931 -0.3420191 0 0.1736454 -0.9848083 0 -0.3420329 -0.9396881 1 -1.88815e-5 -3.17044e-6 1 -1.75274e-5 -3.17062e-6 1 -3.09296e-6 -5.76479e-7 1 5.46783e-7 -3.26943e-6 1 3.2368e-6 -1.79821e-5 1 3.25602e-6 -1.79814e-5 1 5.71528e-7 -3.26935e-6 1 1.88814e-5 3.17096e-6 1 1.75274e-5 3.17059e-6 1 3.09296e-6 5.76462e-7 1 -5.37807e-7 3.26942e-6 1 -3.23683e-6 1.7982e-5 1 -3.16718e-6 1.79817e-5 0 -1 1.14022e-6 1.7528e-7 -1 3.40181e-7 0 -1 -1.51336e-6 0 -0.8169336 0.5767319 0 3.50794e-7 -1 0 3.55125e-7 -1 0 1 4.23956e-7 0 1 0 0 -3.6233e-7 1 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0.3420223 0.9396919 2.06985e-6 0.9848079 0.1736478 1.6416e-7 0.9396936 -0.3420177 -6.08769e-6 -0.3420243 -0.9396911 2.06983e-6 -0.9848067 -0.1736544 -2.31927e-6 -0.9396929 0.3420196 1 1.81304e-5 3.17068e-6 1 3.30306e-6 5.76485e-7 1 3.26994e-6 5.76485e-7 1 -5.90461e-7 3.26944e-6 1 -3.23689e-6 1.7982e-5 1 -3.25604e-6 1.79817e-5 1 -5.92394e-7 3.2694e-6 1 -1.7802e-5 -3.17061e-6 1 -1.81302e-5 -3.17065e-6 1 -3.30304e-6 -5.76484e-7 1 3.237e-6 -1.79826e-5 1 3.25605e-6 -1.79818e-5 1 1.78024e-5 3.17066e-6 0 1 5.55544e-7 0 0.8169335 -0.576732 0 0 1 8.19382e-7 0 -1 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 |

0 0 1 1 2 2 8 3 0 0 7 4 17 5 18 6 23 7 5 8 25 9 26 10 6 11 26 12 27 13 6 11 28 14 7 15 7 15 29 16 8 17 8 18 30 18 9 19 10 20 30 21 31 22 10 20 32 23 11 24 11 24 33 25 12 26 12 27 34 28 15 29 16 30 34 31 35 32 16 30 36 33 17 34 17 34 37 35 18 36 18 37 38 38 19 39 20 40 38 41 39 42 21 43 39 42 40 44 21 43 25 45 4 46 35 47 28 48 27 49 42 50 1 51 13 52 44 53 41 54 45 55 23 56 41 57 24 58 0 59 42 60 44 61 3 62 44 63 43 64 22 65 45 66 23 67 52 68 59 69 51 70 64 71 65 72 69 73 48 74 70 75 71 76 48 74 72 77 49 78 49 78 73 79 50 80 50 81 74 82 51 83 52 84 74 85 75 86 52 84 76 87 53 88 53 88 77 89 54 90 55 91 77 89 78 92 58 93 57 94 79 95 61 96 78 97 80 98 61 96 81 99 62 100 62 100 82 101 63 102 63 103 83 104 64 105 65 106 83 107 84 108 65 106 85 109 66 109 66 109 86 110 67 111 67 112 70 113 47 114 80 115 76 116 84 117 88 118 57 119 56 120 90 121 87 121 91 121 68 122 87 123 69 123 58 124 88 125 90 126 59 127 89 127 60 127 68 128 46 129 91 130 14 131 3 132 7 4 3 132 4 133 5 134 1 1 0 0 11 135 12 136 13 137 1 1 11 135 12 136 1 1 3 132 5 134 6 138 3 132 6 138 7 4 10 139 11 135 0 0 9 140 10 139 0 0 14 131 7 4 0 0 9 140 0 0 8 3 24 141 13 137 16 142 13 137 12 136 15 143 22 144 23 7 19 145 4 133 3 132 22 144 21 146 4 133 22 144 13 137 15 143 16 142 24 141 16 142 17 5 20 147 21 146 22 144 19 145 20 147 22 144 23 7 24 141 17 5 18 6 19 145 23 7 5 8 4 148 25 9 6 11 5 149 26 12 6 11 27 13 28 14 7 15 28 14 29 16 8 18 29 150 30 18 10 20 9 151 30 21 10 20 31 22 32 23 11 24 32 23 33 25 12 27 33 152 34 28 16 30 15 153 34 31 16 30 35 32 36 33 17 34 36 33 37 35 18 37 37 154 38 38 20 40 19 155 38 41 21 43 20 40 39 42 21 43 40 44 25 45 27 49 26 156 25 157 25 157 40 158 27 49 39 159 38 160 37 161 37 161 36 162 39 159 35 47 34 163 33 164 33 164 32 165 35 47 31 166 30 167 29 168 29 168 28 48 31 166 27 49 40 158 39 159 39 159 36 162 27 49 35 47 32 165 31 166 31 166 28 48 35 47 27 49 36 162 35 47 24 169 41 170 13 52 42 50 2 171 1 51 13 52 41 170 42 50 45 55 43 121 44 53 44 53 42 121 41 54 23 56 45 172 41 57 44 61 14 173 0 59 0 59 2 174 42 60 43 64 22 175 3 62 3 62 14 176 44 63 22 65 43 177 45 66 60 178 46 179 49 180 46 179 47 181 48 182 58 93 59 69 53 183 56 184 57 94 55 185 55 185 57 94 58 93 46 179 48 182 49 180 60 178 49 180 50 186 54 187 55 185 58 93 53 183 54 187 58 93 60 178 50 186 51 70 52 68 53 183 59 69 60 178 51 70 59 69 56 184 55 185 61 188 56 184 61 188 62 189 68 190 69 73 65 72 47 181 46 179 67 191 67 191 46 179 68 190 56 184 62 189 63 192 56 184 63 192 64 71 66 193 67 191 68 190 56 184 64 71 69 73 65 72 66 193 68 190 48 74 47 194 70 75 48 74 71 76 72 77 49 78 72 77 73 79 50 81 73 195 74 82 52 84 51 196 74 85 52 84 75 86 76 87 53 88 76 87 77 89 55 91 54 90 77 89 61 96 55 197 78 97 61 96 80 98 81 99 62 100 81 99 82 101 63 103 82 198 83 104 65 106 64 199 83 107 65 106 84 108 85 109 66 109 85 109 86 110 67 112 86 113 70 113 73 200 72 201 75 202 71 203 70 204 86 205 86 205 85 206 71 203 84 117 83 207 82 208 82 208 81 209 84 117 80 115 78 210 77 211 77 211 76 116 80 115 75 202 74 212 73 200 72 201 71 203 75 202 85 206 75 202 71 203 81 209 80 115 84 117 76 116 75 202 84 117 85 206 84 117 75 202 69 176 87 176 56 120 88 118 79 213 57 119 56 120 87 176 88 118 91 121 89 121 90 121 90 121 88 121 87 121 68 122 91 214 87 123 90 126 59 215 58 124 58 124 79 215 88 125 59 127 90 127 89 127 89 216 91 130 46 129 46 129 60 128 89 216

108 |
109 |
110 |
111 | 112 | 113 | 114 | 0 0 0 0 2 0 0 1.179868 0.09993535 0 0.3276801 0.09994804 0 0.3276711 1.179868 0 0 2 -0.1430648 1.179868 0.09993535 -0.14306 0.3276801 0.09994804 -0.1430648 0.3276711 1.179868 0 0.8201318 1.900065 0 2 2 0 1.674912 1.900052 0 1.674922 0.8201318 -0.1430648 1.674922 0.8201318 -0.1430648 0.8201318 1.900065 -0.14306 1.674912 1.900052 0 2 0.8201307 0 1.179869 0 0 0 1.179868 0 1.900065 0 0 1.900065 0.09993529 0 2 0.09993529 0 0.8201312 2 0 0 1.900065 0 0.09993535 2 0 0.09993535 1.900065 0 1.674912 1.897343 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 1 0 0 1 0 0 1 0 0 0 1.48979e-5 1 0 1.48979e-5 1 0 1 8.39608e-6 0 1 8.39174e-6 0 1 8.39652e-6 1 0 0 1 0 0 1 0 0 0 -0.8240854 0.5664656 0 -0.8240856 0.5664654 0 -0.8240857 0.5664653 1 2.30327e-6 1.82858e-6 1 1.49271e-6 1.1569e-6 1 5.56995e-6 4.40173e-6 0 0.8254704 -0.5644456 0 0.8254703 -0.5644456 0 -1.49224e-5 -1 0 -1 -4.27753e-6 -1.59044e-7 -1 -8.32857e-6 0 -1 -8.68372e-6 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -1.49837e-6 -1.16058e-6 1 -2.29645e-6 -1.82765e-6 0 1.48979e-5 1 0 1 8.3913e-6 0 -0.8240854 0.5664657 0 0.8254703 -0.5644456 0 -1 -8.70699e-6 0 -1 0 1 0 0 1 0 0 1 -5.53816e-6 -4.40173e-6 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 0.493784 0.6486546 0.5893943 0.2838231 0.5893943 0.6824203 0.1009935 0.9838299 0.05925148 0.6959336 0.1009935 0.6959336 0.6428089 0.628412 0.6010668 0.9932434 0.6010655 0.628412 0.0349946 0.648659 0.005835652 0.405354 0.1006869 0.4053537 0.7078946 0.628412 0.7496379 0.9236547 0.7078946 0.9236547 0.8497164 0.006756603 0.6010655 0.3715947 0.6010655 0.006763279 0.8030525 0.9231594 0.7613092 0.628412 0.8030525 0.628412 0.04757893 0.9847057 0.005836963 0.6959336 0.04757893 0.6959336 0.6962234 0.9923281 0.6544814 0.9932433 0.65448 0.628412 0.005835652 0.405354 0.1006895 0.0414375 0.1006869 0.4053537 0.0349946 0.648659 0.2451331 0.6824203 0.03499466 0.6824203 0.2451331 0.648659 0.0349946 0.648659 0.1006869 0.4053537 0.0349946 0.648659 0.005835652 0.6824203 0.005835652 0.648659 0.350097 0.006756603 0.5602352 0.04051792 0.3500968 0.04051792 0.5602352 0.006756663 0.5893943 0.04051792 0.5602352 0.04051792 0.5893943 0.2838231 0.5602352 0.04051792 0.5893943 0.04051792 0.4937866 0.2838233 0.3500968 0.04051792 0.5602352 0.04051792 0.493784 0.6486546 0.2451331 0.6824203 0.2451331 0.648659 0.350097 0.006756603 0.3500968 0.04051792 0.1006895 0.04052221 0.9941644 0.2500605 0.7447571 0.6148987 0.8497164 0.006756603 0.493784 0.6486546 0.4937866 0.2838233 0.5893943 0.2838231 0.1009935 0.9838299 0.05925011 0.9838299 0.05925148 0.6959336 0.6428089 0.628412 0.6428089 0.9932434 0.6010668 0.9932434 0.0349946 0.648659 0.005835652 0.648659 0.005835652 0.405354 0.7078946 0.628412 0.7496379 0.628412 0.7496379 0.9236547 0.8497164 0.006756603 0.7447571 0.6148987 0.6010655 0.3715947 0.8030525 0.9231594 0.7613091 0.9231594 0.7613092 0.628412 0.04757893 0.9847057 0.005835533 0.9847057 0.005836963 0.6959336 0.65448 0.628412 0.6962234 0.628412 0.6962234 0.9923281 0.6962234 0.9923281 0.6962234 0.9932433 0.6544814 0.9932433 0.005835652 0.405354 0.005835533 0.006756603 0.1006895 0.0414375 0.0349946 0.648659 0.2451331 0.648659 0.2451331 0.6824203 0.0349946 0.648659 0.03499466 0.6824203 0.005835652 0.6824203 0.350097 0.006756603 0.5602352 0.006756663 0.5602352 0.04051792 0.5602352 0.006756663 0.5893943 0.006756603 0.5893943 0.04051792 0.5893943 0.2838231 0.4937866 0.2838233 0.5602352 0.04051792 0.493784 0.6486546 0.5893943 0.6824203 0.2451331 0.6824203 0.1006895 0.04052221 0.1006895 0.0414375 0.005835533 0.006756603 0.005835533 0.006756603 0.350097 0.006756603 0.1006895 0.04052221 0.9941644 0.2500605 0.9941644 0.6148919 0.7447571 0.6148987 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 |

3 0 0 18 1 1 0 2 2 2 3 3 7 4 4 3 4 5 4 5 6 7 6 7 8 7 8 20 8 9 16 9 10 12 10 11 12 11 12 6 12 13 2 13 14 6 14 15 8 15 16 7 16 17 4 17 18 14 17 19 9 18 20 9 19 21 15 19 22 11 19 23 26 20 24 15 21 25 13 22 26 16 9 27 26 23 28 12 10 29 20 8 30 17 24 31 19 25 32 2 26 33 20 8 34 12 10 35 20 8 36 1 27 37 21 28 38 22 29 39 25 30 40 9 31 41 24 32 42 23 33 43 25 30 44 18 1 45 25 30 46 23 33 47 4 34 48 9 31 49 25 30 50 3 0 51 17 24 52 2 26 53 22 29 54 9 31 55 11 35 56 13 36 57 14 37 58 6 14 59 3 0 60 4 34 61 18 1 62 2 3 63 6 38 64 7 4 65 4 5 66 3 39 67 7 6 68 20 8 69 21 28 70 16 9 71 12 11 72 13 40 73 6 12 74 6 14 75 14 37 76 8 15 77 4 17 78 8 41 79 14 17 80 9 19 81 14 19 82 15 19 83 13 22 84 12 42 85 26 20 86 26 20 87 11 43 88 15 21 89 16 9 90 10 44 91 26 23 92 20 8 93 2 26 94 17 24 95 20 8 96 19 25 97 1 27 98 22 29 99 24 32 100 25 30 101 24 32 102 5 45 103 23 33 104 18 1 105 4 34 106 25 30 107 3 0 108 0 2 109 17 24 110 11 35 111 26 23 112 10 44 113 10 44 114 22 29 115 11 35 116 13 36 117 15 46 118 14 37 119

150 |
151 |
152 |
153 |
154 | 155 | 156 | 157 | 158 | 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 159 | 160 | 161 | 162 | 1 0 0 -0.121834 0 1 0 0.1028749 0 0 1 0.1381463 0 0 0 1 163 | 164 | 165 | 166 | 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 167 | 168 | 169 | 170 | 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 |
-------------------------------------------------------------------------------- /sci fi modular/wall 2/wall 2.dae.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="scene" 4 | type="PackedScene" 5 | path="res://.import/wall 2.dae-c50e2bdb2324e4dc4ea22c2ed32055e1.scn" 6 | 7 | [deps] 8 | 9 | source_file="res://sci-fi modular/wall 2/wall 2.dae" 10 | source_md5="5c13771586a79dbb0633840c28d43980" 11 | 12 | dest_files=[ "res://.import/wall 2.dae-c50e2bdb2324e4dc4ea22c2ed32055e1.scn" ] 13 | dest_md5="c99652923462cda8fd7921aead75d263" 14 | 15 | [params] 16 | 17 | nodes/root_type="Spatial" 18 | nodes/root_name="Scene Root" 19 | nodes/root_scale=1.0 20 | nodes/custom_script="" 21 | nodes/storage=0 22 | materials/location=1 23 | materials/storage=1 24 | materials/keep_on_reimport=true 25 | meshes/compress=true 26 | meshes/ensure_tangents=true 27 | meshes/storage=0 28 | meshes/light_baking=0 29 | meshes/lightmap_texel_size=0.1 30 | external_files/store_in_subdir=false 31 | animation/import=true 32 | animation/fps=15 33 | animation/filter_script="" 34 | animation/storage=false 35 | animation/keep_custom_tracks=false 36 | animation/optimizer/enabled=true 37 | animation/optimizer/max_linear_error=0.05 38 | animation/optimizer/max_angular_error=0.01 39 | animation/optimizer/max_angle=22 40 | animation/optimizer/remove_unused_tracks=true 41 | animation/clips/amount=0 42 | animation/clip_1/name="" 43 | animation/clip_1/start_frame=0 44 | animation/clip_1/end_frame=0 45 | animation/clip_1/loops=false 46 | animation/clip_2/name="" 47 | animation/clip_2/start_frame=0 48 | animation/clip_2/end_frame=0 49 | animation/clip_2/loops=false 50 | animation/clip_3/name="" 51 | animation/clip_3/start_frame=0 52 | animation/clip_3/end_frame=0 53 | animation/clip_3/loops=false 54 | animation/clip_4/name="" 55 | animation/clip_4/start_frame=0 56 | animation/clip_4/end_frame=0 57 | animation/clip_4/loops=false 58 | animation/clip_5/name="" 59 | animation/clip_5/start_frame=0 60 | animation/clip_5/end_frame=0 61 | animation/clip_5/loops=false 62 | animation/clip_6/name="" 63 | animation/clip_6/start_frame=0 64 | animation/clip_6/end_frame=0 65 | animation/clip_6/loops=false 66 | animation/clip_7/name="" 67 | animation/clip_7/start_frame=0 68 | animation/clip_7/end_frame=0 69 | animation/clip_7/loops=false 70 | animation/clip_8/name="" 71 | animation/clip_8/start_frame=0 72 | animation/clip_8/end_frame=0 73 | animation/clip_8/loops=false 74 | animation/clip_9/name="" 75 | animation/clip_9/start_frame=0 76 | animation/clip_9/end_frame=0 77 | animation/clip_9/loops=false 78 | animation/clip_10/name="" 79 | animation/clip_10/start_frame=0 80 | animation/clip_10/end_frame=0 81 | animation/clip_10/loops=false 82 | animation/clip_11/name="" 83 | animation/clip_11/start_frame=0 84 | animation/clip_11/end_frame=0 85 | animation/clip_11/loops=false 86 | animation/clip_12/name="" 87 | animation/clip_12/start_frame=0 88 | animation/clip_12/end_frame=0 89 | animation/clip_12/loops=false 90 | animation/clip_13/name="" 91 | animation/clip_13/start_frame=0 92 | animation/clip_13/end_frame=0 93 | animation/clip_13/loops=false 94 | animation/clip_14/name="" 95 | animation/clip_14/start_frame=0 96 | animation/clip_14/end_frame=0 97 | animation/clip_14/loops=false 98 | animation/clip_15/name="" 99 | animation/clip_15/start_frame=0 100 | animation/clip_15/end_frame=0 101 | animation/clip_15/loops=false 102 | animation/clip_16/name="" 103 | animation/clip_16/start_frame=0 104 | animation/clip_16/end_frame=0 105 | animation/clip_16/loops=false 106 | animation/clip_17/name="" 107 | animation/clip_17/start_frame=0 108 | animation/clip_17/end_frame=0 109 | animation/clip_17/loops=false 110 | animation/clip_18/name="" 111 | animation/clip_18/start_frame=0 112 | animation/clip_18/end_frame=0 113 | animation/clip_18/loops=false 114 | animation/clip_19/name="" 115 | animation/clip_19/start_frame=0 116 | animation/clip_19/end_frame=0 117 | animation/clip_19/loops=false 118 | animation/clip_20/name="" 119 | animation/clip_20/start_frame=0 120 | animation/clip_20/end_frame=0 121 | animation/clip_20/loops=false 122 | animation/clip_21/name="" 123 | animation/clip_21/start_frame=0 124 | animation/clip_21/end_frame=0 125 | animation/clip_21/loops=false 126 | animation/clip_22/name="" 127 | animation/clip_22/start_frame=0 128 | animation/clip_22/end_frame=0 129 | animation/clip_22/loops=false 130 | animation/clip_23/name="" 131 | animation/clip_23/start_frame=0 132 | animation/clip_23/end_frame=0 133 | animation/clip_23/loops=false 134 | animation/clip_24/name="" 135 | animation/clip_24/start_frame=0 136 | animation/clip_24/end_frame=0 137 | animation/clip_24/loops=false 138 | animation/clip_25/name="" 139 | animation/clip_25/start_frame=0 140 | animation/clip_25/end_frame=0 141 | animation/clip_25/loops=false 142 | animation/clip_26/name="" 143 | animation/clip_26/start_frame=0 144 | animation/clip_26/end_frame=0 145 | animation/clip_26/loops=false 146 | animation/clip_27/name="" 147 | animation/clip_27/start_frame=0 148 | animation/clip_27/end_frame=0 149 | animation/clip_27/loops=false 150 | animation/clip_28/name="" 151 | animation/clip_28/start_frame=0 152 | animation/clip_28/end_frame=0 153 | animation/clip_28/loops=false 154 | animation/clip_29/name="" 155 | animation/clip_29/start_frame=0 156 | animation/clip_29/end_frame=0 157 | animation/clip_29/loops=false 158 | animation/clip_30/name="" 159 | animation/clip_30/start_frame=0 160 | animation/clip_30/end_frame=0 161 | animation/clip_30/loops=false 162 | animation/clip_31/name="" 163 | animation/clip_31/start_frame=0 164 | animation/clip_31/end_frame=0 165 | animation/clip_31/loops=false 166 | animation/clip_32/name="" 167 | animation/clip_32/start_frame=0 168 | animation/clip_32/end_frame=0 169 | animation/clip_32/loops=false 170 | animation/clip_33/name="" 171 | animation/clip_33/start_frame=0 172 | animation/clip_33/end_frame=0 173 | animation/clip_33/loops=false 174 | animation/clip_34/name="" 175 | animation/clip_34/start_frame=0 176 | animation/clip_34/end_frame=0 177 | animation/clip_34/loops=false 178 | animation/clip_35/name="" 179 | animation/clip_35/start_frame=0 180 | animation/clip_35/end_frame=0 181 | animation/clip_35/loops=false 182 | animation/clip_36/name="" 183 | animation/clip_36/start_frame=0 184 | animation/clip_36/end_frame=0 185 | animation/clip_36/loops=false 186 | animation/clip_37/name="" 187 | animation/clip_37/start_frame=0 188 | animation/clip_37/end_frame=0 189 | animation/clip_37/loops=false 190 | animation/clip_38/name="" 191 | animation/clip_38/start_frame=0 192 | animation/clip_38/end_frame=0 193 | animation/clip_38/loops=false 194 | animation/clip_39/name="" 195 | animation/clip_39/start_frame=0 196 | animation/clip_39/end_frame=0 197 | animation/clip_39/loops=false 198 | animation/clip_40/name="" 199 | animation/clip_40/start_frame=0 200 | animation/clip_40/end_frame=0 201 | animation/clip_40/loops=false 202 | animation/clip_41/name="" 203 | animation/clip_41/start_frame=0 204 | animation/clip_41/end_frame=0 205 | animation/clip_41/loops=false 206 | animation/clip_42/name="" 207 | animation/clip_42/start_frame=0 208 | animation/clip_42/end_frame=0 209 | animation/clip_42/loops=false 210 | animation/clip_43/name="" 211 | animation/clip_43/start_frame=0 212 | animation/clip_43/end_frame=0 213 | animation/clip_43/loops=false 214 | animation/clip_44/name="" 215 | animation/clip_44/start_frame=0 216 | animation/clip_44/end_frame=0 217 | animation/clip_44/loops=false 218 | animation/clip_45/name="" 219 | animation/clip_45/start_frame=0 220 | animation/clip_45/end_frame=0 221 | animation/clip_45/loops=false 222 | animation/clip_46/name="" 223 | animation/clip_46/start_frame=0 224 | animation/clip_46/end_frame=0 225 | animation/clip_46/loops=false 226 | animation/clip_47/name="" 227 | animation/clip_47/start_frame=0 228 | animation/clip_47/end_frame=0 229 | animation/clip_47/loops=false 230 | animation/clip_48/name="" 231 | animation/clip_48/start_frame=0 232 | animation/clip_48/end_frame=0 233 | animation/clip_48/loops=false 234 | animation/clip_49/name="" 235 | animation/clip_49/start_frame=0 236 | animation/clip_49/end_frame=0 237 | animation/clip_49/loops=false 238 | animation/clip_50/name="" 239 | animation/clip_50/start_frame=0 240 | animation/clip_50/end_frame=0 241 | animation/clip_50/loops=false 242 | animation/clip_51/name="" 243 | animation/clip_51/start_frame=0 244 | animation/clip_51/end_frame=0 245 | animation/clip_51/loops=false 246 | animation/clip_52/name="" 247 | animation/clip_52/start_frame=0 248 | animation/clip_52/end_frame=0 249 | animation/clip_52/loops=false 250 | animation/clip_53/name="" 251 | animation/clip_53/start_frame=0 252 | animation/clip_53/end_frame=0 253 | animation/clip_53/loops=false 254 | animation/clip_54/name="" 255 | animation/clip_54/start_frame=0 256 | animation/clip_54/end_frame=0 257 | animation/clip_54/loops=false 258 | animation/clip_55/name="" 259 | animation/clip_55/start_frame=0 260 | animation/clip_55/end_frame=0 261 | animation/clip_55/loops=false 262 | animation/clip_56/name="" 263 | animation/clip_56/start_frame=0 264 | animation/clip_56/end_frame=0 265 | animation/clip_56/loops=false 266 | animation/clip_57/name="" 267 | animation/clip_57/start_frame=0 268 | animation/clip_57/end_frame=0 269 | animation/clip_57/loops=false 270 | animation/clip_58/name="" 271 | animation/clip_58/start_frame=0 272 | animation/clip_58/end_frame=0 273 | animation/clip_58/loops=false 274 | animation/clip_59/name="" 275 | animation/clip_59/start_frame=0 276 | animation/clip_59/end_frame=0 277 | animation/clip_59/loops=false 278 | animation/clip_60/name="" 279 | animation/clip_60/start_frame=0 280 | animation/clip_60/end_frame=0 281 | animation/clip_60/loops=false 282 | animation/clip_61/name="" 283 | animation/clip_61/start_frame=0 284 | animation/clip_61/end_frame=0 285 | animation/clip_61/loops=false 286 | animation/clip_62/name="" 287 | animation/clip_62/start_frame=0 288 | animation/clip_62/end_frame=0 289 | animation/clip_62/loops=false 290 | animation/clip_63/name="" 291 | animation/clip_63/start_frame=0 292 | animation/clip_63/end_frame=0 293 | animation/clip_63/loops=false 294 | animation/clip_64/name="" 295 | animation/clip_64/start_frame=0 296 | animation/clip_64/end_frame=0 297 | animation/clip_64/loops=false 298 | animation/clip_65/name="" 299 | animation/clip_65/start_frame=0 300 | animation/clip_65/end_frame=0 301 | animation/clip_65/loops=false 302 | animation/clip_66/name="" 303 | animation/clip_66/start_frame=0 304 | animation/clip_66/end_frame=0 305 | animation/clip_66/loops=false 306 | animation/clip_67/name="" 307 | animation/clip_67/start_frame=0 308 | animation/clip_67/end_frame=0 309 | animation/clip_67/loops=false 310 | animation/clip_68/name="" 311 | animation/clip_68/start_frame=0 312 | animation/clip_68/end_frame=0 313 | animation/clip_68/loops=false 314 | animation/clip_69/name="" 315 | animation/clip_69/start_frame=0 316 | animation/clip_69/end_frame=0 317 | animation/clip_69/loops=false 318 | animation/clip_70/name="" 319 | animation/clip_70/start_frame=0 320 | animation/clip_70/end_frame=0 321 | animation/clip_70/loops=false 322 | animation/clip_71/name="" 323 | animation/clip_71/start_frame=0 324 | animation/clip_71/end_frame=0 325 | animation/clip_71/loops=false 326 | animation/clip_72/name="" 327 | animation/clip_72/start_frame=0 328 | animation/clip_72/end_frame=0 329 | animation/clip_72/loops=false 330 | animation/clip_73/name="" 331 | animation/clip_73/start_frame=0 332 | animation/clip_73/end_frame=0 333 | animation/clip_73/loops=false 334 | animation/clip_74/name="" 335 | animation/clip_74/start_frame=0 336 | animation/clip_74/end_frame=0 337 | animation/clip_74/loops=false 338 | animation/clip_75/name="" 339 | animation/clip_75/start_frame=0 340 | animation/clip_75/end_frame=0 341 | animation/clip_75/loops=false 342 | animation/clip_76/name="" 343 | animation/clip_76/start_frame=0 344 | animation/clip_76/end_frame=0 345 | animation/clip_76/loops=false 346 | animation/clip_77/name="" 347 | animation/clip_77/start_frame=0 348 | animation/clip_77/end_frame=0 349 | animation/clip_77/loops=false 350 | animation/clip_78/name="" 351 | animation/clip_78/start_frame=0 352 | animation/clip_78/end_frame=0 353 | animation/clip_78/loops=false 354 | animation/clip_79/name="" 355 | animation/clip_79/start_frame=0 356 | animation/clip_79/end_frame=0 357 | animation/clip_79/loops=false 358 | animation/clip_80/name="" 359 | animation/clip_80/start_frame=0 360 | animation/clip_80/end_frame=0 361 | animation/clip_80/loops=false 362 | animation/clip_81/name="" 363 | animation/clip_81/start_frame=0 364 | animation/clip_81/end_frame=0 365 | animation/clip_81/loops=false 366 | animation/clip_82/name="" 367 | animation/clip_82/start_frame=0 368 | animation/clip_82/end_frame=0 369 | animation/clip_82/loops=false 370 | animation/clip_83/name="" 371 | animation/clip_83/start_frame=0 372 | animation/clip_83/end_frame=0 373 | animation/clip_83/loops=false 374 | animation/clip_84/name="" 375 | animation/clip_84/start_frame=0 376 | animation/clip_84/end_frame=0 377 | animation/clip_84/loops=false 378 | animation/clip_85/name="" 379 | animation/clip_85/start_frame=0 380 | animation/clip_85/end_frame=0 381 | animation/clip_85/loops=false 382 | animation/clip_86/name="" 383 | animation/clip_86/start_frame=0 384 | animation/clip_86/end_frame=0 385 | animation/clip_86/loops=false 386 | animation/clip_87/name="" 387 | animation/clip_87/start_frame=0 388 | animation/clip_87/end_frame=0 389 | animation/clip_87/loops=false 390 | animation/clip_88/name="" 391 | animation/clip_88/start_frame=0 392 | animation/clip_88/end_frame=0 393 | animation/clip_88/loops=false 394 | animation/clip_89/name="" 395 | animation/clip_89/start_frame=0 396 | animation/clip_89/end_frame=0 397 | animation/clip_89/loops=false 398 | animation/clip_90/name="" 399 | animation/clip_90/start_frame=0 400 | animation/clip_90/end_frame=0 401 | animation/clip_90/loops=false 402 | animation/clip_91/name="" 403 | animation/clip_91/start_frame=0 404 | animation/clip_91/end_frame=0 405 | animation/clip_91/loops=false 406 | animation/clip_92/name="" 407 | animation/clip_92/start_frame=0 408 | animation/clip_92/end_frame=0 409 | animation/clip_92/loops=false 410 | animation/clip_93/name="" 411 | animation/clip_93/start_frame=0 412 | animation/clip_93/end_frame=0 413 | animation/clip_93/loops=false 414 | animation/clip_94/name="" 415 | animation/clip_94/start_frame=0 416 | animation/clip_94/end_frame=0 417 | animation/clip_94/loops=false 418 | animation/clip_95/name="" 419 | animation/clip_95/start_frame=0 420 | animation/clip_95/end_frame=0 421 | animation/clip_95/loops=false 422 | animation/clip_96/name="" 423 | animation/clip_96/start_frame=0 424 | animation/clip_96/end_frame=0 425 | animation/clip_96/loops=false 426 | animation/clip_97/name="" 427 | animation/clip_97/start_frame=0 428 | animation/clip_97/end_frame=0 429 | animation/clip_97/loops=false 430 | animation/clip_98/name="" 431 | animation/clip_98/start_frame=0 432 | animation/clip_98/end_frame=0 433 | animation/clip_98/loops=false 434 | animation/clip_99/name="" 435 | animation/clip_99/start_frame=0 436 | animation/clip_99/end_frame=0 437 | animation/clip_99/loops=false 438 | animation/clip_100/name="" 439 | animation/clip_100/start_frame=0 440 | animation/clip_100/end_frame=0 441 | animation/clip_100/loops=false 442 | animation/clip_101/name="" 443 | animation/clip_101/start_frame=0 444 | animation/clip_101/end_frame=0 445 | animation/clip_101/loops=false 446 | animation/clip_102/name="" 447 | animation/clip_102/start_frame=0 448 | animation/clip_102/end_frame=0 449 | animation/clip_102/loops=false 450 | animation/clip_103/name="" 451 | animation/clip_103/start_frame=0 452 | animation/clip_103/end_frame=0 453 | animation/clip_103/loops=false 454 | animation/clip_104/name="" 455 | animation/clip_104/start_frame=0 456 | animation/clip_104/end_frame=0 457 | animation/clip_104/loops=false 458 | animation/clip_105/name="" 459 | animation/clip_105/start_frame=0 460 | animation/clip_105/end_frame=0 461 | animation/clip_105/loops=false 462 | animation/clip_106/name="" 463 | animation/clip_106/start_frame=0 464 | animation/clip_106/end_frame=0 465 | animation/clip_106/loops=false 466 | animation/clip_107/name="" 467 | animation/clip_107/start_frame=0 468 | animation/clip_107/end_frame=0 469 | animation/clip_107/loops=false 470 | animation/clip_108/name="" 471 | animation/clip_108/start_frame=0 472 | animation/clip_108/end_frame=0 473 | animation/clip_108/loops=false 474 | animation/clip_109/name="" 475 | animation/clip_109/start_frame=0 476 | animation/clip_109/end_frame=0 477 | animation/clip_109/loops=false 478 | animation/clip_110/name="" 479 | animation/clip_110/start_frame=0 480 | animation/clip_110/end_frame=0 481 | animation/clip_110/loops=false 482 | animation/clip_111/name="" 483 | animation/clip_111/start_frame=0 484 | animation/clip_111/end_frame=0 485 | animation/clip_111/loops=false 486 | animation/clip_112/name="" 487 | animation/clip_112/start_frame=0 488 | animation/clip_112/end_frame=0 489 | animation/clip_112/loops=false 490 | animation/clip_113/name="" 491 | animation/clip_113/start_frame=0 492 | animation/clip_113/end_frame=0 493 | animation/clip_113/loops=false 494 | animation/clip_114/name="" 495 | animation/clip_114/start_frame=0 496 | animation/clip_114/end_frame=0 497 | animation/clip_114/loops=false 498 | animation/clip_115/name="" 499 | animation/clip_115/start_frame=0 500 | animation/clip_115/end_frame=0 501 | animation/clip_115/loops=false 502 | animation/clip_116/name="" 503 | animation/clip_116/start_frame=0 504 | animation/clip_116/end_frame=0 505 | animation/clip_116/loops=false 506 | animation/clip_117/name="" 507 | animation/clip_117/start_frame=0 508 | animation/clip_117/end_frame=0 509 | animation/clip_117/loops=false 510 | animation/clip_118/name="" 511 | animation/clip_118/start_frame=0 512 | animation/clip_118/end_frame=0 513 | animation/clip_118/loops=false 514 | animation/clip_119/name="" 515 | animation/clip_119/start_frame=0 516 | animation/clip_119/end_frame=0 517 | animation/clip_119/loops=false 518 | animation/clip_120/name="" 519 | animation/clip_120/start_frame=0 520 | animation/clip_120/end_frame=0 521 | animation/clip_120/loops=false 522 | animation/clip_121/name="" 523 | animation/clip_121/start_frame=0 524 | animation/clip_121/end_frame=0 525 | animation/clip_121/loops=false 526 | animation/clip_122/name="" 527 | animation/clip_122/start_frame=0 528 | animation/clip_122/end_frame=0 529 | animation/clip_122/loops=false 530 | animation/clip_123/name="" 531 | animation/clip_123/start_frame=0 532 | animation/clip_123/end_frame=0 533 | animation/clip_123/loops=false 534 | animation/clip_124/name="" 535 | animation/clip_124/start_frame=0 536 | animation/clip_124/end_frame=0 537 | animation/clip_124/loops=false 538 | animation/clip_125/name="" 539 | animation/clip_125/start_frame=0 540 | animation/clip_125/end_frame=0 541 | animation/clip_125/loops=false 542 | animation/clip_126/name="" 543 | animation/clip_126/start_frame=0 544 | animation/clip_126/end_frame=0 545 | animation/clip_126/loops=false 546 | animation/clip_127/name="" 547 | animation/clip_127/start_frame=0 548 | animation/clip_127/end_frame=0 549 | animation/clip_127/loops=false 550 | animation/clip_128/name="" 551 | animation/clip_128/start_frame=0 552 | animation/clip_128/end_frame=0 553 | animation/clip_128/loops=false 554 | animation/clip_129/name="" 555 | animation/clip_129/start_frame=0 556 | animation/clip_129/end_frame=0 557 | animation/clip_129/loops=false 558 | animation/clip_130/name="" 559 | animation/clip_130/start_frame=0 560 | animation/clip_130/end_frame=0 561 | animation/clip_130/loops=false 562 | animation/clip_131/name="" 563 | animation/clip_131/start_frame=0 564 | animation/clip_131/end_frame=0 565 | animation/clip_131/loops=false 566 | animation/clip_132/name="" 567 | animation/clip_132/start_frame=0 568 | animation/clip_132/end_frame=0 569 | animation/clip_132/loops=false 570 | animation/clip_133/name="" 571 | animation/clip_133/start_frame=0 572 | animation/clip_133/end_frame=0 573 | animation/clip_133/loops=false 574 | animation/clip_134/name="" 575 | animation/clip_134/start_frame=0 576 | animation/clip_134/end_frame=0 577 | animation/clip_134/loops=false 578 | animation/clip_135/name="" 579 | animation/clip_135/start_frame=0 580 | animation/clip_135/end_frame=0 581 | animation/clip_135/loops=false 582 | animation/clip_136/name="" 583 | animation/clip_136/start_frame=0 584 | animation/clip_136/end_frame=0 585 | animation/clip_136/loops=false 586 | animation/clip_137/name="" 587 | animation/clip_137/start_frame=0 588 | animation/clip_137/end_frame=0 589 | animation/clip_137/loops=false 590 | animation/clip_138/name="" 591 | animation/clip_138/start_frame=0 592 | animation/clip_138/end_frame=0 593 | animation/clip_138/loops=false 594 | animation/clip_139/name="" 595 | animation/clip_139/start_frame=0 596 | animation/clip_139/end_frame=0 597 | animation/clip_139/loops=false 598 | animation/clip_140/name="" 599 | animation/clip_140/start_frame=0 600 | animation/clip_140/end_frame=0 601 | animation/clip_140/loops=false 602 | animation/clip_141/name="" 603 | animation/clip_141/start_frame=0 604 | animation/clip_141/end_frame=0 605 | animation/clip_141/loops=false 606 | animation/clip_142/name="" 607 | animation/clip_142/start_frame=0 608 | animation/clip_142/end_frame=0 609 | animation/clip_142/loops=false 610 | animation/clip_143/name="" 611 | animation/clip_143/start_frame=0 612 | animation/clip_143/end_frame=0 613 | animation/clip_143/loops=false 614 | animation/clip_144/name="" 615 | animation/clip_144/start_frame=0 616 | animation/clip_144/end_frame=0 617 | animation/clip_144/loops=false 618 | animation/clip_145/name="" 619 | animation/clip_145/start_frame=0 620 | animation/clip_145/end_frame=0 621 | animation/clip_145/loops=false 622 | animation/clip_146/name="" 623 | animation/clip_146/start_frame=0 624 | animation/clip_146/end_frame=0 625 | animation/clip_146/loops=false 626 | animation/clip_147/name="" 627 | animation/clip_147/start_frame=0 628 | animation/clip_147/end_frame=0 629 | animation/clip_147/loops=false 630 | animation/clip_148/name="" 631 | animation/clip_148/start_frame=0 632 | animation/clip_148/end_frame=0 633 | animation/clip_148/loops=false 634 | animation/clip_149/name="" 635 | animation/clip_149/start_frame=0 636 | animation/clip_149/end_frame=0 637 | animation/clip_149/loops=false 638 | animation/clip_150/name="" 639 | animation/clip_150/start_frame=0 640 | animation/clip_150/end_frame=0 641 | animation/clip_150/loops=false 642 | animation/clip_151/name="" 643 | animation/clip_151/start_frame=0 644 | animation/clip_151/end_frame=0 645 | animation/clip_151/loops=false 646 | animation/clip_152/name="" 647 | animation/clip_152/start_frame=0 648 | animation/clip_152/end_frame=0 649 | animation/clip_152/loops=false 650 | animation/clip_153/name="" 651 | animation/clip_153/start_frame=0 652 | animation/clip_153/end_frame=0 653 | animation/clip_153/loops=false 654 | animation/clip_154/name="" 655 | animation/clip_154/start_frame=0 656 | animation/clip_154/end_frame=0 657 | animation/clip_154/loops=false 658 | animation/clip_155/name="" 659 | animation/clip_155/start_frame=0 660 | animation/clip_155/end_frame=0 661 | animation/clip_155/loops=false 662 | animation/clip_156/name="" 663 | animation/clip_156/start_frame=0 664 | animation/clip_156/end_frame=0 665 | animation/clip_156/loops=false 666 | animation/clip_157/name="" 667 | animation/clip_157/start_frame=0 668 | animation/clip_157/end_frame=0 669 | animation/clip_157/loops=false 670 | animation/clip_158/name="" 671 | animation/clip_158/start_frame=0 672 | animation/clip_158/end_frame=0 673 | animation/clip_158/loops=false 674 | animation/clip_159/name="" 675 | animation/clip_159/start_frame=0 676 | animation/clip_159/end_frame=0 677 | animation/clip_159/loops=false 678 | animation/clip_160/name="" 679 | animation/clip_160/start_frame=0 680 | animation/clip_160/end_frame=0 681 | animation/clip_160/loops=false 682 | animation/clip_161/name="" 683 | animation/clip_161/start_frame=0 684 | animation/clip_161/end_frame=0 685 | animation/clip_161/loops=false 686 | animation/clip_162/name="" 687 | animation/clip_162/start_frame=0 688 | animation/clip_162/end_frame=0 689 | animation/clip_162/loops=false 690 | animation/clip_163/name="" 691 | animation/clip_163/start_frame=0 692 | animation/clip_163/end_frame=0 693 | animation/clip_163/loops=false 694 | animation/clip_164/name="" 695 | animation/clip_164/start_frame=0 696 | animation/clip_164/end_frame=0 697 | animation/clip_164/loops=false 698 | animation/clip_165/name="" 699 | animation/clip_165/start_frame=0 700 | animation/clip_165/end_frame=0 701 | animation/clip_165/loops=false 702 | animation/clip_166/name="" 703 | animation/clip_166/start_frame=0 704 | animation/clip_166/end_frame=0 705 | animation/clip_166/loops=false 706 | animation/clip_167/name="" 707 | animation/clip_167/start_frame=0 708 | animation/clip_167/end_frame=0 709 | animation/clip_167/loops=false 710 | animation/clip_168/name="" 711 | animation/clip_168/start_frame=0 712 | animation/clip_168/end_frame=0 713 | animation/clip_168/loops=false 714 | animation/clip_169/name="" 715 | animation/clip_169/start_frame=0 716 | animation/clip_169/end_frame=0 717 | animation/clip_169/loops=false 718 | animation/clip_170/name="" 719 | animation/clip_170/start_frame=0 720 | animation/clip_170/end_frame=0 721 | animation/clip_170/loops=false 722 | animation/clip_171/name="" 723 | animation/clip_171/start_frame=0 724 | animation/clip_171/end_frame=0 725 | animation/clip_171/loops=false 726 | animation/clip_172/name="" 727 | animation/clip_172/start_frame=0 728 | animation/clip_172/end_frame=0 729 | animation/clip_172/loops=false 730 | animation/clip_173/name="" 731 | animation/clip_173/start_frame=0 732 | animation/clip_173/end_frame=0 733 | animation/clip_173/loops=false 734 | animation/clip_174/name="" 735 | animation/clip_174/start_frame=0 736 | animation/clip_174/end_frame=0 737 | animation/clip_174/loops=false 738 | animation/clip_175/name="" 739 | animation/clip_175/start_frame=0 740 | animation/clip_175/end_frame=0 741 | animation/clip_175/loops=false 742 | animation/clip_176/name="" 743 | animation/clip_176/start_frame=0 744 | animation/clip_176/end_frame=0 745 | animation/clip_176/loops=false 746 | animation/clip_177/name="" 747 | animation/clip_177/start_frame=0 748 | animation/clip_177/end_frame=0 749 | animation/clip_177/loops=false 750 | animation/clip_178/name="" 751 | animation/clip_178/start_frame=0 752 | animation/clip_178/end_frame=0 753 | animation/clip_178/loops=false 754 | animation/clip_179/name="" 755 | animation/clip_179/start_frame=0 756 | animation/clip_179/end_frame=0 757 | animation/clip_179/loops=false 758 | animation/clip_180/name="" 759 | animation/clip_180/start_frame=0 760 | animation/clip_180/end_frame=0 761 | animation/clip_180/loops=false 762 | animation/clip_181/name="" 763 | animation/clip_181/start_frame=0 764 | animation/clip_181/end_frame=0 765 | animation/clip_181/loops=false 766 | animation/clip_182/name="" 767 | animation/clip_182/start_frame=0 768 | animation/clip_182/end_frame=0 769 | animation/clip_182/loops=false 770 | animation/clip_183/name="" 771 | animation/clip_183/start_frame=0 772 | animation/clip_183/end_frame=0 773 | animation/clip_183/loops=false 774 | animation/clip_184/name="" 775 | animation/clip_184/start_frame=0 776 | animation/clip_184/end_frame=0 777 | animation/clip_184/loops=false 778 | animation/clip_185/name="" 779 | animation/clip_185/start_frame=0 780 | animation/clip_185/end_frame=0 781 | animation/clip_185/loops=false 782 | animation/clip_186/name="" 783 | animation/clip_186/start_frame=0 784 | animation/clip_186/end_frame=0 785 | animation/clip_186/loops=false 786 | animation/clip_187/name="" 787 | animation/clip_187/start_frame=0 788 | animation/clip_187/end_frame=0 789 | animation/clip_187/loops=false 790 | animation/clip_188/name="" 791 | animation/clip_188/start_frame=0 792 | animation/clip_188/end_frame=0 793 | animation/clip_188/loops=false 794 | animation/clip_189/name="" 795 | animation/clip_189/start_frame=0 796 | animation/clip_189/end_frame=0 797 | animation/clip_189/loops=false 798 | animation/clip_190/name="" 799 | animation/clip_190/start_frame=0 800 | animation/clip_190/end_frame=0 801 | animation/clip_190/loops=false 802 | animation/clip_191/name="" 803 | animation/clip_191/start_frame=0 804 | animation/clip_191/end_frame=0 805 | animation/clip_191/loops=false 806 | animation/clip_192/name="" 807 | animation/clip_192/start_frame=0 808 | animation/clip_192/end_frame=0 809 | animation/clip_192/loops=false 810 | animation/clip_193/name="" 811 | animation/clip_193/start_frame=0 812 | animation/clip_193/end_frame=0 813 | animation/clip_193/loops=false 814 | animation/clip_194/name="" 815 | animation/clip_194/start_frame=0 816 | animation/clip_194/end_frame=0 817 | animation/clip_194/loops=false 818 | animation/clip_195/name="" 819 | animation/clip_195/start_frame=0 820 | animation/clip_195/end_frame=0 821 | animation/clip_195/loops=false 822 | animation/clip_196/name="" 823 | animation/clip_196/start_frame=0 824 | animation/clip_196/end_frame=0 825 | animation/clip_196/loops=false 826 | animation/clip_197/name="" 827 | animation/clip_197/start_frame=0 828 | animation/clip_197/end_frame=0 829 | animation/clip_197/loops=false 830 | animation/clip_198/name="" 831 | animation/clip_198/start_frame=0 832 | animation/clip_198/end_frame=0 833 | animation/clip_198/loops=false 834 | animation/clip_199/name="" 835 | animation/clip_199/start_frame=0 836 | animation/clip_199/end_frame=0 837 | animation/clip_199/loops=false 838 | animation/clip_200/name="" 839 | animation/clip_200/start_frame=0 840 | animation/clip_200/end_frame=0 841 | animation/clip_200/loops=false 842 | animation/clip_201/name="" 843 | animation/clip_201/start_frame=0 844 | animation/clip_201/end_frame=0 845 | animation/clip_201/loops=false 846 | animation/clip_202/name="" 847 | animation/clip_202/start_frame=0 848 | animation/clip_202/end_frame=0 849 | animation/clip_202/loops=false 850 | animation/clip_203/name="" 851 | animation/clip_203/start_frame=0 852 | animation/clip_203/end_frame=0 853 | animation/clip_203/loops=false 854 | animation/clip_204/name="" 855 | animation/clip_204/start_frame=0 856 | animation/clip_204/end_frame=0 857 | animation/clip_204/loops=false 858 | animation/clip_205/name="" 859 | animation/clip_205/start_frame=0 860 | animation/clip_205/end_frame=0 861 | animation/clip_205/loops=false 862 | animation/clip_206/name="" 863 | animation/clip_206/start_frame=0 864 | animation/clip_206/end_frame=0 865 | animation/clip_206/loops=false 866 | animation/clip_207/name="" 867 | animation/clip_207/start_frame=0 868 | animation/clip_207/end_frame=0 869 | animation/clip_207/loops=false 870 | animation/clip_208/name="" 871 | animation/clip_208/start_frame=0 872 | animation/clip_208/end_frame=0 873 | animation/clip_208/loops=false 874 | animation/clip_209/name="" 875 | animation/clip_209/start_frame=0 876 | animation/clip_209/end_frame=0 877 | animation/clip_209/loops=false 878 | animation/clip_210/name="" 879 | animation/clip_210/start_frame=0 880 | animation/clip_210/end_frame=0 881 | animation/clip_210/loops=false 882 | animation/clip_211/name="" 883 | animation/clip_211/start_frame=0 884 | animation/clip_211/end_frame=0 885 | animation/clip_211/loops=false 886 | animation/clip_212/name="" 887 | animation/clip_212/start_frame=0 888 | animation/clip_212/end_frame=0 889 | animation/clip_212/loops=false 890 | animation/clip_213/name="" 891 | animation/clip_213/start_frame=0 892 | animation/clip_213/end_frame=0 893 | animation/clip_213/loops=false 894 | animation/clip_214/name="" 895 | animation/clip_214/start_frame=0 896 | animation/clip_214/end_frame=0 897 | animation/clip_214/loops=false 898 | animation/clip_215/name="" 899 | animation/clip_215/start_frame=0 900 | animation/clip_215/end_frame=0 901 | animation/clip_215/loops=false 902 | animation/clip_216/name="" 903 | animation/clip_216/start_frame=0 904 | animation/clip_216/end_frame=0 905 | animation/clip_216/loops=false 906 | animation/clip_217/name="" 907 | animation/clip_217/start_frame=0 908 | animation/clip_217/end_frame=0 909 | animation/clip_217/loops=false 910 | animation/clip_218/name="" 911 | animation/clip_218/start_frame=0 912 | animation/clip_218/end_frame=0 913 | animation/clip_218/loops=false 914 | animation/clip_219/name="" 915 | animation/clip_219/start_frame=0 916 | animation/clip_219/end_frame=0 917 | animation/clip_219/loops=false 918 | animation/clip_220/name="" 919 | animation/clip_220/start_frame=0 920 | animation/clip_220/end_frame=0 921 | animation/clip_220/loops=false 922 | animation/clip_221/name="" 923 | animation/clip_221/start_frame=0 924 | animation/clip_221/end_frame=0 925 | animation/clip_221/loops=false 926 | animation/clip_222/name="" 927 | animation/clip_222/start_frame=0 928 | animation/clip_222/end_frame=0 929 | animation/clip_222/loops=false 930 | animation/clip_223/name="" 931 | animation/clip_223/start_frame=0 932 | animation/clip_223/end_frame=0 933 | animation/clip_223/loops=false 934 | animation/clip_224/name="" 935 | animation/clip_224/start_frame=0 936 | animation/clip_224/end_frame=0 937 | animation/clip_224/loops=false 938 | animation/clip_225/name="" 939 | animation/clip_225/start_frame=0 940 | animation/clip_225/end_frame=0 941 | animation/clip_225/loops=false 942 | animation/clip_226/name="" 943 | animation/clip_226/start_frame=0 944 | animation/clip_226/end_frame=0 945 | animation/clip_226/loops=false 946 | animation/clip_227/name="" 947 | animation/clip_227/start_frame=0 948 | animation/clip_227/end_frame=0 949 | animation/clip_227/loops=false 950 | animation/clip_228/name="" 951 | animation/clip_228/start_frame=0 952 | animation/clip_228/end_frame=0 953 | animation/clip_228/loops=false 954 | animation/clip_229/name="" 955 | animation/clip_229/start_frame=0 956 | animation/clip_229/end_frame=0 957 | animation/clip_229/loops=false 958 | animation/clip_230/name="" 959 | animation/clip_230/start_frame=0 960 | animation/clip_230/end_frame=0 961 | animation/clip_230/loops=false 962 | animation/clip_231/name="" 963 | animation/clip_231/start_frame=0 964 | animation/clip_231/end_frame=0 965 | animation/clip_231/loops=false 966 | animation/clip_232/name="" 967 | animation/clip_232/start_frame=0 968 | animation/clip_232/end_frame=0 969 | animation/clip_232/loops=false 970 | animation/clip_233/name="" 971 | animation/clip_233/start_frame=0 972 | animation/clip_233/end_frame=0 973 | animation/clip_233/loops=false 974 | animation/clip_234/name="" 975 | animation/clip_234/start_frame=0 976 | animation/clip_234/end_frame=0 977 | animation/clip_234/loops=false 978 | animation/clip_235/name="" 979 | animation/clip_235/start_frame=0 980 | animation/clip_235/end_frame=0 981 | animation/clip_235/loops=false 982 | animation/clip_236/name="" 983 | animation/clip_236/start_frame=0 984 | animation/clip_236/end_frame=0 985 | animation/clip_236/loops=false 986 | animation/clip_237/name="" 987 | animation/clip_237/start_frame=0 988 | animation/clip_237/end_frame=0 989 | animation/clip_237/loops=false 990 | animation/clip_238/name="" 991 | animation/clip_238/start_frame=0 992 | animation/clip_238/end_frame=0 993 | animation/clip_238/loops=false 994 | animation/clip_239/name="" 995 | animation/clip_239/start_frame=0 996 | animation/clip_239/end_frame=0 997 | animation/clip_239/loops=false 998 | animation/clip_240/name="" 999 | animation/clip_240/start_frame=0 1000 | animation/clip_240/end_frame=0 1001 | animation/clip_240/loops=false 1002 | animation/clip_241/name="" 1003 | animation/clip_241/start_frame=0 1004 | animation/clip_241/end_frame=0 1005 | animation/clip_241/loops=false 1006 | animation/clip_242/name="" 1007 | animation/clip_242/start_frame=0 1008 | animation/clip_242/end_frame=0 1009 | animation/clip_242/loops=false 1010 | animation/clip_243/name="" 1011 | animation/clip_243/start_frame=0 1012 | animation/clip_243/end_frame=0 1013 | animation/clip_243/loops=false 1014 | animation/clip_244/name="" 1015 | animation/clip_244/start_frame=0 1016 | animation/clip_244/end_frame=0 1017 | animation/clip_244/loops=false 1018 | animation/clip_245/name="" 1019 | animation/clip_245/start_frame=0 1020 | animation/clip_245/end_frame=0 1021 | animation/clip_245/loops=false 1022 | animation/clip_246/name="" 1023 | animation/clip_246/start_frame=0 1024 | animation/clip_246/end_frame=0 1025 | animation/clip_246/loops=false 1026 | animation/clip_247/name="" 1027 | animation/clip_247/start_frame=0 1028 | animation/clip_247/end_frame=0 1029 | animation/clip_247/loops=false 1030 | animation/clip_248/name="" 1031 | animation/clip_248/start_frame=0 1032 | animation/clip_248/end_frame=0 1033 | animation/clip_248/loops=false 1034 | animation/clip_249/name="" 1035 | animation/clip_249/start_frame=0 1036 | animation/clip_249/end_frame=0 1037 | animation/clip_249/loops=false 1038 | animation/clip_250/name="" 1039 | animation/clip_250/start_frame=0 1040 | animation/clip_250/end_frame=0 1041 | animation/clip_250/loops=false 1042 | animation/clip_251/name="" 1043 | animation/clip_251/start_frame=0 1044 | animation/clip_251/end_frame=0 1045 | animation/clip_251/loops=false 1046 | animation/clip_252/name="" 1047 | animation/clip_252/start_frame=0 1048 | animation/clip_252/end_frame=0 1049 | animation/clip_252/loops=false 1050 | animation/clip_253/name="" 1051 | animation/clip_253/start_frame=0 1052 | animation/clip_253/end_frame=0 1053 | animation/clip_253/loops=false 1054 | animation/clip_254/name="" 1055 | animation/clip_254/start_frame=0 1056 | animation/clip_254/end_frame=0 1057 | animation/clip_254/loops=false 1058 | animation/clip_255/name="" 1059 | animation/clip_255/start_frame=0 1060 | animation/clip_255/end_frame=0 1061 | animation/clip_255/loops=false 1062 | animation/clip_256/name="" 1063 | animation/clip_256/start_frame=0 1064 | animation/clip_256/end_frame=0 1065 | animation/clip_256/loops=false 1066 | -------------------------------------------------------------------------------- /sci fi modular/wall 2/wall 2.mtl: -------------------------------------------------------------------------------- 1 | newmtl None 2 | Ns 100.000 3 | d 1.00000 4 | illum 2 5 | Kd 1.00000 1.00000 1.00000 6 | Ka 0.00000 0.00000 0.00000 7 | Ks 1.00000 1.00000 1.00000 8 | Ke 0.00000e+0 0.00000e+0 0.00000e+0 9 | map_Kd wall 2_Albedo.png 10 | bump wall 2_Height.png 11 | map_bump wall 2_Normal.png 12 | -------------------------------------------------------------------------------- /sci fi modular/wall 2/wall 2.obj: -------------------------------------------------------------------------------- 1 | # Wavefront Obj file 2 | # 3 | # verts: 27 uv-s: 52 4 | mtllib wall 2.mtl 5 | 6 | g lp_Plane.006 7 | 8 | v 0.000000 0.000000 0.000000 9 | v 0.000000 0.000000 -2.000000 10 | v 0.000000 0.099935 -1.179868 11 | v 0.000000 0.099948 -0.327680 12 | v 0.000000 1.179868 -0.327671 13 | v 0.000000 2.000000 0.000000 14 | v -0.143065 0.099935 -1.179868 15 | v -0.143060 0.099948 -0.327680 16 | v -0.143065 1.179868 -0.327671 17 | v 0.000000 1.900065 -0.820132 18 | v 0.000000 2.000000 -2.000000 19 | v 0.000000 1.900052 -1.674912 20 | v 0.000000 0.820132 -1.674922 21 | v -0.143065 0.820132 -1.674922 22 | v -0.143065 1.900065 -0.820132 23 | v -0.143060 1.900052 -1.674912 24 | v 0.000000 0.820131 -2.000000 25 | v 0.000000 0.000000 -1.179869 26 | v 0.000000 1.179868 0.000000 27 | v 0.000000 0.000000 -1.900065 28 | v 0.000000 0.099935 -1.900065 29 | v 0.000000 0.099935 -2.000000 30 | v 0.000000 2.000000 -0.820131 31 | v 0.000000 1.900065 0.000000 32 | v 0.000000 2.000000 -0.099935 33 | v 0.000000 1.900065 -0.099935 34 | v 0.000000 1.897343 -1.674912 35 | # 27 positions 36 | 37 | vt 0.589394 0.682420 38 | vt 0.493784 0.648655 39 | vt 0.493787 0.283823 40 | vt 0.589394 0.283823 41 | vt 0.100687 0.405354 42 | vt 0.034995 0.648659 43 | vt 0.005836 0.648659 44 | vt 0.005836 0.405354 45 | vt 0.005836 0.006757 46 | vt 0.100689 0.041438 47 | vt 0.034995 0.682420 48 | vt 0.245133 0.648659 49 | vt 0.245133 0.682420 50 | vt 0.005836 0.682420 51 | vt 0.350097 0.040518 52 | vt 0.350097 0.006757 53 | vt 0.560235 0.006757 54 | vt 0.560235 0.040518 55 | vt 0.589394 0.006757 56 | vt 0.589394 0.040518 57 | vt 0.100689 0.040522 58 | vt 0.100994 0.695934 59 | vt 0.100993 0.983830 60 | vt 0.059250 0.983830 61 | vt 0.059252 0.695934 62 | vt 0.642809 0.628412 63 | vt 0.642809 0.993243 64 | vt 0.601067 0.993243 65 | vt 0.601065 0.628412 66 | vt 0.707895 0.923655 67 | vt 0.707895 0.628412 68 | vt 0.749638 0.628412 69 | vt 0.749638 0.923655 70 | vt 0.849716 0.006757 71 | vt 0.744757 0.614899 72 | vt 0.601065 0.371595 73 | vt 0.601066 0.006763 74 | vt 0.994164 0.250060 75 | vt 0.994164 0.614892 76 | vt 0.803052 0.628412 77 | vt 0.803052 0.923159 78 | vt 0.761309 0.923159 79 | vt 0.761309 0.628412 80 | vt 0.047579 0.695934 81 | vt 0.047579 0.984706 82 | vt 0.005836 0.984706 83 | vt 0.005837 0.695934 84 | vt 0.696223 0.628412 85 | vt 0.696223 0.992328 86 | vt 0.696223 0.993243 87 | vt 0.654481 0.993243 88 | vt 0.654480 0.628412 89 | # 52 texture coordinates 90 | 91 | vn 1.000000 0.000000 -0.000000 92 | vn 0.000000 1.000000 -0.000015 93 | vn 0.000000 0.000008 -1.000000 94 | vn 0.000000 0.566466 0.824085 95 | vn 0.000000 -0.564445 -0.825470 96 | vn 0.000000 -1.000000 0.000015 97 | vn -0.000000 -0.000009 1.000000 98 | # 7 normals 99 | 100 | usemtl None 101 | f 1/1/1 4/2/1 5/3/1 19/4/1 102 | f 13/5/1 21/6/1 22/7/1 17/8/1 103 | f 13/5/1 17/8/1 11/9/1 27/10/1 104 | f 20/11/1 21/6/1 3/12/1 18/13/1 105 | f 3/12/1 21/6/1 13/5/1 106 | f 22/7/1 21/6/1 20/11/1 2/14/1 107 | f 10/15/1 23/16/1 25/17/1 26/18/1 108 | f 26/18/1 25/17/1 6/19/1 24/20/1 109 | f 24/20/1 19/4/1 5/3/1 26/18/1 110 | f 5/3/1 10/15/1 26/18/1 111 | f 4/2/1 1/1/1 18/13/1 3/12/1 112 | f 27/10/1 11/9/1 23/16/1 10/15/1 12/21/1 113 | f 4/22/2 3/23/2 7/24/2 8/25/2 114 | f 5/26/3 4/27/3 8/28/3 9/29/3 115 | f 3/30/4 13/31/4 14/32/4 7/33/4 116 | f 7/34/1 15/35/1 9/36/1 8/37/1 117 | f 14/38/1 16/39/1 15/35/1 7/34/1 118 | f 10/40/5 5/41/5 9/42/5 15/43/5 119 | f 12/44/6 10/45/6 15/46/6 16/47/6 120 | f 13/48/7 27/49/7 12/50/7 16/51/7 14/52/7 121 | 122 | # 20 faces 123 | -------------------------------------------------------------------------------- /sci fi modular/wall 2/wall 2.obj.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="wavefront_obj" 4 | type="Mesh" 5 | path="res://.import/wall 2.obj-3e347378dab86c87a8a4ac5bb6256129.mesh" 6 | 7 | [deps] 8 | 9 | files=[ "res://.import/wall 2.obj-3e347378dab86c87a8a4ac5bb6256129.mesh" ] 10 | 11 | source_file="res://sci-fi modular/wall 2/wall 2.obj" 12 | source_md5="4080b5764ba892859fe68f2e9030a6cc" 13 | 14 | dest_files=[ "res://.import/wall 2.obj-3e347378dab86c87a8a4ac5bb6256129.mesh", "res://.import/wall 2.obj-3e347378dab86c87a8a4ac5bb6256129.mesh" ] 15 | dest_md5="72fff9712d71203b6c9907f2f3827c1f" 16 | 17 | [params] 18 | 19 | generate_tangents=true 20 | -------------------------------------------------------------------------------- /sci fi modular/wall 2/wall 2_Albedo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wburton95/Godot-FPS-Demo/6c31c50920702280601cc5c7ef65cacb65eeda11/sci fi modular/wall 2/wall 2_Albedo.png -------------------------------------------------------------------------------- /sci fi modular/wall 2/wall 2_Albedo.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path.s3tc="res://.import/wall 2_Albedo.png-fa52d7bf94d7021dd69d3f047a05073b.s3tc.stex" 6 | path.etc2="res://.import/wall 2_Albedo.png-fa52d7bf94d7021dd69d3f047a05073b.etc2.stex" 7 | 8 | [deps] 9 | 10 | source_file="res://sci-fi modular/wall 2/wall 2_Albedo.png" 11 | source_md5="8e0c628ebfe2bd7e48a5978c9f7feb42" 12 | 13 | dest_files=[ "res://.import/wall 2_Albedo.png-fa52d7bf94d7021dd69d3f047a05073b.s3tc.stex", "res://.import/wall 2_Albedo.png-fa52d7bf94d7021dd69d3f047a05073b.etc2.stex" ] 14 | dest_md5="b874e75e5494910c6991d14abd530df8" 15 | 16 | [params] 17 | 18 | compress/mode=2 19 | compress/lossy_quality=0.7 20 | compress/hdr_mode=0 21 | compress/normal_map=0 22 | flags/repeat=true 23 | flags/filter=true 24 | flags/mipmaps=true 25 | flags/anisotropic=false 26 | flags/srgb=1 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | stream=false 31 | size_limit=0 32 | detect_3d=false 33 | svg/scale=1.0 34 | -------------------------------------------------------------------------------- /sci fi modular/wall 2/wall 2_Emission.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wburton95/Godot-FPS-Demo/6c31c50920702280601cc5c7ef65cacb65eeda11/sci fi modular/wall 2/wall 2_Emission.png -------------------------------------------------------------------------------- /sci fi modular/wall 2/wall 2_Emission.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/wall 2_Emission.png-c07e871a2e12784fe040abf9d9455375.stex" 6 | 7 | [deps] 8 | 9 | source_file="res://sci-fi modular/wall 2/wall 2_Emission.png" 10 | source_md5="9b00921685afb8cc77218cdf39ce78c2" 11 | 12 | dest_files=[ "res://.import/wall 2_Emission.png-c07e871a2e12784fe040abf9d9455375.stex" ] 13 | dest_md5="b2a026b91140a898553a2900f0c33a93" 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/normal_map=0 21 | flags/repeat=0 22 | flags/filter=true 23 | flags/mipmaps=false 24 | flags/anisotropic=false 25 | flags/srgb=2 26 | process/fix_alpha_border=true 27 | process/premult_alpha=false 28 | process/HDR_as_SRGB=false 29 | stream=false 30 | size_limit=0 31 | detect_3d=true 32 | svg/scale=1.0 33 | -------------------------------------------------------------------------------- /sci fi modular/wall 2/wall 2_Height.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wburton95/Godot-FPS-Demo/6c31c50920702280601cc5c7ef65cacb65eeda11/sci fi modular/wall 2/wall 2_Height.png -------------------------------------------------------------------------------- /sci fi modular/wall 2/wall 2_Height.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/wall 2_Height.png-7d1e1de2f906c1a382d1b22f31343fbc.stex" 6 | 7 | [deps] 8 | 9 | source_file="res://sci-fi modular/wall 2/wall 2_Height.png" 10 | source_md5="b45f4e5ff0e93379f75eaaeda3f336c2" 11 | 12 | dest_files=[ "res://.import/wall 2_Height.png-7d1e1de2f906c1a382d1b22f31343fbc.stex" ] 13 | dest_md5="8381f201186d054f7aa27388abf08f10" 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/normal_map=0 21 | flags/repeat=0 22 | flags/filter=true 23 | flags/mipmaps=false 24 | flags/anisotropic=false 25 | flags/srgb=2 26 | process/fix_alpha_border=true 27 | process/premult_alpha=false 28 | process/HDR_as_SRGB=false 29 | stream=false 30 | size_limit=0 31 | detect_3d=true 32 | svg/scale=1.0 33 | -------------------------------------------------------------------------------- /sci fi modular/wall 2/wall 2_Metallic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wburton95/Godot-FPS-Demo/6c31c50920702280601cc5c7ef65cacb65eeda11/sci fi modular/wall 2/wall 2_Metallic.png -------------------------------------------------------------------------------- /sci fi modular/wall 2/wall 2_Metallic.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path.s3tc="res://.import/wall 2_Metallic.png-9fd77e5e514972c85521c49dd01fe055.s3tc.stex" 6 | path.etc2="res://.import/wall 2_Metallic.png-9fd77e5e514972c85521c49dd01fe055.etc2.stex" 7 | 8 | [deps] 9 | 10 | source_file="res://sci-fi modular/wall 2/wall 2_Metallic.png" 11 | source_md5="72cac66b2c0449bb6679619c594ac79c" 12 | 13 | dest_files=[ "res://.import/wall 2_Metallic.png-9fd77e5e514972c85521c49dd01fe055.s3tc.stex", "res://.import/wall 2_Metallic.png-9fd77e5e514972c85521c49dd01fe055.etc2.stex" ] 14 | dest_md5="9aa48815d0c464135af9f9ac111f2d94" 15 | 16 | [params] 17 | 18 | compress/mode=2 19 | compress/lossy_quality=0.7 20 | compress/hdr_mode=0 21 | compress/normal_map=0 22 | flags/repeat=true 23 | flags/filter=true 24 | flags/mipmaps=true 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | stream=false 31 | size_limit=0 32 | detect_3d=false 33 | svg/scale=1.0 34 | -------------------------------------------------------------------------------- /sci fi modular/wall 2/wall 2_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wburton95/Godot-FPS-Demo/6c31c50920702280601cc5c7ef65cacb65eeda11/sci fi modular/wall 2/wall 2_Normal.png -------------------------------------------------------------------------------- /sci fi modular/wall 2/wall 2_Normal.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path.s3tc="res://.import/wall 2_Normal.png-ec688ac34990b3e85009ba85c07cc83c.s3tc.stex" 6 | path.etc2="res://.import/wall 2_Normal.png-ec688ac34990b3e85009ba85c07cc83c.etc2.stex" 7 | 8 | [deps] 9 | 10 | source_file="res://sci-fi modular/wall 2/wall 2_Normal.png" 11 | source_md5="2313f884c679fa8ed359c0d7da8c5b1d" 12 | 13 | dest_files=[ "res://.import/wall 2_Normal.png-ec688ac34990b3e85009ba85c07cc83c.s3tc.stex", "res://.import/wall 2_Normal.png-ec688ac34990b3e85009ba85c07cc83c.etc2.stex" ] 14 | dest_md5="5c1f304a1c8d6e84a57ea084b1059ca9" 15 | 16 | [params] 17 | 18 | compress/mode=2 19 | compress/lossy_quality=0.7 20 | compress/hdr_mode=0 21 | compress/normal_map=1 22 | flags/repeat=true 23 | flags/filter=true 24 | flags/mipmaps=true 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | stream=false 31 | size_limit=0 32 | detect_3d=false 33 | svg/scale=1.0 34 | -------------------------------------------------------------------------------- /sci fi modular/wall 2/wall 2_Occlusion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wburton95/Godot-FPS-Demo/6c31c50920702280601cc5c7ef65cacb65eeda11/sci fi modular/wall 2/wall 2_Occlusion.png -------------------------------------------------------------------------------- /sci fi modular/wall 2/wall 2_Occlusion.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/wall 2_Occlusion.png-3599ab3eb60af60946ec7fd9d1cac008.stex" 6 | 7 | [deps] 8 | 9 | source_file="res://sci-fi modular/wall 2/wall 2_Occlusion.png" 10 | source_md5="43046d5ed0c864216c36ebff85e5c53d" 11 | 12 | dest_files=[ "res://.import/wall 2_Occlusion.png-3599ab3eb60af60946ec7fd9d1cac008.stex" ] 13 | dest_md5="bf29340e076eb9c1da64cc589e8e4bd9" 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/normal_map=0 21 | flags/repeat=0 22 | flags/filter=true 23 | flags/mipmaps=false 24 | flags/anisotropic=false 25 | flags/srgb=2 26 | process/fix_alpha_border=true 27 | process/premult_alpha=false 28 | process/HDR_as_SRGB=false 29 | stream=false 30 | size_limit=0 31 | detect_3d=true 32 | svg/scale=1.0 33 | --------------------------------------------------------------------------------