Add a first-view controller and a bunch of things
1. Replace 4k models with low-poly once 2. Use bare mixamo for testing 3. Add a basic menu 4. Add a map with collisions and spawn areas
This commit is contained in:
64
editor_scripts/import_glb.gd
Normal file
64
editor_scripts/import_glb.gd
Normal file
@ -0,0 +1,64 @@
|
||||
@tool
|
||||
extends EditorScript
|
||||
|
||||
|
||||
# Called when the script is executed (using File -> Run in Script Editor).
|
||||
func _run() -> void:
|
||||
print("running")
|
||||
# Path to the folder containing the .glb files (adjust as needed)
|
||||
var glb_folder = "res://assets/models/kenney/RetroUrban/" # Change to your folder path
|
||||
var files = []
|
||||
|
||||
# Get a list of all .glb files in the folder
|
||||
var dir = DirAccess.open(glb_folder)
|
||||
if dir:
|
||||
dir.list_dir_begin()
|
||||
while true:
|
||||
var file_name = dir.get_next()
|
||||
if file_name == "":
|
||||
break
|
||||
if file_name.ends_with(".glb"):
|
||||
files.append(file_name)
|
||||
dir.list_dir_end()
|
||||
else:
|
||||
print("Failed to open directory: " + glb_folder)
|
||||
return
|
||||
|
||||
# Process each .glb file
|
||||
for file_name in files:
|
||||
var file_path = glb_folder + file_name
|
||||
print("Processing: ", file_path)
|
||||
|
||||
# Load the .glb file
|
||||
var scene: PackedScene = ResourceLoader.load(file_path)
|
||||
if scene:
|
||||
# Instance the scene and generate physics
|
||||
var root = scene.instantiate()
|
||||
if root:
|
||||
generate_physics(root)
|
||||
|
||||
# Save the new scene
|
||||
var save_path = file_path.replace(".glb", ".tscn")
|
||||
ResourceSaver.save(save_path, root)
|
||||
print("Saved: ", save_path)
|
||||
else:
|
||||
print("Failed to load: " + file_path)
|
||||
|
||||
# Generate static body physics for the mesh
|
||||
func generate_physics(node):
|
||||
for child in node.get_children():
|
||||
if child is MeshInstance3D:
|
||||
var static_body = StaticBody3D.new()
|
||||
var collision_shape = CollisionShape3D.new()
|
||||
|
||||
# Generate collision shape from mesh
|
||||
var shape = child.mesh.create_convex_shape()
|
||||
if shape:
|
||||
collision_shape.shape = shape
|
||||
static_body.add_child(collision_shape)
|
||||
static_body.global_transform = child.global_transform
|
||||
node.add_child(static_body)
|
||||
print("Added physics for: ", child.name)
|
||||
|
||||
# Recursively process child nodes
|
||||
generate_physics(child)
|
BIN
editor_scripts/test_asphalt.png
(Stored with Git LFS)
Normal file
BIN
editor_scripts/test_asphalt.png
(Stored with Git LFS)
Normal file
Binary file not shown.
38
editor_scripts/test_asphalt.png.import
Normal file
38
editor_scripts/test_asphalt.png.import
Normal file
@ -0,0 +1,38 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://c78low2ri6i6b"
|
||||
path.s3tc="res://.godot/imported/test_asphalt.png-2a11a276246add13d8e470f422c29381.s3tc.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc"],
|
||||
"vram_texture": true
|
||||
}
|
||||
generator_parameters={
|
||||
"md5": "000a697fa8bab81e8d7785ab7e8c1636"
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://editor_scripts/test_asphalt.png"
|
||||
dest_files=["res://.godot/imported/test_asphalt.png-2a11a276246add13d8e470f422c29381.s3tc.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=2
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=true
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=0
|
BIN
editor_scripts/test_bars.png
(Stored with Git LFS)
Normal file
BIN
editor_scripts/test_bars.png
(Stored with Git LFS)
Normal file
Binary file not shown.
38
editor_scripts/test_bars.png.import
Normal file
38
editor_scripts/test_bars.png.import
Normal file
@ -0,0 +1,38 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://eo2v3dc0h87j"
|
||||
path.s3tc="res://.godot/imported/test_bars.png-a4bdbd54746577c6572407225d4392ab.s3tc.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc"],
|
||||
"vram_texture": true
|
||||
}
|
||||
generator_parameters={
|
||||
"md5": "47568f62ab923eee0810b933ad027bef"
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://editor_scripts/test_bars.png"
|
||||
dest_files=["res://.godot/imported/test_bars.png-a4bdbd54746577c6572407225d4392ab.s3tc.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=2
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=true
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=0
|
BIN
editor_scripts/test_concrete.png
(Stored with Git LFS)
Normal file
BIN
editor_scripts/test_concrete.png
(Stored with Git LFS)
Normal file
Binary file not shown.
38
editor_scripts/test_concrete.png.import
Normal file
38
editor_scripts/test_concrete.png.import
Normal file
@ -0,0 +1,38 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://cadhqxf3fjamb"
|
||||
path.s3tc="res://.godot/imported/test_concrete.png-fe85fd8cc2aa0a371ece73762547a73e.s3tc.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc"],
|
||||
"vram_texture": true
|
||||
}
|
||||
generator_parameters={
|
||||
"md5": "1d26b1c9dbe4c796a91722b1a76f3402"
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://editor_scripts/test_concrete.png"
|
||||
dest_files=["res://.godot/imported/test_concrete.png-fe85fd8cc2aa0a371ece73762547a73e.s3tc.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=2
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=true
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=0
|
BIN
editor_scripts/test_dirt.png
(Stored with Git LFS)
Normal file
BIN
editor_scripts/test_dirt.png
(Stored with Git LFS)
Normal file
Binary file not shown.
38
editor_scripts/test_dirt.png.import
Normal file
38
editor_scripts/test_dirt.png.import
Normal file
@ -0,0 +1,38 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://djsa0nuilkxgw"
|
||||
path.s3tc="res://.godot/imported/test_dirt.png-740a0cee31d856c64cfaff68f3d66442.s3tc.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc"],
|
||||
"vram_texture": true
|
||||
}
|
||||
generator_parameters={
|
||||
"md5": "f353cd0b1beb598a616ada267b27b2da"
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://editor_scripts/test_dirt.png"
|
||||
dest_files=["res://.godot/imported/test_dirt.png-740a0cee31d856c64cfaff68f3d66442.s3tc.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=2
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=true
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=0
|
BIN
editor_scripts/test_doors.png
(Stored with Git LFS)
Normal file
BIN
editor_scripts/test_doors.png
(Stored with Git LFS)
Normal file
Binary file not shown.
38
editor_scripts/test_doors.png.import
Normal file
38
editor_scripts/test_doors.png.import
Normal file
@ -0,0 +1,38 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://jhmkgcmwcdoq"
|
||||
path.s3tc="res://.godot/imported/test_doors.png-3fd8ca0db1a7d405ef56f76880a84850.s3tc.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc"],
|
||||
"vram_texture": true
|
||||
}
|
||||
generator_parameters={
|
||||
"md5": "315dc0f89b210834827e6d07ca5a16d1"
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://editor_scripts/test_doors.png"
|
||||
dest_files=["res://.godot/imported/test_doors.png-3fd8ca0db1a7d405ef56f76880a84850.s3tc.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=2
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=true
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=0
|
BIN
editor_scripts/test_grass.png
(Stored with Git LFS)
Normal file
BIN
editor_scripts/test_grass.png
(Stored with Git LFS)
Normal file
Binary file not shown.
38
editor_scripts/test_grass.png.import
Normal file
38
editor_scripts/test_grass.png.import
Normal file
@ -0,0 +1,38 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://binmsfu6hr1io"
|
||||
path.s3tc="res://.godot/imported/test_grass.png-ae6ece4062babae0f87e67641ca3b5b6.s3tc.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc"],
|
||||
"vram_texture": true
|
||||
}
|
||||
generator_parameters={
|
||||
"md5": "2243bfd363cc4144139320fbda861533"
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://editor_scripts/test_grass.png"
|
||||
dest_files=["res://.godot/imported/test_grass.png-ae6ece4062babae0f87e67641ca3b5b6.s3tc.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=2
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=true
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=0
|
BIN
editor_scripts/test_metal.png
(Stored with Git LFS)
Normal file
BIN
editor_scripts/test_metal.png
(Stored with Git LFS)
Normal file
Binary file not shown.
38
editor_scripts/test_metal.png.import
Normal file
38
editor_scripts/test_metal.png.import
Normal file
@ -0,0 +1,38 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://ck7a73a4pi6xk"
|
||||
path.s3tc="res://.godot/imported/test_metal.png-f6e92eb1a4c79716e70f69433ed37346.s3tc.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc"],
|
||||
"vram_texture": true
|
||||
}
|
||||
generator_parameters={
|
||||
"md5": "a6eb2367e1d8a19643c6d974a3655325"
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://editor_scripts/test_metal.png"
|
||||
dest_files=["res://.godot/imported/test_metal.png-f6e92eb1a4c79716e70f69433ed37346.s3tc.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=2
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=true
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=0
|
BIN
editor_scripts/test_metal_wall.png
(Stored with Git LFS)
Normal file
BIN
editor_scripts/test_metal_wall.png
(Stored with Git LFS)
Normal file
Binary file not shown.
38
editor_scripts/test_metal_wall.png.import
Normal file
38
editor_scripts/test_metal_wall.png.import
Normal file
@ -0,0 +1,38 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://j8xwymfs4yyt"
|
||||
path.s3tc="res://.godot/imported/test_metal_wall.png-a8cdf2c35a4b9eca67d821090eec8cf8.s3tc.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc"],
|
||||
"vram_texture": true
|
||||
}
|
||||
generator_parameters={
|
||||
"md5": "b40477d676398be0d8ffbb86b3a64a93"
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://editor_scripts/test_metal_wall.png"
|
||||
dest_files=["res://.godot/imported/test_metal_wall.png-a8cdf2c35a4b9eca67d821090eec8cf8.s3tc.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=2
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=true
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=0
|
BIN
editor_scripts/test_roof.png
(Stored with Git LFS)
Normal file
BIN
editor_scripts/test_roof.png
(Stored with Git LFS)
Normal file
Binary file not shown.
38
editor_scripts/test_roof.png.import
Normal file
38
editor_scripts/test_roof.png.import
Normal file
@ -0,0 +1,38 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dbbwokuqm0jvk"
|
||||
path.s3tc="res://.godot/imported/test_roof.png-670d346abeb122df076889ac98320789.s3tc.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc"],
|
||||
"vram_texture": true
|
||||
}
|
||||
generator_parameters={
|
||||
"md5": "14d17904e8363c0efc09055e11359836"
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://editor_scripts/test_roof.png"
|
||||
dest_files=["res://.godot/imported/test_roof.png-670d346abeb122df076889ac98320789.s3tc.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=2
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=true
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=0
|
BIN
editor_scripts/test_roof_plates.png
(Stored with Git LFS)
Normal file
BIN
editor_scripts/test_roof_plates.png
(Stored with Git LFS)
Normal file
Binary file not shown.
38
editor_scripts/test_roof_plates.png.import
Normal file
38
editor_scripts/test_roof_plates.png.import
Normal file
@ -0,0 +1,38 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://cxnr4thm87p8p"
|
||||
path.s3tc="res://.godot/imported/test_roof_plates.png-e3e44634afe8b075e4374faec9c208c2.s3tc.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc"],
|
||||
"vram_texture": true
|
||||
}
|
||||
generator_parameters={
|
||||
"md5": "c1d953bce92e7a44026ad0f98123e5ca"
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://editor_scripts/test_roof_plates.png"
|
||||
dest_files=["res://.godot/imported/test_roof_plates.png-e3e44634afe8b075e4374faec9c208c2.s3tc.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=2
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=true
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=0
|
BIN
editor_scripts/test_signs.png
(Stored with Git LFS)
Normal file
BIN
editor_scripts/test_signs.png
(Stored with Git LFS)
Normal file
Binary file not shown.
38
editor_scripts/test_signs.png.import
Normal file
38
editor_scripts/test_signs.png.import
Normal file
@ -0,0 +1,38 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://qoblkpbtx5wb"
|
||||
path.s3tc="res://.godot/imported/test_signs.png-16737773a55222263fbc1a6543d76f81.s3tc.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc"],
|
||||
"vram_texture": true
|
||||
}
|
||||
generator_parameters={
|
||||
"md5": "a884f99fb06607d50fc77271214f9757"
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://editor_scripts/test_signs.png"
|
||||
dest_files=["res://.godot/imported/test_signs.png-16737773a55222263fbc1a6543d76f81.s3tc.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=2
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=true
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=0
|
BIN
editor_scripts/test_tiles.png
(Stored with Git LFS)
Normal file
BIN
editor_scripts/test_tiles.png
(Stored with Git LFS)
Normal file
Binary file not shown.
38
editor_scripts/test_tiles.png.import
Normal file
38
editor_scripts/test_tiles.png.import
Normal file
@ -0,0 +1,38 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://2xxlhetme7m6"
|
||||
path.s3tc="res://.godot/imported/test_tiles.png-50ddabcb21f7d86ae2d65061e14d41b6.s3tc.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc"],
|
||||
"vram_texture": true
|
||||
}
|
||||
generator_parameters={
|
||||
"md5": "7e3dd8d01dadc31b68a6a2c5908cf5ee"
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://editor_scripts/test_tiles.png"
|
||||
dest_files=["res://.godot/imported/test_tiles.png-50ddabcb21f7d86ae2d65061e14d41b6.s3tc.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=2
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=true
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=0
|
BIN
editor_scripts/test_treeA.png
(Stored with Git LFS)
Normal file
BIN
editor_scripts/test_treeA.png
(Stored with Git LFS)
Normal file
Binary file not shown.
38
editor_scripts/test_treeA.png.import
Normal file
38
editor_scripts/test_treeA.png.import
Normal file
@ -0,0 +1,38 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bdeq8kang1gqf"
|
||||
path.s3tc="res://.godot/imported/test_treeA.png-30955eab18c2f04a648f5e9356cd608d.s3tc.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc"],
|
||||
"vram_texture": true
|
||||
}
|
||||
generator_parameters={
|
||||
"md5": "61d82a196efd538519a0594692a27d0f"
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://editor_scripts/test_treeA.png"
|
||||
dest_files=["res://.godot/imported/test_treeA.png-30955eab18c2f04a648f5e9356cd608d.s3tc.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=2
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=true
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=0
|
BIN
editor_scripts/test_treeB.png
(Stored with Git LFS)
Normal file
BIN
editor_scripts/test_treeB.png
(Stored with Git LFS)
Normal file
Binary file not shown.
38
editor_scripts/test_treeB.png.import
Normal file
38
editor_scripts/test_treeB.png.import
Normal file
@ -0,0 +1,38 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://j2ehpbsgb52p"
|
||||
path.s3tc="res://.godot/imported/test_treeB.png-d342d9d26dcd4ff42ceb5472b6ec48bc.s3tc.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc"],
|
||||
"vram_texture": true
|
||||
}
|
||||
generator_parameters={
|
||||
"md5": "1977b1da949c826d986a2775d667d975"
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://editor_scripts/test_treeB.png"
|
||||
dest_files=["res://.godot/imported/test_treeB.png-d342d9d26dcd4ff42ceb5472b6ec48bc.s3tc.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=2
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=true
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=0
|
BIN
editor_scripts/test_truck.png
(Stored with Git LFS)
Normal file
BIN
editor_scripts/test_truck.png
(Stored with Git LFS)
Normal file
Binary file not shown.
38
editor_scripts/test_truck.png.import
Normal file
38
editor_scripts/test_truck.png.import
Normal file
@ -0,0 +1,38 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://d1ybwu5vswgj4"
|
||||
path.s3tc="res://.godot/imported/test_truck.png-6964b7c7d3ff838c4ca899a99bfacf9c.s3tc.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc"],
|
||||
"vram_texture": true
|
||||
}
|
||||
generator_parameters={
|
||||
"md5": "6847036c16fbcf5fb52543ffc6569dfc"
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://editor_scripts/test_truck.png"
|
||||
dest_files=["res://.godot/imported/test_truck.png-6964b7c7d3ff838c4ca899a99bfacf9c.s3tc.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=2
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=true
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=0
|
BIN
editor_scripts/test_truck_alien.png
(Stored with Git LFS)
Normal file
BIN
editor_scripts/test_truck_alien.png
(Stored with Git LFS)
Normal file
Binary file not shown.
38
editor_scripts/test_truck_alien.png.import
Normal file
38
editor_scripts/test_truck_alien.png.import
Normal file
@ -0,0 +1,38 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://db6w1s15ggb3i"
|
||||
path.s3tc="res://.godot/imported/test_truck_alien.png-72517c473a9b775d777a4aa909587d14.s3tc.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc"],
|
||||
"vram_texture": true
|
||||
}
|
||||
generator_parameters={
|
||||
"md5": "5ddedc8d1a146953d5c7fdbcbbeeb416"
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://editor_scripts/test_truck_alien.png"
|
||||
dest_files=["res://.godot/imported/test_truck_alien.png-72517c473a9b775d777a4aa909587d14.s3tc.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=2
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=true
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=0
|
BIN
editor_scripts/test_wall.png
(Stored with Git LFS)
Normal file
BIN
editor_scripts/test_wall.png
(Stored with Git LFS)
Normal file
Binary file not shown.
38
editor_scripts/test_wall.png.import
Normal file
38
editor_scripts/test_wall.png.import
Normal file
@ -0,0 +1,38 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://cl4vmqv0lie8r"
|
||||
path.s3tc="res://.godot/imported/test_wall.png-f4a0f8019b30dd310db647ea11a0081d.s3tc.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc"],
|
||||
"vram_texture": true
|
||||
}
|
||||
generator_parameters={
|
||||
"md5": "4b6d8a27f9867383795097e29db616d2"
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://editor_scripts/test_wall.png"
|
||||
dest_files=["res://.godot/imported/test_wall.png-f4a0f8019b30dd310db647ea11a0081d.s3tc.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=2
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=true
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=0
|
BIN
editor_scripts/test_wall_garage.png
(Stored with Git LFS)
Normal file
BIN
editor_scripts/test_wall_garage.png
(Stored with Git LFS)
Normal file
Binary file not shown.
38
editor_scripts/test_wall_garage.png.import
Normal file
38
editor_scripts/test_wall_garage.png.import
Normal file
@ -0,0 +1,38 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://da0uee0235re2"
|
||||
path.s3tc="res://.godot/imported/test_wall_garage.png-185e2efa8b42787217756843b81ce63c.s3tc.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc"],
|
||||
"vram_texture": true
|
||||
}
|
||||
generator_parameters={
|
||||
"md5": "255e97ba5e68e41b8f7ba65b062ff37a"
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://editor_scripts/test_wall_garage.png"
|
||||
dest_files=["res://.godot/imported/test_wall_garage.png-185e2efa8b42787217756843b81ce63c.s3tc.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=2
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=true
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=0
|
BIN
editor_scripts/test_wall_lines.png
(Stored with Git LFS)
Normal file
BIN
editor_scripts/test_wall_lines.png
(Stored with Git LFS)
Normal file
Binary file not shown.
38
editor_scripts/test_wall_lines.png.import
Normal file
38
editor_scripts/test_wall_lines.png.import
Normal file
@ -0,0 +1,38 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://hed8xljyfei3"
|
||||
path.s3tc="res://.godot/imported/test_wall_lines.png-74753520e4aeda3def8dd43335e677a7.s3tc.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc"],
|
||||
"vram_texture": true
|
||||
}
|
||||
generator_parameters={
|
||||
"md5": "9c9c29e57af968a2ef9bf65d6d79218f"
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://editor_scripts/test_wall_lines.png"
|
||||
dest_files=["res://.godot/imported/test_wall_lines.png-74753520e4aeda3def8dd43335e677a7.s3tc.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=2
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=true
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=0
|
BIN
editor_scripts/test_windows.png
(Stored with Git LFS)
Normal file
BIN
editor_scripts/test_windows.png
(Stored with Git LFS)
Normal file
Binary file not shown.
38
editor_scripts/test_windows.png.import
Normal file
38
editor_scripts/test_windows.png.import
Normal file
@ -0,0 +1,38 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://ptyfybi2tbl5"
|
||||
path.s3tc="res://.godot/imported/test_windows.png-e8ced83694f4dd0d91185ce023a523bb.s3tc.ctex"
|
||||
metadata={
|
||||
"imported_formats": ["s3tc_bptc"],
|
||||
"vram_texture": true
|
||||
}
|
||||
generator_parameters={
|
||||
"md5": "b00fbf15122e67d87586cd5108834b96"
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://editor_scripts/test_windows.png"
|
||||
dest_files=["res://.godot/imported/test_windows.png-e8ced83694f4dd0d91185ce023a523bb.s3tc.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=2
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=true
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=0
|
Reference in New Issue
Block a user