├── screenshots ├── .gdignore └── screenshot.png ├── icon.png ├── sample └── Mini Arena │ ├── Visit Patreon.url │ ├── Models │ └── GLB format │ │ ├── block.glb │ │ ├── floor.glb │ │ ├── tree.glb │ │ ├── wall.glb │ │ ├── banner.glb │ │ ├── bricks.glb │ │ ├── column.glb │ │ ├── stairs.glb │ │ ├── statue.glb │ │ ├── trophy.glb │ │ ├── wall-gate.glb │ │ ├── floor-detail.glb │ │ ├── wall-corner.glb │ │ ├── weapon-rack.glb │ │ ├── weapon-spear.glb │ │ ├── weapon-sword.glb │ │ ├── border-corner.glb │ │ ├── border-straight.glb │ │ ├── column-damaged.glb │ │ ├── stairs-corner.glb │ │ ├── Textures │ │ ├── colormap.png │ │ ├── colormap.png.import~RF8ea903a4.TMP │ │ └── colormap.png.import │ │ ├── character-soldier.glb │ │ ├── stairs-corner-inner.glb │ │ ├── colormap.tres │ │ ├── wall.glb.import │ │ ├── floor.glb.import │ │ ├── statue.glb.import │ │ ├── stairs.glb.import │ │ ├── trophy.glb.import │ │ ├── wall-gate.glb.import │ │ ├── floor-detail.glb.import │ │ ├── wall-corner.glb.import │ │ ├── weapon-rack.glb.import │ │ ├── weapon-spear.glb.import │ │ ├── weapon-sword.glb.import │ │ ├── stairs-corner.glb.import │ │ ├── stairs-corner-inner.glb.import │ │ ├── tree.glb.import │ │ ├── block.glb.import │ │ ├── banner.glb.import │ │ ├── bricks.glb.import │ │ ├── column.glb.import │ │ ├── border-corner.glb.import │ │ ├── column-damaged.glb.import │ │ ├── border-straight.glb.import │ │ └── character-soldier.glb.import │ ├── Visit Kenney.url │ └── License.txt ├── .gitattributes ├── splash-screen.png ├── .gitignore ├── project.godot ├── scenes ├── main-environment.tres └── main.tscn ├── icon.png.import ├── splash-screen.png.import ├── LICENSE.md └── README.md /screenshots/.gdignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenneyNL/Starter-Kit-Basic-Scene/HEAD/icon.png -------------------------------------------------------------------------------- /sample/Mini Arena/Visit Patreon.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://www.patreon.com/kenney/ -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Normalize EOL for all files that Git considers text files. 2 | * text=auto eol=lf 3 | -------------------------------------------------------------------------------- /splash-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenneyNL/Starter-Kit-Basic-Scene/HEAD/splash-screen.png -------------------------------------------------------------------------------- /screenshots/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenneyNL/Starter-Kit-Basic-Scene/HEAD/screenshots/screenshot.png -------------------------------------------------------------------------------- /sample/Mini Arena/Models/GLB format/block.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenneyNL/Starter-Kit-Basic-Scene/HEAD/sample/Mini Arena/Models/GLB format/block.glb -------------------------------------------------------------------------------- /sample/Mini Arena/Models/GLB format/floor.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenneyNL/Starter-Kit-Basic-Scene/HEAD/sample/Mini Arena/Models/GLB format/floor.glb -------------------------------------------------------------------------------- /sample/Mini Arena/Models/GLB format/tree.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenneyNL/Starter-Kit-Basic-Scene/HEAD/sample/Mini Arena/Models/GLB format/tree.glb -------------------------------------------------------------------------------- /sample/Mini Arena/Models/GLB format/wall.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenneyNL/Starter-Kit-Basic-Scene/HEAD/sample/Mini Arena/Models/GLB format/wall.glb -------------------------------------------------------------------------------- /sample/Mini Arena/Models/GLB format/banner.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenneyNL/Starter-Kit-Basic-Scene/HEAD/sample/Mini Arena/Models/GLB format/banner.glb -------------------------------------------------------------------------------- /sample/Mini Arena/Models/GLB format/bricks.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenneyNL/Starter-Kit-Basic-Scene/HEAD/sample/Mini Arena/Models/GLB format/bricks.glb -------------------------------------------------------------------------------- /sample/Mini Arena/Models/GLB format/column.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenneyNL/Starter-Kit-Basic-Scene/HEAD/sample/Mini Arena/Models/GLB format/column.glb -------------------------------------------------------------------------------- /sample/Mini Arena/Models/GLB format/stairs.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenneyNL/Starter-Kit-Basic-Scene/HEAD/sample/Mini Arena/Models/GLB format/stairs.glb -------------------------------------------------------------------------------- /sample/Mini Arena/Models/GLB format/statue.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenneyNL/Starter-Kit-Basic-Scene/HEAD/sample/Mini Arena/Models/GLB format/statue.glb -------------------------------------------------------------------------------- /sample/Mini Arena/Models/GLB format/trophy.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenneyNL/Starter-Kit-Basic-Scene/HEAD/sample/Mini Arena/Models/GLB format/trophy.glb -------------------------------------------------------------------------------- /sample/Mini Arena/Models/GLB format/wall-gate.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenneyNL/Starter-Kit-Basic-Scene/HEAD/sample/Mini Arena/Models/GLB format/wall-gate.glb -------------------------------------------------------------------------------- /sample/Mini Arena/Models/GLB format/floor-detail.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenneyNL/Starter-Kit-Basic-Scene/HEAD/sample/Mini Arena/Models/GLB format/floor-detail.glb -------------------------------------------------------------------------------- /sample/Mini Arena/Models/GLB format/wall-corner.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenneyNL/Starter-Kit-Basic-Scene/HEAD/sample/Mini Arena/Models/GLB format/wall-corner.glb -------------------------------------------------------------------------------- /sample/Mini Arena/Models/GLB format/weapon-rack.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenneyNL/Starter-Kit-Basic-Scene/HEAD/sample/Mini Arena/Models/GLB format/weapon-rack.glb -------------------------------------------------------------------------------- /sample/Mini Arena/Models/GLB format/weapon-spear.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenneyNL/Starter-Kit-Basic-Scene/HEAD/sample/Mini Arena/Models/GLB format/weapon-spear.glb -------------------------------------------------------------------------------- /sample/Mini Arena/Models/GLB format/weapon-sword.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenneyNL/Starter-Kit-Basic-Scene/HEAD/sample/Mini Arena/Models/GLB format/weapon-sword.glb -------------------------------------------------------------------------------- /sample/Mini Arena/Visit Kenney.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://kenney.nl/ 3 | IDList= 4 | HotKey=0 5 | [{000214A0-0000-0000-C000-000000000046}] 6 | Prop3=19,11 7 | -------------------------------------------------------------------------------- /sample/Mini Arena/Models/GLB format/border-corner.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenneyNL/Starter-Kit-Basic-Scene/HEAD/sample/Mini Arena/Models/GLB format/border-corner.glb -------------------------------------------------------------------------------- /sample/Mini Arena/Models/GLB format/border-straight.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenneyNL/Starter-Kit-Basic-Scene/HEAD/sample/Mini Arena/Models/GLB format/border-straight.glb -------------------------------------------------------------------------------- /sample/Mini Arena/Models/GLB format/column-damaged.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenneyNL/Starter-Kit-Basic-Scene/HEAD/sample/Mini Arena/Models/GLB format/column-damaged.glb -------------------------------------------------------------------------------- /sample/Mini Arena/Models/GLB format/stairs-corner.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenneyNL/Starter-Kit-Basic-Scene/HEAD/sample/Mini Arena/Models/GLB format/stairs-corner.glb -------------------------------------------------------------------------------- /sample/Mini Arena/Models/GLB format/Textures/colormap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenneyNL/Starter-Kit-Basic-Scene/HEAD/sample/Mini Arena/Models/GLB format/Textures/colormap.png -------------------------------------------------------------------------------- /sample/Mini Arena/Models/GLB format/character-soldier.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenneyNL/Starter-Kit-Basic-Scene/HEAD/sample/Mini Arena/Models/GLB format/character-soldier.glb -------------------------------------------------------------------------------- /sample/Mini Arena/Models/GLB format/stairs-corner-inner.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenneyNL/Starter-Kit-Basic-Scene/HEAD/sample/Mini Arena/Models/GLB format/stairs-corner-inner.glb -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Godot 4+ specific ignores 2 | .godot/ 3 | 4 | # Godot-specific ignores 5 | .import/ 6 | export.cfg 7 | export_presets.cfg 8 | 9 | # Imported translations (automatically generated from CSV files) 10 | *.translation 11 | 12 | # Mono-specific ignores 13 | .mono/ 14 | data_*/ 15 | mono_crash.*.json 16 | 17 | # Kenney ignores 18 | build/ -------------------------------------------------------------------------------- /sample/Mini Arena/Models/GLB format/colormap.tres: -------------------------------------------------------------------------------- 1 | [gd_resource type="StandardMaterial3D" load_steps=2 format=3 uid="uid://b26esyetp45oo"] 2 | 3 | [ext_resource type="Texture2D" uid="uid://baixwudg5xon8" path="res://sample/Mini Arena/Models/GLB format/Textures/colormap.png" id="1_rvrw5"] 4 | 5 | [resource] 6 | resource_name = "colormap" 7 | albedo_texture = ExtResource("1_rvrw5") 8 | -------------------------------------------------------------------------------- /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=5 10 | 11 | [application] 12 | 13 | config/name="Starter Kit Basic Scene" 14 | config/tags=PackedStringArray("starterkit") 15 | run/main_scene="res://scenes/main.tscn" 16 | config/features=PackedStringArray("4.5", "Forward Plus") 17 | boot_splash/bg_color=Color(0.92549, 0.92549, 0.960784, 1) 18 | boot_splash/image="res://splash-screen.png" 19 | config/icon="res://icon.png" 20 | 21 | [rendering] 22 | 23 | anti_aliasing/quality/msaa_3d=2 24 | -------------------------------------------------------------------------------- /sample/Mini Arena/License.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | Mini Arena (1.0) 4 | 5 | Created/distributed by Kenney (www.kenney.nl) 6 | Creation date: 16-01-2024 10:43 7 | Additional credit(s): Tony Schär 8 | 9 | ------------------------------ 10 | 11 | License: (Creative Commons Zero, CC0) 12 | http://creativecommons.org/publicdomain/zero/1.0/ 13 | 14 | You can use this content for personal, educational, and commercial purposes. 15 | 16 | Support by crediting 'Kenney' or 'www.kenney.nl' (this is not a requirement) 17 | 18 | ------------------------------ 19 | 20 | • Website : www.kenney.nl 21 | • Donate : www.kenney.nl/donate 22 | 23 | • Patreon : patreon.com/kenney 24 | 25 | Follow on social media for updates: 26 | 27 | • Twitter: twitter.com/KenneyNL 28 | • Instagram: instagram.com/kenney_nl 29 | • Mastodon: mastodon.gamedev.place/@kenney 30 | -------------------------------------------------------------------------------- /scenes/main-environment.tres: -------------------------------------------------------------------------------- 1 | [gd_resource type="Environment" load_steps=3 format=3 uid="uid://cm77bbr0io118"] 2 | 3 | [sub_resource type="ProceduralSkyMaterial" id="ProceduralSkyMaterial_lg8b7"] 4 | sky_horizon_color = Color(0.67451, 0.682353, 0.698039, 1) 5 | sky_curve = 0.0175 6 | ground_bottom_color = Color(1, 1, 1, 1) 7 | ground_curve = 0.171484 8 | 9 | [sub_resource type="Sky" id="Sky_7bk1c"] 10 | sky_material = SubResource("ProceduralSkyMaterial_lg8b7") 11 | 12 | [resource] 13 | background_mode = 1 14 | background_color = Color(0.6623997, 0.6923149, 0.7573566, 1) 15 | sky = SubResource("Sky_7bk1c") 16 | ambient_light_source = 2 17 | ambient_light_color = Color(0.49509078, 0.48156148, 0.564907, 1) 18 | ambient_light_energy = 1.15 19 | tonemap_mode = 2 20 | ssao_enabled = true 21 | ssao_radius = 0.3 22 | ssao_intensity = 0.5 23 | ssao_power = 15.0 24 | glow_levels/2 = 0.6 25 | glow_levels/3 = 0.6 26 | glow_levels/5 = 0.0 27 | glow_intensity = 2.0 28 | adjustment_enabled = true 29 | -------------------------------------------------------------------------------- /sample/Mini Arena/Models/GLB format/Textures/colormap.png.import~RF8ea903a4.TMP: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://oae7stnemsm" 6 | path="res://.godot/imported/colormap.png-31b00553903a3328299ec0f15983bf9f.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://sample/Mini Arena/Models/GLB format/Textures/colormap.png" 14 | dest_files=["res://.godot/imported/colormap.png-31b00553903a3328299ec0f15983bf9f.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=1 19 | compress/high_quality=true 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=true 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=0 35 | -------------------------------------------------------------------------------- /icon.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://c18hu0jf0r71c" 6 | path="res://.godot/imported/icon.png-487276ed1e3a0c39cad0279d744ee560.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://icon.png" 14 | dest_files=["res://.godot/imported/icon.png-487276ed1e3a0c39cad0279d744ee560.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/uastc_level=0 22 | compress/rdo_quality_loss=0.0 23 | compress/hdr_compression=1 24 | compress/normal_map=0 25 | compress/channel_pack=0 26 | mipmaps/generate=false 27 | mipmaps/limit=-1 28 | roughness/mode=0 29 | roughness/src_normal="" 30 | process/channel_remap/red=0 31 | process/channel_remap/green=1 32 | process/channel_remap/blue=2 33 | process/channel_remap/alpha=3 34 | process/fix_alpha_border=true 35 | process/premult_alpha=false 36 | process/normal_map_invert_y=false 37 | process/hdr_as_srgb=false 38 | process/hdr_clamp_exposure=false 39 | process/size_limit=0 40 | detect_3d/compress_to=1 41 | -------------------------------------------------------------------------------- /splash-screen.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://di52qhsg2xl5x" 6 | path="res://.godot/imported/splash-screen.png-ae6c8b07e185ee8a074576008d9ccc5a.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://splash-screen.png" 14 | dest_files=["res://.godot/imported/splash-screen.png-ae6c8b07e185ee8a074576008d9ccc5a.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/uastc_level=0 22 | compress/rdo_quality_loss=0.0 23 | compress/hdr_compression=1 24 | compress/normal_map=0 25 | compress/channel_pack=0 26 | mipmaps/generate=false 27 | mipmaps/limit=-1 28 | roughness/mode=0 29 | roughness/src_normal="" 30 | process/channel_remap/red=0 31 | process/channel_remap/green=1 32 | process/channel_remap/blue=2 33 | process/channel_remap/alpha=3 34 | process/fix_alpha_border=true 35 | process/premult_alpha=false 36 | process/normal_map_invert_y=false 37 | process/hdr_as_srgb=false 38 | process/hdr_clamp_exposure=false 39 | process/size_limit=0 40 | detect_3d/compress_to=1 41 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2025 Kenney 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 | -------------------------------------------------------------------------------- /sample/Mini Arena/Models/GLB format/Textures/colormap.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://baixwudg5xon8" 6 | path="res://.godot/imported/colormap.png-31b00553903a3328299ec0f15983bf9f.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://sample/Mini Arena/Models/GLB format/Textures/colormap.png" 14 | dest_files=["res://.godot/imported/colormap.png-31b00553903a3328299ec0f15983bf9f.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=true 20 | compress/lossy_quality=0.7 21 | compress/uastc_level=0 22 | compress/rdo_quality_loss=0.0 23 | compress/hdr_compression=1 24 | compress/normal_map=0 25 | compress/channel_pack=0 26 | mipmaps/generate=false 27 | mipmaps/limit=-1 28 | roughness/mode=0 29 | roughness/src_normal="" 30 | process/channel_remap/red=0 31 | process/channel_remap/green=1 32 | process/channel_remap/blue=2 33 | process/channel_remap/alpha=3 34 | process/fix_alpha_border=true 35 | process/premult_alpha=false 36 | process/normal_map_invert_y=false 37 | process/hdr_as_srgb=false 38 | process/hdr_clamp_exposure=false 39 | process/size_limit=0 40 | detect_3d/compress_to=0 41 | -------------------------------------------------------------------------------- /sample/Mini Arena/Models/GLB format/wall.glb.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="scene" 4 | importer_version=1 5 | type="PackedScene" 6 | uid="uid://cyx5534vfnmet" 7 | path="res://.godot/imported/wall.glb-dbf7347d57f923987112f5fa91bca360.scn" 8 | 9 | [deps] 10 | 11 | source_file="res://sample/Mini Arena/Models/GLB format/wall.glb" 12 | dest_files=["res://.godot/imported/wall.glb-dbf7347d57f923987112f5fa91bca360.scn"] 13 | 14 | [params] 15 | 16 | nodes/root_type="" 17 | nodes/root_name="" 18 | nodes/root_script=null 19 | nodes/apply_root_scale=true 20 | nodes/root_scale=1.0 21 | nodes/import_as_skeleton_bones=false 22 | nodes/use_name_suffixes=true 23 | nodes/use_node_type_suffixes=true 24 | meshes/ensure_tangents=true 25 | meshes/generate_lods=true 26 | meshes/create_shadow_meshes=true 27 | meshes/light_baking=1 28 | meshes/lightmap_texel_size=0.2 29 | meshes/force_disable_compression=false 30 | skins/use_named_skins=true 31 | animation/import=true 32 | animation/fps=30 33 | animation/trimming=false 34 | animation/remove_immutable_tracks=true 35 | animation/import_rest_as_RESET=false 36 | import_script/path="" 37 | materials/extract=1 38 | materials/extract_format=0 39 | materials/extract_path="" 40 | _subresources={} 41 | gltf/naming_version=1 42 | gltf/embedded_image_handling=1 43 | -------------------------------------------------------------------------------- /sample/Mini Arena/Models/GLB format/floor.glb.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="scene" 4 | importer_version=1 5 | type="PackedScene" 6 | uid="uid://cjst8buukppv7" 7 | path="res://.godot/imported/floor.glb-e7245680af5efa9412253e11cd009eba.scn" 8 | 9 | [deps] 10 | 11 | source_file="res://sample/Mini Arena/Models/GLB format/floor.glb" 12 | dest_files=["res://.godot/imported/floor.glb-e7245680af5efa9412253e11cd009eba.scn"] 13 | 14 | [params] 15 | 16 | nodes/root_type="" 17 | nodes/root_name="" 18 | nodes/root_script=null 19 | nodes/apply_root_scale=true 20 | nodes/root_scale=1.0 21 | nodes/import_as_skeleton_bones=false 22 | nodes/use_name_suffixes=true 23 | nodes/use_node_type_suffixes=true 24 | meshes/ensure_tangents=true 25 | meshes/generate_lods=true 26 | meshes/create_shadow_meshes=true 27 | meshes/light_baking=1 28 | meshes/lightmap_texel_size=0.2 29 | meshes/force_disable_compression=false 30 | skins/use_named_skins=true 31 | animation/import=true 32 | animation/fps=30 33 | animation/trimming=false 34 | animation/remove_immutable_tracks=true 35 | animation/import_rest_as_RESET=false 36 | import_script/path="" 37 | materials/extract=1 38 | materials/extract_format=0 39 | materials/extract_path="" 40 | _subresources={} 41 | gltf/naming_version=1 42 | gltf/embedded_image_handling=1 43 | -------------------------------------------------------------------------------- /sample/Mini Arena/Models/GLB format/statue.glb.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="scene" 4 | importer_version=1 5 | type="PackedScene" 6 | uid="uid://nl2p4gn2t5ke" 7 | path="res://.godot/imported/statue.glb-7b25102e38c6873c893fc6f5caacf011.scn" 8 | 9 | [deps] 10 | 11 | source_file="res://sample/Mini Arena/Models/GLB format/statue.glb" 12 | dest_files=["res://.godot/imported/statue.glb-7b25102e38c6873c893fc6f5caacf011.scn"] 13 | 14 | [params] 15 | 16 | nodes/root_type="" 17 | nodes/root_name="" 18 | nodes/root_script=null 19 | nodes/apply_root_scale=true 20 | nodes/root_scale=1.0 21 | nodes/import_as_skeleton_bones=false 22 | nodes/use_name_suffixes=true 23 | nodes/use_node_type_suffixes=true 24 | meshes/ensure_tangents=true 25 | meshes/generate_lods=true 26 | meshes/create_shadow_meshes=true 27 | meshes/light_baking=1 28 | meshes/lightmap_texel_size=0.2 29 | meshes/force_disable_compression=false 30 | skins/use_named_skins=true 31 | animation/import=true 32 | animation/fps=30 33 | animation/trimming=false 34 | animation/remove_immutable_tracks=true 35 | animation/import_rest_as_RESET=false 36 | import_script/path="" 37 | materials/extract=1 38 | materials/extract_format=0 39 | materials/extract_path="" 40 | _subresources={} 41 | gltf/naming_version=1 42 | gltf/embedded_image_handling=1 43 | -------------------------------------------------------------------------------- /sample/Mini Arena/Models/GLB format/stairs.glb.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="scene" 4 | importer_version=1 5 | type="PackedScene" 6 | uid="uid://dr5xx7uhowqc2" 7 | path="res://.godot/imported/stairs.glb-b836a3647b3ff273d03da9ac14d4cc58.scn" 8 | 9 | [deps] 10 | 11 | source_file="res://sample/Mini Arena/Models/GLB format/stairs.glb" 12 | dest_files=["res://.godot/imported/stairs.glb-b836a3647b3ff273d03da9ac14d4cc58.scn"] 13 | 14 | [params] 15 | 16 | nodes/root_type="" 17 | nodes/root_name="" 18 | nodes/root_script=null 19 | nodes/apply_root_scale=true 20 | nodes/root_scale=1.0 21 | nodes/import_as_skeleton_bones=false 22 | nodes/use_name_suffixes=true 23 | nodes/use_node_type_suffixes=true 24 | meshes/ensure_tangents=true 25 | meshes/generate_lods=true 26 | meshes/create_shadow_meshes=true 27 | meshes/light_baking=1 28 | meshes/lightmap_texel_size=0.2 29 | meshes/force_disable_compression=false 30 | skins/use_named_skins=true 31 | animation/import=true 32 | animation/fps=30 33 | animation/trimming=false 34 | animation/remove_immutable_tracks=true 35 | animation/import_rest_as_RESET=false 36 | import_script/path="" 37 | materials/extract=1 38 | materials/extract_format=0 39 | materials/extract_path="" 40 | _subresources={} 41 | gltf/naming_version=1 42 | gltf/embedded_image_handling=1 43 | -------------------------------------------------------------------------------- /sample/Mini Arena/Models/GLB format/trophy.glb.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="scene" 4 | importer_version=1 5 | type="PackedScene" 6 | uid="uid://c6djdyyexv0ax" 7 | path="res://.godot/imported/trophy.glb-572ca120ae84430440365f2d690a3773.scn" 8 | 9 | [deps] 10 | 11 | source_file="res://sample/Mini Arena/Models/GLB format/trophy.glb" 12 | dest_files=["res://.godot/imported/trophy.glb-572ca120ae84430440365f2d690a3773.scn"] 13 | 14 | [params] 15 | 16 | nodes/root_type="" 17 | nodes/root_name="" 18 | nodes/root_script=null 19 | nodes/apply_root_scale=true 20 | nodes/root_scale=1.0 21 | nodes/import_as_skeleton_bones=false 22 | nodes/use_name_suffixes=true 23 | nodes/use_node_type_suffixes=true 24 | meshes/ensure_tangents=true 25 | meshes/generate_lods=true 26 | meshes/create_shadow_meshes=true 27 | meshes/light_baking=1 28 | meshes/lightmap_texel_size=0.2 29 | meshes/force_disable_compression=false 30 | skins/use_named_skins=true 31 | animation/import=true 32 | animation/fps=30 33 | animation/trimming=false 34 | animation/remove_immutable_tracks=true 35 | animation/import_rest_as_RESET=false 36 | import_script/path="" 37 | materials/extract=1 38 | materials/extract_format=0 39 | materials/extract_path="" 40 | _subresources={} 41 | gltf/naming_version=1 42 | gltf/embedded_image_handling=1 43 | -------------------------------------------------------------------------------- /sample/Mini Arena/Models/GLB format/wall-gate.glb.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="scene" 4 | importer_version=1 5 | type="PackedScene" 6 | uid="uid://c2ak8n453so1a" 7 | path="res://.godot/imported/wall-gate.glb-76f25aadbbd273421c0d1aeff6e17202.scn" 8 | 9 | [deps] 10 | 11 | source_file="res://sample/Mini Arena/Models/GLB format/wall-gate.glb" 12 | dest_files=["res://.godot/imported/wall-gate.glb-76f25aadbbd273421c0d1aeff6e17202.scn"] 13 | 14 | [params] 15 | 16 | nodes/root_type="" 17 | nodes/root_name="" 18 | nodes/root_script=null 19 | nodes/apply_root_scale=true 20 | nodes/root_scale=1.0 21 | nodes/import_as_skeleton_bones=false 22 | nodes/use_name_suffixes=true 23 | nodes/use_node_type_suffixes=true 24 | meshes/ensure_tangents=true 25 | meshes/generate_lods=true 26 | meshes/create_shadow_meshes=true 27 | meshes/light_baking=1 28 | meshes/lightmap_texel_size=0.2 29 | meshes/force_disable_compression=false 30 | skins/use_named_skins=true 31 | animation/import=true 32 | animation/fps=30 33 | animation/trimming=false 34 | animation/remove_immutable_tracks=true 35 | animation/import_rest_as_RESET=false 36 | import_script/path="" 37 | materials/extract=1 38 | materials/extract_format=0 39 | materials/extract_path="" 40 | _subresources={} 41 | gltf/naming_version=1 42 | gltf/embedded_image_handling=1 43 | -------------------------------------------------------------------------------- /sample/Mini Arena/Models/GLB format/floor-detail.glb.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="scene" 4 | importer_version=1 5 | type="PackedScene" 6 | uid="uid://ccjy7ui6xlri8" 7 | path="res://.godot/imported/floor-detail.glb-251c50208637e46c23d10bf7f2e96cb1.scn" 8 | 9 | [deps] 10 | 11 | source_file="res://sample/Mini Arena/Models/GLB format/floor-detail.glb" 12 | dest_files=["res://.godot/imported/floor-detail.glb-251c50208637e46c23d10bf7f2e96cb1.scn"] 13 | 14 | [params] 15 | 16 | nodes/root_type="" 17 | nodes/root_name="" 18 | nodes/root_script=null 19 | nodes/apply_root_scale=true 20 | nodes/root_scale=1.0 21 | nodes/import_as_skeleton_bones=false 22 | nodes/use_name_suffixes=true 23 | nodes/use_node_type_suffixes=true 24 | meshes/ensure_tangents=true 25 | meshes/generate_lods=true 26 | meshes/create_shadow_meshes=true 27 | meshes/light_baking=1 28 | meshes/lightmap_texel_size=0.2 29 | meshes/force_disable_compression=false 30 | skins/use_named_skins=true 31 | animation/import=true 32 | animation/fps=30 33 | animation/trimming=false 34 | animation/remove_immutable_tracks=true 35 | animation/import_rest_as_RESET=false 36 | import_script/path="" 37 | materials/extract=1 38 | materials/extract_format=0 39 | materials/extract_path="" 40 | _subresources={} 41 | gltf/naming_version=1 42 | gltf/embedded_image_handling=1 43 | -------------------------------------------------------------------------------- /sample/Mini Arena/Models/GLB format/wall-corner.glb.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="scene" 4 | importer_version=1 5 | type="PackedScene" 6 | uid="uid://c02x4gktaww46" 7 | path="res://.godot/imported/wall-corner.glb-e887c9dbc5a97d5f9f1d6187f56cd3f0.scn" 8 | 9 | [deps] 10 | 11 | source_file="res://sample/Mini Arena/Models/GLB format/wall-corner.glb" 12 | dest_files=["res://.godot/imported/wall-corner.glb-e887c9dbc5a97d5f9f1d6187f56cd3f0.scn"] 13 | 14 | [params] 15 | 16 | nodes/root_type="" 17 | nodes/root_name="" 18 | nodes/root_script=null 19 | nodes/apply_root_scale=true 20 | nodes/root_scale=1.0 21 | nodes/import_as_skeleton_bones=false 22 | nodes/use_name_suffixes=true 23 | nodes/use_node_type_suffixes=true 24 | meshes/ensure_tangents=true 25 | meshes/generate_lods=true 26 | meshes/create_shadow_meshes=true 27 | meshes/light_baking=1 28 | meshes/lightmap_texel_size=0.2 29 | meshes/force_disable_compression=false 30 | skins/use_named_skins=true 31 | animation/import=true 32 | animation/fps=30 33 | animation/trimming=false 34 | animation/remove_immutable_tracks=true 35 | animation/import_rest_as_RESET=false 36 | import_script/path="" 37 | materials/extract=1 38 | materials/extract_format=0 39 | materials/extract_path="" 40 | _subresources={} 41 | gltf/naming_version=1 42 | gltf/embedded_image_handling=1 43 | -------------------------------------------------------------------------------- /sample/Mini Arena/Models/GLB format/weapon-rack.glb.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="scene" 4 | importer_version=1 5 | type="PackedScene" 6 | uid="uid://dwf4kcwuwcan4" 7 | path="res://.godot/imported/weapon-rack.glb-c6596bd2b7b32ad025ce4926812b9d69.scn" 8 | 9 | [deps] 10 | 11 | source_file="res://sample/Mini Arena/Models/GLB format/weapon-rack.glb" 12 | dest_files=["res://.godot/imported/weapon-rack.glb-c6596bd2b7b32ad025ce4926812b9d69.scn"] 13 | 14 | [params] 15 | 16 | nodes/root_type="" 17 | nodes/root_name="" 18 | nodes/root_script=null 19 | nodes/apply_root_scale=true 20 | nodes/root_scale=1.0 21 | nodes/import_as_skeleton_bones=false 22 | nodes/use_name_suffixes=true 23 | nodes/use_node_type_suffixes=true 24 | meshes/ensure_tangents=true 25 | meshes/generate_lods=true 26 | meshes/create_shadow_meshes=true 27 | meshes/light_baking=1 28 | meshes/lightmap_texel_size=0.2 29 | meshes/force_disable_compression=false 30 | skins/use_named_skins=true 31 | animation/import=true 32 | animation/fps=30 33 | animation/trimming=false 34 | animation/remove_immutable_tracks=true 35 | animation/import_rest_as_RESET=false 36 | import_script/path="" 37 | materials/extract=1 38 | materials/extract_format=0 39 | materials/extract_path="" 40 | _subresources={} 41 | gltf/naming_version=1 42 | gltf/embedded_image_handling=1 43 | -------------------------------------------------------------------------------- /sample/Mini Arena/Models/GLB format/weapon-spear.glb.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="scene" 4 | importer_version=1 5 | type="PackedScene" 6 | uid="uid://cuiupy264bna8" 7 | path="res://.godot/imported/weapon-spear.glb-f6470bec4642541df374c33f7dc4bbac.scn" 8 | 9 | [deps] 10 | 11 | source_file="res://sample/Mini Arena/Models/GLB format/weapon-spear.glb" 12 | dest_files=["res://.godot/imported/weapon-spear.glb-f6470bec4642541df374c33f7dc4bbac.scn"] 13 | 14 | [params] 15 | 16 | nodes/root_type="" 17 | nodes/root_name="" 18 | nodes/root_script=null 19 | nodes/apply_root_scale=true 20 | nodes/root_scale=1.0 21 | nodes/import_as_skeleton_bones=false 22 | nodes/use_name_suffixes=true 23 | nodes/use_node_type_suffixes=true 24 | meshes/ensure_tangents=true 25 | meshes/generate_lods=true 26 | meshes/create_shadow_meshes=true 27 | meshes/light_baking=1 28 | meshes/lightmap_texel_size=0.2 29 | meshes/force_disable_compression=false 30 | skins/use_named_skins=true 31 | animation/import=true 32 | animation/fps=30 33 | animation/trimming=false 34 | animation/remove_immutable_tracks=true 35 | animation/import_rest_as_RESET=false 36 | import_script/path="" 37 | materials/extract=1 38 | materials/extract_format=0 39 | materials/extract_path="" 40 | _subresources={} 41 | gltf/naming_version=1 42 | gltf/embedded_image_handling=1 43 | -------------------------------------------------------------------------------- /sample/Mini Arena/Models/GLB format/weapon-sword.glb.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="scene" 4 | importer_version=1 5 | type="PackedScene" 6 | uid="uid://bnm83q6iqa5tt" 7 | path="res://.godot/imported/weapon-sword.glb-7f5f6c4fa282f36ee517a372ea71be7b.scn" 8 | 9 | [deps] 10 | 11 | source_file="res://sample/Mini Arena/Models/GLB format/weapon-sword.glb" 12 | dest_files=["res://.godot/imported/weapon-sword.glb-7f5f6c4fa282f36ee517a372ea71be7b.scn"] 13 | 14 | [params] 15 | 16 | nodes/root_type="" 17 | nodes/root_name="" 18 | nodes/root_script=null 19 | nodes/apply_root_scale=true 20 | nodes/root_scale=1.0 21 | nodes/import_as_skeleton_bones=false 22 | nodes/use_name_suffixes=true 23 | nodes/use_node_type_suffixes=true 24 | meshes/ensure_tangents=true 25 | meshes/generate_lods=true 26 | meshes/create_shadow_meshes=true 27 | meshes/light_baking=1 28 | meshes/lightmap_texel_size=0.2 29 | meshes/force_disable_compression=false 30 | skins/use_named_skins=true 31 | animation/import=true 32 | animation/fps=30 33 | animation/trimming=false 34 | animation/remove_immutable_tracks=true 35 | animation/import_rest_as_RESET=false 36 | import_script/path="" 37 | materials/extract=1 38 | materials/extract_format=0 39 | materials/extract_path="" 40 | _subresources={} 41 | gltf/naming_version=1 42 | gltf/embedded_image_handling=1 43 | -------------------------------------------------------------------------------- /sample/Mini Arena/Models/GLB format/stairs-corner.glb.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="scene" 4 | importer_version=1 5 | type="PackedScene" 6 | uid="uid://cphw0uuofo5j" 7 | path="res://.godot/imported/stairs-corner.glb-73ede80e4408446ad00c238127c26cd6.scn" 8 | 9 | [deps] 10 | 11 | source_file="res://sample/Mini Arena/Models/GLB format/stairs-corner.glb" 12 | dest_files=["res://.godot/imported/stairs-corner.glb-73ede80e4408446ad00c238127c26cd6.scn"] 13 | 14 | [params] 15 | 16 | nodes/root_type="" 17 | nodes/root_name="" 18 | nodes/root_script=null 19 | nodes/apply_root_scale=true 20 | nodes/root_scale=1.0 21 | nodes/import_as_skeleton_bones=false 22 | nodes/use_name_suffixes=true 23 | nodes/use_node_type_suffixes=true 24 | meshes/ensure_tangents=true 25 | meshes/generate_lods=true 26 | meshes/create_shadow_meshes=true 27 | meshes/light_baking=1 28 | meshes/lightmap_texel_size=0.2 29 | meshes/force_disable_compression=false 30 | skins/use_named_skins=true 31 | animation/import=true 32 | animation/fps=30 33 | animation/trimming=false 34 | animation/remove_immutable_tracks=true 35 | animation/import_rest_as_RESET=false 36 | import_script/path="" 37 | materials/extract=1 38 | materials/extract_format=0 39 | materials/extract_path="" 40 | _subresources={} 41 | gltf/naming_version=1 42 | gltf/embedded_image_handling=1 43 | -------------------------------------------------------------------------------- /sample/Mini Arena/Models/GLB format/stairs-corner-inner.glb.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="scene" 4 | importer_version=1 5 | type="PackedScene" 6 | uid="uid://gqc2ys501ji8" 7 | path="res://.godot/imported/stairs-corner-inner.glb-ac0ef996f5fbea2b1d001654451dfac9.scn" 8 | 9 | [deps] 10 | 11 | source_file="res://sample/Mini Arena/Models/GLB format/stairs-corner-inner.glb" 12 | dest_files=["res://.godot/imported/stairs-corner-inner.glb-ac0ef996f5fbea2b1d001654451dfac9.scn"] 13 | 14 | [params] 15 | 16 | nodes/root_type="" 17 | nodes/root_name="" 18 | nodes/root_script=null 19 | nodes/apply_root_scale=true 20 | nodes/root_scale=1.0 21 | nodes/import_as_skeleton_bones=false 22 | nodes/use_name_suffixes=true 23 | nodes/use_node_type_suffixes=true 24 | meshes/ensure_tangents=true 25 | meshes/generate_lods=true 26 | meshes/create_shadow_meshes=true 27 | meshes/light_baking=1 28 | meshes/lightmap_texel_size=0.2 29 | meshes/force_disable_compression=false 30 | skins/use_named_skins=true 31 | animation/import=true 32 | animation/fps=30 33 | animation/trimming=false 34 | animation/remove_immutable_tracks=true 35 | animation/import_rest_as_RESET=false 36 | import_script/path="" 37 | materials/extract=1 38 | materials/extract_format=0 39 | materials/extract_path="" 40 | _subresources={} 41 | gltf/naming_version=1 42 | gltf/embedded_image_handling=1 43 | -------------------------------------------------------------------------------- /sample/Mini Arena/Models/GLB format/tree.glb.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="scene" 4 | importer_version=1 5 | type="PackedScene" 6 | uid="uid://gaivtq4jlu8u" 7 | path="res://.godot/imported/tree.glb-61e7eade82b1315ecd925ca7e94fe2de.scn" 8 | 9 | [deps] 10 | 11 | source_file="res://sample/Mini Arena/Models/GLB format/tree.glb" 12 | dest_files=["res://.godot/imported/tree.glb-61e7eade82b1315ecd925ca7e94fe2de.scn"] 13 | 14 | [params] 15 | 16 | nodes/root_type="" 17 | nodes/root_name="" 18 | nodes/root_script=null 19 | nodes/apply_root_scale=true 20 | nodes/root_scale=1.0 21 | nodes/import_as_skeleton_bones=false 22 | nodes/use_name_suffixes=true 23 | nodes/use_node_type_suffixes=true 24 | meshes/ensure_tangents=true 25 | meshes/generate_lods=true 26 | meshes/create_shadow_meshes=true 27 | meshes/light_baking=1 28 | meshes/lightmap_texel_size=0.2 29 | meshes/force_disable_compression=false 30 | skins/use_named_skins=true 31 | animation/import=true 32 | animation/fps=30 33 | animation/trimming=false 34 | animation/remove_immutable_tracks=true 35 | animation/import_rest_as_RESET=false 36 | import_script/path="" 37 | materials/extract=1 38 | materials/extract_format=0 39 | materials/extract_path="" 40 | _subresources={ 41 | "materials": { 42 | "colormap": { 43 | "use_external/enabled": true, 44 | "use_external/fallback_path": "res://sample/Mini Arena/Models/GLB format/colormap.tres", 45 | "use_external/path": "uid://b26esyetp45oo" 46 | } 47 | } 48 | } 49 | gltf/naming_version=1 50 | gltf/embedded_image_handling=1 51 | -------------------------------------------------------------------------------- /sample/Mini Arena/Models/GLB format/block.glb.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="scene" 4 | importer_version=1 5 | type="PackedScene" 6 | uid="uid://cvxmmqmklt672" 7 | path="res://.godot/imported/block.glb-7233c98f847a0f11202c7cf6857478dc.scn" 8 | 9 | [deps] 10 | 11 | source_file="res://sample/Mini Arena/Models/GLB format/block.glb" 12 | dest_files=["res://.godot/imported/block.glb-7233c98f847a0f11202c7cf6857478dc.scn"] 13 | 14 | [params] 15 | 16 | nodes/root_type="" 17 | nodes/root_name="" 18 | nodes/root_script=null 19 | nodes/apply_root_scale=true 20 | nodes/root_scale=1.0 21 | nodes/import_as_skeleton_bones=false 22 | nodes/use_name_suffixes=true 23 | nodes/use_node_type_suffixes=true 24 | meshes/ensure_tangents=true 25 | meshes/generate_lods=true 26 | meshes/create_shadow_meshes=true 27 | meshes/light_baking=1 28 | meshes/lightmap_texel_size=0.2 29 | meshes/force_disable_compression=false 30 | skins/use_named_skins=true 31 | animation/import=true 32 | animation/fps=30 33 | animation/trimming=false 34 | animation/remove_immutable_tracks=true 35 | animation/import_rest_as_RESET=false 36 | import_script/path="" 37 | materials/extract=1 38 | materials/extract_format=0 39 | materials/extract_path="" 40 | _subresources={ 41 | "materials": { 42 | "colormap": { 43 | "use_external/enabled": true, 44 | "use_external/fallback_path": "res://sample/Mini Arena/Models/GLB format/colormap.tres", 45 | "use_external/path": "uid://b26esyetp45oo" 46 | } 47 | } 48 | } 49 | gltf/naming_version=1 50 | gltf/embedded_image_handling=1 51 | -------------------------------------------------------------------------------- /sample/Mini Arena/Models/GLB format/banner.glb.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="scene" 4 | importer_version=1 5 | type="PackedScene" 6 | uid="uid://bqxa36hkpl1hj" 7 | path="res://.godot/imported/banner.glb-3ddda78a0b6fd9a1f4e0a792f50eb3bc.scn" 8 | 9 | [deps] 10 | 11 | source_file="res://sample/Mini Arena/Models/GLB format/banner.glb" 12 | dest_files=["res://.godot/imported/banner.glb-3ddda78a0b6fd9a1f4e0a792f50eb3bc.scn"] 13 | 14 | [params] 15 | 16 | nodes/root_type="" 17 | nodes/root_name="" 18 | nodes/root_script=null 19 | nodes/apply_root_scale=true 20 | nodes/root_scale=1.0 21 | nodes/import_as_skeleton_bones=false 22 | nodes/use_name_suffixes=true 23 | nodes/use_node_type_suffixes=true 24 | meshes/ensure_tangents=true 25 | meshes/generate_lods=true 26 | meshes/create_shadow_meshes=true 27 | meshes/light_baking=1 28 | meshes/lightmap_texel_size=0.2 29 | meshes/force_disable_compression=false 30 | skins/use_named_skins=true 31 | animation/import=true 32 | animation/fps=30 33 | animation/trimming=false 34 | animation/remove_immutable_tracks=true 35 | animation/import_rest_as_RESET=false 36 | import_script/path="" 37 | materials/extract=1 38 | materials/extract_format=0 39 | materials/extract_path="" 40 | _subresources={ 41 | "materials": { 42 | "colormap": { 43 | "use_external/enabled": true, 44 | "use_external/fallback_path": "res://sample/Mini Arena/Models/GLB format/colormap.tres", 45 | "use_external/path": "uid://b26esyetp45oo" 46 | } 47 | } 48 | } 49 | gltf/naming_version=1 50 | gltf/embedded_image_handling=1 51 | -------------------------------------------------------------------------------- /sample/Mini Arena/Models/GLB format/bricks.glb.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="scene" 4 | importer_version=1 5 | type="PackedScene" 6 | uid="uid://dp4f8paatagro" 7 | path="res://.godot/imported/bricks.glb-b90bcbf6332c905d1383f385b6027b1a.scn" 8 | 9 | [deps] 10 | 11 | source_file="res://sample/Mini Arena/Models/GLB format/bricks.glb" 12 | dest_files=["res://.godot/imported/bricks.glb-b90bcbf6332c905d1383f385b6027b1a.scn"] 13 | 14 | [params] 15 | 16 | nodes/root_type="" 17 | nodes/root_name="" 18 | nodes/root_script=null 19 | nodes/apply_root_scale=true 20 | nodes/root_scale=1.0 21 | nodes/import_as_skeleton_bones=false 22 | nodes/use_name_suffixes=true 23 | nodes/use_node_type_suffixes=true 24 | meshes/ensure_tangents=true 25 | meshes/generate_lods=true 26 | meshes/create_shadow_meshes=true 27 | meshes/light_baking=1 28 | meshes/lightmap_texel_size=0.2 29 | meshes/force_disable_compression=false 30 | skins/use_named_skins=true 31 | animation/import=true 32 | animation/fps=30 33 | animation/trimming=false 34 | animation/remove_immutable_tracks=true 35 | animation/import_rest_as_RESET=false 36 | import_script/path="" 37 | materials/extract=1 38 | materials/extract_format=0 39 | materials/extract_path="" 40 | _subresources={ 41 | "materials": { 42 | "colormap": { 43 | "use_external/enabled": true, 44 | "use_external/fallback_path": "res://sample/Mini Arena/Models/GLB format/colormap.tres", 45 | "use_external/path": "uid://b26esyetp45oo" 46 | } 47 | } 48 | } 49 | gltf/naming_version=1 50 | gltf/embedded_image_handling=1 51 | -------------------------------------------------------------------------------- /sample/Mini Arena/Models/GLB format/column.glb.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="scene" 4 | importer_version=1 5 | type="PackedScene" 6 | uid="uid://basbm4qaiq6k5" 7 | path="res://.godot/imported/column.glb-c956725922efb49ac9375527293d06e4.scn" 8 | 9 | [deps] 10 | 11 | source_file="res://sample/Mini Arena/Models/GLB format/column.glb" 12 | dest_files=["res://.godot/imported/column.glb-c956725922efb49ac9375527293d06e4.scn"] 13 | 14 | [params] 15 | 16 | nodes/root_type="" 17 | nodes/root_name="" 18 | nodes/root_script=null 19 | nodes/apply_root_scale=true 20 | nodes/root_scale=1.0 21 | nodes/import_as_skeleton_bones=false 22 | nodes/use_name_suffixes=true 23 | nodes/use_node_type_suffixes=true 24 | meshes/ensure_tangents=true 25 | meshes/generate_lods=true 26 | meshes/create_shadow_meshes=true 27 | meshes/light_baking=1 28 | meshes/lightmap_texel_size=0.2 29 | meshes/force_disable_compression=false 30 | skins/use_named_skins=true 31 | animation/import=true 32 | animation/fps=30 33 | animation/trimming=false 34 | animation/remove_immutable_tracks=true 35 | animation/import_rest_as_RESET=false 36 | import_script/path="" 37 | materials/extract=1 38 | materials/extract_format=0 39 | materials/extract_path="" 40 | _subresources={ 41 | "materials": { 42 | "colormap": { 43 | "use_external/enabled": true, 44 | "use_external/fallback_path": "res://sample/Mini Arena/Models/GLB format/colormap.tres", 45 | "use_external/path": "uid://b26esyetp45oo" 46 | } 47 | } 48 | } 49 | gltf/naming_version=1 50 | gltf/embedded_image_handling=1 51 | -------------------------------------------------------------------------------- /sample/Mini Arena/Models/GLB format/border-corner.glb.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="scene" 4 | importer_version=1 5 | type="PackedScene" 6 | uid="uid://cnw5rs5qiyxnw" 7 | path="res://.godot/imported/border-corner.glb-1176d6f2b852d110507992b06854e6a8.scn" 8 | 9 | [deps] 10 | 11 | source_file="res://sample/Mini Arena/Models/GLB format/border-corner.glb" 12 | dest_files=["res://.godot/imported/border-corner.glb-1176d6f2b852d110507992b06854e6a8.scn"] 13 | 14 | [params] 15 | 16 | nodes/root_type="" 17 | nodes/root_name="" 18 | nodes/root_script=null 19 | nodes/apply_root_scale=true 20 | nodes/root_scale=1.0 21 | nodes/import_as_skeleton_bones=false 22 | nodes/use_name_suffixes=true 23 | nodes/use_node_type_suffixes=true 24 | meshes/ensure_tangents=true 25 | meshes/generate_lods=true 26 | meshes/create_shadow_meshes=true 27 | meshes/light_baking=1 28 | meshes/lightmap_texel_size=0.2 29 | meshes/force_disable_compression=false 30 | skins/use_named_skins=true 31 | animation/import=true 32 | animation/fps=30 33 | animation/trimming=false 34 | animation/remove_immutable_tracks=true 35 | animation/import_rest_as_RESET=false 36 | import_script/path="" 37 | materials/extract=1 38 | materials/extract_format=0 39 | materials/extract_path="" 40 | _subresources={ 41 | "materials": { 42 | "colormap": { 43 | "use_external/enabled": true, 44 | "use_external/fallback_path": "res://sample/Mini Arena/Models/GLB format/colormap.tres", 45 | "use_external/path": "uid://b26esyetp45oo" 46 | } 47 | } 48 | } 49 | gltf/naming_version=1 50 | gltf/embedded_image_handling=1 51 | -------------------------------------------------------------------------------- /sample/Mini Arena/Models/GLB format/column-damaged.glb.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="scene" 4 | importer_version=1 5 | type="PackedScene" 6 | uid="uid://cddf0g7tomost" 7 | path="res://.godot/imported/column-damaged.glb-5e5da893d782fbbe7c7d3612bc81e9f0.scn" 8 | 9 | [deps] 10 | 11 | source_file="res://sample/Mini Arena/Models/GLB format/column-damaged.glb" 12 | dest_files=["res://.godot/imported/column-damaged.glb-5e5da893d782fbbe7c7d3612bc81e9f0.scn"] 13 | 14 | [params] 15 | 16 | nodes/root_type="" 17 | nodes/root_name="" 18 | nodes/root_script=null 19 | nodes/apply_root_scale=true 20 | nodes/root_scale=1.0 21 | nodes/import_as_skeleton_bones=false 22 | nodes/use_name_suffixes=true 23 | nodes/use_node_type_suffixes=true 24 | meshes/ensure_tangents=true 25 | meshes/generate_lods=true 26 | meshes/create_shadow_meshes=true 27 | meshes/light_baking=1 28 | meshes/lightmap_texel_size=0.2 29 | meshes/force_disable_compression=false 30 | skins/use_named_skins=true 31 | animation/import=true 32 | animation/fps=30 33 | animation/trimming=false 34 | animation/remove_immutable_tracks=true 35 | animation/import_rest_as_RESET=false 36 | import_script/path="" 37 | materials/extract=1 38 | materials/extract_format=0 39 | materials/extract_path="" 40 | _subresources={ 41 | "materials": { 42 | "colormap": { 43 | "use_external/enabled": true, 44 | "use_external/fallback_path": "res://sample/Mini Arena/Models/GLB format/colormap.tres", 45 | "use_external/path": "uid://b26esyetp45oo" 46 | } 47 | } 48 | } 49 | gltf/naming_version=1 50 | gltf/embedded_image_handling=1 51 | -------------------------------------------------------------------------------- /sample/Mini Arena/Models/GLB format/border-straight.glb.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="scene" 4 | importer_version=1 5 | type="PackedScene" 6 | uid="uid://dr26h67bx4fi7" 7 | path="res://.godot/imported/border-straight.glb-dbaa4d9a0a89a8ccfd7804d45ea5ecdb.scn" 8 | 9 | [deps] 10 | 11 | source_file="res://sample/Mini Arena/Models/GLB format/border-straight.glb" 12 | dest_files=["res://.godot/imported/border-straight.glb-dbaa4d9a0a89a8ccfd7804d45ea5ecdb.scn"] 13 | 14 | [params] 15 | 16 | nodes/root_type="" 17 | nodes/root_name="" 18 | nodes/root_script=null 19 | nodes/apply_root_scale=true 20 | nodes/root_scale=1.0 21 | nodes/import_as_skeleton_bones=false 22 | nodes/use_name_suffixes=true 23 | nodes/use_node_type_suffixes=true 24 | meshes/ensure_tangents=true 25 | meshes/generate_lods=true 26 | meshes/create_shadow_meshes=true 27 | meshes/light_baking=1 28 | meshes/lightmap_texel_size=0.2 29 | meshes/force_disable_compression=false 30 | skins/use_named_skins=true 31 | animation/import=true 32 | animation/fps=30 33 | animation/trimming=false 34 | animation/remove_immutable_tracks=true 35 | animation/import_rest_as_RESET=false 36 | import_script/path="" 37 | materials/extract=1 38 | materials/extract_format=0 39 | materials/extract_path="" 40 | _subresources={ 41 | "materials": { 42 | "colormap": { 43 | "use_external/enabled": true, 44 | "use_external/fallback_path": "res://sample/Mini Arena/Models/GLB format/colormap.tres", 45 | "use_external/path": "uid://b26esyetp45oo" 46 | } 47 | } 48 | } 49 | gltf/naming_version=1 50 | gltf/embedded_image_handling=1 51 | -------------------------------------------------------------------------------- /sample/Mini Arena/Models/GLB format/character-soldier.glb.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="scene" 4 | importer_version=1 5 | type="PackedScene" 6 | uid="uid://b3nc42jy23m0y" 7 | path="res://.godot/imported/character-soldier.glb-1f7143842fccc16f28d278c74d551d72.scn" 8 | 9 | [deps] 10 | 11 | source_file="res://sample/Mini Arena/Models/GLB format/character-soldier.glb" 12 | dest_files=["res://.godot/imported/character-soldier.glb-1f7143842fccc16f28d278c74d551d72.scn"] 13 | 14 | [params] 15 | 16 | nodes/root_type="" 17 | nodes/root_name="" 18 | nodes/root_script=null 19 | nodes/apply_root_scale=true 20 | nodes/root_scale=1.0 21 | nodes/import_as_skeleton_bones=false 22 | nodes/use_name_suffixes=true 23 | nodes/use_node_type_suffixes=true 24 | meshes/ensure_tangents=true 25 | meshes/generate_lods=true 26 | meshes/create_shadow_meshes=true 27 | meshes/light_baking=1 28 | meshes/lightmap_texel_size=0.2 29 | meshes/force_disable_compression=false 30 | skins/use_named_skins=true 31 | animation/import=true 32 | animation/fps=30 33 | animation/trimming=false 34 | animation/remove_immutable_tracks=true 35 | animation/import_rest_as_RESET=false 36 | import_script/path="" 37 | materials/extract=1 38 | materials/extract_format=0 39 | materials/extract_path="" 40 | _subresources={ 41 | "materials": { 42 | "colormap": { 43 | "use_external/enabled": true, 44 | "use_external/fallback_path": "res://sample/Mini Arena/Models/GLB format/colormap.tres", 45 | "use_external/path": "uid://b26esyetp45oo" 46 | } 47 | } 48 | } 49 | gltf/naming_version=1 50 | gltf/embedded_image_handling=1 51 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |
![]()
