├── 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 |

2 | 3 | # Starter Kit Basic Scene 4 | 5 | This includes a basic scene and environment set-up for a pleasing and bright result, comes with the (CC0 licensed) Mini Arena pack. 6 | 7 | ### Screenshot 8 | 9 |

10 | 11 | ### License 12 | 13 | MIT License 14 | 15 | Copyright (c) 2025 Kenney 16 | 17 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 18 | 19 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 20 | 21 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 22 | 23 | Assets included in this package (2D sprites, 3D models and sound effects) are [CC0 licensed](https://creativecommons.org/publicdomain/zero/1.0/) -------------------------------------------------------------------------------- /scenes/main.tscn: -------------------------------------------------------------------------------- 1 | [gd_scene load_steps=7 format=3 uid="uid://cdl4hvrn3nxf2"] 2 | 3 | [ext_resource type="PackedScene" uid="uid://basbm4qaiq6k5" path="res://sample/Mini Arena/Models/GLB format/column.glb" id="1_c7oak"] 4 | [ext_resource type="Environment" uid="uid://cm77bbr0io118" path="res://scenes/main-environment.tres" id="1_x8oc8"] 5 | [ext_resource type="PackedScene" uid="uid://bqxa36hkpl1hj" path="res://sample/Mini Arena/Models/GLB format/banner.glb" id="2_qihb2"] 6 | [ext_resource type="PackedScene" uid="uid://gaivtq4jlu8u" path="res://sample/Mini Arena/Models/GLB format/tree.glb" id="3_lyib0"] 7 | [ext_resource type="PackedScene" uid="uid://dp4f8paatagro" path="res://sample/Mini Arena/Models/GLB format/bricks.glb" id="5_a3l1l"] 8 | [ext_resource type="PackedScene" uid="uid://nl2p4gn2t5ke" path="res://sample/Mini Arena/Models/GLB format/statue.glb" id="6_drebv"] 9 | 10 | [node name="Main" type="Node3D"] 11 | 12 | [node name="WorldEnvironment" type="WorldEnvironment" parent="."] 13 | environment = ExtResource("1_x8oc8") 14 | 15 | [node name="Floor" type="CSGBox3D" parent="."] 16 | size = Vector3(100, 0.001, 100) 17 | 18 | [node name="View" type="Node3D" parent="."] 19 | transform = Transform3D(0.86602503, -0.21130913, 0.4531536, 0, 0.90630776, 0.42261803, -0.4999998, -0.36599815, 0.78488505, 0, 0.45, 0) 20 | 21 | [node name="Camera" type="Camera3D" parent="View"] 22 | transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 6) 23 | environment = ExtResource("1_x8oc8") 24 | fov = 40.0 25 | 26 | [node name="Sun" type="DirectionalLight3D" parent="."] 27 | transform = Transform3D(-0.7660449, -0.492404, 0.41317585, 0, 0.6427878, 0.76604426, -0.642788, 0.5868242, -0.49240378, 0, 0, 0) 28 | shadow_enabled = true 29 | shadow_opacity = 0.95 30 | 31 | [node name="Sample" type="Node3D" parent="."] 32 | 33 | [node name="Banner" parent="Sample" instance=ExtResource("2_qihb2")] 34 | transform = Transform3D(0.939693, 0, 0.34202, 0, 1, 0, -0.34202, 0, 0.939693, 0.735318, 0, 0.295037) 35 | 36 | [node name="Column" parent="Sample" instance=ExtResource("1_c7oak")] 37 | transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.264682, 0, 0.295037) 38 | 39 | [node name="Tree" parent="Sample" instance=ExtResource("3_lyib0")] 40 | transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -1.51468, 0, 0.295037) 41 | 42 | [node name="Tree (small)" parent="Sample" instance=ExtResource("3_lyib0")] 43 | transform = Transform3D(0.565685, 0, 0.565685, 0, 0.8, 0, -0.565685, 0, 0.565685, -1.76468, 0, 0.795037) 44 | 45 | [node name="Bricks" parent="Sample" instance=ExtResource("5_a3l1l")] 46 | transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.264682, 0, 1.54504) 47 | 48 | [node name="Statue" parent="Sample" instance=ExtResource("6_drebv")] 49 | transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1.73532, 0, 0.295037) 50 | --------------------------------------------------------------------------------