diff --git a/asset-work/; b/asset-work/; new file mode 100644 index 0000000..aac378b --- /dev/null +++ b/asset-work/; @@ -0,0 +1,39 @@ +#!/bin/bash +# reorganize_images.sh - Move generated images from 2 levels down to 1 level down +# Usage: ./reorganize_images.sh [root_directory] +# Default root directory is current directory (.) + +ROOT_DIR="${1:-.}" + +echo "Reorganizing images in: $ROOT_DIR" +echo "" + +# Find all *_generated.png files that are exactly 2 levels deep +# Pattern: root/level1/level2/*_generated.png -> root/level1/*_generated.png + +find "$ROOT_DIR" -mindepth 3 -maxdepth 3 -name "generated.png" -type f | while read -r filepath; do + # Get the directory structure + # filepath = root/level1/level2/filename.png + # We want to move to: root/level1/filename.png + + dir=$(dirname "$filepath") + filename=$(basename "$filepath") + + # Get parent directory (1 level up from current location) + # dir = root/level1/level2 + # parent = root/level1 + parent=$(dirname "$dir") + + target="$parent/$filename_generated.png" + + # Check if target already exists + if [ -f "$target" ]; then + echo "SKIP: $filepath -> $target (already exists)" + else + echo "MOVE: $filepath -> $target" + # mv "$filepath" "$target" + fi +done + +echo "" +echo "Reorganization complete!" diff --git a/asset-work/caption_1_891_generated.png b/asset-work/caption_1_891_generated.png new file mode 100644 index 0000000..0015c25 --- /dev/null +++ b/asset-work/caption_1_891_generated.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd83d2c17fc87bd26e78699d575af373696c78a961ead7efa1660f3e28e67638 +size 4563470 diff --git a/asset-work/caption_1_891_generated.png.import b/asset-work/caption_1_891_generated.png.import new file mode 100644 index 0000000..a188157 --- /dev/null +++ b/asset-work/caption_1_891_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bqxbuixcptd2y" +path="res://.godot/imported/caption_1_891_generated.png-4b13095722cce3b2dd8325865961ffd7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/caption_1_891_generated.png" +dest_files=["res://.godot/imported/caption_1_891_generated.png-4b13095722cce3b2dd8325865961ffd7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/generate_from_caption.py b/asset-work/generate_from_caption.py index b3cea82..8b873c0 100755 --- a/asset-work/generate_from_caption.py +++ b/asset-work/generate_from_caption.py @@ -110,7 +110,7 @@ def generate_from_caption( # Update seeds in nodes 20 and 21 workflow["20"]["inputs"]["seed"] = seed - workflow["21"]["inputs"]["seed"] = seed + workflow["21"]["inputs"]["seed"] = seed + 1 # Generate unique filename prefix to ensure we copy the right file unique_id = str(uuid.uuid4())[:8] @@ -144,20 +144,15 @@ def generate_from_caption( # Create output directory next to caption file caption_dir = os.path.dirname(os.path.abspath(caption_file)) caption_name = os.path.splitext(os.path.basename(caption_file))[0] - output_dir = os.path.join(caption_dir, f"{caption_name}_{seed}") - os.makedirs(output_dir, exist_ok=True) + output_image_path = os.path.join(caption_dir, f"{caption_name}_{seed}_generated.png") # Copy the generated image to output directory with a cleaner name - output_image_path = os.path.join(output_dir, "generated.png") + output_image_path = os.path.join(caption_dir, output_image_path) shutil.copy2(new_file, output_image_path) print(f"Saved image: {output_image_path}") - # Copy caption file - caption_dest = os.path.join(output_dir, os.path.basename(caption_file)) - shutil.copy2(caption_file, caption_dest) - print(f"Copied caption: {caption_dest}") - return output_dir + return output_image_path def main(): diff --git a/asset-work/generate_multiple.py b/asset-work/generate_multiple.py index c302523..fe929f8 100755 --- a/asset-work/generate_multiple.py +++ b/asset-work/generate_multiple.py @@ -23,25 +23,21 @@ def check_server(server_address: str = "127.0.0.1:8188", timeout: int = 5) -> bo def count_existing_variations(caption_file: str) -> int: """Count existing image variations for a caption file. - + Args: caption_file: Path to the caption text file - + Returns: - Number of existing variation directories + Number of existing generated images matching the caption name """ - caption_dir = os.path.dirname(os.path.abspath(caption_file)) caption_name = os.path.splitext(os.path.basename(caption_file))[0] - - if not os.path.exists(caption_dir): - return 0 - + caption_dir = os.path.dirname(caption_file) or "." + count = 0 for item in os.listdir(caption_dir): - item_path = os.path.join(caption_dir, item) - if os.path.isdir(item_path) and item.startswith(f"{caption_name}_"): + if item.startswith(f"{caption_name}_") and item.endswith("_generated.png"): count += 1 - + return count @@ -55,7 +51,7 @@ def generate_multiple(caption_file: str, count: int = 2, server: str = "127.0.0. dry_run: If True, validate only without generating Returns: - Tuple of (list of created output directories, number of existing variations) + Tuple of (list of created image paths, number of existing variations) """ if not os.path.exists(caption_file): print(f"Error: Caption file not found: {caption_file}") @@ -109,11 +105,10 @@ def generate_multiple(caption_file: str, count: int = 2, server: str = "127.0.0. if result.returncode != 0: print(f"Warning: Generation {i + 1} of {needed} failed with exit code {result.returncode}") else: - # Calculate output directory name - caption_dir = os.path.dirname(os.path.abspath(caption_file)) + # Image is saved in current directory by generate_from_caption caption_name = os.path.splitext(os.path.basename(caption_file))[0] - output_dir = os.path.join(caption_dir, f"{caption_name}_{seed}") - output_dirs.append(output_dir) + output_path = os.path.join(".", f"{caption_name}_{seed}_generated.png") + output_dirs.append(output_path) return output_dirs, existing @@ -178,16 +173,16 @@ def main(): sys.exit(1) print("✓ Server is running\n") - output_dirs, existing = generate_multiple(args.caption_file, args.count, args.server) + output_paths, existing = generate_multiple(args.caption_file, args.count, args.server) print(f"\n{'='*60}") print("All generations complete!") print(f"{'='*60}") - if output_dirs: - print(f"\nCreated {len(output_dirs)} new output directory(s):") - for output_dir in output_dirs: - print(f" - {output_dir}") - print(f"\nTotal variations now: {existing + len(output_dirs)}") + if output_paths: + print(f"\nCreated {len(output_paths)} new image(s):") + for output_path in output_paths: + print(f" - {output_path}") + print(f"\nTotal variations now: {existing + len(output_paths)}") if __name__ == "__main__": diff --git a/asset-work/kq4_001_beach/caption_1_3266141658/caption_1.txt b/asset-work/kq4_001_beach/caption_1_3266141658/caption_1.txt deleted file mode 100644 index 8fa0916..0000000 --- a/asset-work/kq4_001_beach/caption_1_3266141658/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. From a high-angle perspective, the scene unfolds as a serene coastal vista. The foreground features a gently curving sandy beach that stretches from the bottom right toward the center, its pale golden surface meeting the turquoise shallows of the ocean. The water transitions from light aqua near the shore to deep navy blue as it extends toward the horizon. A narrow strip of bright green grass and low vegetation borders the beach on the right, with hints of rocky outcrops and distant cliffs visible in the far background. The sky above is a clear azure with a few fluffy white clouds drifting near the horizon. The composition creates a sense of peaceful isolation, with the beach acting as a natural pathway guiding the eye toward the expansive ocean. Soft daylight illuminates the scene from the upper left, casting subtle shadows and highlighting the texture of the sand and water ripples. diff --git a/asset-work/kq4_001_beach/caption_2_2546054905/caption_2.txt b/asset-work/kq4_001_beach/caption_2_2546054905/caption_2.txt deleted file mode 100644 index e6935db..0000000 --- a/asset-work/kq4_001_beach/caption_2_2546054905/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A panoramic beach scene viewed from an elevated position reveals a sweeping shoreline curving gracefully along the left side of the frame. The sandy beach, rendered in warm beige and cream tones, forms a natural arc separating the deep blue ocean from a lush green coastal bluff on the right. The ocean water displays beautiful gradations, from pale turquoise where waves lap the shore to rich indigo in the deeper areas. Gentle waves create white foam patterns along the waterline. The grassy headland rises toward the right, dotted with bushes and leading toward distant cliffs. Above, a vast sky stretches in brilliant blue, adorned with soft cumulus clouds near the horizon line. The lighting suggests midday with bright, even illumination across the landscape. diff --git a/asset-work/kq4_001_beach/caption_2_2546054905/generated.png b/asset-work/kq4_001_beach/caption_2_2546054905_generated.png similarity index 100% rename from asset-work/kq4_001_beach/caption_2_2546054905/generated.png rename to asset-work/kq4_001_beach/caption_2_2546054905_generated.png diff --git a/asset-work/kq4_001_beach/caption_2_2546054905_generated.png.import b/asset-work/kq4_001_beach/caption_2_2546054905_generated.png.import new file mode 100644 index 0000000..0f7755b --- /dev/null +++ b/asset-work/kq4_001_beach/caption_2_2546054905_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b8cxutafww85f" +path="res://.godot/imported/caption_2_2546054905_generated.png-85d55d135763428330846fb186ccb735.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_001_beach/caption_2_2546054905_generated.png" +dest_files=["res://.godot/imported/caption_2_2546054905_generated.png-85d55d135763428330846fb186ccb735.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_001_beach/caption_3_2466183908/caption_3.txt b/asset-work/kq4_001_beach/caption_3_2466183908/caption_3.txt deleted file mode 100644 index 77c3cd8..0000000 --- a/asset-work/kq4_001_beach/caption_3_2466183908/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. The composition presents a tranquil seaside view from a slightly elevated vantage point. Dominating the left two-thirds of the frame, the ocean extends to the horizon in layered shades of deep blue and azure. A crescent-shaped beach of pale sand occupies the right foreground, creating a natural boundary between land and sea. The shoreline curves gently, with shallow water showing lighter turquoise hues where it meets the sand. To the right, a verdant slope rises, covered in bright green grass and low shrubs. The distant background hints at more rugged terrain. The sky occupies the upper portion in a clear, vibrant blue with scattered white clouds. Natural daylight bathes the entire scene, creating soft shadows and emphasizing the contrast between the warm sand, cool water, and green vegetation. diff --git a/asset-work/kq4_001_beach/caption_3_2466183908/generated.png b/asset-work/kq4_001_beach/caption_3_2466183908_generated.png similarity index 100% rename from asset-work/kq4_001_beach/caption_3_2466183908/generated.png rename to asset-work/kq4_001_beach/caption_3_2466183908_generated.png diff --git a/asset-work/kq4_001_beach/caption_3_2466183908_generated.png.import b/asset-work/kq4_001_beach/caption_3_2466183908_generated.png.import new file mode 100644 index 0000000..6569873 --- /dev/null +++ b/asset-work/kq4_001_beach/caption_3_2466183908_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ctkgcs8rpjbta" +path="res://.godot/imported/caption_3_2466183908_generated.png-a2c3b9089dc798fa654ec83ce8563bd9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_001_beach/caption_3_2466183908_generated.png" +dest_files=["res://.godot/imported/caption_3_2466183908_generated.png-a2c3b9089dc798fa654ec83ce8563bd9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_002_meadow/caption_1_125867643_generated.png b/asset-work/kq4_002_meadow/caption_1_125867643_generated.png new file mode 100644 index 0000000..1812995 --- /dev/null +++ b/asset-work/kq4_002_meadow/caption_1_125867643_generated.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89c23373f0b49e97d1a15f5ba753c51a72de43b2bb7fa0bbc577b313687dfb2a +size 4859405 diff --git a/asset-work/kq4_002_meadow/caption_1_125867643_generated.png.import b/asset-work/kq4_002_meadow/caption_1_125867643_generated.png.import new file mode 100644 index 0000000..2dfe3cc --- /dev/null +++ b/asset-work/kq4_002_meadow/caption_1_125867643_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://1irwr0ujfhbu" +path="res://.godot/imported/caption_1_125867643_generated.png-bbfe6fa9e08d92f72926c14b2f61f164.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_002_meadow/caption_1_125867643_generated.png" +dest_files=["res://.godot/imported/caption_1_125867643_generated.png-bbfe6fa9e08d92f72926c14b2f61f164.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_002_meadow/caption_1_2192260032/generated.png b/asset-work/kq4_002_meadow/caption_1_2192260032_generated.png similarity index 100% rename from asset-work/kq4_002_meadow/caption_1_2192260032/generated.png rename to asset-work/kq4_002_meadow/caption_1_2192260032_generated.png diff --git a/asset-work/kq4_002_meadow/caption_1_2192260032_generated.png.import b/asset-work/kq4_002_meadow/caption_1_2192260032_generated.png.import new file mode 100644 index 0000000..1103e04 --- /dev/null +++ b/asset-work/kq4_002_meadow/caption_1_2192260032_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ckkbtkupmncyo" +path="res://.godot/imported/caption_1_2192260032_generated.png-dba103e5c16e2fac207a13e6bf7367fd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_002_meadow/caption_1_2192260032_generated.png" +dest_files=["res://.godot/imported/caption_1_2192260032_generated.png-dba103e5c16e2fac207a13e6bf7367fd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_002_meadow/caption_1_2452282720/generated.png b/asset-work/kq4_002_meadow/caption_1_2452282720_generated.png similarity index 100% rename from asset-work/kq4_002_meadow/caption_1_2452282720/generated.png rename to asset-work/kq4_002_meadow/caption_1_2452282720_generated.png diff --git a/asset-work/kq4_002_meadow/caption_1_2452282720_generated.png.import b/asset-work/kq4_002_meadow/caption_1_2452282720_generated.png.import new file mode 100644 index 0000000..64c61ed --- /dev/null +++ b/asset-work/kq4_002_meadow/caption_1_2452282720_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d1qppp200iwbb" +path="res://.godot/imported/caption_1_2452282720_generated.png-89dddc740e5d25c876b646bd6f4e9021.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_002_meadow/caption_1_2452282720_generated.png" +dest_files=["res://.godot/imported/caption_1_2452282720_generated.png-89dddc740e5d25c876b646bd6f4e9021.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_002_meadow/caption_1_891_generated.png b/asset-work/kq4_002_meadow/caption_1_891_generated.png new file mode 100644 index 0000000..1565137 --- /dev/null +++ b/asset-work/kq4_002_meadow/caption_1_891_generated.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb9918da9dbefad6453b13d0cc284c51d839db1ad24cbe90021accdfd5211f7a +size 4563470 diff --git a/asset-work/kq4_002_meadow/caption_1_891_generated.png.import b/asset-work/kq4_002_meadow/caption_1_891_generated.png.import new file mode 100644 index 0000000..12737de --- /dev/null +++ b/asset-work/kq4_002_meadow/caption_1_891_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dx53a223jfp1d" +path="res://.godot/imported/caption_1_891_generated.png-fb03bb236e3d23280e55a54dfa1d3cf7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_002_meadow/caption_1_891_generated.png" +dest_files=["res://.godot/imported/caption_1_891_generated.png-fb03bb236e3d23280e55a54dfa1d3cf7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_002_meadow/caption_2_1317691304/generated.png b/asset-work/kq4_002_meadow/caption_2_1317691304_generated.png similarity index 100% rename from asset-work/kq4_002_meadow/caption_2_1317691304/generated.png rename to asset-work/kq4_002_meadow/caption_2_1317691304_generated.png diff --git a/asset-work/kq4_002_meadow/caption_2_1317691304_generated.png.import b/asset-work/kq4_002_meadow/caption_2_1317691304_generated.png.import new file mode 100644 index 0000000..cffca71 --- /dev/null +++ b/asset-work/kq4_002_meadow/caption_2_1317691304_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://casmuvvhjmxw7" +path="res://.godot/imported/caption_2_1317691304_generated.png-7ce8082c5e7184bbdb654b50cf5c2b46.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_002_meadow/caption_2_1317691304_generated.png" +dest_files=["res://.godot/imported/caption_2_1317691304_generated.png-7ce8082c5e7184bbdb654b50cf5c2b46.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_002_meadow/caption_2_3424607311/generated.png b/asset-work/kq4_002_meadow/caption_2_3424607311_generated.png similarity index 100% rename from asset-work/kq4_002_meadow/caption_2_3424607311/generated.png rename to asset-work/kq4_002_meadow/caption_2_3424607311_generated.png diff --git a/asset-work/kq4_002_meadow/caption_2_3424607311_generated.png.import b/asset-work/kq4_002_meadow/caption_2_3424607311_generated.png.import new file mode 100644 index 0000000..0a79483 --- /dev/null +++ b/asset-work/kq4_002_meadow/caption_2_3424607311_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6ipuhxml7hyr" +path="res://.godot/imported/caption_2_3424607311_generated.png-14b37dde6a8a80a28625c570b4f9fb1d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_002_meadow/caption_2_3424607311_generated.png" +dest_files=["res://.godot/imported/caption_2_3424607311_generated.png-14b37dde6a8a80a28625c570b4f9fb1d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_002_meadow/caption_3_1693889771/generated.png b/asset-work/kq4_002_meadow/caption_3_1693889771_generated.png similarity index 100% rename from asset-work/kq4_002_meadow/caption_3_1693889771/generated.png rename to asset-work/kq4_002_meadow/caption_3_1693889771_generated.png diff --git a/asset-work/kq4_002_meadow/caption_3_1693889771_generated.png.import b/asset-work/kq4_002_meadow/caption_3_1693889771_generated.png.import new file mode 100644 index 0000000..eff57e9 --- /dev/null +++ b/asset-work/kq4_002_meadow/caption_3_1693889771_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://by8nfxg8lip8u" +path="res://.godot/imported/caption_3_1693889771_generated.png-870cc0e4e46f81b8ba0ba9495dc415c3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_002_meadow/caption_3_1693889771_generated.png" +dest_files=["res://.godot/imported/caption_3_1693889771_generated.png-870cc0e4e46f81b8ba0ba9495dc415c3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_003_fountain_pool/caption_1_2884713022/caption_1.txt b/asset-work/kq4_003_fountain_pool/caption_1_2884713022/caption_1.txt deleted file mode 100644 index 355b347..0000000 --- a/asset-work/kq4_003_fountain_pool/caption_1_2884713022/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. An elevated view of an elegant classical garden dominated by a crystalline rectangular pool at its heart. In the foreground, meticulously manicured hedges frame the composition with rich emerald foliage, their surfaces catching dappled morning light. Two stately classical columns stand sentinel on either side of the pool, their fluted marble shafts rising toward shadowed capitals, creating a sense of architectural grandeur. The pool's azure waters reflect the cerulean sky above, bordered by pale stone coping that catches warm sunlight. Beyond the pool, a sandy path leads toward a classical structure partially hidden by dense vegetation, its tiled roof visible through gaps in the canopy. Towering trees with deep green canopies frame the scene on all sides, their leaves rendered in countless shades of jade and viridian. The middle ground reveals carefully tended lawns and flowering shrubs in soft pastels. Light filters through the foliage in golden shafts, creating dramatic chiaroscuro effects on the stone surfaces and water. The color palette harmonizes cool blues of the pool with warm earth tones of the surrounding garden, all bathed in gentle morning illumination. diff --git a/asset-work/kq4_003_fountain_pool/caption_2_1781338464/caption_2.txt b/asset-work/kq4_003_fountain_pool/caption_2_1781338464/caption_2.txt deleted file mode 100644 index 6bfe645..0000000 --- a/asset-work/kq4_003_fountain_pool/caption_2_1781338464/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A serene formal garden viewed from above, centered around a tranquil reflecting pool of deep sapphire waters. The immediate foreground presents lush ornamental shrubs arranged in symmetrical clusters, their deep green leaves rendered with thick impasto texture suggesting healthy growth. Four majestic classical columns define the pool's boundaries, their weathered stone surfaces displaying subtle variations in warm gray and cream tones, evidence of age and natural patina. The pool itself acts as a mirror, capturing fragments of sky and surrounding verdure in its glassy surface. To the left, a traditional garden pavilion with a tiled roof peeks through mature trees, its architectural lines softened by atmospheric perspective. Dense woodland encircles the garden, with towering specimens creating a natural wall of varying greens from pale lime to deep forest shadow. The sandy pathways meander between cultivated beds and wilder growth, suggesting a designed landscape that embraces natural beauty. Afternoon light casts elongated shadows from the columns across the pool's surface, creating intersecting patterns of light and shade. The overall atmosphere evokes peaceful contemplation within a timeless classical setting. diff --git a/asset-work/kq4_003_fountain_pool/caption_2_1781338464/generated.png b/asset-work/kq4_003_fountain_pool/caption_2_1781338464_generated.png similarity index 100% rename from asset-work/kq4_003_fountain_pool/caption_2_1781338464/generated.png rename to asset-work/kq4_003_fountain_pool/caption_2_1781338464_generated.png diff --git a/asset-work/kq4_003_fountain_pool/caption_2_1781338464_generated.png.import b/asset-work/kq4_003_fountain_pool/caption_2_1781338464_generated.png.import new file mode 100644 index 0000000..c18ebf5 --- /dev/null +++ b/asset-work/kq4_003_fountain_pool/caption_2_1781338464_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dlnb37cc8to6g" +path="res://.godot/imported/caption_2_1781338464_generated.png-a6f9454fcdb1c11ac181f416e897cad0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_003_fountain_pool/caption_2_1781338464_generated.png" +dest_files=["res://.godot/imported/caption_2_1781338464_generated.png-a6f9454fcdb1c11ac181f416e897cad0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_003_fountain_pool/caption_3_4202871907/caption_3.txt b/asset-work/kq4_003_fountain_pool/caption_3_4202871907/caption_3.txt deleted file mode 100644 index a6c781b..0000000 --- a/asset-work/kq4_003_fountain_pool/caption_3_4202871907/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A picturesque garden oasis captured from a bird's-eye perspective, featuring an elongated rectangular pool as its focal point. Foreground vegetation bursts with vibrant life—rounded ornamental bushes and delicate ground cover creating rich textural layers in varying intensities of green. Twin pairs of imposing classical columns flank the pool, their substantial forms painted with attention to architectural detail: fluted shafts, simple capitals, and sturdy bases that anchor them to the earth. The water's surface shimmers with reflected light, painted in strokes of cobalt and turquoise that suggest both depth and clarity. In the background, a sandy clearing leads toward a distant structure with traditional roofing, partially veiled by luxuriant tree canopies that extend beyond the garden's formal boundaries. Mature trees with spreading crowns create a natural enclosure, their leaves filtering sunlight into countless patches of illumination across the scene. The interplay between cultivated precision and wild growth creates visual tension—geometric pool edges against organic foliage, classical order meeting natural abundance. Soft atmospheric haze softens distant elements while foreground details remain crisp and vivid. The palette balances warm ochres of the pathways, cool blues of the water, and the endless variety of greens in the surrounding vegetation under diffused daylight. diff --git a/asset-work/kq4_003_fountain_pool/caption_3_4202871907/generated.png b/asset-work/kq4_003_fountain_pool/caption_3_4202871907_generated.png similarity index 100% rename from asset-work/kq4_003_fountain_pool/caption_3_4202871907/generated.png rename to asset-work/kq4_003_fountain_pool/caption_3_4202871907_generated.png diff --git a/asset-work/kq4_003_fountain_pool/caption_3_4202871907_generated.png.import b/asset-work/kq4_003_fountain_pool/caption_3_4202871907_generated.png.import new file mode 100644 index 0000000..13c0ac7 --- /dev/null +++ b/asset-work/kq4_003_fountain_pool/caption_3_4202871907_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b2drm3wc0isrp" +path="res://.godot/imported/caption_3_4202871907_generated.png-9aaf5d5cf7538ce2021e7a8446da886f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_003_fountain_pool/caption_3_4202871907_generated.png" +dest_files=["res://.godot/imported/caption_3_4202871907_generated.png-9aaf5d5cf7538ce2021e7a8446da886f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_004_ogres_cottage/caption_1_454377357/caption_1.txt b/asset-work/kq4_004_ogres_cottage/caption_1_454377357/caption_1.txt deleted file mode 100644 index c9b0d35..0000000 --- a/asset-work/kq4_004_ogres_cottage/caption_1_454377357/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A rustic stone cottage nestled within a dense pine forest, viewed from an elevated perspective. The foreground reveals a winding dirt path of warm umber and sienna tones, its surface textured with footprints and scattered pebbles. Wildflowers in delicate shades of lavender and cornflower blue punctuate the edges of the path, rendered with loose, impressionistic brushstrokes. The cottage dominates the middle ground, its walls built from irregular gray fieldstones with thick mortar lines catching subtle highlights. A magnificent thatched roof crowns the structure, the golden straw bundles creating rich textural patterns that contrast with the smooth stonework below. A sturdy wooden door, weathered to a warm chestnut brown, invites entry, while small windows with dark wooden shutters peek from the stone walls. To the left, massive evergreen trees with deep emerald needles frame the scene, their trunks showing rough bark texture. The background dissolves into a veil of forest greens and shadowy blue-greens, suggesting infinite woodland depth beyond. Soft dappled sunlight filters through the canopy, casting gentle shadows and creating a harmonious palette of earth tones, forest greens, and warm honey gold. diff --git a/asset-work/kq4_004_ogres_cottage/caption_1_454377357/caption_1_3797959289/caption_1.txt b/asset-work/kq4_004_ogres_cottage/caption_1_454377357/caption_1_3797959289/caption_1.txt deleted file mode 100644 index c9b0d35..0000000 --- a/asset-work/kq4_004_ogres_cottage/caption_1_454377357/caption_1_3797959289/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A rustic stone cottage nestled within a dense pine forest, viewed from an elevated perspective. The foreground reveals a winding dirt path of warm umber and sienna tones, its surface textured with footprints and scattered pebbles. Wildflowers in delicate shades of lavender and cornflower blue punctuate the edges of the path, rendered with loose, impressionistic brushstrokes. The cottage dominates the middle ground, its walls built from irregular gray fieldstones with thick mortar lines catching subtle highlights. A magnificent thatched roof crowns the structure, the golden straw bundles creating rich textural patterns that contrast with the smooth stonework below. A sturdy wooden door, weathered to a warm chestnut brown, invites entry, while small windows with dark wooden shutters peek from the stone walls. To the left, massive evergreen trees with deep emerald needles frame the scene, their trunks showing rough bark texture. The background dissolves into a veil of forest greens and shadowy blue-greens, suggesting infinite woodland depth beyond. Soft dappled sunlight filters through the canopy, casting gentle shadows and creating a harmonious palette of earth tones, forest greens, and warm honey gold. diff --git a/asset-work/kq4_004_ogres_cottage/caption_1_454377357/caption_1_3797959289/generated.png b/asset-work/kq4_004_ogres_cottage/caption_1_454377357/caption_1_3797959289/generated.png deleted file mode 100644 index 22dff3d..0000000 --- a/asset-work/kq4_004_ogres_cottage/caption_1_454377357/caption_1_3797959289/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2d9c7ed7f294894dcd0f9b554543ba730044292c7da9242b65ea3d6a27e0a1d5 -size 4741675 diff --git a/asset-work/kq4_004_ogres_cottage/caption_2_3254593180/caption_2.txt b/asset-work/kq4_004_ogres_cottage/caption_2_3254593180/caption_2.txt deleted file mode 100644 index e1ae638..0000000 --- a/asset-work/kq4_004_ogres_cottage/caption_2_3254593180/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A solitary woodland dwelling emerges from towering coniferous forest, captured from a bird's-eye vantage point. The immediate foreground presents rich forest floor details: patches of vibrant moss, fallen pine needles in russet and gold, and clusters of wildflowers painted with delicate impasto. A well-trodden earthen path curves invitingly toward the cottage, its surface showing variations from dry tan to damp umber. The central structure features walls of rough-hewn gray granite stones, each block uniquely shaped and positioned, with thick daub filling between them. Dominating the composition is a steeply pitched thatched roof, the bundled straw rendered in luminous golds and ambers that seem to glow in the forest light. Small windows with simple wooden frames punctuate the facade, reflecting the muted greens of surrounding pines. A wooden barrel rests near the entrance, painted with weathered patina. The surrounding forest rises in layered ranks of deep pine green, with individual trees showing textured bark and dense needle clusters. Atmospheric perspective softens distant trees into blue-green haze. The scene balances warm earth tones against cool forest shadows, illuminated by diffuse daylight filtering through the canopy above. diff --git a/asset-work/kq4_004_ogres_cottage/caption_2_3254593180/caption_2_34071809/caption_2.txt b/asset-work/kq4_004_ogres_cottage/caption_2_3254593180/caption_2_34071809/caption_2.txt deleted file mode 100644 index e1ae638..0000000 --- a/asset-work/kq4_004_ogres_cottage/caption_2_3254593180/caption_2_34071809/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A solitary woodland dwelling emerges from towering coniferous forest, captured from a bird's-eye vantage point. The immediate foreground presents rich forest floor details: patches of vibrant moss, fallen pine needles in russet and gold, and clusters of wildflowers painted with delicate impasto. A well-trodden earthen path curves invitingly toward the cottage, its surface showing variations from dry tan to damp umber. The central structure features walls of rough-hewn gray granite stones, each block uniquely shaped and positioned, with thick daub filling between them. Dominating the composition is a steeply pitched thatched roof, the bundled straw rendered in luminous golds and ambers that seem to glow in the forest light. Small windows with simple wooden frames punctuate the facade, reflecting the muted greens of surrounding pines. A wooden barrel rests near the entrance, painted with weathered patina. The surrounding forest rises in layered ranks of deep pine green, with individual trees showing textured bark and dense needle clusters. Atmospheric perspective softens distant trees into blue-green haze. The scene balances warm earth tones against cool forest shadows, illuminated by diffuse daylight filtering through the canopy above. diff --git a/asset-work/kq4_004_ogres_cottage/caption_2_3254593180/caption_2_34071809/generated.png b/asset-work/kq4_004_ogres_cottage/caption_2_3254593180/caption_2_34071809/generated.png deleted file mode 100644 index 87b235a..0000000 --- a/asset-work/kq4_004_ogres_cottage/caption_2_3254593180/caption_2_34071809/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:fd4f121c727fe45722411593864b188f36c1d71ee845b4e31ddd5206547753ee -size 4806386 diff --git a/asset-work/kq4_004_ogres_cottage/caption_2_3254593180/generated.png b/asset-work/kq4_004_ogres_cottage/caption_2_3254593180_generated.png similarity index 100% rename from asset-work/kq4_004_ogres_cottage/caption_2_3254593180/generated.png rename to asset-work/kq4_004_ogres_cottage/caption_2_3254593180_generated.png diff --git a/asset-work/kq4_004_ogres_cottage/caption_2_3254593180_generated.png.import b/asset-work/kq4_004_ogres_cottage/caption_2_3254593180_generated.png.import new file mode 100644 index 0000000..1ddb65e --- /dev/null +++ b/asset-work/kq4_004_ogres_cottage/caption_2_3254593180_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c2mpfohsxir0m" +path="res://.godot/imported/caption_2_3254593180_generated.png-e8256baea5ef198ceda5d7e835775c3a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_004_ogres_cottage/caption_2_3254593180_generated.png" +dest_files=["res://.godot/imported/caption_2_3254593180_generated.png-e8256baea5ef198ceda5d7e835775c3a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_004_ogres_cottage/caption_3_2567661763/caption_3.txt b/asset-work/kq4_004_ogres_cottage/caption_3_2567661763/caption_3.txt deleted file mode 100644 index 1c2af68..0000000 --- a/asset-work/kq4_004_ogres_cottage/caption_3_2567661763/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A charming thatched cottage sits tucked among ancient evergreens, viewed from above with dramatic spatial depth. The foreground draws the eye along a winding country path of packed earth, its surface textured with wheel ruts, small stones, and patches of hardy ground cover. Purple and blue wildflowers bloom in natural clusters beside the path, painted with loose, expressive brushwork. The cottage occupies the central composition, its foundation built from substantial gray fieldstones showing rough texture and subtle lichen patches. Above, a thick thatched roof extends outward, the straw bundles creating rhythmic patterns of gold, amber, and pale wheat tones that catch the light. A dark wooden door with iron hinges provides rustic contrast to the pale stone walls. Small shuttered windows suggest cozy interior spaces. To the left, a massive pine tree with deeply textured bark and dense dark green foliage anchors the scene. The background reveals an impenetrable wall of forest, with layers of pine trees receding into atmospheric blue-green mist. The color palette harmonizes warm ochres and siennas of the path and roof against the cool emerald and viridian greens of the surrounding woodland, bathed in soft natural light filtering through the canopy. diff --git a/asset-work/kq4_004_ogres_cottage/caption_3_2567661763/caption_3_2298528800/caption_3.txt b/asset-work/kq4_004_ogres_cottage/caption_3_2567661763/caption_3_2298528800/caption_3.txt deleted file mode 100644 index 1c2af68..0000000 --- a/asset-work/kq4_004_ogres_cottage/caption_3_2567661763/caption_3_2298528800/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A charming thatched cottage sits tucked among ancient evergreens, viewed from above with dramatic spatial depth. The foreground draws the eye along a winding country path of packed earth, its surface textured with wheel ruts, small stones, and patches of hardy ground cover. Purple and blue wildflowers bloom in natural clusters beside the path, painted with loose, expressive brushwork. The cottage occupies the central composition, its foundation built from substantial gray fieldstones showing rough texture and subtle lichen patches. Above, a thick thatched roof extends outward, the straw bundles creating rhythmic patterns of gold, amber, and pale wheat tones that catch the light. A dark wooden door with iron hinges provides rustic contrast to the pale stone walls. Small shuttered windows suggest cozy interior spaces. To the left, a massive pine tree with deeply textured bark and dense dark green foliage anchors the scene. The background reveals an impenetrable wall of forest, with layers of pine trees receding into atmospheric blue-green mist. The color palette harmonizes warm ochres and siennas of the path and roof against the cool emerald and viridian greens of the surrounding woodland, bathed in soft natural light filtering through the canopy. diff --git a/asset-work/kq4_004_ogres_cottage/caption_3_2567661763/caption_3_2298528800/generated.png b/asset-work/kq4_004_ogres_cottage/caption_3_2567661763/caption_3_2298528800/generated.png deleted file mode 100644 index 0034a63..0000000 --- a/asset-work/kq4_004_ogres_cottage/caption_3_2567661763/caption_3_2298528800/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b600326a4cafcbc6c4ba2e48b9e8009adbe780e50fd4d28d01348e57baf7a34d -size 4476886 diff --git a/asset-work/kq4_004_ogres_cottage/caption_3_2567661763/generated.png b/asset-work/kq4_004_ogres_cottage/caption_3_2567661763_generated.png similarity index 100% rename from asset-work/kq4_004_ogres_cottage/caption_3_2567661763/generated.png rename to asset-work/kq4_004_ogres_cottage/caption_3_2567661763_generated.png diff --git a/asset-work/kq4_004_ogres_cottage/caption_3_2567661763_generated.png.import b/asset-work/kq4_004_ogres_cottage/caption_3_2567661763_generated.png.import new file mode 100644 index 0000000..67c1fb8 --- /dev/null +++ b/asset-work/kq4_004_ogres_cottage/caption_3_2567661763_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://n2fppnfgphea" +path="res://.godot/imported/caption_3_2567661763_generated.png-633c49f709f7cdf72069c24adf666886.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_004_ogres_cottage/caption_3_2567661763_generated.png" +dest_files=["res://.godot/imported/caption_3_2567661763_generated.png-633c49f709f7cdf72069c24adf666886.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_005_forest_grove/caption_1_1562212026/caption_1.txt b/asset-work/kq4_005_forest_grove/caption_1_1562212026/caption_1.txt deleted file mode 100644 index 5b17245..0000000 --- a/asset-work/kq4_005_forest_grove/caption_1_1562212026/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. From a high-angle perspective, the scene reveals a mysterious forest grove dominated by several towering, gnarled trees with distinctive turquoise-tinged bark. The foreground shows a stone cottage with a thatched roof on the left, its rustic walls partially visible. The center and right portions feature multiple ancient trees with twisted trunks and sprawling roots that dig into the dark earth. The ground is covered in deep brown soil with patches of green moss and low vegetation. In the background, more dense forest creates a dark perimeter, with the trees appearing almost black against the dim light. The atmosphere is mystical and slightly eerie, with the unusual blue-green tree bark creating a fantasy-like quality. Shadows are deep and dramatic, suggesting either dawn or dusk lighting. diff --git a/asset-work/kq4_005_forest_grove/caption_1_1562212026/generated.png b/asset-work/kq4_005_forest_grove/caption_1_1562212026_generated.png similarity index 100% rename from asset-work/kq4_005_forest_grove/caption_1_1562212026/generated.png rename to asset-work/kq4_005_forest_grove/caption_1_1562212026_generated.png diff --git a/asset-work/kq4_005_forest_grove/caption_1_1562212026_generated.png.import b/asset-work/kq4_005_forest_grove/caption_1_1562212026_generated.png.import new file mode 100644 index 0000000..6929784 --- /dev/null +++ b/asset-work/kq4_005_forest_grove/caption_1_1562212026_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bkjhhsjsi10xh" +path="res://.godot/imported/caption_1_1562212026_generated.png-fce96bd30776b8f90e50fba166877d28.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_005_forest_grove/caption_1_1562212026_generated.png" +dest_files=["res://.godot/imported/caption_1_1562212026_generated.png-fce96bd30776b8f90e50fba166877d28.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_005_forest_grove/caption_2_3947052210/caption_2.txt b/asset-work/kq4_005_forest_grove/caption_2_3947052210/caption_2.txt deleted file mode 100644 index 9e72914..0000000 --- a/asset-work/kq4_005_forest_grove/caption_2_3947052210/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. An elevated view captures an enchanted woodland clearing where ancient trees with pale blue-green trunks stand like sentinels. On the left, a quaint stone cottage with a straw-colored thatched roof nestles against the forest edge. The central area is dominated by several massive trees with deeply furrowed bark in unusual turquoise and teal hues, their gnarled roots spreading across the dark forest floor. The ground itself is rendered in rich browns with scattered green undergrowth. The background fades into dense, shadowy woodland with trees silhouetted against a darker sky. The composition has a storybook quality, with the twisted tree forms creating interesting negative spaces. Lighting is subdued and atmospheric, creating deep shadows that enhance the magical, mysterious mood. diff --git a/asset-work/kq4_005_forest_grove/caption_2_3947052210/generated.png b/asset-work/kq4_005_forest_grove/caption_2_3947052210_generated.png similarity index 100% rename from asset-work/kq4_005_forest_grove/caption_2_3947052210/generated.png rename to asset-work/kq4_005_forest_grove/caption_2_3947052210_generated.png diff --git a/asset-work/kq4_005_forest_grove/caption_2_3947052210_generated.png.import b/asset-work/kq4_005_forest_grove/caption_2_3947052210_generated.png.import new file mode 100644 index 0000000..67e2f04 --- /dev/null +++ b/asset-work/kq4_005_forest_grove/caption_2_3947052210_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cbtxpxdaoot3m" +path="res://.godot/imported/caption_2_3947052210_generated.png-87c703bb671b2f61c935d061fe08e7c3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_005_forest_grove/caption_2_3947052210_generated.png" +dest_files=["res://.godot/imported/caption_2_3947052210_generated.png-87c703bb671b2f61c935d061fe08e7c3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_005_forest_grove/caption_3_3545278729/caption_3.txt b/asset-work/kq4_005_forest_grove/caption_3_3545278729/caption_3.txt deleted file mode 100644 index 6143d56..0000000 --- a/asset-work/kq4_005_forest_grove/caption_3_3545278729/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. The composition presents a fairy-tale forest scene viewed from above. A charming stone cottage occupies the left edge with its conical thatched roof and small windows. The main focus falls on a cluster of ancient trees with distinctive pale blue-green bark that twists and contorts in organic patterns. Their massive root systems spread across the brown forest floor like grasping fingers. The ground shows variations of earth tones with patches of moss and small plants. Behind the featured trees, a wall of darker forest creates depth and mystery. The overall palette combines earthy browns with the unusual cool turquoise of the tree trunks. The lighting creates strong contrasts between illuminated areas and deep shadows, contributing to an atmosphere of enchanted wilderness. diff --git a/asset-work/kq4_005_forest_grove/caption_3_3545278729/generated.png b/asset-work/kq4_005_forest_grove/caption_3_3545278729_generated.png similarity index 100% rename from asset-work/kq4_005_forest_grove/caption_3_3545278729/generated.png rename to asset-work/kq4_005_forest_grove/caption_3_3545278729_generated.png diff --git a/asset-work/kq4_005_forest_grove/caption_3_3545278729_generated.png.import b/asset-work/kq4_005_forest_grove/caption_3_3545278729_generated.png.import new file mode 100644 index 0000000..7918fc5 --- /dev/null +++ b/asset-work/kq4_005_forest_grove/caption_3_3545278729_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://gu1i1yw4s76y" +path="res://.godot/imported/caption_3_3545278729_generated.png-8e7014ebfa636de476e7e4a7a9fd749e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_005_forest_grove/caption_3_3545278729_generated.png" +dest_files=["res://.godot/imported/caption_3_3545278729_generated.png-8e7014ebfa636de476e7e4a7a9fd749e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_006_cave_entrance/caption_1_1860364099/generated.png b/asset-work/kq4_006_cave_entrance/caption_1_1860364099_generated.png similarity index 100% rename from asset-work/kq4_006_cave_entrance/caption_1_1860364099/generated.png rename to asset-work/kq4_006_cave_entrance/caption_1_1860364099_generated.png diff --git a/asset-work/kq4_006_cave_entrance/caption_1_1860364099_generated.png.import b/asset-work/kq4_006_cave_entrance/caption_1_1860364099_generated.png.import new file mode 100644 index 0000000..07d53ac --- /dev/null +++ b/asset-work/kq4_006_cave_entrance/caption_1_1860364099_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://v6yg15aaoo88" +path="res://.godot/imported/caption_1_1860364099_generated.png-ebaa8da660d6c773009479cc27ce6b90.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_006_cave_entrance/caption_1_1860364099_generated.png" +dest_files=["res://.godot/imported/caption_1_1860364099_generated.png-ebaa8da660d6c773009479cc27ce6b90.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_006_cave_entrance/caption_1_3465141617/generated.png b/asset-work/kq4_006_cave_entrance/caption_1_3465141617_generated.png similarity index 100% rename from asset-work/kq4_006_cave_entrance/caption_1_3465141617/generated.png rename to asset-work/kq4_006_cave_entrance/caption_1_3465141617_generated.png diff --git a/asset-work/kq4_006_cave_entrance/caption_1_3465141617_generated.png.import b/asset-work/kq4_006_cave_entrance/caption_1_3465141617_generated.png.import new file mode 100644 index 0000000..a313393 --- /dev/null +++ b/asset-work/kq4_006_cave_entrance/caption_1_3465141617_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bwd0ramn62wqd" +path="res://.godot/imported/caption_1_3465141617_generated.png-aaaf75873c34876a0b07babb89c17879.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_006_cave_entrance/caption_1_3465141617_generated.png" +dest_files=["res://.godot/imported/caption_1_3465141617_generated.png-aaaf75873c34876a0b07babb89c17879.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_006_cave_entrance/caption_2_302016458/generated.png b/asset-work/kq4_006_cave_entrance/caption_2_302016458_generated.png similarity index 100% rename from asset-work/kq4_006_cave_entrance/caption_2_302016458/generated.png rename to asset-work/kq4_006_cave_entrance/caption_2_302016458_generated.png diff --git a/asset-work/kq4_006_cave_entrance/caption_2_302016458_generated.png.import b/asset-work/kq4_006_cave_entrance/caption_2_302016458_generated.png.import new file mode 100644 index 0000000..2de7330 --- /dev/null +++ b/asset-work/kq4_006_cave_entrance/caption_2_302016458_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://duuijottkt3fg" +path="res://.godot/imported/caption_2_302016458_generated.png-bccf6776744cef7c17c8b1765f53e585.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_006_cave_entrance/caption_2_302016458_generated.png" +dest_files=["res://.godot/imported/caption_2_302016458_generated.png-bccf6776744cef7c17c8b1765f53e585.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_006_cave_entrance/caption_2_540538407/generated.png b/asset-work/kq4_006_cave_entrance/caption_2_540538407_generated.png similarity index 100% rename from asset-work/kq4_006_cave_entrance/caption_2_540538407/generated.png rename to asset-work/kq4_006_cave_entrance/caption_2_540538407_generated.png diff --git a/asset-work/kq4_006_cave_entrance/caption_2_540538407_generated.png.import b/asset-work/kq4_006_cave_entrance/caption_2_540538407_generated.png.import new file mode 100644 index 0000000..c7e672b --- /dev/null +++ b/asset-work/kq4_006_cave_entrance/caption_2_540538407_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://22m523fgks2p" +path="res://.godot/imported/caption_2_540538407_generated.png-0cf13558174a568940cdf0e4b08672a7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_006_cave_entrance/caption_2_540538407_generated.png" +dest_files=["res://.godot/imported/caption_2_540538407_generated.png-0cf13558174a568940cdf0e4b08672a7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_006_cave_entrance/caption_3_185028864/generated.png b/asset-work/kq4_006_cave_entrance/caption_3_185028864_generated.png similarity index 100% rename from asset-work/kq4_006_cave_entrance/caption_3_185028864/generated.png rename to asset-work/kq4_006_cave_entrance/caption_3_185028864_generated.png diff --git a/asset-work/kq4_006_cave_entrance/caption_3_185028864_generated.png.import b/asset-work/kq4_006_cave_entrance/caption_3_185028864_generated.png.import new file mode 100644 index 0000000..5090d79 --- /dev/null +++ b/asset-work/kq4_006_cave_entrance/caption_3_185028864_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://csdoica3e1q0f" +path="res://.godot/imported/caption_3_185028864_generated.png-069dcb76b40df956e2becde8d7e449b4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_006_cave_entrance/caption_3_185028864_generated.png" +dest_files=["res://.godot/imported/caption_3_185028864_generated.png-069dcb76b40df956e2becde8d7e449b4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_006_cave_entrance/caption_3_4205602011/generated.png b/asset-work/kq4_006_cave_entrance/caption_3_4205602011_generated.png similarity index 100% rename from asset-work/kq4_006_cave_entrance/caption_3_4205602011/generated.png rename to asset-work/kq4_006_cave_entrance/caption_3_4205602011_generated.png diff --git a/asset-work/kq4_006_cave_entrance/caption_3_4205602011_generated.png.import b/asset-work/kq4_006_cave_entrance/caption_3_4205602011_generated.png.import new file mode 100644 index 0000000..038e3e5 --- /dev/null +++ b/asset-work/kq4_006_cave_entrance/caption_3_4205602011_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dhb5wxit3m218" +path="res://.godot/imported/caption_3_4205602011_generated.png-10471a07a58482bcc907e5000e7f4402.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_006_cave_entrance/caption_3_4205602011_generated.png" +dest_files=["res://.godot/imported/caption_3_4205602011_generated.png-10471a07a58482bcc907e5000e7f4402.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_007_fishermans_shack/caption_1_1979017646/caption_1.txt b/asset-work/kq4_007_fishermans_shack/caption_1_1979017646/caption_1.txt deleted file mode 100644 index 1f5b251..0000000 --- a/asset-work/kq4_007_fishermans_shack/caption_1_1979017646/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. From a high-angle perspective, the scene depicts a rustic fisherman's shack perched at the edge of a coastal inlet. The weathered wooden building with its gray shingled roof and simple rectangular windows dominates the right side of the frame. A stone chimney with a red cap rises from the roof. In front of the shack, a rickety wooden pier extends into the water on the left, its pilings disappearing into the turquoise shallows. The shoreline curves gracefully, with sandy beach meeting the water in gentle arcs. Behind the shack, a grassy bluff rises with scattered bushes and flowers. The water displays beautiful gradations from light aqua near shore to deep navy blue further out. White clouds drift in the bright blue sky above. The lighting suggests a clear day with sunlight casting soft shadows. diff --git a/asset-work/kq4_007_fishermans_shack/caption_1_1979017646/generated.png b/asset-work/kq4_007_fishermans_shack/caption_1_1979017646_generated.png similarity index 100% rename from asset-work/kq4_007_fishermans_shack/caption_1_1979017646/generated.png rename to asset-work/kq4_007_fishermans_shack/caption_1_1979017646_generated.png diff --git a/asset-work/kq4_007_fishermans_shack/caption_1_1979017646_generated.png.import b/asset-work/kq4_007_fishermans_shack/caption_1_1979017646_generated.png.import new file mode 100644 index 0000000..bad8bbd --- /dev/null +++ b/asset-work/kq4_007_fishermans_shack/caption_1_1979017646_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bpxf26vor1ja0" +path="res://.godot/imported/caption_1_1979017646_generated.png-40a0f64270a77f18b91e3014d00283a4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_007_fishermans_shack/caption_1_1979017646_generated.png" +dest_files=["res://.godot/imported/caption_1_1979017646_generated.png-40a0f64270a77f18b91e3014d00283a4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_007_fishermans_shack/caption_2_1520663074/caption_2.txt b/asset-work/kq4_007_fishermans_shack/caption_2_1520663074/caption_2.txt deleted file mode 100644 index 459f881..0000000 --- a/asset-work/kq4_007_fishermans_shack/caption_2_1520663074/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. An elevated coastal view showcases a humble fisherman's dwelling at the water's edge. The gray wooden shack with its pitched roof and multiple windows sits prominently on the right, its weathered planks suggesting years of exposure to sea air. A distinctive red-capped chimney punctuates the roofline. To the left, a simple wooden dock juts into the inlet, supported by rough-hewn posts that stand in the shallow turquoise water. The beach curves in a natural arc, its pale sand contrasting with the deep blue ocean beyond. Behind the structure, verdant grass and wildflowers grow on a gentle slope. The sky stretches overhead in brilliant blue with fluffy white cumulus clouds. Natural daylight bathes the scene, highlighting the textures of wood, stone, and water. diff --git a/asset-work/kq4_007_fishermans_shack/caption_2_1520663074/generated.png b/asset-work/kq4_007_fishermans_shack/caption_2_1520663074_generated.png similarity index 100% rename from asset-work/kq4_007_fishermans_shack/caption_2_1520663074/generated.png rename to asset-work/kq4_007_fishermans_shack/caption_2_1520663074_generated.png diff --git a/asset-work/kq4_007_fishermans_shack/caption_2_1520663074_generated.png.import b/asset-work/kq4_007_fishermans_shack/caption_2_1520663074_generated.png.import new file mode 100644 index 0000000..5582f93 --- /dev/null +++ b/asset-work/kq4_007_fishermans_shack/caption_2_1520663074_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c0ese5qy6xb12" +path="res://.godot/imported/caption_2_1520663074_generated.png-cafdb2402d0031e56a3a9ea9fc975b43.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_007_fishermans_shack/caption_2_1520663074_generated.png" +dest_files=["res://.godot/imported/caption_2_1520663074_generated.png-cafdb2402d0031e56a3a9ea9fc975b43.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_007_fishermans_shack/caption_3_840023845/caption_3.txt b/asset-work/kq4_007_fishermans_shack/caption_3_840023845/caption_3.txt deleted file mode 100644 index f7465be..0000000 --- a/asset-work/kq4_007_fishermans_shack/caption_3_840023845/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. The composition captures a seaside dwelling from a bird's-eye perspective. A modest gray wooden shack with a shingled roof occupies the right portion, featuring several windows and a front entrance reached by stone steps. A brick chimney with a red top extends upward from the roof. On the left, a basic wooden pier stretches into the calm inlet waters, which transition from pale green near shore to deeper blue tones. The shoreline creates an elegant curve, with patches of sand and pebbles. Behind the house, a grassy bank rises, dotted with shrubs and colorful wildflowers. The expansive sky above is a clear azure with scattered white clouds. The scene is illuminated by bright daylight that brings out the details of the weathered wood and coastal vegetation. diff --git a/asset-work/kq4_008_back_of_fishermans_shack/caption_1_4031805708/generated.png b/asset-work/kq4_008_back_of_fishermans_shack/caption_1_4031805708_generated.png similarity index 100% rename from asset-work/kq4_008_back_of_fishermans_shack/caption_1_4031805708/generated.png rename to asset-work/kq4_008_back_of_fishermans_shack/caption_1_4031805708_generated.png diff --git a/asset-work/kq4_008_back_of_fishermans_shack/caption_1_4031805708_generated.png.import b/asset-work/kq4_008_back_of_fishermans_shack/caption_1_4031805708_generated.png.import new file mode 100644 index 0000000..8385efb --- /dev/null +++ b/asset-work/kq4_008_back_of_fishermans_shack/caption_1_4031805708_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cxp0d5p3jt1dv" +path="res://.godot/imported/caption_1_4031805708_generated.png-109a72da1ebcbadd0efa7a2008ba155a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_008_back_of_fishermans_shack/caption_1_4031805708_generated.png" +dest_files=["res://.godot/imported/caption_1_4031805708_generated.png-109a72da1ebcbadd0efa7a2008ba155a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_008_back_of_fishermans_shack/caption_1_4117026231/generated.png b/asset-work/kq4_008_back_of_fishermans_shack/caption_1_4117026231_generated.png similarity index 100% rename from asset-work/kq4_008_back_of_fishermans_shack/caption_1_4117026231/generated.png rename to asset-work/kq4_008_back_of_fishermans_shack/caption_1_4117026231_generated.png diff --git a/asset-work/kq4_008_back_of_fishermans_shack/caption_1_4117026231_generated.png.import b/asset-work/kq4_008_back_of_fishermans_shack/caption_1_4117026231_generated.png.import new file mode 100644 index 0000000..a3cf72c --- /dev/null +++ b/asset-work/kq4_008_back_of_fishermans_shack/caption_1_4117026231_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ceqigaklceg4h" +path="res://.godot/imported/caption_1_4117026231_generated.png-79a7ebc92f7d1736d04dc090d958baae.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_008_back_of_fishermans_shack/caption_1_4117026231_generated.png" +dest_files=["res://.godot/imported/caption_1_4117026231_generated.png-79a7ebc92f7d1736d04dc090d958baae.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_008_back_of_fishermans_shack/caption_2_4073334780/generated.png b/asset-work/kq4_008_back_of_fishermans_shack/caption_2_4073334780_generated.png similarity index 100% rename from asset-work/kq4_008_back_of_fishermans_shack/caption_2_4073334780/generated.png rename to asset-work/kq4_008_back_of_fishermans_shack/caption_2_4073334780_generated.png diff --git a/asset-work/kq4_008_back_of_fishermans_shack/caption_2_4073334780_generated.png.import b/asset-work/kq4_008_back_of_fishermans_shack/caption_2_4073334780_generated.png.import new file mode 100644 index 0000000..466951c --- /dev/null +++ b/asset-work/kq4_008_back_of_fishermans_shack/caption_2_4073334780_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://mvwmv5ylbrbt" +path="res://.godot/imported/caption_2_4073334780_generated.png-7fc8049a40056362638854bca535e058.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_008_back_of_fishermans_shack/caption_2_4073334780_generated.png" +dest_files=["res://.godot/imported/caption_2_4073334780_generated.png-7fc8049a40056362638854bca535e058.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_008_back_of_fishermans_shack/caption_2_739983205/generated.png b/asset-work/kq4_008_back_of_fishermans_shack/caption_2_739983205_generated.png similarity index 100% rename from asset-work/kq4_008_back_of_fishermans_shack/caption_2_739983205/generated.png rename to asset-work/kq4_008_back_of_fishermans_shack/caption_2_739983205_generated.png diff --git a/asset-work/kq4_008_back_of_fishermans_shack/caption_2_739983205_generated.png.import b/asset-work/kq4_008_back_of_fishermans_shack/caption_2_739983205_generated.png.import new file mode 100644 index 0000000..8b1935f --- /dev/null +++ b/asset-work/kq4_008_back_of_fishermans_shack/caption_2_739983205_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://7l57c00ukcgt" +path="res://.godot/imported/caption_2_739983205_generated.png-c36f9b47fa1d1f8d40b8ae6de239710c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_008_back_of_fishermans_shack/caption_2_739983205_generated.png" +dest_files=["res://.godot/imported/caption_2_739983205_generated.png-c36f9b47fa1d1f8d40b8ae6de239710c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_008_back_of_fishermans_shack/caption_3_1953703213/generated.png b/asset-work/kq4_008_back_of_fishermans_shack/caption_3_1953703213_generated.png similarity index 100% rename from asset-work/kq4_008_back_of_fishermans_shack/caption_3_1953703213/generated.png rename to asset-work/kq4_008_back_of_fishermans_shack/caption_3_1953703213_generated.png diff --git a/asset-work/kq4_008_back_of_fishermans_shack/caption_3_1953703213_generated.png.import b/asset-work/kq4_008_back_of_fishermans_shack/caption_3_1953703213_generated.png.import new file mode 100644 index 0000000..91f753c --- /dev/null +++ b/asset-work/kq4_008_back_of_fishermans_shack/caption_3_1953703213_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bllpxhxre03n0" +path="res://.godot/imported/caption_3_1953703213_generated.png-a9527fa1b56dfea9bed3862683f4f59c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_008_back_of_fishermans_shack/caption_3_1953703213_generated.png" +dest_files=["res://.godot/imported/caption_3_1953703213_generated.png-a9527fa1b56dfea9bed3862683f4f59c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_008_back_of_fishermans_shack/caption_3_436104143/generated.png b/asset-work/kq4_008_back_of_fishermans_shack/caption_3_436104143_generated.png similarity index 100% rename from asset-work/kq4_008_back_of_fishermans_shack/caption_3_436104143/generated.png rename to asset-work/kq4_008_back_of_fishermans_shack/caption_3_436104143_generated.png diff --git a/asset-work/kq4_008_back_of_fishermans_shack/caption_3_436104143_generated.png.import b/asset-work/kq4_008_back_of_fishermans_shack/caption_3_436104143_generated.png.import new file mode 100644 index 0000000..571076d --- /dev/null +++ b/asset-work/kq4_008_back_of_fishermans_shack/caption_3_436104143_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://8tp74of2xfq0" +path="res://.godot/imported/caption_3_436104143_generated.png-691c08fefcee7271b9f2c9dd89da738b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_008_back_of_fishermans_shack/caption_3_436104143_generated.png" +dest_files=["res://.godot/imported/caption_3_436104143_generated.png-691c08fefcee7271b9f2c9dd89da738b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_009_shady_wooded_area/caption_1_384957269/caption_1.txt b/asset-work/kq4_009_shady_wooded_area/caption_1_384957269/caption_1.txt deleted file mode 100644 index 46f233c..0000000 --- a/asset-work/kq4_009_shady_wooded_area/caption_1_384957269/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. From a high-angle perspective, the scene reveals a shaded woodland path dappled with sunlight. The foreground features two prominent tree trunks framing the view, their dark bark textured with moss and age. Between them, a large gray boulder sits amid patches of wildflowers in purple and pink. The path itself is a mix of brown earth and green grass, winding toward the background where a brighter clearing is visible. On the right, dense green foliage and bushes create a natural wall. In the distance, beyond the shaded area, a glimpse of open landscape with lighter tones suggests an exit from the forest. The lighting creates dramatic contrasts between deep shadows and sunlit patches, giving the scene a mysterious, tranquil atmosphere. diff --git a/asset-work/kq4_009_shady_wooded_area/caption_1_384957269/generated.png b/asset-work/kq4_009_shady_wooded_area/caption_1_384957269_generated.png similarity index 100% rename from asset-work/kq4_009_shady_wooded_area/caption_1_384957269/generated.png rename to asset-work/kq4_009_shady_wooded_area/caption_1_384957269_generated.png diff --git a/asset-work/kq4_009_shady_wooded_area/caption_1_384957269_generated.png.import b/asset-work/kq4_009_shady_wooded_area/caption_1_384957269_generated.png.import new file mode 100644 index 0000000..566a677 --- /dev/null +++ b/asset-work/kq4_009_shady_wooded_area/caption_1_384957269_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cijmcybabsunj" +path="res://.godot/imported/caption_1_384957269_generated.png-939e31c6133c098bf68d669ba448c641.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_009_shady_wooded_area/caption_1_384957269_generated.png" +dest_files=["res://.godot/imported/caption_1_384957269_generated.png-939e31c6133c098bf68d669ba448c641.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_009_shady_wooded_area/caption_2_3223853744/caption_2.txt b/asset-work/kq4_009_shady_wooded_area/caption_2_3223853744/caption_2.txt deleted file mode 100644 index 5c1d7bc..0000000 --- a/asset-work/kq4_009_shady_wooded_area/caption_2_3223853744/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. An elevated view captures a tranquil forest nook where tall trees create a natural corridor. Two substantial tree trunks dominate the foreground, one on the left and another on the right, their dark bark contrasting with the surrounding greenery. Between them lies a large smooth boulder surrounded by clusters of purple and pink wildflowers. The forest floor displays a mix of brown earth and vibrant green grass. To the right, thick bushes and undergrowth form a dense boundary. The path leads toward a brighter area in the background, where the light opens up to reveal what appears to be a clearing beyond. Sunlight filters through the canopy creating patterns of light and shadow across the scene. diff --git a/asset-work/kq4_009_shady_wooded_area/caption_2_3223853744/generated.png b/asset-work/kq4_009_shady_wooded_area/caption_2_3223853744_generated.png similarity index 100% rename from asset-work/kq4_009_shady_wooded_area/caption_2_3223853744/generated.png rename to asset-work/kq4_009_shady_wooded_area/caption_2_3223853744_generated.png diff --git a/asset-work/kq4_009_shady_wooded_area/caption_2_3223853744_generated.png.import b/asset-work/kq4_009_shady_wooded_area/caption_2_3223853744_generated.png.import new file mode 100644 index 0000000..a50e7d9 --- /dev/null +++ b/asset-work/kq4_009_shady_wooded_area/caption_2_3223853744_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ckumw5j42y3sa" +path="res://.godot/imported/caption_2_3223853744_generated.png-cb17e17648566d9d4163a2e9bab12a57.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_009_shady_wooded_area/caption_2_3223853744_generated.png" +dest_files=["res://.godot/imported/caption_2_3223853744_generated.png-cb17e17648566d9d4163a2e9bab12a57.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_009_shady_wooded_area/caption_3_2676608714/caption_3.txt b/asset-work/kq4_009_shady_wooded_area/caption_3_2676608714/caption_3.txt deleted file mode 100644 index 52a2e0b..0000000 --- a/asset-work/kq4_009_shady_wooded_area/caption_3_2676608714/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. The composition shows a peaceful wooded glade viewed from above. Massive tree trunks with deeply textured bark frame the left and right sides of the scene. In the center foreground, a significant gray rock rests among scattered wildflowers in shades of violet and rose. The ground consists of rich brown soil mixed with green grass, forming a natural path that recedes into the distance. On the right, dense foliage and bushes add layers of greenery. The background reveals a lighter area suggesting an opening in the forest, with hints of brighter landscape beyond the shadows. The interplay of light creates a mosaic of illuminated patches and cool shadows, evoking a sense of quiet seclusion. diff --git a/asset-work/kq4_009_shady_wooded_area/caption_3_2676608714/generated.png b/asset-work/kq4_009_shady_wooded_area/caption_3_2676608714_generated.png similarity index 100% rename from asset-work/kq4_009_shady_wooded_area/caption_3_2676608714/generated.png rename to asset-work/kq4_009_shady_wooded_area/caption_3_2676608714_generated.png diff --git a/asset-work/kq4_009_shady_wooded_area/caption_3_2676608714_generated.png.import b/asset-work/kq4_009_shady_wooded_area/caption_3_2676608714_generated.png.import new file mode 100644 index 0000000..2583275 --- /dev/null +++ b/asset-work/kq4_009_shady_wooded_area/caption_3_2676608714_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bgdn10sn7kdhc" +path="res://.godot/imported/caption_3_2676608714_generated.png-31914f0f9b6c862afc0e5de65d17c4d9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_009_shady_wooded_area/caption_3_2676608714_generated.png" +dest_files=["res://.godot/imported/caption_3_2676608714_generated.png-31914f0f9b6c862afc0e5de65d17c4d9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_010_forest_path/caption_1_3724435196/caption_1.txt b/asset-work/kq4_010_forest_path/caption_1_3724435196/caption_1.txt deleted file mode 100644 index 748badf..0000000 --- a/asset-work/kq4_010_forest_path/caption_1_3724435196/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. From a high-angle perspective, the scene captures a forest path winding through dense woodland. The foreground is framed by a large tree trunk on the left with sprawling branches overhead. The path, rendered in lighter earth tones, curves gently through the center, bordered by lush green grass and flowering plants in purple and pink. Several evergreen trees with dense foliage occupy the middle ground, their dark green canopies creating depth. In the distance, partially obscured by trees, a quaint cottage with warm-colored walls is visible. The background consists of more forest with dark silhouettes of trees against a bright blue sky. The lighting suggests a sunny day with dappled sunlight filtering through the canopy. diff --git a/asset-work/kq4_010_forest_path/caption_1_3724435196/generated.png b/asset-work/kq4_010_forest_path/caption_1_3724435196_generated.png similarity index 100% rename from asset-work/kq4_010_forest_path/caption_1_3724435196/generated.png rename to asset-work/kq4_010_forest_path/caption_1_3724435196_generated.png diff --git a/asset-work/kq4_010_forest_path/caption_1_3724435196_generated.png.import b/asset-work/kq4_010_forest_path/caption_1_3724435196_generated.png.import new file mode 100644 index 0000000..f9271b4 --- /dev/null +++ b/asset-work/kq4_010_forest_path/caption_1_3724435196_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bto6sgcmqsbh3" +path="res://.godot/imported/caption_1_3724435196_generated.png-f2ce23c0212c9ccef616d84209eb2479.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_010_forest_path/caption_1_3724435196_generated.png" +dest_files=["res://.godot/imported/caption_1_3724435196_generated.png-f2ce23c0212c9ccef616d84209eb2479.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_010_forest_path/caption_2_476893062/caption_2.txt b/asset-work/kq4_010_forest_path/caption_2_476893062/caption_2.txt deleted file mode 100644 index a80f6e6..0000000 --- a/asset-work/kq4_010_forest_path/caption_2_476893062/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. An elevated view reveals a woodland trail meandering through verdant forest. A prominent tree trunk anchors the left foreground, its branches extending across the upper portion of the frame. The path itself cuts through the scene in gentle curves, its sandy surface contrasting with the surrounding green grass and wildflowers. Multiple evergreen trees with thick foliage populate the middle distance, their dark forms creating layers of depth. Peeking through the trees in the background, a charming cottage with illuminated windows suggests habitation. Dark forest masses fill the background beneath a clear blue sky. The composition balances natural elements with the hint of human presence, bathed in natural daylight. diff --git a/asset-work/kq4_010_forest_path/caption_2_476893062/generated.png b/asset-work/kq4_010_forest_path/caption_2_476893062_generated.png similarity index 100% rename from asset-work/kq4_010_forest_path/caption_2_476893062/generated.png rename to asset-work/kq4_010_forest_path/caption_2_476893062_generated.png diff --git a/asset-work/kq4_010_forest_path/caption_2_476893062_generated.png.import b/asset-work/kq4_010_forest_path/caption_2_476893062_generated.png.import new file mode 100644 index 0000000..f31100f --- /dev/null +++ b/asset-work/kq4_010_forest_path/caption_2_476893062_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bjdc21w345s12" +path="res://.godot/imported/caption_2_476893062_generated.png-2e63942e7e29d04815ff67b5789bf89c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_010_forest_path/caption_2_476893062_generated.png" +dest_files=["res://.godot/imported/caption_2_476893062_generated.png-2e63942e7e29d04815ff67b5789bf89c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_010_forest_path/caption_3_4187037150/caption_3.txt b/asset-work/kq4_010_forest_path/caption_3_4187037150/caption_3.txt deleted file mode 100644 index 149960e..0000000 --- a/asset-work/kq4_010_forest_path/caption_3_4187037150/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. The scene presents a picturesque forest pathway viewed from above. A substantial tree with detailed bark occupies the left side, its canopy extending overhead. The winding trail of light earth cuts through vibrant green grass dotted with purple and pink wildflowers. Several bushy evergreen trees with dense foliage stand in the mid-ground, partially obscuring the view beyond. Through gaps in the vegetation, a cozy cottage with warm walls and a dark roof is visible in the distance. The background features more woodland silhouettes against a bright azure sky. The lighting creates a pleasant interplay of sunlit areas and gentle shadows, giving the scene a welcoming, storybook quality. diff --git a/asset-work/kq4_010_forest_path/caption_3_4187037150/generated.png b/asset-work/kq4_010_forest_path/caption_3_4187037150_generated.png similarity index 100% rename from asset-work/kq4_010_forest_path/caption_3_4187037150/generated.png rename to asset-work/kq4_010_forest_path/caption_3_4187037150_generated.png diff --git a/asset-work/kq4_010_forest_path/caption_3_4187037150_generated.png.import b/asset-work/kq4_010_forest_path/caption_3_4187037150_generated.png.import new file mode 100644 index 0000000..3c23f45 --- /dev/null +++ b/asset-work/kq4_010_forest_path/caption_3_4187037150_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dxg3w8qneyrlo" +path="res://.godot/imported/caption_3_4187037150_generated.png-a5cfcf99eba3a3a83236a4dc896f6f52.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_010_forest_path/caption_3_4187037150_generated.png" +dest_files=["res://.godot/imported/caption_3_4187037150_generated.png-a5cfcf99eba3a3a83236a4dc896f6f52.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_011_enchanted_grove/caption_1_242579055/caption_1.txt b/asset-work/kq4_011_enchanted_grove/caption_1_242579055/caption_1.txt deleted file mode 100644 index 39edc3c..0000000 --- a/asset-work/kq4_011_enchanted_grove/caption_1_242579055/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. From a high-angle perspective, the scene depicts an enchanted grove with a mystical atmosphere. Massive tree trunks dominate the composition, rendered in unusual blue-green tones with gnarled, twisted forms that suggest ancient magic. A particularly large dark tree trunk fills the left side, its branches reaching across the frame. The ground is a rich reddish-brown earth scattered with fallen leaves. Several smaller trees with the same turquoise bark populate the scene, their roots exposed and contorted. The background fades into dense, shadowy forest with dark green foliage. The lighting is dramatic and moody, with deep shadows and mysterious highlights creating an otherworldly ambiance. diff --git a/asset-work/kq4_011_enchanted_grove/caption_1_242579055/generated.png b/asset-work/kq4_011_enchanted_grove/caption_1_242579055_generated.png similarity index 100% rename from asset-work/kq4_011_enchanted_grove/caption_1_242579055/generated.png rename to asset-work/kq4_011_enchanted_grove/caption_1_242579055_generated.png diff --git a/asset-work/kq4_011_enchanted_grove/caption_1_242579055_generated.png.import b/asset-work/kq4_011_enchanted_grove/caption_1_242579055_generated.png.import new file mode 100644 index 0000000..eafb9ef --- /dev/null +++ b/asset-work/kq4_011_enchanted_grove/caption_1_242579055_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://biommsgb0n55s" +path="res://.godot/imported/caption_1_242579055_generated.png-3c3b43dc7acc6e59893992de09d0e8c4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_011_enchanted_grove/caption_1_242579055_generated.png" +dest_files=["res://.godot/imported/caption_1_242579055_generated.png-3c3b43dc7acc6e59893992de09d0e8c4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_011_enchanted_grove/caption_2_496392820/caption_2.txt b/asset-work/kq4_011_enchanted_grove/caption_2_496392820/caption_2.txt deleted file mode 100644 index b4ee653..0000000 --- a/asset-work/kq4_011_enchanted_grove/caption_2_496392820/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. An elevated view captures a magical forest clearing with an eerie, enchanted quality. The left side is dominated by a massive dark tree trunk with sprawling branches that extend across the upper portion. Throughout the scene, numerous trees display distinctive pale blue-green bark with deeply furrowed textures and twisted, organic shapes. The forest floor is covered in dark reddish soil with patches of green moss and low vegetation. The trees appear ancient and otherworldly, their forms contorted as if by magic. Behind them, dense dark forest creates a mysterious backdrop. The lighting is subdued and atmospheric, with shadows dominating the scene and creating a sense of mystical foreboding. diff --git a/asset-work/kq4_011_enchanted_grove/caption_2_496392820/generated.png b/asset-work/kq4_011_enchanted_grove/caption_2_496392820_generated.png similarity index 100% rename from asset-work/kq4_011_enchanted_grove/caption_2_496392820/generated.png rename to asset-work/kq4_011_enchanted_grove/caption_2_496392820_generated.png diff --git a/asset-work/kq4_011_enchanted_grove/caption_2_496392820_generated.png.import b/asset-work/kq4_011_enchanted_grove/caption_2_496392820_generated.png.import new file mode 100644 index 0000000..5062bce --- /dev/null +++ b/asset-work/kq4_011_enchanted_grove/caption_2_496392820_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bdkvffdfsv6br" +path="res://.godot/imported/caption_2_496392820_generated.png-b8e2cbe6b14effc018c49f905e5e9e8f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_011_enchanted_grove/caption_2_496392820_generated.png" +dest_files=["res://.godot/imported/caption_2_496392820_generated.png-b8e2cbe6b14effc018c49f905e5e9e8f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_011_enchanted_grove/caption_3_86213766/caption_3.txt b/asset-work/kq4_011_enchanted_grove/caption_3_86213766/caption_3.txt deleted file mode 100644 index f8fc629..0000000 --- a/asset-work/kq4_011_enchanted_grove/caption_3_86213766/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. The composition reveals a fairy-tale forest with supernatural elements viewed from above. A huge dark tree trunk with rough bark occupies the left foreground, partially silhouetted against the lighter background. The grove features multiple ancient trees with unusual turquoise and teal bark, their trunks twisted into fantastical shapes with exposed root systems. The ground is rendered in deep brown and red earth tones with scattered green patches. Behind the featured trees, a wall of dark forest foliage creates depth and mystery. The overall color palette combines earthy browns with the ethereal blue-green of the enchanted trees. Dramatic lighting emphasizes the magical atmosphere with strong contrasts between light and shadow. diff --git a/asset-work/kq4_011_enchanted_grove/caption_3_86213766/generated.png b/asset-work/kq4_011_enchanted_grove/caption_3_86213766_generated.png similarity index 100% rename from asset-work/kq4_011_enchanted_grove/caption_3_86213766/generated.png rename to asset-work/kq4_011_enchanted_grove/caption_3_86213766_generated.png diff --git a/asset-work/kq4_011_enchanted_grove/caption_3_86213766_generated.png.import b/asset-work/kq4_011_enchanted_grove/caption_3_86213766_generated.png.import new file mode 100644 index 0000000..5569510 --- /dev/null +++ b/asset-work/kq4_011_enchanted_grove/caption_3_86213766_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d10xboy8v7vij" +path="res://.godot/imported/caption_3_86213766_generated.png-ff6298765702fb6f6cfc6fe61ac96e0c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_011_enchanted_grove/caption_3_86213766_generated.png" +dest_files=["res://.godot/imported/caption_3_86213766_generated.png-ff6298765702fb6f6cfc6fe61ac96e0c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_012_haunted_forest/caption_1_3843598031/caption_1.txt b/asset-work/kq4_012_haunted_forest/caption_1_3843598031/caption_1.txt deleted file mode 100644 index 9501d8e..0000000 --- a/asset-work/kq4_012_haunted_forest/caption_1_3843598031/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A mysterious woodland path viewed from elevated perspective, winding through ancient trees with gnarled, silvery-blue trunks that twist like grasping fingers toward the sky. The foreground reveals textured earthen ground in rich umber and sienna tones, scattered with fallen leaves and exposed root systems. Towering specimens with contorted branches create a natural archway overhead, their dense emerald canopies filtering the light into dappled pools of shadow and gold. To the right, weathered stone outcrops emerge from the forest floor, their surfaces mottled with patches of pale lichen and deep shadow. The middle ground shows the path curving invitingly toward a sunlit clearing, where a weathered wooden structure stands silhouetted against brilliant azure sky. Background trees fade into atmospheric blues and violets, their forms softened by distance. The palette balances cool cyan and turquoise bark tones against warm earth pigments, with touches of moss green and golden highlights piercing through the canopy, creating an enchanted, slightly ominous atmosphere reminiscent of old folklore illustrations. diff --git a/asset-work/kq4_012_haunted_forest/caption_1_3843598031/generated.png b/asset-work/kq4_012_haunted_forest/caption_1_3843598031_generated.png similarity index 100% rename from asset-work/kq4_012_haunted_forest/caption_1_3843598031/generated.png rename to asset-work/kq4_012_haunted_forest/caption_1_3843598031_generated.png diff --git a/asset-work/kq4_012_haunted_forest/caption_1_3843598031_generated.png.import b/asset-work/kq4_012_haunted_forest/caption_1_3843598031_generated.png.import new file mode 100644 index 0000000..fa0cb98 --- /dev/null +++ b/asset-work/kq4_012_haunted_forest/caption_1_3843598031_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cj7rxken4kr2f" +path="res://.godot/imported/caption_1_3843598031_generated.png-9c70cd90dd1ce74f34ee66d8769c19b3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_012_haunted_forest/caption_1_3843598031_generated.png" +dest_files=["res://.godot/imported/caption_1_3843598031_generated.png-9c70cd90dd1ce74f34ee66d8769c19b3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_012_haunted_forest/caption_2_1157958404/caption_2.txt b/asset-work/kq4_012_haunted_forest/caption_2_1157958404/caption_2.txt deleted file mode 100644 index d6d86c5..0000000 --- a/asset-work/kq4_012_haunted_forest/caption_2_1157958404/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. An atmospheric forest interior captured from bird's-eye view, where a serpentine trail of burnt-orange earth cuts through stands of fantastical trees with pale turquoise bark. The immediate foreground displays rough, cracked soil textures and scattered stones, painted with thick impasto strokes suggesting centuries of accumulated leaf litter and erosion. Central specimens twist in impossible spirals, their smooth bark catching cool light while dense foliage crowns create a ceiling of variegated greens above. To the right, massive boulders and rocky formations break through the forest floor, their granite surfaces catching highlights and casting long purple shadows across the path. In the distance, the woodland opens to reveal a luminous clearing where simple wooden fencing or a signpost marks human presence amid the wild growth. Light filters through gaps in the canopy as dramatic rays, illuminating misty atmosphere between trunks. The composition emphasizes depth through overlapping branches and progressively lighter, cooler tones receding into the background, while the color harmony unites earthy reds and browns with ethereal blue-greens and deep forest shadows. diff --git a/asset-work/kq4_012_haunted_forest/caption_2_1157958404/generated.png b/asset-work/kq4_012_haunted_forest/caption_2_1157958404_generated.png similarity index 100% rename from asset-work/kq4_012_haunted_forest/caption_2_1157958404/generated.png rename to asset-work/kq4_012_haunted_forest/caption_2_1157958404_generated.png diff --git a/asset-work/kq4_012_haunted_forest/caption_2_1157958404_generated.png.import b/asset-work/kq4_012_haunted_forest/caption_2_1157958404_generated.png.import new file mode 100644 index 0000000..b37eec0 --- /dev/null +++ b/asset-work/kq4_012_haunted_forest/caption_2_1157958404_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dkkwmaapivcve" +path="res://.godot/imported/caption_2_1157958404_generated.png-934efeadc4e7945947acb9646952f6f3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_012_haunted_forest/caption_2_1157958404_generated.png" +dest_files=["res://.godot/imported/caption_2_1157958404_generated.png-934efeadc4e7945947acb9646952f6f3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_012_haunted_forest/caption_3_4048908388/caption_3.txt b/asset-work/kq4_012_haunted_forest/caption_3_4048908388/caption_3.txt deleted file mode 100644 index 71a8d49..0000000 --- a/asset-work/kq4_012_haunted_forest/caption_3_4048908388/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A haunting woodland passage rendered from high vantage point, where an earthen trail meanders between grotesque trees whose bleached cyan trunks writhe in organic spirals and curves. The foreground presents detailed soil textures in rust and ochre, interspersed with exposed roots and small stones that speak to the ancient nature of this place. These arboreal sentinels rise with smooth, almost metallic bark surfaces, their tortured forms creating dramatic negative spaces against the verdant canopy overhead. Rocky formations cluster along the right edge, their weathered faces displaying strata of grays and warm tans, partially cloaked in shadow. The middle distance reveals the path widening toward a brighter area where wooden constructs suggest boundary or marker, framed by distant trees that dissolve into soft atmospheric blues. Shafts of pale golden light pierce through the dense roof of leaves, creating theatrical spotlight effects on the forest floor. The overall palette juxtaposes the unnatural blue-green of the trunks against natural earth tones, while background elements fade through layers of violet and indigo haze, evoking a sense of enchanted depth and otherworldly mystery. diff --git a/asset-work/kq4_012_haunted_forest/caption_3_4048908388/generated.png b/asset-work/kq4_012_haunted_forest/caption_3_4048908388_generated.png similarity index 100% rename from asset-work/kq4_012_haunted_forest/caption_3_4048908388/generated.png rename to asset-work/kq4_012_haunted_forest/caption_3_4048908388_generated.png diff --git a/asset-work/kq4_012_haunted_forest/caption_3_4048908388_generated.png.import b/asset-work/kq4_012_haunted_forest/caption_3_4048908388_generated.png.import new file mode 100644 index 0000000..27de3b2 --- /dev/null +++ b/asset-work/kq4_012_haunted_forest/caption_3_4048908388_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://l656lbs574bv" +path="res://.godot/imported/caption_3_4048908388_generated.png-f0085606f231f092ca01822d2e4c6f2c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_012_haunted_forest/caption_3_4048908388_generated.png" +dest_files=["res://.godot/imported/caption_3_4048908388_generated.png-f0085606f231f092ca01822d2e4c6f2c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_013_beach/caption_1_2391454220/caption_1.txt b/asset-work/kq4_013_beach/caption_1_2391454220/caption_1.txt deleted file mode 100644 index 6d779c0..0000000 --- a/asset-work/kq4_013_beach/caption_1_2391454220/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. From a high-angle perspective, the scene presents a serene coastal landscape with a distinctive windswept tree. The foreground features rocky outcrops and patches of grass along a sandy beach that curves gently along the shoreline. To the right, a remarkable tree with gnarled, twisted trunk and sparse horizontal branches grows from the grass, its form shaped by coastal winds. Behind it, a small simple building sits near the water's edge. The beach stretches into the distance with a wooden pier or dock visible far down the coast. The ocean displays gradations from turquoise near shore to deep blue, meeting a bright azure sky with fluffy white clouds. The lighting suggests a clear day with bright, even illumination. diff --git a/asset-work/kq4_013_beach/caption_1_2391454220/generated.png b/asset-work/kq4_013_beach/caption_1_2391454220_generated.png similarity index 100% rename from asset-work/kq4_013_beach/caption_1_2391454220/generated.png rename to asset-work/kq4_013_beach/caption_1_2391454220_generated.png diff --git a/asset-work/kq4_013_beach/caption_1_2391454220_generated.png.import b/asset-work/kq4_013_beach/caption_1_2391454220_generated.png.import new file mode 100644 index 0000000..3308eb4 --- /dev/null +++ b/asset-work/kq4_013_beach/caption_1_2391454220_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b010gtg11e6ty" +path="res://.godot/imported/caption_1_2391454220_generated.png-651c3a738732234b9b6a108a409d6526.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_013_beach/caption_1_2391454220_generated.png" +dest_files=["res://.godot/imported/caption_1_2391454220_generated.png-651c3a738732234b9b6a108a409d6526.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_013_beach/caption_2_3376356057/caption_2.txt b/asset-work/kq4_013_beach/caption_2_3376356057/caption_2.txt deleted file mode 100644 index 3d2d79a..0000000 --- a/asset-work/kq4_013_beach/caption_2_3376356057/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. An elevated coastal view captures a windswept shoreline with dramatic natural features. In the foreground, gray rocks and green grass border a pale sandy beach that follows the water's curve. A striking tree with a contorted trunk and spreading horizontal branches dominates the right side, its unusual form suggesting years of wind exposure. Behind the tree, a modest structure sits near the beach. In the distance, a long pier extends into the water, and the coastline recedes toward the horizon. The ocean transitions from pale aqua at the shore to rich navy blue further out. Above, a vast sky in brilliant blue is dotted with soft white clouds. Natural daylight bathes the entire scene. diff --git a/asset-work/kq4_013_beach/caption_2_3376356057/generated.png b/asset-work/kq4_013_beach/caption_2_3376356057_generated.png similarity index 100% rename from asset-work/kq4_013_beach/caption_2_3376356057/generated.png rename to asset-work/kq4_013_beach/caption_2_3376356057_generated.png diff --git a/asset-work/kq4_013_beach/caption_2_3376356057_generated.png.import b/asset-work/kq4_013_beach/caption_2_3376356057_generated.png.import new file mode 100644 index 0000000..a22c542 --- /dev/null +++ b/asset-work/kq4_013_beach/caption_2_3376356057_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dv5ad8wuwkq6t" +path="res://.godot/imported/caption_2_3376356057_generated.png-fea8ade3bea65b685804ef32e8326990.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_013_beach/caption_2_3376356057_generated.png" +dest_files=["res://.godot/imported/caption_2_3376356057_generated.png-fea8ade3bea65b685804ef32e8326990.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_013_beach/caption_3_3097622395/caption_3.txt b/asset-work/kq4_013_beach/caption_3_3097622395/caption_3.txt deleted file mode 100644 index 03e5af9..0000000 --- a/asset-work/kq4_013_beach/caption_3_3097622395/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. The composition shows a picturesque beach scene viewed from above. The foreground contains rocky formations and tufts of grass along a crescent-shaped sandy shore. A unique windswept tree with twisted trunk and angular branches occupies the right portion, its sculptural form adding visual interest. Behind it, a small building perches near the beach, while further down the coast a wooden dock extends into the water. The sea displays beautiful color gradations from light turquoise to deep blue. The sky stretches overhead in clear azure with scattered cumulus clouds. The scene is illuminated by bright daylight that emphasizes the textures of sand, rock, and the gnarled tree trunk. diff --git a/asset-work/kq4_013_beach/caption_3_3097622395/generated.png b/asset-work/kq4_013_beach/caption_3_3097622395_generated.png similarity index 100% rename from asset-work/kq4_013_beach/caption_3_3097622395/generated.png rename to asset-work/kq4_013_beach/caption_3_3097622395_generated.png diff --git a/asset-work/kq4_013_beach/caption_3_3097622395_generated.png.import b/asset-work/kq4_013_beach/caption_3_3097622395_generated.png.import new file mode 100644 index 0000000..01cda32 --- /dev/null +++ b/asset-work/kq4_013_beach/caption_3_3097622395_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c2sju5atkdj7b" +path="res://.godot/imported/caption_3_3097622395_generated.png-e967bfa19fcabc287f89f86f67c10304.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_013_beach/caption_3_3097622395_generated.png" +dest_files=["res://.godot/imported/caption_3_3097622395_generated.png-e967bfa19fcabc287f89f86f67c10304.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_014_green_meadow/caption_1_1607421734/caption_1.txt b/asset-work/kq4_014_green_meadow/caption_1_1607421734/caption_1.txt deleted file mode 100644 index 7efa86e..0000000 --- a/asset-work/kq4_014_green_meadow/caption_1_1607421734/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. From a high-angle perspective, the scene reveals a sunlit meadow bordered by sandy dunes. The foreground features vibrant green grass dotted with colorful wildflowers in purple, blue, and red hues. Several large gray rocks are scattered throughout the lower portion. In the center, a small wooden structure resembling a shed or animal burrow entrance protrudes from the ground, surrounded by flowers. Two substantial trees with dense dark foliage frame the scene on either side. In the background, pale sand dunes rise gently, topped with more trees and bushes. The sky above is bright blue with fluffy white clouds. The lighting suggests midday sun with clear, warm illumination. diff --git a/asset-work/kq4_014_green_meadow/caption_1_1607421734/caption_1_3577374877/caption_1.txt b/asset-work/kq4_014_green_meadow/caption_1_1607421734/caption_1_3577374877/caption_1.txt deleted file mode 100644 index 7efa86e..0000000 --- a/asset-work/kq4_014_green_meadow/caption_1_1607421734/caption_1_3577374877/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. From a high-angle perspective, the scene reveals a sunlit meadow bordered by sandy dunes. The foreground features vibrant green grass dotted with colorful wildflowers in purple, blue, and red hues. Several large gray rocks are scattered throughout the lower portion. In the center, a small wooden structure resembling a shed or animal burrow entrance protrudes from the ground, surrounded by flowers. Two substantial trees with dense dark foliage frame the scene on either side. In the background, pale sand dunes rise gently, topped with more trees and bushes. The sky above is bright blue with fluffy white clouds. The lighting suggests midday sun with clear, warm illumination. diff --git a/asset-work/kq4_014_green_meadow/caption_1_1607421734/caption_1_3577374877/generated.png b/asset-work/kq4_014_green_meadow/caption_1_1607421734/caption_1_3577374877/generated.png deleted file mode 100644 index 7659220..0000000 --- a/asset-work/kq4_014_green_meadow/caption_1_1607421734/caption_1_3577374877/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:47912937eb4d0690c809623262d5355ee008a0aeeb4c44beeac938eadd79f872 -size 4961731 diff --git a/asset-work/kq4_014_green_meadow/caption_1_1607421734/generated.png b/asset-work/kq4_014_green_meadow/caption_1_1607421734_generated.png similarity index 100% rename from asset-work/kq4_014_green_meadow/caption_1_1607421734/generated.png rename to asset-work/kq4_014_green_meadow/caption_1_1607421734_generated.png diff --git a/asset-work/kq4_014_green_meadow/caption_1_1607421734_generated.png.import b/asset-work/kq4_014_green_meadow/caption_1_1607421734_generated.png.import new file mode 100644 index 0000000..9071c6e --- /dev/null +++ b/asset-work/kq4_014_green_meadow/caption_1_1607421734_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://iyis0x0cjktv" +path="res://.godot/imported/caption_1_1607421734_generated.png-e2df1a2fde752fc2fd5321ab8157291f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_014_green_meadow/caption_1_1607421734_generated.png" +dest_files=["res://.godot/imported/caption_1_1607421734_generated.png-e2df1a2fde752fc2fd5321ab8157291f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_014_green_meadow/caption_2_3204760561/caption_2.txt b/asset-work/kq4_014_green_meadow/caption_2_3204760561/caption_2.txt deleted file mode 100644 index 1ece3f8..0000000 --- a/asset-work/kq4_014_green_meadow/caption_2_3204760561/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. An elevated view captures a cheerful meadow landscape with diverse natural elements. The foreground displays lush green grass interspersed with drifts of wildflowers in shades of violet, periwinkle, and crimson. Multiple rocks of various sizes are strategically placed across the scene. At the center, a rustic wooden structure emerges from the ground like a small dwelling entrance. Large trees with thick trunks and abundant dark foliage stand on both the left and right sides, framing the composition. Behind the meadow, rolling sand dunes create a natural boundary, crowned with scattered trees and shrubs. The expansive sky is a brilliant blue with soft white clouds. Natural daylight enhances the vibrant colors throughout. diff --git a/asset-work/kq4_014_green_meadow/caption_2_3204760561/caption_2_8834401/caption_2.txt b/asset-work/kq4_014_green_meadow/caption_2_3204760561/caption_2_8834401/caption_2.txt deleted file mode 100644 index 1ece3f8..0000000 --- a/asset-work/kq4_014_green_meadow/caption_2_3204760561/caption_2_8834401/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. An elevated view captures a cheerful meadow landscape with diverse natural elements. The foreground displays lush green grass interspersed with drifts of wildflowers in shades of violet, periwinkle, and crimson. Multiple rocks of various sizes are strategically placed across the scene. At the center, a rustic wooden structure emerges from the ground like a small dwelling entrance. Large trees with thick trunks and abundant dark foliage stand on both the left and right sides, framing the composition. Behind the meadow, rolling sand dunes create a natural boundary, crowned with scattered trees and shrubs. The expansive sky is a brilliant blue with soft white clouds. Natural daylight enhances the vibrant colors throughout. diff --git a/asset-work/kq4_014_green_meadow/caption_2_3204760561/caption_2_8834401/generated.png b/asset-work/kq4_014_green_meadow/caption_2_3204760561/caption_2_8834401/generated.png deleted file mode 100644 index c5d9f06..0000000 --- a/asset-work/kq4_014_green_meadow/caption_2_3204760561/caption_2_8834401/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4220f248841616277129f99ad6cb6445bd05272e45568455f5c6f82e3a06d82a -size 4631238 diff --git a/asset-work/kq4_014_green_meadow/caption_2_3204760561/generated.png b/asset-work/kq4_014_green_meadow/caption_2_3204760561_generated.png similarity index 100% rename from asset-work/kq4_014_green_meadow/caption_2_3204760561/generated.png rename to asset-work/kq4_014_green_meadow/caption_2_3204760561_generated.png diff --git a/asset-work/kq4_014_green_meadow/caption_2_3204760561_generated.png.import b/asset-work/kq4_014_green_meadow/caption_2_3204760561_generated.png.import new file mode 100644 index 0000000..86913c9 --- /dev/null +++ b/asset-work/kq4_014_green_meadow/caption_2_3204760561_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bl34v1q7tjucj" +path="res://.godot/imported/caption_2_3204760561_generated.png-2408706479548019790310c1d63076bf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_014_green_meadow/caption_2_3204760561_generated.png" +dest_files=["res://.godot/imported/caption_2_3204760561_generated.png-2408706479548019790310c1d63076bf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_014_green_meadow/caption_3_3013718798/caption_3.txt b/asset-work/kq4_014_green_meadow/caption_3_3013718798/caption_3.txt deleted file mode 100644 index 304d342..0000000 --- a/asset-work/kq4_014_green_meadow/caption_3_3013718798/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. The composition presents a pastoral meadow scene viewed from above. Bright green grass covers the foreground, punctuated by patches of wildflowers in purple, blue, and orange tones. Several gray boulders add texture to the landscape. In the middle ground, a small wooden structure with a dark roof sits surrounded by flowers, suggesting a burrow or tiny dwelling. Two prominent trees with dense canopies anchor the left and right sides of the frame. The background features sandy dunes with sparse vegetation and more distant trees. Above, a clear azure sky with fluffy cumulus clouds completes the idyllic setting. The scene is bathed in warm sunlight, creating a peaceful, pastoral atmosphere. diff --git a/asset-work/kq4_014_green_meadow/caption_3_3013718798/caption_3_2433690237/caption_3.txt b/asset-work/kq4_014_green_meadow/caption_3_3013718798/caption_3_2433690237/caption_3.txt deleted file mode 100644 index 304d342..0000000 --- a/asset-work/kq4_014_green_meadow/caption_3_3013718798/caption_3_2433690237/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. The composition presents a pastoral meadow scene viewed from above. Bright green grass covers the foreground, punctuated by patches of wildflowers in purple, blue, and orange tones. Several gray boulders add texture to the landscape. In the middle ground, a small wooden structure with a dark roof sits surrounded by flowers, suggesting a burrow or tiny dwelling. Two prominent trees with dense canopies anchor the left and right sides of the frame. The background features sandy dunes with sparse vegetation and more distant trees. Above, a clear azure sky with fluffy cumulus clouds completes the idyllic setting. The scene is bathed in warm sunlight, creating a peaceful, pastoral atmosphere. diff --git a/asset-work/kq4_014_green_meadow/caption_3_3013718798/caption_3_2433690237/generated.png b/asset-work/kq4_014_green_meadow/caption_3_3013718798/caption_3_2433690237/generated.png deleted file mode 100644 index afb2254..0000000 --- a/asset-work/kq4_014_green_meadow/caption_3_3013718798/caption_3_2433690237/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9efc08f1e6a8aed4c76290b427335c08efd45853f07152491b4401ee0065c516 -size 4463744 diff --git a/asset-work/kq4_014_green_meadow/caption_3_3013718798/generated.png b/asset-work/kq4_014_green_meadow/caption_3_3013718798_generated.png similarity index 100% rename from asset-work/kq4_014_green_meadow/caption_3_3013718798/generated.png rename to asset-work/kq4_014_green_meadow/caption_3_3013718798_generated.png diff --git a/asset-work/kq4_014_green_meadow/caption_3_3013718798_generated.png.import b/asset-work/kq4_014_green_meadow/caption_3_3013718798_generated.png.import new file mode 100644 index 0000000..ee4ef7b --- /dev/null +++ b/asset-work/kq4_014_green_meadow/caption_3_3013718798_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://wsdni6ou3u65" +path="res://.godot/imported/caption_3_3013718798_generated.png-d572ed03f3f5e4c509ca5f8c988605af.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_014_green_meadow/caption_3_3013718798_generated.png" +dest_files=["res://.godot/imported/caption_3_3013718798_generated.png-d572ed03f3f5e4c509ca5f8c988605af.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_015_frog_pond/caption_1_4267083299/caption_1.txt b/asset-work/kq4_015_frog_pond/caption_1_4267083299/caption_1.txt deleted file mode 100644 index 7665bfb..0000000 --- a/asset-work/kq4_015_frog_pond/caption_1_4267083299/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. From a high-angle perspective, the scene captures a tranquil pond nestled in a meadow clearing. The foreground is framed by the dark trunk and branches of a large tree on the left. The pond itself occupies the middle ground, its water rendered in turquoise with lily pads floating on the surface. The pond is surrounded by clusters of trees with dense green foliage that create a natural enclosure. In the background, sandy dunes rise beyond the treeline, with hints of distant vegetation. The ground around the pond features patches of green grass and colorful wildflowers in pink and purple hues. The lighting suggests a sunny day with dappled sunlight filtering through the trees, creating patterns of light and shadow across the scene. diff --git a/asset-work/kq4_015_frog_pond/caption_1_4267083299/generated.png b/asset-work/kq4_015_frog_pond/caption_1_4267083299_generated.png similarity index 100% rename from asset-work/kq4_015_frog_pond/caption_1_4267083299/generated.png rename to asset-work/kq4_015_frog_pond/caption_1_4267083299_generated.png diff --git a/asset-work/kq4_015_frog_pond/caption_1_4267083299_generated.png.import b/asset-work/kq4_015_frog_pond/caption_1_4267083299_generated.png.import new file mode 100644 index 0000000..3e29e17 --- /dev/null +++ b/asset-work/kq4_015_frog_pond/caption_1_4267083299_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ckt1hxa2rj0tp" +path="res://.godot/imported/caption_1_4267083299_generated.png-0ffe784fff53288c173fb74029936868.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_015_frog_pond/caption_1_4267083299_generated.png" +dest_files=["res://.godot/imported/caption_1_4267083299_generated.png-0ffe784fff53288c173fb74029936868.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_015_frog_pond/caption_2_2697930471/caption_2.txt b/asset-work/kq4_015_frog_pond/caption_2_2697930471/caption_2.txt deleted file mode 100644 index e91955d..0000000 --- a/asset-work/kq4_015_frog_pond/caption_2_2697930471/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. An elevated view reveals a serene woodland pond surrounded by lush vegetation. A substantial tree trunk with rough bark anchors the left foreground, its branches extending overhead. The pond sits in a natural clearing, its turquoise waters dotted with lily pads. Several trees with thick canopies of dark green leaves surround the water, creating an intimate, enclosed feeling. Beyond the trees, pale sand dunes are visible in the distance. The ground features vibrant green grass and scattered wildflowers in shades of pink and violet. The interplay of sunlight and shadow creates a peaceful atmosphere, with bright patches illuminating the flowers and water while the trees cast cooling shadows. diff --git a/asset-work/kq4_015_frog_pond/caption_2_2697930471/generated.png b/asset-work/kq4_015_frog_pond/caption_2_2697930471_generated.png similarity index 100% rename from asset-work/kq4_015_frog_pond/caption_2_2697930471/generated.png rename to asset-work/kq4_015_frog_pond/caption_2_2697930471_generated.png diff --git a/asset-work/kq4_015_frog_pond/caption_2_2697930471_generated.png.import b/asset-work/kq4_015_frog_pond/caption_2_2697930471_generated.png.import new file mode 100644 index 0000000..3d81416 --- /dev/null +++ b/asset-work/kq4_015_frog_pond/caption_2_2697930471_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b53ewehl8i0n3" +path="res://.godot/imported/caption_2_2697930471_generated.png-b3c1cd3c4c73e9b9c815e4e58abc8434.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_015_frog_pond/caption_2_2697930471_generated.png" +dest_files=["res://.godot/imported/caption_2_2697930471_generated.png-b3c1cd3c4c73e9b9c815e4e58abc8434.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_015_frog_pond/caption_3_1622971296/caption_3.txt b/asset-work/kq4_015_frog_pond/caption_3_1622971296/caption_3.txt deleted file mode 100644 index 879faaf..0000000 --- a/asset-work/kq4_015_frog_pond/caption_3_1622971296/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. The composition depicts a charming forest pond from a bird's-eye perspective. On the left, a large tree with textured bark provides framing for the scene. The pond itself is a tranquil body of turquoise water with lily pads scattered across the surface, nestled among dense trees with rich green foliage. The surrounding ground is carpeted with bright green grass and colorful wildflowers in pink and purple tones. In the background, beyond the circle of trees, sandy dunes rise under a bright sky. The lighting creates a pleasant mix of sunlit areas on the water and flowers, contrasted with the shade provided by the surrounding tree canopy, evoking a sense of peaceful seclusion. diff --git a/asset-work/kq4_015_frog_pond/caption_3_1622971296/generated.png b/asset-work/kq4_015_frog_pond/caption_3_1622971296_generated.png similarity index 100% rename from asset-work/kq4_015_frog_pond/caption_3_1622971296/generated.png rename to asset-work/kq4_015_frog_pond/caption_3_1622971296_generated.png diff --git a/asset-work/kq4_015_frog_pond/caption_3_1622971296_generated.png.import b/asset-work/kq4_015_frog_pond/caption_3_1622971296_generated.png.import new file mode 100644 index 0000000..fb96b4a --- /dev/null +++ b/asset-work/kq4_015_frog_pond/caption_3_1622971296_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cgxm7njusgfnj" +path="res://.godot/imported/caption_3_1622971296_generated.png-02b73ceb6a793f2a25fc7748845bf1fb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_015_frog_pond/caption_3_1622971296_generated.png" +dest_files=["res://.godot/imported/caption_3_1622971296_generated.png-02b73ceb6a793f2a25fc7748845bf1fb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_016_graveyard/caption_1_1391009850/generated.png b/asset-work/kq4_016_graveyard/caption_1_1391009850_generated.png similarity index 100% rename from asset-work/kq4_016_graveyard/caption_1_1391009850/generated.png rename to asset-work/kq4_016_graveyard/caption_1_1391009850_generated.png diff --git a/asset-work/kq4_016_graveyard/caption_1_1391009850_generated.png.import b/asset-work/kq4_016_graveyard/caption_1_1391009850_generated.png.import new file mode 100644 index 0000000..4d8e7b8 --- /dev/null +++ b/asset-work/kq4_016_graveyard/caption_1_1391009850_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dnb82l11snqh0" +path="res://.godot/imported/caption_1_1391009850_generated.png-6d1c9b0059cacab12c9257a8afcc6464.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_016_graveyard/caption_1_1391009850_generated.png" +dest_files=["res://.godot/imported/caption_1_1391009850_generated.png-6d1c9b0059cacab12c9257a8afcc6464.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_016_graveyard/caption_1_2842997487/generated.png b/asset-work/kq4_016_graveyard/caption_1_2842997487_generated.png similarity index 100% rename from asset-work/kq4_016_graveyard/caption_1_2842997487/generated.png rename to asset-work/kq4_016_graveyard/caption_1_2842997487_generated.png diff --git a/asset-work/kq4_016_graveyard/caption_1_2842997487_generated.png.import b/asset-work/kq4_016_graveyard/caption_1_2842997487_generated.png.import new file mode 100644 index 0000000..9347adb --- /dev/null +++ b/asset-work/kq4_016_graveyard/caption_1_2842997487_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cj0ry1v5xyu3f" +path="res://.godot/imported/caption_1_2842997487_generated.png-2b7e120a9406f64761af4bf2c15e53a2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_016_graveyard/caption_1_2842997487_generated.png" +dest_files=["res://.godot/imported/caption_1_2842997487_generated.png-2b7e120a9406f64761af4bf2c15e53a2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_016_graveyard/caption_2_1087581860/generated.png b/asset-work/kq4_016_graveyard/caption_2_1087581860_generated.png similarity index 100% rename from asset-work/kq4_016_graveyard/caption_2_1087581860/generated.png rename to asset-work/kq4_016_graveyard/caption_2_1087581860_generated.png diff --git a/asset-work/kq4_016_graveyard/caption_2_1087581860_generated.png.import b/asset-work/kq4_016_graveyard/caption_2_1087581860_generated.png.import new file mode 100644 index 0000000..3048d1c --- /dev/null +++ b/asset-work/kq4_016_graveyard/caption_2_1087581860_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://gedp0qt653y1" +path="res://.godot/imported/caption_2_1087581860_generated.png-95f8f9180c5a4a3ec844a7f42b7a83fe.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_016_graveyard/caption_2_1087581860_generated.png" +dest_files=["res://.godot/imported/caption_2_1087581860_generated.png-95f8f9180c5a4a3ec844a7f42b7a83fe.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_016_graveyard/caption_2_804774461/generated.png b/asset-work/kq4_016_graveyard/caption_2_804774461_generated.png similarity index 100% rename from asset-work/kq4_016_graveyard/caption_2_804774461/generated.png rename to asset-work/kq4_016_graveyard/caption_2_804774461_generated.png diff --git a/asset-work/kq4_016_graveyard/caption_2_804774461_generated.png.import b/asset-work/kq4_016_graveyard/caption_2_804774461_generated.png.import new file mode 100644 index 0000000..96bccec --- /dev/null +++ b/asset-work/kq4_016_graveyard/caption_2_804774461_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bjmc0ofpp4eb0" +path="res://.godot/imported/caption_2_804774461_generated.png-42f1ab07ce79b1e4b35c4728fbe93c64.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_016_graveyard/caption_2_804774461_generated.png" +dest_files=["res://.godot/imported/caption_2_804774461_generated.png-42f1ab07ce79b1e4b35c4728fbe93c64.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_016_graveyard/caption_3_2015920862/generated.png b/asset-work/kq4_016_graveyard/caption_3_2015920862_generated.png similarity index 100% rename from asset-work/kq4_016_graveyard/caption_3_2015920862/generated.png rename to asset-work/kq4_016_graveyard/caption_3_2015920862_generated.png diff --git a/asset-work/kq4_016_graveyard/caption_3_2015920862_generated.png.import b/asset-work/kq4_016_graveyard/caption_3_2015920862_generated.png.import new file mode 100644 index 0000000..aec2958 --- /dev/null +++ b/asset-work/kq4_016_graveyard/caption_3_2015920862_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ba4ijx2j1jxte" +path="res://.godot/imported/caption_3_2015920862_generated.png-cb08474ede759a3a934e6a716f88ae05.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_016_graveyard/caption_3_2015920862_generated.png" +dest_files=["res://.godot/imported/caption_3_2015920862_generated.png-cb08474ede759a3a934e6a716f88ae05.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_016_graveyard/caption_3_2731492627/generated.png b/asset-work/kq4_016_graveyard/caption_3_2731492627_generated.png similarity index 100% rename from asset-work/kq4_016_graveyard/caption_3_2731492627/generated.png rename to asset-work/kq4_016_graveyard/caption_3_2731492627_generated.png diff --git a/asset-work/kq4_016_graveyard/caption_3_2731492627_generated.png.import b/asset-work/kq4_016_graveyard/caption_3_2731492627_generated.png.import new file mode 100644 index 0000000..13c1502 --- /dev/null +++ b/asset-work/kq4_016_graveyard/caption_3_2731492627_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dl5qc1pia0vyb" +path="res://.godot/imported/caption_3_2731492627_generated.png-a5bdbf9388a332a4b38983b27658e576.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_016_graveyard/caption_3_2731492627_generated.png" +dest_files=["res://.godot/imported/caption_3_2731492627_generated.png-a5bdbf9388a332a4b38983b27658e576.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_017_spooky_house_exterior/caption_1_2076549072/generated.png b/asset-work/kq4_017_spooky_house_exterior/caption_1_2076549072_generated.png similarity index 100% rename from asset-work/kq4_017_spooky_house_exterior/caption_1_2076549072/generated.png rename to asset-work/kq4_017_spooky_house_exterior/caption_1_2076549072_generated.png diff --git a/asset-work/kq4_017_spooky_house_exterior/caption_1_2076549072_generated.png.import b/asset-work/kq4_017_spooky_house_exterior/caption_1_2076549072_generated.png.import new file mode 100644 index 0000000..cf0162b --- /dev/null +++ b/asset-work/kq4_017_spooky_house_exterior/caption_1_2076549072_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b0dmi408tlg2r" +path="res://.godot/imported/caption_1_2076549072_generated.png-c6def14ec8263ab67d37501afabfb963.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_017_spooky_house_exterior/caption_1_2076549072_generated.png" +dest_files=["res://.godot/imported/caption_1_2076549072_generated.png-c6def14ec8263ab67d37501afabfb963.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_017_spooky_house_exterior/caption_1_2198405409/generated.png b/asset-work/kq4_017_spooky_house_exterior/caption_1_2198405409_generated.png similarity index 100% rename from asset-work/kq4_017_spooky_house_exterior/caption_1_2198405409/generated.png rename to asset-work/kq4_017_spooky_house_exterior/caption_1_2198405409_generated.png diff --git a/asset-work/kq4_017_spooky_house_exterior/caption_1_2198405409_generated.png.import b/asset-work/kq4_017_spooky_house_exterior/caption_1_2198405409_generated.png.import new file mode 100644 index 0000000..4ae26bb --- /dev/null +++ b/asset-work/kq4_017_spooky_house_exterior/caption_1_2198405409_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://xpb4os6heicg" +path="res://.godot/imported/caption_1_2198405409_generated.png-96120b33d559fd1f9bd589df680eee61.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_017_spooky_house_exterior/caption_1_2198405409_generated.png" +dest_files=["res://.godot/imported/caption_1_2198405409_generated.png-96120b33d559fd1f9bd589df680eee61.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_017_spooky_house_exterior/caption_2_1013510464/generated.png b/asset-work/kq4_017_spooky_house_exterior/caption_2_1013510464_generated.png similarity index 100% rename from asset-work/kq4_017_spooky_house_exterior/caption_2_1013510464/generated.png rename to asset-work/kq4_017_spooky_house_exterior/caption_2_1013510464_generated.png diff --git a/asset-work/kq4_017_spooky_house_exterior/caption_2_1013510464_generated.png.import b/asset-work/kq4_017_spooky_house_exterior/caption_2_1013510464_generated.png.import new file mode 100644 index 0000000..a8dc882 --- /dev/null +++ b/asset-work/kq4_017_spooky_house_exterior/caption_2_1013510464_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bpf57hd3e36ae" +path="res://.godot/imported/caption_2_1013510464_generated.png-18d70cc6348eb095494c8b1c3f1b3ef1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_017_spooky_house_exterior/caption_2_1013510464_generated.png" +dest_files=["res://.godot/imported/caption_2_1013510464_generated.png-18d70cc6348eb095494c8b1c3f1b3ef1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_017_spooky_house_exterior/caption_2_3103518838/generated.png b/asset-work/kq4_017_spooky_house_exterior/caption_2_3103518838_generated.png similarity index 100% rename from asset-work/kq4_017_spooky_house_exterior/caption_2_3103518838/generated.png rename to asset-work/kq4_017_spooky_house_exterior/caption_2_3103518838_generated.png diff --git a/asset-work/kq4_017_spooky_house_exterior/caption_2_3103518838_generated.png.import b/asset-work/kq4_017_spooky_house_exterior/caption_2_3103518838_generated.png.import new file mode 100644 index 0000000..e21d83c --- /dev/null +++ b/asset-work/kq4_017_spooky_house_exterior/caption_2_3103518838_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b10hmpgglegau" +path="res://.godot/imported/caption_2_3103518838_generated.png-091b8c34e3894b5c0629cf661b4edceb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_017_spooky_house_exterior/caption_2_3103518838_generated.png" +dest_files=["res://.godot/imported/caption_2_3103518838_generated.png-091b8c34e3894b5c0629cf661b4edceb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_017_spooky_house_exterior/caption_3_1769005406/generated.png b/asset-work/kq4_017_spooky_house_exterior/caption_3_1769005406_generated.png similarity index 100% rename from asset-work/kq4_017_spooky_house_exterior/caption_3_1769005406/generated.png rename to asset-work/kq4_017_spooky_house_exterior/caption_3_1769005406_generated.png diff --git a/asset-work/kq4_017_spooky_house_exterior/caption_3_1769005406_generated.png.import b/asset-work/kq4_017_spooky_house_exterior/caption_3_1769005406_generated.png.import new file mode 100644 index 0000000..aef1ba7 --- /dev/null +++ b/asset-work/kq4_017_spooky_house_exterior/caption_3_1769005406_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bc046bb6u3ng4" +path="res://.godot/imported/caption_3_1769005406_generated.png-bafcce3ab367bb5a63845019d19486fc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_017_spooky_house_exterior/caption_3_1769005406_generated.png" +dest_files=["res://.godot/imported/caption_3_1769005406_generated.png-bafcce3ab367bb5a63845019d19486fc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_017_spooky_house_exterior/caption_3_3689233131/generated.png b/asset-work/kq4_017_spooky_house_exterior/caption_3_3689233131_generated.png similarity index 100% rename from asset-work/kq4_017_spooky_house_exterior/caption_3_3689233131/generated.png rename to asset-work/kq4_017_spooky_house_exterior/caption_3_3689233131_generated.png diff --git a/asset-work/kq4_017_spooky_house_exterior/caption_3_3689233131_generated.png.import b/asset-work/kq4_017_spooky_house_exterior/caption_3_3689233131_generated.png.import new file mode 100644 index 0000000..422033f --- /dev/null +++ b/asset-work/kq4_017_spooky_house_exterior/caption_3_3689233131_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cu632p3evb5u2" +path="res://.godot/imported/caption_3_3689233131_generated.png-eb2e4a8acc1a81e12d9b8e9448fda6d1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_017_spooky_house_exterior/caption_3_3689233131_generated.png" +dest_files=["res://.godot/imported/caption_3_3689233131_generated.png-eb2e4a8acc1a81e12d9b8e9448fda6d1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_018_cemetery/caption_1_1455154372/caption_1.txt b/asset-work/kq4_018_cemetery/caption_1_1455154372/caption_1.txt deleted file mode 100644 index da2f7dd..0000000 --- a/asset-work/kq4_018_cemetery/caption_1_1455154372/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. From a high-angle perspective, the scene reveals an ancient cemetery with classical ruins. The foreground features scattered stone grave markers and crosses on sandy ground. To the right, impressive stone columns support a crumbling archway, remnants of a larger structure, with vines and vegetation growing among the ruins. Behind the columns, a rocky cliff face rises, partially covered with greenery. In the background, a dense evergreen forest creates a dark green wall, punctuated by a striking blue crystalline tree or statue glowing among the pines. The ground is a mix of pale sand and patches of grass. The lighting is atmospheric, with an eerie quality created by the contrast between the sunlit ruins and the shadowy forest beyond. diff --git a/asset-work/kq4_018_cemetery/caption_1_1455154372/generated.png b/asset-work/kq4_018_cemetery/caption_1_1455154372_generated.png similarity index 100% rename from asset-work/kq4_018_cemetery/caption_1_1455154372/generated.png rename to asset-work/kq4_018_cemetery/caption_1_1455154372_generated.png diff --git a/asset-work/kq4_018_cemetery/caption_1_1455154372_generated.png.import b/asset-work/kq4_018_cemetery/caption_1_1455154372_generated.png.import new file mode 100644 index 0000000..0478999 --- /dev/null +++ b/asset-work/kq4_018_cemetery/caption_1_1455154372_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://3gky2oaol123" +path="res://.godot/imported/caption_1_1455154372_generated.png-8fe5bf75715298d9e2d0e523296e3541.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_018_cemetery/caption_1_1455154372_generated.png" +dest_files=["res://.godot/imported/caption_1_1455154372_generated.png-8fe5bf75715298d9e2d0e523296e3541.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_018_cemetery/caption_2_2774947991/caption_2.txt b/asset-work/kq4_018_cemetery/caption_2_2774947991/caption_2.txt deleted file mode 100644 index 3768413..0000000 --- a/asset-work/kq4_018_cemetery/caption_2_2774947991/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. An elevated view captures a mystical cemetery with classical architectural elements. Various tombstones and memorials are scattered across sandy ground in the foreground. On the right, ancient stone columns and a partial archway stand as ruins, overgrown with plants and moss. Behind these ruins, a rocky outcrop rises with patches of vegetation. The background is dominated by dense pine forest in deep green, with a luminescent blue crystal or tree glowing mysteriously among the dark trees. The ground shows variations of pale earth tones with scattered grass. The overall atmosphere is otherworldly and ancient, with dramatic lighting that highlights the stone ruins against the dark woodland backdrop. diff --git a/asset-work/kq4_018_cemetery/caption_2_2774947991/generated.png b/asset-work/kq4_018_cemetery/caption_2_2774947991_generated.png similarity index 100% rename from asset-work/kq4_018_cemetery/caption_2_2774947991/generated.png rename to asset-work/kq4_018_cemetery/caption_2_2774947991_generated.png diff --git a/asset-work/kq4_018_cemetery/caption_2_2774947991_generated.png.import b/asset-work/kq4_018_cemetery/caption_2_2774947991_generated.png.import new file mode 100644 index 0000000..699e383 --- /dev/null +++ b/asset-work/kq4_018_cemetery/caption_2_2774947991_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dfpld60wuq0yp" +path="res://.godot/imported/caption_2_2774947991_generated.png-054b64c6c74d13115749c172c688f576.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_018_cemetery/caption_2_2774947991_generated.png" +dest_files=["res://.godot/imported/caption_2_2774947991_generated.png-054b64c6c74d13115749c172c688f576.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_018_cemetery/caption_3_4052088499/caption_3.txt b/asset-work/kq4_018_cemetery/caption_3_4052088499/caption_3.txt deleted file mode 100644 index 3f3bb1d..0000000 --- a/asset-work/kq4_018_cemetery/caption_3_4052088499/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. The composition presents an ancient burial ground with Greco-Roman ruins viewed from above. Scattered grave markers occupy the sandy foreground. To the right, weathered stone columns support a fragment of entablature, with creeping vines and small plants colonizing the ruins. Behind stands a rocky cliff partially covered in green moss and ferns. The background features a dense wall of evergreen trees, among which a glowing blue crystalline form creates a focal point of mystery. The ground is rendered in pale sandy tones with patches of vegetation. The lighting creates dramatic contrasts between the illuminated stone structures and the shadowy forest, evoking a sense of ancient magic and forgotten history. diff --git a/asset-work/kq4_018_cemetery/caption_3_4052088499/generated.png b/asset-work/kq4_018_cemetery/caption_3_4052088499_generated.png similarity index 100% rename from asset-work/kq4_018_cemetery/caption_3_4052088499/generated.png rename to asset-work/kq4_018_cemetery/caption_3_4052088499_generated.png diff --git a/asset-work/kq4_018_cemetery/caption_3_4052088499_generated.png.import b/asset-work/kq4_018_cemetery/caption_3_4052088499_generated.png.import new file mode 100644 index 0000000..eadfe7d --- /dev/null +++ b/asset-work/kq4_018_cemetery/caption_3_4052088499_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dc6a0ugv856y2" +path="res://.godot/imported/caption_3_4052088499_generated.png-87595e0e0dbb05e19118fecc3caf07d0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_018_cemetery/caption_3_4052088499_generated.png" +dest_files=["res://.godot/imported/caption_3_4052088499_generated.png-87595e0e0dbb05e19118fecc3caf07d0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_019_coastal_cliffs/caption_1_2692304571/caption_1.txt b/asset-work/kq4_019_coastal_cliffs/caption_1_2692304571/caption_1.txt deleted file mode 100644 index 2445f21..0000000 --- a/asset-work/kq4_019_coastal_cliffs/caption_1_2692304571/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A sweeping aerial vista reveals a dramatic coastline where verdant cliffs descend toward crystalline waters in sweeping geological curves. In the foreground, rich emerald grasses crown the cliff's edge, their blades catching golden afternoon light while patches of exposed earth reveal warm ochre and sienna tones in the eroded soil. The middle ground showcases a pristine ribbon of sandy beach that curves gently along the shoreline, its surface displaying subtle variations between sun-bleached ivory and wet, darker sand near the waterline. Gentle waves roll in from the deep cobalt sea, their crests breaking into delicate white lace patterns that dissolve against the shore. To the right, a solitary tree stands sentinel atop the cliff, its foliage rendered in deep viridian shadows with highlights of spring green. The background fades into atmospheric perspective where turquoise waters meet a vast expanse of cerulean sky dotted with voluminous cumulus clouds. Soft shadows cast by the cliff face create dramatic contrast against the sunlit beach, while the interplay of warm earth tones and cool marine blues establishes a harmonious coastal palette. diff --git a/asset-work/kq4_019_coastal_cliffs/caption_1_2692304571/caption_1_3840539348/caption_1.txt b/asset-work/kq4_019_coastal_cliffs/caption_1_2692304571/caption_1_3840539348/caption_1.txt deleted file mode 100644 index 2445f21..0000000 --- a/asset-work/kq4_019_coastal_cliffs/caption_1_2692304571/caption_1_3840539348/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A sweeping aerial vista reveals a dramatic coastline where verdant cliffs descend toward crystalline waters in sweeping geological curves. In the foreground, rich emerald grasses crown the cliff's edge, their blades catching golden afternoon light while patches of exposed earth reveal warm ochre and sienna tones in the eroded soil. The middle ground showcases a pristine ribbon of sandy beach that curves gently along the shoreline, its surface displaying subtle variations between sun-bleached ivory and wet, darker sand near the waterline. Gentle waves roll in from the deep cobalt sea, their crests breaking into delicate white lace patterns that dissolve against the shore. To the right, a solitary tree stands sentinel atop the cliff, its foliage rendered in deep viridian shadows with highlights of spring green. The background fades into atmospheric perspective where turquoise waters meet a vast expanse of cerulean sky dotted with voluminous cumulus clouds. Soft shadows cast by the cliff face create dramatic contrast against the sunlit beach, while the interplay of warm earth tones and cool marine blues establishes a harmonious coastal palette. diff --git a/asset-work/kq4_019_coastal_cliffs/caption_1_2692304571/caption_1_3840539348/generated.png b/asset-work/kq4_019_coastal_cliffs/caption_1_2692304571/caption_1_3840539348/generated.png deleted file mode 100644 index cc2058f..0000000 --- a/asset-work/kq4_019_coastal_cliffs/caption_1_2692304571/caption_1_3840539348/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:511b46e84e1bf410de5be75e84457b83c23fc0056b947a044e880a4783b8892b -size 4557713 diff --git a/asset-work/kq4_019_coastal_cliffs/caption_1_2692304571/generated.png b/asset-work/kq4_019_coastal_cliffs/caption_1_2692304571_generated.png similarity index 100% rename from asset-work/kq4_019_coastal_cliffs/caption_1_2692304571/generated.png rename to asset-work/kq4_019_coastal_cliffs/caption_1_2692304571_generated.png diff --git a/asset-work/kq4_019_coastal_cliffs/caption_1_2692304571_generated.png.import b/asset-work/kq4_019_coastal_cliffs/caption_1_2692304571_generated.png.import new file mode 100644 index 0000000..0955816 --- /dev/null +++ b/asset-work/kq4_019_coastal_cliffs/caption_1_2692304571_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c22jltsfy4gt3" +path="res://.godot/imported/caption_1_2692304571_generated.png-ccf1d2538927f178140309207b2ddf1d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_019_coastal_cliffs/caption_1_2692304571_generated.png" +dest_files=["res://.godot/imported/caption_1_2692304571_generated.png-ccf1d2538927f178140309207b2ddf1d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_019_coastal_cliffs/caption_2_3701341440/caption_2.txt b/asset-work/kq4_019_coastal_cliffs/caption_2_3701341440/caption_2.txt deleted file mode 100644 index 26fb6ce..0000000 --- a/asset-work/kq4_019_coastal_cliffs/caption_2_3701341440/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. An elevated perspective captures the raw beauty of a windswept coastal landscape where land meets sea in a dramatic geological embrace. The foreground features rugged cliff terrain cloaked in lush coastal vegetation, with thick patches of hardy grasses and low shrubs painted in deep forest and moss greens. A prominent tree anchors the right composition, its trunk weathered by coastal winds and its canopy spreading in a graceful asymmetry. The cliff face itself reveals stratified layers of earth in warm terracotta and burnt umber, descending toward a crescent of pale golden sand below. The middle ground beach stretches in a gentle arc, its surface textured with wind-sculpted ripples and tidal patterns. Azure waters shimmer with reflected sky, transitioning from pale turquoise near shore to deep marine blue offshore. White-capped breakers create rhythmic parallel lines as they advance toward land. In the distance, the horizon dissolves into soft atmospheric haze where sea and sky merge in tones of powder blue and misty gray. The scene is bathed in clear midday light that accentuates the textural contrasts between soft foliage, gritty sand, and the smooth, rolling sea. diff --git a/asset-work/kq4_019_coastal_cliffs/caption_2_3701341440/caption_2_2553217032/caption_2.txt b/asset-work/kq4_019_coastal_cliffs/caption_2_3701341440/caption_2_2553217032/caption_2.txt deleted file mode 100644 index 26fb6ce..0000000 --- a/asset-work/kq4_019_coastal_cliffs/caption_2_3701341440/caption_2_2553217032/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. An elevated perspective captures the raw beauty of a windswept coastal landscape where land meets sea in a dramatic geological embrace. The foreground features rugged cliff terrain cloaked in lush coastal vegetation, with thick patches of hardy grasses and low shrubs painted in deep forest and moss greens. A prominent tree anchors the right composition, its trunk weathered by coastal winds and its canopy spreading in a graceful asymmetry. The cliff face itself reveals stratified layers of earth in warm terracotta and burnt umber, descending toward a crescent of pale golden sand below. The middle ground beach stretches in a gentle arc, its surface textured with wind-sculpted ripples and tidal patterns. Azure waters shimmer with reflected sky, transitioning from pale turquoise near shore to deep marine blue offshore. White-capped breakers create rhythmic parallel lines as they advance toward land. In the distance, the horizon dissolves into soft atmospheric haze where sea and sky merge in tones of powder blue and misty gray. The scene is bathed in clear midday light that accentuates the textural contrasts between soft foliage, gritty sand, and the smooth, rolling sea. diff --git a/asset-work/kq4_019_coastal_cliffs/caption_2_3701341440/caption_2_2553217032/generated.png b/asset-work/kq4_019_coastal_cliffs/caption_2_3701341440/caption_2_2553217032/generated.png deleted file mode 100644 index 2f2ef86..0000000 --- a/asset-work/kq4_019_coastal_cliffs/caption_2_3701341440/caption_2_2553217032/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a3ba312e6818416553348b7275a48ee77516d385daf9b03c1e4200d0758aad1f -size 4585748 diff --git a/asset-work/kq4_019_coastal_cliffs/caption_2_3701341440/generated.png b/asset-work/kq4_019_coastal_cliffs/caption_2_3701341440_generated.png similarity index 100% rename from asset-work/kq4_019_coastal_cliffs/caption_2_3701341440/generated.png rename to asset-work/kq4_019_coastal_cliffs/caption_2_3701341440_generated.png diff --git a/asset-work/kq4_019_coastal_cliffs/caption_2_3701341440_generated.png.import b/asset-work/kq4_019_coastal_cliffs/caption_2_3701341440_generated.png.import new file mode 100644 index 0000000..5ac83e2 --- /dev/null +++ b/asset-work/kq4_019_coastal_cliffs/caption_2_3701341440_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dimwwdhn54t8s" +path="res://.godot/imported/caption_2_3701341440_generated.png-205140b7103f0935f3d6d14c131ffb39.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_019_coastal_cliffs/caption_2_3701341440_generated.png" +dest_files=["res://.godot/imported/caption_2_3701341440_generated.png-205140b7103f0935f3d6d14c131ffb39.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_019_coastal_cliffs/caption_3_1605339888/caption_3.txt b/asset-work/kq4_019_coastal_cliffs/caption_3_1605339888/caption_3.txt deleted file mode 100644 index 3ca058f..0000000 --- a/asset-work/kq4_019_coastal_cliffs/caption_3_1605339888/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A commanding bird's-eye view reveals an untamed coastal wilderness where sheer cliffs plunge toward an endless expanse of ocean. The immediate foreground presents a dramatic precipice crowned with windswept grasses in shades of jade and olive, their blades bending in invisible coastal breezes. Rocky outcrops punctuate the cliff's edge in weathered grays and warm siennas, testament to centuries of erosion. Descending toward the water, the terrain gives way to a sheltered cove with pristine ivory sands that catch the light in subtle gradations of pearl and champagne. The beach curves elegantly, creating a natural amphitheater between land and sea. Gentle surf rolls in perpetually, rendered in strokes of aquamarine and cerulean with foam-white crests that dissolve into translucent shallows. To the right, a mature tree stands in defiance of coastal elements, its roots gripping the cliff's edge while its branches reach toward the vast sky. Above, massive cumulus formations drift across an infinite azure canvas, casting moving shadows across the landscape. The color palette harmonizes the warmth of sun-baked earth and sand against cool ocean depths, unified by the soft, diffused light of late afternoon. diff --git a/asset-work/kq4_019_coastal_cliffs/caption_3_1605339888/caption_3_1954473526/caption_3.txt b/asset-work/kq4_019_coastal_cliffs/caption_3_1605339888/caption_3_1954473526/caption_3.txt deleted file mode 100644 index 3ca058f..0000000 --- a/asset-work/kq4_019_coastal_cliffs/caption_3_1605339888/caption_3_1954473526/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A commanding bird's-eye view reveals an untamed coastal wilderness where sheer cliffs plunge toward an endless expanse of ocean. The immediate foreground presents a dramatic precipice crowned with windswept grasses in shades of jade and olive, their blades bending in invisible coastal breezes. Rocky outcrops punctuate the cliff's edge in weathered grays and warm siennas, testament to centuries of erosion. Descending toward the water, the terrain gives way to a sheltered cove with pristine ivory sands that catch the light in subtle gradations of pearl and champagne. The beach curves elegantly, creating a natural amphitheater between land and sea. Gentle surf rolls in perpetually, rendered in strokes of aquamarine and cerulean with foam-white crests that dissolve into translucent shallows. To the right, a mature tree stands in defiance of coastal elements, its roots gripping the cliff's edge while its branches reach toward the vast sky. Above, massive cumulus formations drift across an infinite azure canvas, casting moving shadows across the landscape. The color palette harmonizes the warmth of sun-baked earth and sand against cool ocean depths, unified by the soft, diffused light of late afternoon. diff --git a/asset-work/kq4_019_coastal_cliffs/caption_3_1605339888/caption_3_1954473526/generated.png b/asset-work/kq4_019_coastal_cliffs/caption_3_1605339888/caption_3_1954473526/generated.png deleted file mode 100644 index 333e5c9..0000000 --- a/asset-work/kq4_019_coastal_cliffs/caption_3_1605339888/caption_3_1954473526/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6d98f75f613af71724c54ba8f18307e7bad001f27badb977c2d78271ce36b5a8 -size 4379847 diff --git a/asset-work/kq4_019_coastal_cliffs/caption_3_1605339888/generated.png b/asset-work/kq4_019_coastal_cliffs/caption_3_1605339888_generated.png similarity index 100% rename from asset-work/kq4_019_coastal_cliffs/caption_3_1605339888/generated.png rename to asset-work/kq4_019_coastal_cliffs/caption_3_1605339888_generated.png diff --git a/asset-work/kq4_019_coastal_cliffs/caption_3_1605339888_generated.png.import b/asset-work/kq4_019_coastal_cliffs/caption_3_1605339888_generated.png.import new file mode 100644 index 0000000..3e11de6 --- /dev/null +++ b/asset-work/kq4_019_coastal_cliffs/caption_3_1605339888_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dxa8bfch61row" +path="res://.godot/imported/caption_3_1605339888_generated.png-853268b301290e8f4373ec41bac4a77b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_019_coastal_cliffs/caption_3_1605339888_generated.png" +dest_files=["res://.godot/imported/caption_3_1605339888_generated.png-853268b301290e8f4373ec41bac4a77b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_020_meadow/caption_1_2771153276/caption_1.txt b/asset-work/kq4_020_meadow/caption_1_2771153276/caption_1.txt deleted file mode 100644 index 2fd347f..0000000 --- a/asset-work/kq4_020_meadow/caption_1_2771153276/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A serene meadow vista captured from an elevated perspective, where rolling emerald grasslands stretch toward a distant horizon framed by ancient woodland. In the foreground, textured turf displays subtle variations in verdant tones, with individual grass blades suggested through delicate brushwork. A magnificent solitary oak dominates the middle ground, its gnarled trunk rendered in warm umbers and its canopy a profusion of leafy greens casting velvet shadows across the sward. To the right, a cluster of younger trees rises in graduated heights, their slender forms creating vertical accents against the horizontal sweep of the meadow. Purple and lavender wildflowers dot the grass in impressionistic clusters, their colors punctuating the dominant green palette. In the background, a dark forest wall of mature trees creates dramatic contrast, while beyond, sandy dunes or a golden path glimmers in the far distance under a cerulean sky brushed with soft cumulus clouds. The lighting suggests late afternoon, with long shadows and warm golden highlights caressing the terrain, imbuing the pastoral scene with peaceful, bucolic atmosphere. diff --git a/asset-work/kq4_020_meadow/caption_1_2771153276/caption_1_2769276309/caption_1.txt b/asset-work/kq4_020_meadow/caption_1_2771153276/caption_1_2769276309/caption_1.txt deleted file mode 100644 index 2fd347f..0000000 --- a/asset-work/kq4_020_meadow/caption_1_2771153276/caption_1_2769276309/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A serene meadow vista captured from an elevated perspective, where rolling emerald grasslands stretch toward a distant horizon framed by ancient woodland. In the foreground, textured turf displays subtle variations in verdant tones, with individual grass blades suggested through delicate brushwork. A magnificent solitary oak dominates the middle ground, its gnarled trunk rendered in warm umbers and its canopy a profusion of leafy greens casting velvet shadows across the sward. To the right, a cluster of younger trees rises in graduated heights, their slender forms creating vertical accents against the horizontal sweep of the meadow. Purple and lavender wildflowers dot the grass in impressionistic clusters, their colors punctuating the dominant green palette. In the background, a dark forest wall of mature trees creates dramatic contrast, while beyond, sandy dunes or a golden path glimmers in the far distance under a cerulean sky brushed with soft cumulus clouds. The lighting suggests late afternoon, with long shadows and warm golden highlights caressing the terrain, imbuing the pastoral scene with peaceful, bucolic atmosphere. diff --git a/asset-work/kq4_020_meadow/caption_1_2771153276/caption_1_2769276309/generated.png b/asset-work/kq4_020_meadow/caption_1_2771153276/caption_1_2769276309/generated.png deleted file mode 100644 index cdde5bb..0000000 --- a/asset-work/kq4_020_meadow/caption_1_2771153276/caption_1_2769276309/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:cd00b56af5dab98ec076d64157fe6b85372a4f6cd543a590ca9c20ff054e42bf -size 4607417 diff --git a/asset-work/kq4_020_meadow/caption_1_2771153276/generated.png b/asset-work/kq4_020_meadow/caption_1_2771153276_generated.png similarity index 100% rename from asset-work/kq4_020_meadow/caption_1_2771153276/generated.png rename to asset-work/kq4_020_meadow/caption_1_2771153276_generated.png diff --git a/asset-work/kq4_020_meadow/caption_1_2771153276_generated.png.import b/asset-work/kq4_020_meadow/caption_1_2771153276_generated.png.import new file mode 100644 index 0000000..0ec9899 --- /dev/null +++ b/asset-work/kq4_020_meadow/caption_1_2771153276_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dpbdq4vh4bx3s" +path="res://.godot/imported/caption_1_2771153276_generated.png-80d8e4ec7ec75a78be632e2a9342dff6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_020_meadow/caption_1_2771153276_generated.png" +dest_files=["res://.godot/imported/caption_1_2771153276_generated.png-80d8e4ec7ec75a78be632e2a9342dff6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_020_meadow/caption_2_1575266229/caption_2.txt b/asset-work/kq4_020_meadow/caption_2_1575266229/caption_2.txt deleted file mode 100644 index d88a392..0000000 --- a/asset-work/kq4_020_meadow/caption_2_1575266229/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. An idyllic pastoral landscape viewed from above, revealing a sun-dappled meadow nestled between dense forest boundaries and golden highlands. The foreground presents lush grass in varying shades of spring green, with thick impasto strokes suggesting the texture of turf underfoot. A winding dirt path cuts through the middle distance, its ochre and sienna tones contrasting beautifully with the surrounding verdure. A prominent deciduous tree stands sentinel near the path, its spreading branches creating a lacework of shadow patterns on the ground below. Smaller saplings cluster to the southeast, their delicate forms painted with feathery brushstrokes suggesting new growth. Scattered throughout the meadow, wildflowers bloom in soft violets and pale blues, adding jewel-like accents to the composition. The background transitions from the deep greens of the encroaching forest to sun-bleached sandy elevations, creating depth through atmospheric perspective. Above, the sky stretches in gradations from pale azure near the horizon to deeper cobalt overhead, with fluffy white clouds catching golden light. The overall effect captures the tranquil beauty of nature untouched, bathed in the warm glow of late summer afternoon. diff --git a/asset-work/kq4_020_meadow/caption_2_1575266229/caption_2_2319051027/caption_2.txt b/asset-work/kq4_020_meadow/caption_2_1575266229/caption_2_2319051027/caption_2.txt deleted file mode 100644 index d88a392..0000000 --- a/asset-work/kq4_020_meadow/caption_2_1575266229/caption_2_2319051027/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. An idyllic pastoral landscape viewed from above, revealing a sun-dappled meadow nestled between dense forest boundaries and golden highlands. The foreground presents lush grass in varying shades of spring green, with thick impasto strokes suggesting the texture of turf underfoot. A winding dirt path cuts through the middle distance, its ochre and sienna tones contrasting beautifully with the surrounding verdure. A prominent deciduous tree stands sentinel near the path, its spreading branches creating a lacework of shadow patterns on the ground below. Smaller saplings cluster to the southeast, their delicate forms painted with feathery brushstrokes suggesting new growth. Scattered throughout the meadow, wildflowers bloom in soft violets and pale blues, adding jewel-like accents to the composition. The background transitions from the deep greens of the encroaching forest to sun-bleached sandy elevations, creating depth through atmospheric perspective. Above, the sky stretches in gradations from pale azure near the horizon to deeper cobalt overhead, with fluffy white clouds catching golden light. The overall effect captures the tranquil beauty of nature untouched, bathed in the warm glow of late summer afternoon. diff --git a/asset-work/kq4_020_meadow/caption_2_1575266229/caption_2_2319051027/generated.png b/asset-work/kq4_020_meadow/caption_2_1575266229/caption_2_2319051027/generated.png deleted file mode 100644 index d5a6a31..0000000 --- a/asset-work/kq4_020_meadow/caption_2_1575266229/caption_2_2319051027/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5af1b947cba06fb3de9edb34faa168ed76d6996acb52ebb2913a7a881240c799 -size 4567578 diff --git a/asset-work/kq4_020_meadow/caption_2_1575266229/generated.png b/asset-work/kq4_020_meadow/caption_2_1575266229_generated.png similarity index 100% rename from asset-work/kq4_020_meadow/caption_2_1575266229/generated.png rename to asset-work/kq4_020_meadow/caption_2_1575266229_generated.png diff --git a/asset-work/kq4_020_meadow/caption_2_1575266229_generated.png.import b/asset-work/kq4_020_meadow/caption_2_1575266229_generated.png.import new file mode 100644 index 0000000..69d3798 --- /dev/null +++ b/asset-work/kq4_020_meadow/caption_2_1575266229_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cbmg5pf2j4sr2" +path="res://.godot/imported/caption_2_1575266229_generated.png-4562b1926e9bfe8d71662c16ccdc683d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_020_meadow/caption_2_1575266229_generated.png" +dest_files=["res://.godot/imported/caption_2_1575266229_generated.png-4562b1926e9bfe8d71662c16ccdc683d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_020_meadow/caption_3_3750134208/generated.png b/asset-work/kq4_020_meadow/caption_3_3750134208_generated.png similarity index 100% rename from asset-work/kq4_020_meadow/caption_3_3750134208/generated.png rename to asset-work/kq4_020_meadow/caption_3_3750134208_generated.png diff --git a/asset-work/kq4_020_meadow/caption_3_3750134208_generated.png.import b/asset-work/kq4_020_meadow/caption_3_3750134208_generated.png.import new file mode 100644 index 0000000..d1ad5d2 --- /dev/null +++ b/asset-work/kq4_020_meadow/caption_3_3750134208_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://duo32ehmvooeg" +path="res://.godot/imported/caption_3_3750134208_generated.png-3a8625d3b025581b324959a8b4f1adeb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_020_meadow/caption_3_3750134208_generated.png" +dest_files=["res://.godot/imported/caption_3_3750134208_generated.png-3a8625d3b025581b324959a8b4f1adeb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_021_bridge_over_stream/caption_1_840415776/caption_1.txt b/asset-work/kq4_021_bridge_over_stream/caption_1_840415776/caption_1.txt deleted file mode 100644 index 825317f..0000000 --- a/asset-work/kq4_021_bridge_over_stream/caption_1_840415776/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A serene woodland vista viewed from above, where a rustic stone bridge arches gracefully over a meandering forest stream. In the foreground, a weathered oak trunk rises with textured bark, partially framing the composition while casting subtle shadows across the forest floor. The middle ground reveals the central stone bridge, its rough-hewn gray stones moss-patched and aged, creating a gentle arch that spans crystalline waters below. The stream flows in painterly strokes of cerulean and aquamarine, catching dappled light filtering through the canopy. On the right, a magnificent weeping willow dominates with cascading branches of verdant green, their tendrils reaching toward the water. Beyond the bridge, the forest opens into verdant clearings, with varying shades of emerald and sage foliage creating depth through atmospheric perspective. The forest floor displays rich umbers and ochres with patches of wild grasses and scattered stones. Soft golden light penetrates the canopy, creating pools of illumination and velvet shadows that enhance the natural textures of bark, stone, and water. diff --git a/asset-work/kq4_021_bridge_over_stream/caption_1_840415776/caption_1_3241120902/caption_1.txt b/asset-work/kq4_021_bridge_over_stream/caption_1_840415776/caption_1_3241120902/caption_1.txt deleted file mode 100644 index 825317f..0000000 --- a/asset-work/kq4_021_bridge_over_stream/caption_1_840415776/caption_1_3241120902/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A serene woodland vista viewed from above, where a rustic stone bridge arches gracefully over a meandering forest stream. In the foreground, a weathered oak trunk rises with textured bark, partially framing the composition while casting subtle shadows across the forest floor. The middle ground reveals the central stone bridge, its rough-hewn gray stones moss-patched and aged, creating a gentle arch that spans crystalline waters below. The stream flows in painterly strokes of cerulean and aquamarine, catching dappled light filtering through the canopy. On the right, a magnificent weeping willow dominates with cascading branches of verdant green, their tendrils reaching toward the water. Beyond the bridge, the forest opens into verdant clearings, with varying shades of emerald and sage foliage creating depth through atmospheric perspective. The forest floor displays rich umbers and ochres with patches of wild grasses and scattered stones. Soft golden light penetrates the canopy, creating pools of illumination and velvet shadows that enhance the natural textures of bark, stone, and water. diff --git a/asset-work/kq4_021_bridge_over_stream/caption_1_840415776/caption_1_3241120902/generated.png b/asset-work/kq4_021_bridge_over_stream/caption_1_840415776/caption_1_3241120902/generated.png deleted file mode 100644 index 998c982..0000000 --- a/asset-work/kq4_021_bridge_over_stream/caption_1_840415776/caption_1_3241120902/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:166a2d8658abb0966cf4f5e7319955288a956c2bf51a7c93fc4b5fdb9d4171a8 -size 4605142 diff --git a/asset-work/kq4_021_bridge_over_stream/caption_1_840415776/generated.png b/asset-work/kq4_021_bridge_over_stream/caption_1_840415776_generated.png similarity index 100% rename from asset-work/kq4_021_bridge_over_stream/caption_1_840415776/generated.png rename to asset-work/kq4_021_bridge_over_stream/caption_1_840415776_generated.png diff --git a/asset-work/kq4_021_bridge_over_stream/caption_1_840415776_generated.png.import b/asset-work/kq4_021_bridge_over_stream/caption_1_840415776_generated.png.import new file mode 100644 index 0000000..c9771b9 --- /dev/null +++ b/asset-work/kq4_021_bridge_over_stream/caption_1_840415776_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bvc2d4e6arxh2" +path="res://.godot/imported/caption_1_840415776_generated.png-63ab4026067cec20054c9de422c5fdbf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_021_bridge_over_stream/caption_1_840415776_generated.png" +dest_files=["res://.godot/imported/caption_1_840415776_generated.png-63ab4026067cec20054c9de422c5fdbf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_021_bridge_over_stream/caption_2_2180550861/caption_2.txt b/asset-work/kq4_021_bridge_over_stream/caption_2_2180550861/caption_2.txt deleted file mode 100644 index fff8fe0..0000000 --- a/asset-work/kq4_021_bridge_over_stream/caption_2_2180550861/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. An elevated perspective over a tranquil forest glade where crystalline waters wind through ancient trees beneath a charming stone bridge. The immediate foreground features rich forest floor textures in warm siennas and burnt umbers, dotted with smooth river stones and tufts of wild grasses catching filtered sunlight. To the left, a substantial tree trunk anchors the composition, its dark bark contrasting with the luminous scene beyond. The stream flows gently through the center, rendered in layers of turquoise and deep teal with subtle whitecaps suggesting movement. The rustic bridge spans the water with rough stonework in gray and brown tones, its sturdy arch suggesting decades of quiet service to woodland travelers. On the right, billowing willow foliage creates a canopy of chartreuse and moss-green, partially obscuring the background depths. The middle distance reveals sun-dappled clearings and the suggestion of forest paths continuing in multiple directions. Background trees fade into soft atmospheric blues and muted greens, enhancing the sense of secluded wilderness. The palette harmonizes cool water tones with warm earth colors under diffused forest light. diff --git a/asset-work/kq4_021_bridge_over_stream/caption_2_2180550861/caption_2_3482980257/caption_2.txt b/asset-work/kq4_021_bridge_over_stream/caption_2_2180550861/caption_2_3482980257/caption_2.txt deleted file mode 100644 index fff8fe0..0000000 --- a/asset-work/kq4_021_bridge_over_stream/caption_2_2180550861/caption_2_3482980257/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. An elevated perspective over a tranquil forest glade where crystalline waters wind through ancient trees beneath a charming stone bridge. The immediate foreground features rich forest floor textures in warm siennas and burnt umbers, dotted with smooth river stones and tufts of wild grasses catching filtered sunlight. To the left, a substantial tree trunk anchors the composition, its dark bark contrasting with the luminous scene beyond. The stream flows gently through the center, rendered in layers of turquoise and deep teal with subtle whitecaps suggesting movement. The rustic bridge spans the water with rough stonework in gray and brown tones, its sturdy arch suggesting decades of quiet service to woodland travelers. On the right, billowing willow foliage creates a canopy of chartreuse and moss-green, partially obscuring the background depths. The middle distance reveals sun-dappled clearings and the suggestion of forest paths continuing in multiple directions. Background trees fade into soft atmospheric blues and muted greens, enhancing the sense of secluded wilderness. The palette harmonizes cool water tones with warm earth colors under diffused forest light. diff --git a/asset-work/kq4_021_bridge_over_stream/caption_2_2180550861/caption_2_3482980257/generated.png b/asset-work/kq4_021_bridge_over_stream/caption_2_2180550861/caption_2_3482980257/generated.png deleted file mode 100644 index 40fbe82..0000000 --- a/asset-work/kq4_021_bridge_over_stream/caption_2_2180550861/caption_2_3482980257/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d34553894676f0279aaa98a57b66f902f3c39b02c30e466465599fd33a11bdcf -size 4664993 diff --git a/asset-work/kq4_021_bridge_over_stream/caption_2_2180550861/generated.png b/asset-work/kq4_021_bridge_over_stream/caption_2_2180550861_generated.png similarity index 100% rename from asset-work/kq4_021_bridge_over_stream/caption_2_2180550861/generated.png rename to asset-work/kq4_021_bridge_over_stream/caption_2_2180550861_generated.png diff --git a/asset-work/kq4_021_bridge_over_stream/caption_2_2180550861_generated.png.import b/asset-work/kq4_021_bridge_over_stream/caption_2_2180550861_generated.png.import new file mode 100644 index 0000000..635336c --- /dev/null +++ b/asset-work/kq4_021_bridge_over_stream/caption_2_2180550861_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6wuc0r6eypwy" +path="res://.godot/imported/caption_2_2180550861_generated.png-3c79dd147497a0f6710c8177a873096d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_021_bridge_over_stream/caption_2_2180550861_generated.png" +dest_files=["res://.godot/imported/caption_2_2180550861_generated.png-3c79dd147497a0f6710c8177a873096d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_021_bridge_over_stream/caption_3_3447585809/caption_3.txt b/asset-work/kq4_021_bridge_over_stream/caption_3_3447585809/caption_3.txt deleted file mode 100644 index c765f57..0000000 --- a/asset-work/kq4_021_bridge_over_stream/caption_3_3447585809/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A panoramic woodland scene from a high vantage point, capturing a picturesque stone bridge crossing a babbling brook in a secluded forest clearing. Foreground elements include textured forest floor with exposed roots, moss-covered stones, and patches of wildflowers rendered in thick impasto strokes of amber and rust. A prominent tree trunk on the left creates natural framing, its bark rough and detailed in shades of charcoal and umber. The central stone bridge dominates the composition, its weathered granite blocks stacked in an elegant arch that reflects slightly in the placid water below. The stream meanders through the scene in ribbons of sapphire and aquamarine, with subtle ripples catching stray beams of sunlight. To the right, cascading willow branches create a veil of spring-green foliage that softens the light. The middle ground reveals the stream's winding path through the forest, with varying depths of field suggesting open meadows in the distance. Background foliage displays layers of forest greens, from deep emerald to pale lime, gradually softening into atmospheric haze. The lighting suggests late afternoon, with golden rays angling through the canopy to create dramatic chiaroscuro effects on water, stone, and woodland floor. diff --git a/asset-work/kq4_021_bridge_over_stream/caption_3_3447585809/caption_3_2360505271/caption_3.txt b/asset-work/kq4_021_bridge_over_stream/caption_3_3447585809/caption_3_2360505271/caption_3.txt deleted file mode 100644 index c765f57..0000000 --- a/asset-work/kq4_021_bridge_over_stream/caption_3_3447585809/caption_3_2360505271/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A panoramic woodland scene from a high vantage point, capturing a picturesque stone bridge crossing a babbling brook in a secluded forest clearing. Foreground elements include textured forest floor with exposed roots, moss-covered stones, and patches of wildflowers rendered in thick impasto strokes of amber and rust. A prominent tree trunk on the left creates natural framing, its bark rough and detailed in shades of charcoal and umber. The central stone bridge dominates the composition, its weathered granite blocks stacked in an elegant arch that reflects slightly in the placid water below. The stream meanders through the scene in ribbons of sapphire and aquamarine, with subtle ripples catching stray beams of sunlight. To the right, cascading willow branches create a veil of spring-green foliage that softens the light. The middle ground reveals the stream's winding path through the forest, with varying depths of field suggesting open meadows in the distance. Background foliage displays layers of forest greens, from deep emerald to pale lime, gradually softening into atmospheric haze. The lighting suggests late afternoon, with golden rays angling through the canopy to create dramatic chiaroscuro effects on water, stone, and woodland floor. diff --git a/asset-work/kq4_021_bridge_over_stream/caption_3_3447585809/caption_3_2360505271/generated.png b/asset-work/kq4_021_bridge_over_stream/caption_3_3447585809/caption_3_2360505271/generated.png deleted file mode 100644 index a28ebcb..0000000 --- a/asset-work/kq4_021_bridge_over_stream/caption_3_3447585809/caption_3_2360505271/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f9f348fa229c4082a513f5c903da5cb00cd035d4bc0d5a5978d10da65074c424 -size 4905320 diff --git a/asset-work/kq4_021_bridge_over_stream/caption_3_3447585809/generated.png b/asset-work/kq4_021_bridge_over_stream/caption_3_3447585809_generated.png similarity index 100% rename from asset-work/kq4_021_bridge_over_stream/caption_3_3447585809/generated.png rename to asset-work/kq4_021_bridge_over_stream/caption_3_3447585809_generated.png diff --git a/asset-work/kq4_021_bridge_over_stream/caption_3_3447585809_generated.png.import b/asset-work/kq4_021_bridge_over_stream/caption_3_3447585809_generated.png.import new file mode 100644 index 0000000..6ac4d45 --- /dev/null +++ b/asset-work/kq4_021_bridge_over_stream/caption_3_3447585809_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cjx4gqm1ch5ya" +path="res://.godot/imported/caption_3_3447585809_generated.png-dd83567793c1934b6a5e6df8201f4a72.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_021_bridge_over_stream/caption_3_3447585809_generated.png" +dest_files=["res://.godot/imported/caption_3_3447585809_generated.png-dd83567793c1934b6a5e6df8201f4a72.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_022_gnomes_cottage/caption_1_1907025206/generated.png b/asset-work/kq4_022_gnomes_cottage/caption_1_1907025206_generated.png similarity index 100% rename from asset-work/kq4_022_gnomes_cottage/caption_1_1907025206/generated.png rename to asset-work/kq4_022_gnomes_cottage/caption_1_1907025206_generated.png diff --git a/asset-work/kq4_022_gnomes_cottage/caption_1_1907025206_generated.png.import b/asset-work/kq4_022_gnomes_cottage/caption_1_1907025206_generated.png.import new file mode 100644 index 0000000..e1aa56a --- /dev/null +++ b/asset-work/kq4_022_gnomes_cottage/caption_1_1907025206_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b80tnj207tq2h" +path="res://.godot/imported/caption_1_1907025206_generated.png-5da565e8a6d744fdca8add984d3a58b8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_022_gnomes_cottage/caption_1_1907025206_generated.png" +dest_files=["res://.godot/imported/caption_1_1907025206_generated.png-5da565e8a6d744fdca8add984d3a58b8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_022_gnomes_cottage/caption_1_580543297/generated.png b/asset-work/kq4_022_gnomes_cottage/caption_1_580543297_generated.png similarity index 100% rename from asset-work/kq4_022_gnomes_cottage/caption_1_580543297/generated.png rename to asset-work/kq4_022_gnomes_cottage/caption_1_580543297_generated.png diff --git a/asset-work/kq4_022_gnomes_cottage/caption_1_580543297_generated.png.import b/asset-work/kq4_022_gnomes_cottage/caption_1_580543297_generated.png.import new file mode 100644 index 0000000..76d9d9f --- /dev/null +++ b/asset-work/kq4_022_gnomes_cottage/caption_1_580543297_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://1pan5mvb0bej" +path="res://.godot/imported/caption_1_580543297_generated.png-da30980ffc8993b2057c468281359f1c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_022_gnomes_cottage/caption_1_580543297_generated.png" +dest_files=["res://.godot/imported/caption_1_580543297_generated.png-da30980ffc8993b2057c468281359f1c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_022_gnomes_cottage/caption_2_3428883265/generated.png b/asset-work/kq4_022_gnomes_cottage/caption_2_3428883265_generated.png similarity index 100% rename from asset-work/kq4_022_gnomes_cottage/caption_2_3428883265/generated.png rename to asset-work/kq4_022_gnomes_cottage/caption_2_3428883265_generated.png diff --git a/asset-work/kq4_022_gnomes_cottage/caption_2_3428883265_generated.png.import b/asset-work/kq4_022_gnomes_cottage/caption_2_3428883265_generated.png.import new file mode 100644 index 0000000..c530b8a --- /dev/null +++ b/asset-work/kq4_022_gnomes_cottage/caption_2_3428883265_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://janh2vegtuna" +path="res://.godot/imported/caption_2_3428883265_generated.png-a7ba4aadfbda6f93835884fb09c28264.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_022_gnomes_cottage/caption_2_3428883265_generated.png" +dest_files=["res://.godot/imported/caption_2_3428883265_generated.png-a7ba4aadfbda6f93835884fb09c28264.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_022_gnomes_cottage/caption_2_3684427143/generated.png b/asset-work/kq4_022_gnomes_cottage/caption_2_3684427143_generated.png similarity index 100% rename from asset-work/kq4_022_gnomes_cottage/caption_2_3684427143/generated.png rename to asset-work/kq4_022_gnomes_cottage/caption_2_3684427143_generated.png diff --git a/asset-work/kq4_022_gnomes_cottage/caption_2_3684427143_generated.png.import b/asset-work/kq4_022_gnomes_cottage/caption_2_3684427143_generated.png.import new file mode 100644 index 0000000..1ad1f86 --- /dev/null +++ b/asset-work/kq4_022_gnomes_cottage/caption_2_3684427143_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cyut4c3qc7eyu" +path="res://.godot/imported/caption_2_3684427143_generated.png-9ba376d58516286389a49d6599f090a4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_022_gnomes_cottage/caption_2_3684427143_generated.png" +dest_files=["res://.godot/imported/caption_2_3684427143_generated.png-9ba376d58516286389a49d6599f090a4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_022_gnomes_cottage/caption_3_1785705679/generated.png b/asset-work/kq4_022_gnomes_cottage/caption_3_1785705679_generated.png similarity index 100% rename from asset-work/kq4_022_gnomes_cottage/caption_3_1785705679/generated.png rename to asset-work/kq4_022_gnomes_cottage/caption_3_1785705679_generated.png diff --git a/asset-work/kq4_022_gnomes_cottage/caption_3_1785705679_generated.png.import b/asset-work/kq4_022_gnomes_cottage/caption_3_1785705679_generated.png.import new file mode 100644 index 0000000..b4ba7c2 --- /dev/null +++ b/asset-work/kq4_022_gnomes_cottage/caption_3_1785705679_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dmt8cpcf02fgl" +path="res://.godot/imported/caption_3_1785705679_generated.png-9a497c1dea7ee4efd243ec236b4814c5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_022_gnomes_cottage/caption_3_1785705679_generated.png" +dest_files=["res://.godot/imported/caption_3_1785705679_generated.png-9a497c1dea7ee4efd243ec236b4814c5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_022_gnomes_cottage/caption_3_2486323738/generated.png b/asset-work/kq4_022_gnomes_cottage/caption_3_2486323738_generated.png similarity index 100% rename from asset-work/kq4_022_gnomes_cottage/caption_3_2486323738/generated.png rename to asset-work/kq4_022_gnomes_cottage/caption_3_2486323738_generated.png diff --git a/asset-work/kq4_022_gnomes_cottage/caption_3_2486323738_generated.png.import b/asset-work/kq4_022_gnomes_cottage/caption_3_2486323738_generated.png.import new file mode 100644 index 0000000..70f11d2 --- /dev/null +++ b/asset-work/kq4_022_gnomes_cottage/caption_3_2486323738_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c6en4dah806qb" +path="res://.godot/imported/caption_3_2486323738_generated.png-6e2bbb325312dca7ccde34e1ee8395af.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_022_gnomes_cottage/caption_3_2486323738_generated.png" +dest_files=["res://.godot/imported/caption_3_2486323738_generated.png-6e2bbb325312dca7ccde34e1ee8395af.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_023_forest_path_with_cottage/caption_1_2688264584/caption_1.txt b/asset-work/kq4_023_forest_path_with_cottage/caption_1_2688264584/caption_1.txt deleted file mode 100644 index 923a1ec..0000000 --- a/asset-work/kq4_023_forest_path_with_cottage/caption_1_2688264584/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A serene woodland path viewed from elevated perspective, where a rushing river cuts a sapphire ribbon through dense forest terrain. In the immediate foreground, wind-smoothed river stones cluster along sandy banks, their surfaces glistening with moisture. A weathered fallen log lies partially submerged in the sandy earth, its bark textured with mossy patches and age-worn fissures. To the right, a stark bare tree rises sentinel-like, its leafless branches reaching skyward in delicate filigree against the canopy. The middle ground reveals the river's crystalline waters flowing steadily westward, reflecting dappled sunlight through the pine canopy overhead. On the far bank, a charming cottage with warm amber walls and russet roof peeks through verdant foliage, nestled among towering evergreens. Background mountains fade into soft atmospheric blues and violets, suggesting vast distance. The palette harmonizes deep forest greens, warm ochres of the sandy path, cool cerulean waters, and the warm golden light filtering through pine needles. diff --git a/asset-work/kq4_023_forest_path_with_cottage/caption_1_2688264584/generated.png b/asset-work/kq4_023_forest_path_with_cottage/caption_1_2688264584_generated.png similarity index 100% rename from asset-work/kq4_023_forest_path_with_cottage/caption_1_2688264584/generated.png rename to asset-work/kq4_023_forest_path_with_cottage/caption_1_2688264584_generated.png diff --git a/asset-work/kq4_023_forest_path_with_cottage/caption_1_2688264584_generated.png.import b/asset-work/kq4_023_forest_path_with_cottage/caption_1_2688264584_generated.png.import new file mode 100644 index 0000000..c3361d4 --- /dev/null +++ b/asset-work/kq4_023_forest_path_with_cottage/caption_1_2688264584_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://vsapx48715ha" +path="res://.godot/imported/caption_1_2688264584_generated.png-8645380007a3f524abeee7a84e409e0e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_023_forest_path_with_cottage/caption_1_2688264584_generated.png" +dest_files=["res://.godot/imported/caption_1_2688264584_generated.png-8645380007a3f524abeee7a84e409e0e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_023_forest_path_with_cottage/caption_2_4265662338/caption_2.txt b/asset-work/kq4_023_forest_path_with_cottage/caption_2_4265662338/caption_2.txt deleted file mode 100644 index 48b05fc..0000000 --- a/asset-work/kq4_023_forest_path_with_cottage/caption_2_4265662338/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A high-angle vista through ancient woodland revealing nature's layered tapestry of textures and depths. Foreground shows sandy earth scattered with smooth gray river stones and hardy wildflowers in delicate pink and violet hues, their petals catching filtered sunlight. A gnarled bare tree dominates the right composition, its bark rendered in rough impasto strokes of gray and umber, branches creating elegant negative spaces against the verdant backdrop. The rushing river flows horizontally across the mid-ground, its surface animated with white-capped riffles and deep emerald reflections of overhanging pines. Beyond the water, massive pine trees rise in dark green silhouette, their dense canopies creating a natural frame. Through this arboreal screen, a distant cottage with warm walls and terracotta roof suggests human habitation within wilderness. Background peaks dissolve into misty atmospheric perspective, painted in muted lavender and slate tones. Golden afternoon light streams through gaps in the canopy, creating luminous patches on the forest floor and highlighting the contrast between sun-warmed sand and cool shadowed undergrowth. diff --git a/asset-work/kq4_023_forest_path_with_cottage/caption_2_4265662338/generated.png b/asset-work/kq4_023_forest_path_with_cottage/caption_2_4265662338_generated.png similarity index 100% rename from asset-work/kq4_023_forest_path_with_cottage/caption_2_4265662338/generated.png rename to asset-work/kq4_023_forest_path_with_cottage/caption_2_4265662338_generated.png diff --git a/asset-work/kq4_023_forest_path_with_cottage/caption_2_4265662338_generated.png.import b/asset-work/kq4_023_forest_path_with_cottage/caption_2_4265662338_generated.png.import new file mode 100644 index 0000000..3f9d118 --- /dev/null +++ b/asset-work/kq4_023_forest_path_with_cottage/caption_2_4265662338_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bfcmwihrekeor" +path="res://.godot/imported/caption_2_4265662338_generated.png-1dfc056ec9bf960a674e6f1e73f08442.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_023_forest_path_with_cottage/caption_2_4265662338_generated.png" +dest_files=["res://.godot/imported/caption_2_4265662338_generated.png-1dfc056ec9bf960a674e6f1e73f08442.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_023_forest_path_with_cottage/caption_3_638382126/caption_3.txt b/asset-work/kq4_023_forest_path_with_cottage/caption_3_638382126/caption_3.txt deleted file mode 100644 index ab6413f..0000000 --- a/asset-work/kq4_023_forest_path_with_cottage/caption_3_638382126/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. An immersive forest landscape captured from above, showcasing the interplay between rushing water, ancient woodland, and distant mountain peaks. Immediate foreground features pale sandy terrain marked by gentle undulations and scattered with rounded river rocks in subtle grays and warm browns. A prominent fallen tree trunk rests horizontally across the sandy bank, its weathered surface displaying rich texture variations from smooth worn patches to rough bark remnants. The river dominates the middle composition, its waters painted in layered strokes of deep ultramarine, turquoise, and foam-white where currents break over submerged stones. Pine trees of varying heights create a natural curtain, their deep green needles contrasted against glimpses of a cozy cottage retreat visible through gaps in the foliage. The background reveals the source of the river—distant mountains rising in graduated blue tones, their snow-capped peaks suggested through atmospheric haze. The scene is bathed in warm late-day light, casting long shadows across the sandy path and illuminating the cottage's warm walls while the surrounding forest settles into deepening emerald shadows. Wildflowers dot the foreground in delicate touches of color, completing this pastoral woodland composition. diff --git a/asset-work/kq4_023_forest_path_with_cottage/caption_3_638382126/generated.png b/asset-work/kq4_023_forest_path_with_cottage/caption_3_638382126_generated.png similarity index 100% rename from asset-work/kq4_023_forest_path_with_cottage/caption_3_638382126/generated.png rename to asset-work/kq4_023_forest_path_with_cottage/caption_3_638382126_generated.png diff --git a/asset-work/kq4_023_forest_path_with_cottage/caption_3_638382126_generated.png.import b/asset-work/kq4_023_forest_path_with_cottage/caption_3_638382126_generated.png.import new file mode 100644 index 0000000..3a15d58 --- /dev/null +++ b/asset-work/kq4_023_forest_path_with_cottage/caption_3_638382126_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bsvwawqjpye3x" +path="res://.godot/imported/caption_3_638382126_generated.png-bc6edb91cb209e6802bdabd6e332fe78.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_023_forest_path_with_cottage/caption_3_638382126_generated.png" +dest_files=["res://.godot/imported/caption_3_638382126_generated.png-bc6edb91cb209e6802bdabd6e332fe78.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_024_waterfall_and_pool/caption_1_3565655905/caption_1.txt b/asset-work/kq4_024_waterfall_and_pool/caption_1_3565655905/caption_1.txt deleted file mode 100644 index e66a41e..0000000 --- a/asset-work/kq4_024_waterfall_and_pool/caption_1_3565655905/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A breathtaking high-angle view of a magnificent waterfall plunging from towering cliffs into a crystalline pool below. In the foreground, weathered boulders and moss-covered stones frame the riverbank, their surfaces textured with thick impasto brushwork. A gnarled tree stump stands sentinel on the left, its aged wood grain rendered in warm umbers and siennas. The central composition features the powerful cascade tumbling in white foam ribbons against dark granite cliffs, collecting in a deep azure pool that shimmers with reflected light. From this pool, a rushing river courses westward, its surface animated with fluid strokes of turquoise and cerulean. Dense emerald forest presses in from the background, ancient pines and deciduous trees forming a verdant wall that frames the scene. Behind the thundering falls, shadow suggests a mysterious dark cleft in the rock face. The color palette harmonizes deep forest greens, slate grays of wet stone, and the brilliant whites of churning water under soft diffused daylight. Atmospheric perspective softens the distant mountain peaks visible above the treeline, creating layers of depth that draw the eye through the composition. diff --git a/asset-work/kq4_024_waterfall_and_pool/caption_1_3565655905/caption_1_1931451136/caption_1.txt b/asset-work/kq4_024_waterfall_and_pool/caption_1_3565655905/caption_1_1931451136/caption_1.txt deleted file mode 100644 index e66a41e..0000000 --- a/asset-work/kq4_024_waterfall_and_pool/caption_1_3565655905/caption_1_1931451136/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A breathtaking high-angle view of a magnificent waterfall plunging from towering cliffs into a crystalline pool below. In the foreground, weathered boulders and moss-covered stones frame the riverbank, their surfaces textured with thick impasto brushwork. A gnarled tree stump stands sentinel on the left, its aged wood grain rendered in warm umbers and siennas. The central composition features the powerful cascade tumbling in white foam ribbons against dark granite cliffs, collecting in a deep azure pool that shimmers with reflected light. From this pool, a rushing river courses westward, its surface animated with fluid strokes of turquoise and cerulean. Dense emerald forest presses in from the background, ancient pines and deciduous trees forming a verdant wall that frames the scene. Behind the thundering falls, shadow suggests a mysterious dark cleft in the rock face. The color palette harmonizes deep forest greens, slate grays of wet stone, and the brilliant whites of churning water under soft diffused daylight. Atmospheric perspective softens the distant mountain peaks visible above the treeline, creating layers of depth that draw the eye through the composition. diff --git a/asset-work/kq4_024_waterfall_and_pool/caption_1_3565655905/caption_1_1931451136/generated.png b/asset-work/kq4_024_waterfall_and_pool/caption_1_3565655905/caption_1_1931451136/generated.png deleted file mode 100644 index 7ed3bf3..0000000 --- a/asset-work/kq4_024_waterfall_and_pool/caption_1_3565655905/caption_1_1931451136/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c1e90da63f8f98000b3ff41935abaa321977b62bc85924e14f9c4a41b512df7a -size 4845498 diff --git a/asset-work/kq4_024_waterfall_and_pool/caption_1_3565655905/generated.png b/asset-work/kq4_024_waterfall_and_pool/caption_1_3565655905_generated.png similarity index 100% rename from asset-work/kq4_024_waterfall_and_pool/caption_1_3565655905/generated.png rename to asset-work/kq4_024_waterfall_and_pool/caption_1_3565655905_generated.png diff --git a/asset-work/kq4_024_waterfall_and_pool/caption_1_3565655905_generated.png.import b/asset-work/kq4_024_waterfall_and_pool/caption_1_3565655905_generated.png.import new file mode 100644 index 0000000..1e6788b --- /dev/null +++ b/asset-work/kq4_024_waterfall_and_pool/caption_1_3565655905_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://fotxq4wlwpa2" +path="res://.godot/imported/caption_1_3565655905_generated.png-6d2ab33cc48cf13aead075062cc44bfe.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_024_waterfall_and_pool/caption_1_3565655905_generated.png" +dest_files=["res://.godot/imported/caption_1_3565655905_generated.png-6d2ab33cc48cf13aead075062cc44bfe.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_024_waterfall_and_pool/caption_2_1880592496/caption_2.txt b/asset-work/kq4_024_waterfall_and_pool/caption_2_1880592496/caption_2.txt deleted file mode 100644 index 210b862..0000000 --- a/asset-work/kq4_024_waterfall_and_pool/caption_2_1880592496/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A dramatic wilderness vista viewed from above, showcasing nature's raw power as crystalline waters plunge down a rocky precipice into a deep mountain pool. The foreground reveals coarse river stones and tufts of wild grasses rooted in rich earth, painted with attention to natural textures and organic forms. To the left, a solitary tree stump emerges from the verdant ground, its rings and fissures suggesting decades of weathering. The middle ground is dominated by the thundering waterfall itself, white water exploding against dark jagged rocks before settling into an intense cobalt pool that reflects the surrounding cliffs. A vigorous river streams westward from this basin, its current visible through variations in blue tones and white water highlights. Towering evergreens and mixed forest rise in the background, their canopies creating a tapestry of deep greens that contrast with the cool blues of the water. Mysterious shadows behind the falls hint at hidden depths within the cliff face. Golden afternoon light filters through the canopy, creating dappled illumination on the forest floor and highlighting the mist rising from the falls in ethereal wisps. diff --git a/asset-work/kq4_024_waterfall_and_pool/caption_2_1880592496/caption_2_1736286982/caption_2.txt b/asset-work/kq4_024_waterfall_and_pool/caption_2_1880592496/caption_2_1736286982/caption_2.txt deleted file mode 100644 index 210b862..0000000 --- a/asset-work/kq4_024_waterfall_and_pool/caption_2_1880592496/caption_2_1736286982/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A dramatic wilderness vista viewed from above, showcasing nature's raw power as crystalline waters plunge down a rocky precipice into a deep mountain pool. The foreground reveals coarse river stones and tufts of wild grasses rooted in rich earth, painted with attention to natural textures and organic forms. To the left, a solitary tree stump emerges from the verdant ground, its rings and fissures suggesting decades of weathering. The middle ground is dominated by the thundering waterfall itself, white water exploding against dark jagged rocks before settling into an intense cobalt pool that reflects the surrounding cliffs. A vigorous river streams westward from this basin, its current visible through variations in blue tones and white water highlights. Towering evergreens and mixed forest rise in the background, their canopies creating a tapestry of deep greens that contrast with the cool blues of the water. Mysterious shadows behind the falls hint at hidden depths within the cliff face. Golden afternoon light filters through the canopy, creating dappled illumination on the forest floor and highlighting the mist rising from the falls in ethereal wisps. diff --git a/asset-work/kq4_024_waterfall_and_pool/caption_2_1880592496/caption_2_1736286982/generated.png b/asset-work/kq4_024_waterfall_and_pool/caption_2_1880592496/caption_2_1736286982/generated.png deleted file mode 100644 index 9d7f047..0000000 --- a/asset-work/kq4_024_waterfall_and_pool/caption_2_1880592496/caption_2_1736286982/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:fdbd5fdbfcbb8dcc77f4aee3f7c5c18419260309bcd50e8d6d9e70e8dd80c71b -size 4990215 diff --git a/asset-work/kq4_024_waterfall_and_pool/caption_2_1880592496/generated.png b/asset-work/kq4_024_waterfall_and_pool/caption_2_1880592496_generated.png similarity index 100% rename from asset-work/kq4_024_waterfall_and_pool/caption_2_1880592496/generated.png rename to asset-work/kq4_024_waterfall_and_pool/caption_2_1880592496_generated.png diff --git a/asset-work/kq4_024_waterfall_and_pool/caption_2_1880592496_generated.png.import b/asset-work/kq4_024_waterfall_and_pool/caption_2_1880592496_generated.png.import new file mode 100644 index 0000000..1687d56 --- /dev/null +++ b/asset-work/kq4_024_waterfall_and_pool/caption_2_1880592496_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dqlgagvjv3bhh" +path="res://.godot/imported/caption_2_1880592496_generated.png-5bab8b526031e079cf856c754a21dd61.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_024_waterfall_and_pool/caption_2_1880592496_generated.png" +dest_files=["res://.godot/imported/caption_2_1880592496_generated.png-5bab8b526031e079cf856c754a21dd61.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_024_waterfall_and_pool/caption_3_2148914524/caption_3.txt b/asset-work/kq4_024_waterfall_and_pool/caption_3_2148914524/caption_3.txt deleted file mode 100644 index 06877ef..0000000 --- a/asset-work/kq4_024_waterfall_and_pool/caption_3_2148914524/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A serene yet powerful landscape captured from an elevated perspective, revealing a secluded waterfall sanctuary nestled within an ancient forest. The immediate foreground displays rough terrain strewn with boulders and rocky outcrops, their surfaces glistening with spray and patches of emerald moss. A distinctive stump anchors the left composition, its weathered texture contrasting with the smooth water surfaces. The central drama unfolds as a majestic waterfall descends from unseen heights above, crashing into a profound pool of deep ultramarine and teal hues that suggest considerable depth. From this basin, a determined river flows westward, carving its path through the landscape with visible current patterns. Dense woodland encircles the scene, mature trees with thick trunks and layered foliage creating natural walls of varying green tones from sage to deep forest. Behind the veil of falling water, darkness implies a concealed cavern or passage within the stone. The palette balances the cool aquatic blues and grays against the warmth of sun-touched bark and earth. Soft overcast lighting creates minimal shadows while emphasizing the mist and spray, lending the scene a romantic, almost dreamlike quality typical of the Hudson River School tradition. diff --git a/asset-work/kq4_024_waterfall_and_pool/caption_3_2148914524/caption_3_3335507336/caption_3.txt b/asset-work/kq4_024_waterfall_and_pool/caption_3_2148914524/caption_3_3335507336/caption_3.txt deleted file mode 100644 index 06877ef..0000000 --- a/asset-work/kq4_024_waterfall_and_pool/caption_3_2148914524/caption_3_3335507336/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A serene yet powerful landscape captured from an elevated perspective, revealing a secluded waterfall sanctuary nestled within an ancient forest. The immediate foreground displays rough terrain strewn with boulders and rocky outcrops, their surfaces glistening with spray and patches of emerald moss. A distinctive stump anchors the left composition, its weathered texture contrasting with the smooth water surfaces. The central drama unfolds as a majestic waterfall descends from unseen heights above, crashing into a profound pool of deep ultramarine and teal hues that suggest considerable depth. From this basin, a determined river flows westward, carving its path through the landscape with visible current patterns. Dense woodland encircles the scene, mature trees with thick trunks and layered foliage creating natural walls of varying green tones from sage to deep forest. Behind the veil of falling water, darkness implies a concealed cavern or passage within the stone. The palette balances the cool aquatic blues and grays against the warmth of sun-touched bark and earth. Soft overcast lighting creates minimal shadows while emphasizing the mist and spray, lending the scene a romantic, almost dreamlike quality typical of the Hudson River School tradition. diff --git a/asset-work/kq4_024_waterfall_and_pool/caption_3_2148914524/caption_3_3335507336/generated.png b/asset-work/kq4_024_waterfall_and_pool/caption_3_2148914524/caption_3_3335507336/generated.png deleted file mode 100644 index 0ae923e..0000000 --- a/asset-work/kq4_024_waterfall_and_pool/caption_3_2148914524/caption_3_3335507336/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b2376ee4dd37cbe0a14db3efc9445371ae711288bbdaa897dc72a07be8038f0a -size 4434551 diff --git a/asset-work/kq4_024_waterfall_and_pool/caption_3_2148914524/generated.png b/asset-work/kq4_024_waterfall_and_pool/caption_3_2148914524_generated.png similarity index 100% rename from asset-work/kq4_024_waterfall_and_pool/caption_3_2148914524/generated.png rename to asset-work/kq4_024_waterfall_and_pool/caption_3_2148914524_generated.png diff --git a/asset-work/kq4_024_waterfall_and_pool/caption_3_2148914524_generated.png.import b/asset-work/kq4_024_waterfall_and_pool/caption_3_2148914524_generated.png.import new file mode 100644 index 0000000..6b6a00a --- /dev/null +++ b/asset-work/kq4_024_waterfall_and_pool/caption_3_2148914524_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b4lggyk06ymex" +path="res://.godot/imported/caption_3_2148914524_generated.png-7302cbfcc5e544b96a6417b8b83e5407.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_024_waterfall_and_pool/caption_3_2148914524_generated.png" +dest_files=["res://.godot/imported/caption_3_2148914524_generated.png-7302cbfcc5e544b96a6417b8b83e5407.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_025_beach_at_river_delta/caption_1_155837719/caption_1.txt b/asset-work/kq4_025_beach_at_river_delta/caption_1_155837719/caption_1.txt deleted file mode 100644 index c28896a..0000000 --- a/asset-work/kq4_025_beach_at_river_delta/caption_1_155837719/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A sweeping aerial view captures the dramatic convergence of a freshwater river meeting the vast ocean at a serene delta. In the foreground, the sandy beach curves gently with weathered stones and smooth pebbles scattered across golden sands, their surfaces catching the warm afternoon light. The middle ground reveals the river's mouth, where crystalline freshwater flows into deeper marine blue, creating subtle variations in color and texture as the waters mingle. Gentle waves lap at the shoreline in rhythmic patterns, rendered in strokes of cerulean and aquamarine. To the right, lush green meadow rises atop a bluff, dotted with dark sentinel trees standing against the horizon. The background stretches into an endless expanse of deep indigo ocean under a sky filled with billowing cumulus clouds. Soft atmospheric perspective softens the distant treeline while warm sunlight bathes the entire scene in golden hues, creating a harmonious palette of emerald greens, sandy ochres, and ocean blues. diff --git a/asset-work/kq4_025_beach_at_river_delta/caption_1_155837719/caption_1_2307492253/caption_1.txt b/asset-work/kq4_025_beach_at_river_delta/caption_1_155837719/caption_1_2307492253/caption_1.txt deleted file mode 100644 index c28896a..0000000 --- a/asset-work/kq4_025_beach_at_river_delta/caption_1_155837719/caption_1_2307492253/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A sweeping aerial view captures the dramatic convergence of a freshwater river meeting the vast ocean at a serene delta. In the foreground, the sandy beach curves gently with weathered stones and smooth pebbles scattered across golden sands, their surfaces catching the warm afternoon light. The middle ground reveals the river's mouth, where crystalline freshwater flows into deeper marine blue, creating subtle variations in color and texture as the waters mingle. Gentle waves lap at the shoreline in rhythmic patterns, rendered in strokes of cerulean and aquamarine. To the right, lush green meadow rises atop a bluff, dotted with dark sentinel trees standing against the horizon. The background stretches into an endless expanse of deep indigo ocean under a sky filled with billowing cumulus clouds. Soft atmospheric perspective softens the distant treeline while warm sunlight bathes the entire scene in golden hues, creating a harmonious palette of emerald greens, sandy ochres, and ocean blues. diff --git a/asset-work/kq4_025_beach_at_river_delta/caption_1_155837719/caption_1_2307492253/generated.png b/asset-work/kq4_025_beach_at_river_delta/caption_1_155837719/caption_1_2307492253/generated.png deleted file mode 100644 index 6dcb910..0000000 --- a/asset-work/kq4_025_beach_at_river_delta/caption_1_155837719/caption_1_2307492253/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:041ce95b745392c40dd3af195174238807cd74c94b6341c567b339f9937fa8ca -size 4321878 diff --git a/asset-work/kq4_025_beach_at_river_delta/caption_1_155837719/generated.png b/asset-work/kq4_025_beach_at_river_delta/caption_1_155837719_generated.png similarity index 100% rename from asset-work/kq4_025_beach_at_river_delta/caption_1_155837719/generated.png rename to asset-work/kq4_025_beach_at_river_delta/caption_1_155837719_generated.png diff --git a/asset-work/kq4_025_beach_at_river_delta/caption_1_155837719_generated.png.import b/asset-work/kq4_025_beach_at_river_delta/caption_1_155837719_generated.png.import new file mode 100644 index 0000000..1dabc60 --- /dev/null +++ b/asset-work/kq4_025_beach_at_river_delta/caption_1_155837719_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://sbnuee6uej1c" +path="res://.godot/imported/caption_1_155837719_generated.png-4f857f44ff12a3d888f4fabe3ced28a3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_025_beach_at_river_delta/caption_1_155837719_generated.png" +dest_files=["res://.godot/imported/caption_1_155837719_generated.png-4f857f44ff12a3d888f4fabe3ced28a3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_025_beach_at_river_delta/caption_2_4015592731/caption_2.txt b/asset-work/kq4_025_beach_at_river_delta/caption_2_4015592731/caption_2.txt deleted file mode 100644 index d062cd0..0000000 --- a/asset-work/kq4_025_beach_at_river_delta/caption_2_4015592731/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A picturesque coastal vista viewed from above, showcasing a tranquil beach where land and sea embrace in gentle harmony. The immediate foreground features textured sandy shore with smooth river stones and tidal debris, painted with thick impasto strokes suggesting the granular quality of beach sand. The beach stretches in a graceful arc toward the middle distance, where foam-capped breakers create delicate white lace patterns against turquoise shallows. A river flows from the verdant east, its waters carrying sediment that swirls into the deeper ocean in mesmerizing eddies of blue and green. The right side of the composition rises into a sun-drenched meadow, its emerald grasses swaying in imagined breeze, crowned by dark coniferous trees on the horizon. Background clouds drift lazily across an azure sky, casting soft shadows that dance across the water's surface. The color palette balances warm golden sands and sunlit meadows against cool marine blues and slate-gray wave shadows, evoking a sense of peaceful isolation. diff --git a/asset-work/kq4_025_beach_at_river_delta/caption_2_4015592731/caption_2_2273080205/caption_2.txt b/asset-work/kq4_025_beach_at_river_delta/caption_2_4015592731/caption_2_2273080205/caption_2.txt deleted file mode 100644 index d062cd0..0000000 --- a/asset-work/kq4_025_beach_at_river_delta/caption_2_4015592731/caption_2_2273080205/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A picturesque coastal vista viewed from above, showcasing a tranquil beach where land and sea embrace in gentle harmony. The immediate foreground features textured sandy shore with smooth river stones and tidal debris, painted with thick impasto strokes suggesting the granular quality of beach sand. The beach stretches in a graceful arc toward the middle distance, where foam-capped breakers create delicate white lace patterns against turquoise shallows. A river flows from the verdant east, its waters carrying sediment that swirls into the deeper ocean in mesmerizing eddies of blue and green. The right side of the composition rises into a sun-drenched meadow, its emerald grasses swaying in imagined breeze, crowned by dark coniferous trees on the horizon. Background clouds drift lazily across an azure sky, casting soft shadows that dance across the water's surface. The color palette balances warm golden sands and sunlit meadows against cool marine blues and slate-gray wave shadows, evoking a sense of peaceful isolation. diff --git a/asset-work/kq4_025_beach_at_river_delta/caption_2_4015592731/caption_2_2273080205/generated.png b/asset-work/kq4_025_beach_at_river_delta/caption_2_4015592731/caption_2_2273080205/generated.png deleted file mode 100644 index 408005e..0000000 --- a/asset-work/kq4_025_beach_at_river_delta/caption_2_4015592731/caption_2_2273080205/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4532f9d37ccd3712bb6b6e88292dcaa2808923af7b4ecdc009e66677dc567f02 -size 4451670 diff --git a/asset-work/kq4_025_beach_at_river_delta/caption_2_4015592731/generated.png b/asset-work/kq4_025_beach_at_river_delta/caption_2_4015592731_generated.png similarity index 100% rename from asset-work/kq4_025_beach_at_river_delta/caption_2_4015592731/generated.png rename to asset-work/kq4_025_beach_at_river_delta/caption_2_4015592731_generated.png diff --git a/asset-work/kq4_025_beach_at_river_delta/caption_2_4015592731_generated.png.import b/asset-work/kq4_025_beach_at_river_delta/caption_2_4015592731_generated.png.import new file mode 100644 index 0000000..5a2bf7b --- /dev/null +++ b/asset-work/kq4_025_beach_at_river_delta/caption_2_4015592731_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://be4dqv1vvaw7r" +path="res://.godot/imported/caption_2_4015592731_generated.png-49ca1908ade85cb302de20b7ffafc9d1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_025_beach_at_river_delta/caption_2_4015592731_generated.png" +dest_files=["res://.godot/imported/caption_2_4015592731_generated.png-49ca1908ade85cb302de20b7ffafc9d1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_025_beach_at_river_delta/caption_3_1945084529/caption_3.txt b/asset-work/kq4_025_beach_at_river_delta/caption_3_1945084529/caption_3.txt deleted file mode 100644 index facef36..0000000 --- a/asset-work/kq4_025_beach_at_river_delta/caption_3_1945084529/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A serene coastal landscape captured from an elevated perspective, revealing the meeting point of river and ocean at a secluded delta beach. The composition unfolds with textured foreground sands showing rippled patterns left by receding tides, interspersed with rounded stones polished smooth by endless waves. The central focus follows the river's path as it spills from the eastern meadows into the waiting ocean, creating a dynamic interplay of freshwater and saltwater rendered in layers of turquoise, cobalt, and deep indigo. The beach curves protectively around this aquatic meeting place, its golden sands contrasting with the lush green bluff rising to the right. Meadow grasses transition from bright emerald in sunlight to deeper forest tones where ancient trees stand sentinel on the horizon. The background dissolves into atmospheric haze where sky meets sea, with soft white clouds floating in a cerulean expanse above. Late afternoon light casts elongated shadows and bathes the scene in warm amber tones, emphasizing the natural textures of bark, stone, water, and wild grass in masterful oil technique. diff --git a/asset-work/kq4_025_beach_at_river_delta/caption_3_1945084529/caption_3_1704587942/caption_3.txt b/asset-work/kq4_025_beach_at_river_delta/caption_3_1945084529/caption_3_1704587942/caption_3.txt deleted file mode 100644 index facef36..0000000 --- a/asset-work/kq4_025_beach_at_river_delta/caption_3_1945084529/caption_3_1704587942/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A serene coastal landscape captured from an elevated perspective, revealing the meeting point of river and ocean at a secluded delta beach. The composition unfolds with textured foreground sands showing rippled patterns left by receding tides, interspersed with rounded stones polished smooth by endless waves. The central focus follows the river's path as it spills from the eastern meadows into the waiting ocean, creating a dynamic interplay of freshwater and saltwater rendered in layers of turquoise, cobalt, and deep indigo. The beach curves protectively around this aquatic meeting place, its golden sands contrasting with the lush green bluff rising to the right. Meadow grasses transition from bright emerald in sunlight to deeper forest tones where ancient trees stand sentinel on the horizon. The background dissolves into atmospheric haze where sky meets sea, with soft white clouds floating in a cerulean expanse above. Late afternoon light casts elongated shadows and bathes the scene in warm amber tones, emphasizing the natural textures of bark, stone, water, and wild grass in masterful oil technique. diff --git a/asset-work/kq4_025_beach_at_river_delta/caption_3_1945084529/caption_3_1704587942/generated.png b/asset-work/kq4_025_beach_at_river_delta/caption_3_1945084529/caption_3_1704587942/generated.png deleted file mode 100644 index e7ba12f..0000000 --- a/asset-work/kq4_025_beach_at_river_delta/caption_3_1945084529/caption_3_1704587942/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:471b2f18b07891c8faa079edc4229aa4dc006a01ecfb0293e6b39350d74530bf -size 4255561 diff --git a/asset-work/kq4_025_beach_at_river_delta/caption_3_1945084529/generated.png b/asset-work/kq4_025_beach_at_river_delta/caption_3_1945084529_generated.png similarity index 100% rename from asset-work/kq4_025_beach_at_river_delta/caption_3_1945084529/generated.png rename to asset-work/kq4_025_beach_at_river_delta/caption_3_1945084529_generated.png diff --git a/asset-work/kq4_025_beach_at_river_delta/caption_3_1945084529_generated.png.import b/asset-work/kq4_025_beach_at_river_delta/caption_3_1945084529_generated.png.import new file mode 100644 index 0000000..7e85093 --- /dev/null +++ b/asset-work/kq4_025_beach_at_river_delta/caption_3_1945084529_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d4iv0unx7jq7c" +path="res://.godot/imported/caption_3_1945084529_generated.png-9e78437c843f168dee6becc28705f8a4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_025_beach_at_river_delta/caption_3_1945084529_generated.png" +dest_files=["res://.godot/imported/caption_3_1945084529_generated.png-9e78437c843f168dee6becc28705f8a4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_026_river_meadow/caption_1_750686423/caption_1.txt b/asset-work/kq4_026_river_meadow/caption_1_750686423/caption_1.txt deleted file mode 100644 index a685b5b..0000000 --- a/asset-work/kq4_026_river_meadow/caption_1_750686423/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A picturesque river meadow captured from elevated perspective, where a serpentine waterway winds through verdant grassland like a ribbon of polished sapphire. The foreground reveals rich textural details of the riverbank—smooth stones emerging from crystalline shallows, while clusters of wildflowers in violet, magenta, and delicate pink bloom in profusion along the water's edge. To the left, a stand of mature trees with spreading canopies casts dappled shadows across the meadow, their trunks rendered in warm umbers and their foliage a tapestry of emerald and spring green. The right side features a sunlit bank where golden grasses meet a patch of sandy earth, suggesting a natural crossing point. The river itself dominates the middle ground, its deep blue waters reflecting the sky above while occasional rocks break the surface, creating gentle ripples. In the background, the meadow stretches toward a distant treeline under a vast sky of cerulean blue, adorned with soft cumulus clouds that cast moving shadows across the landscape. The palette celebrates the freshness of high summer—vibrant greens, floral purples, and the deep blues of water and sky—all bathed in bright, clear daylight that creates crisp shadows and luminous highlights across this idyllic pastoral scene. diff --git a/asset-work/kq4_026_river_meadow/caption_1_750686423/generated.png b/asset-work/kq4_026_river_meadow/caption_1_750686423_generated.png similarity index 100% rename from asset-work/kq4_026_river_meadow/caption_1_750686423/generated.png rename to asset-work/kq4_026_river_meadow/caption_1_750686423_generated.png diff --git a/asset-work/kq4_026_river_meadow/caption_1_750686423_generated.png.import b/asset-work/kq4_026_river_meadow/caption_1_750686423_generated.png.import new file mode 100644 index 0000000..bb5fca2 --- /dev/null +++ b/asset-work/kq4_026_river_meadow/caption_1_750686423_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bg822265csvoj" +path="res://.godot/imported/caption_1_750686423_generated.png-50c78cf30e35bc78ba15310e0863e92d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_026_river_meadow/caption_1_750686423_generated.png" +dest_files=["res://.godot/imported/caption_1_750686423_generated.png-50c78cf30e35bc78ba15310e0863e92d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_026_river_meadow/caption_2_3182589600/caption_2.txt b/asset-work/kq4_026_river_meadow/caption_2_3182589600/caption_2.txt deleted file mode 100644 index 7fb022b..0000000 --- a/asset-work/kq4_026_river_meadow/caption_2_3182589600/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. An idyllic riverside vista viewed from above, where nature's abundance unfolds in harmonious layers of color and texture. The immediate foreground displays the lush riverbank ecosystem—tall grasses in varying shades of green swaying gently, interspersed with drifts of wildflowers in soft lavenders and rose pinks that carpet the earth. A cluster of stately trees anchors the left side of the composition, their trunks rising like columns from the meadow floor, bark textured with furrows and patches of moss, while their canopies create islands of cooling shade. The winding river occupies the central space, its waters a deep cobalt that shifts to turquoise in the shallows, flowing gracefully between natural banks lined with smooth stones and flowering vegetation. On the right, a sandy clearing offers contrast to the verdant surroundings, its warm ochre tones catching the sunlight. The middle ground reveals the river's serpentine path continuing into the distance, bordered by uninterrupted meadow grass that ripples like a green sea. Background trees form a soft horizon line where grassland meets forest, while above, a brilliant azure sky scattered with fluffy white clouds completes this pastoral symphony. The lighting suggests late morning, with golden rays illuminating the scene and creating depth through alternating bands of light and shadow across the meadow's rolling terrain. diff --git a/asset-work/kq4_026_river_meadow/caption_2_3182589600/generated.png b/asset-work/kq4_026_river_meadow/caption_2_3182589600_generated.png similarity index 100% rename from asset-work/kq4_026_river_meadow/caption_2_3182589600/generated.png rename to asset-work/kq4_026_river_meadow/caption_2_3182589600_generated.png diff --git a/asset-work/kq4_026_river_meadow/caption_2_3182589600_generated.png.import b/asset-work/kq4_026_river_meadow/caption_2_3182589600_generated.png.import new file mode 100644 index 0000000..abe3e56 --- /dev/null +++ b/asset-work/kq4_026_river_meadow/caption_2_3182589600_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cy83fgnkegjnm" +path="res://.godot/imported/caption_2_3182589600_generated.png-e248a8a0781f589655367ea18765e525.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_026_river_meadow/caption_2_3182589600_generated.png" +dest_files=["res://.godot/imported/caption_2_3182589600_generated.png-e248a8a0781f589655367ea18765e525.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_026_river_meadow/caption_3_2933755623/caption_3.txt b/asset-work/kq4_026_river_meadow/caption_3_2933755623/caption_3.txt deleted file mode 100644 index 308a0fb..0000000 --- a/asset-work/kq4_026_river_meadow/caption_3_2933755623/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A serene pastoral landscape captured from commanding height, showcasing the timeless beauty of a meadow cradling a meandering stream. In the foreground, the riverbank reveals its textural richness—rounded stones worn smooth by centuries of flowing water, patches of rich earth where moisture-loving plants thrive, and abundant wildflowers in purple and pink creating vibrant accents against the dominant greens. To the left, a grove of mature deciduous trees stands in protective formation, their leaves filtering sunlight into shifting patterns of gold and shadow across the grass below, while individual trunks display the character of age in their gnarled bark. The river itself, a brilliant ribbon of azure and indigo, curves through the center of the composition with elegant grace, its surface occasionally broken by rocks that create miniature waterfalls and ripples catching the light. The right bank offers a sandy expanse where the grass gives way to warm-toned earth, suggesting a natural ford or gathering place. The middle ground extends the meadow's verdant carpet toward the horizon, the grass showing subtle variations in color and height that suggest gentle undulations in the terrain. Distant trees form a soft boundary where the meadow meets the forest, painted in atmospheric perspective that softens their details into blue-green haze. The expansive sky above stretches in brilliant cerulean, populated by artfully arranged cumulus clouds that cast theatrical shadows across the scene below. The palette balances cool water tones and warm earth hues, unified by the golden afternoon light that bathes everything in romantic, painterly radiance. diff --git a/asset-work/kq4_026_river_meadow/caption_3_2933755623/generated.png b/asset-work/kq4_026_river_meadow/caption_3_2933755623_generated.png similarity index 100% rename from asset-work/kq4_026_river_meadow/caption_3_2933755623/generated.png rename to asset-work/kq4_026_river_meadow/caption_3_2933755623_generated.png diff --git a/asset-work/kq4_026_river_meadow/caption_3_2933755623_generated.png.import b/asset-work/kq4_026_river_meadow/caption_3_2933755623_generated.png.import new file mode 100644 index 0000000..1efd747 --- /dev/null +++ b/asset-work/kq4_026_river_meadow/caption_3_2933755623_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://df6yhs6yv0yoh" +path="res://.godot/imported/caption_3_2933755623_generated.png-7af488cd2a0d3bc5c62e8ae0ec927a52.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_026_river_meadow/caption_3_2933755623_generated.png" +dest_files=["res://.godot/imported/caption_3_2933755623_generated.png-7af488cd2a0d3bc5c62e8ae0ec927a52.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_027_forest_path/caption_1_471363737/generated.png b/asset-work/kq4_027_forest_path/caption_1_471363737_generated.png similarity index 100% rename from asset-work/kq4_027_forest_path/caption_1_471363737/generated.png rename to asset-work/kq4_027_forest_path/caption_1_471363737_generated.png diff --git a/asset-work/kq4_027_forest_path/caption_1_471363737_generated.png.import b/asset-work/kq4_027_forest_path/caption_1_471363737_generated.png.import new file mode 100644 index 0000000..385d2db --- /dev/null +++ b/asset-work/kq4_027_forest_path/caption_1_471363737_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cqdecgmqremg3" +path="res://.godot/imported/caption_1_471363737_generated.png-7b821969f708651f5ece5463f0410b7f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_027_forest_path/caption_1_471363737_generated.png" +dest_files=["res://.godot/imported/caption_1_471363737_generated.png-7b821969f708651f5ece5463f0410b7f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_027_forest_path/caption_1_711555636/generated.png b/asset-work/kq4_027_forest_path/caption_1_711555636_generated.png similarity index 100% rename from asset-work/kq4_027_forest_path/caption_1_711555636/generated.png rename to asset-work/kq4_027_forest_path/caption_1_711555636_generated.png diff --git a/asset-work/kq4_027_forest_path/caption_1_711555636_generated.png.import b/asset-work/kq4_027_forest_path/caption_1_711555636_generated.png.import new file mode 100644 index 0000000..7a796dd --- /dev/null +++ b/asset-work/kq4_027_forest_path/caption_1_711555636_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dvr6iqlx8ovtd" +path="res://.godot/imported/caption_1_711555636_generated.png-c1cce37212132ab17e8f122dc37f66e2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_027_forest_path/caption_1_711555636_generated.png" +dest_files=["res://.godot/imported/caption_1_711555636_generated.png-c1cce37212132ab17e8f122dc37f66e2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_027_forest_path/caption_2_1956608904/generated.png b/asset-work/kq4_027_forest_path/caption_2_1956608904_generated.png similarity index 100% rename from asset-work/kq4_027_forest_path/caption_2_1956608904/generated.png rename to asset-work/kq4_027_forest_path/caption_2_1956608904_generated.png diff --git a/asset-work/kq4_027_forest_path/caption_2_1956608904_generated.png.import b/asset-work/kq4_027_forest_path/caption_2_1956608904_generated.png.import new file mode 100644 index 0000000..960ef71 --- /dev/null +++ b/asset-work/kq4_027_forest_path/caption_2_1956608904_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bttasce8of7fc" +path="res://.godot/imported/caption_2_1956608904_generated.png-030e81d9fdcb5f14dff87db3b72aed18.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_027_forest_path/caption_2_1956608904_generated.png" +dest_files=["res://.godot/imported/caption_2_1956608904_generated.png-030e81d9fdcb5f14dff87db3b72aed18.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_027_forest_path/caption_2_3267169456/generated.png b/asset-work/kq4_027_forest_path/caption_2_3267169456_generated.png similarity index 100% rename from asset-work/kq4_027_forest_path/caption_2_3267169456/generated.png rename to asset-work/kq4_027_forest_path/caption_2_3267169456_generated.png diff --git a/asset-work/kq4_027_forest_path/caption_2_3267169456_generated.png.import b/asset-work/kq4_027_forest_path/caption_2_3267169456_generated.png.import new file mode 100644 index 0000000..d9ac18f --- /dev/null +++ b/asset-work/kq4_027_forest_path/caption_2_3267169456_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d4lylyywcl5fx" +path="res://.godot/imported/caption_2_3267169456_generated.png-906c7f4b452093d7f6187016f19f42cb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_027_forest_path/caption_2_3267169456_generated.png" +dest_files=["res://.godot/imported/caption_2_3267169456_generated.png-906c7f4b452093d7f6187016f19f42cb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_027_forest_path/caption_3_2449678979/generated.png b/asset-work/kq4_027_forest_path/caption_3_2449678979_generated.png similarity index 100% rename from asset-work/kq4_027_forest_path/caption_3_2449678979/generated.png rename to asset-work/kq4_027_forest_path/caption_3_2449678979_generated.png diff --git a/asset-work/kq4_027_forest_path/caption_3_2449678979_generated.png.import b/asset-work/kq4_027_forest_path/caption_3_2449678979_generated.png.import new file mode 100644 index 0000000..8650457 --- /dev/null +++ b/asset-work/kq4_027_forest_path/caption_3_2449678979_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://chytmfxjcwsui" +path="res://.godot/imported/caption_3_2449678979_generated.png-c6f7604d777aad5e2d5ccd583cd9e443.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_027_forest_path/caption_3_2449678979_generated.png" +dest_files=["res://.godot/imported/caption_3_2449678979_generated.png-c6f7604d777aad5e2d5ccd583cd9e443.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_027_forest_path/caption_3_847323789/generated.png b/asset-work/kq4_027_forest_path/caption_3_847323789_generated.png similarity index 100% rename from asset-work/kq4_027_forest_path/caption_3_847323789/generated.png rename to asset-work/kq4_027_forest_path/caption_3_847323789_generated.png diff --git a/asset-work/kq4_027_forest_path/caption_3_847323789_generated.png.import b/asset-work/kq4_027_forest_path/caption_3_847323789_generated.png.import new file mode 100644 index 0000000..9d818ba --- /dev/null +++ b/asset-work/kq4_027_forest_path/caption_3_847323789_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://t3f0i1cdg35j" +path="res://.godot/imported/caption_3_847323789_generated.png-6ced641e112569bbdae346d97b806ff8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_027_forest_path/caption_3_847323789_generated.png" +dest_files=["res://.godot/imported/caption_3_847323789_generated.png-6ced641e112569bbdae346d97b806ff8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_028_mine_entrance/caption_1_751152612/generated.png b/asset-work/kq4_028_mine_entrance/caption_1_751152612_generated.png similarity index 100% rename from asset-work/kq4_028_mine_entrance/caption_1_751152612/generated.png rename to asset-work/kq4_028_mine_entrance/caption_1_751152612_generated.png diff --git a/asset-work/kq4_028_mine_entrance/caption_1_751152612_generated.png.import b/asset-work/kq4_028_mine_entrance/caption_1_751152612_generated.png.import new file mode 100644 index 0000000..9e62b5e --- /dev/null +++ b/asset-work/kq4_028_mine_entrance/caption_1_751152612_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d2tjp8ad00gq7" +path="res://.godot/imported/caption_1_751152612_generated.png-6958a7d7c884c3e6a3f72da2aaed6b3c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_028_mine_entrance/caption_1_751152612_generated.png" +dest_files=["res://.godot/imported/caption_1_751152612_generated.png-6958a7d7c884c3e6a3f72da2aaed6b3c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_028_mine_entrance/caption_1_807248518/generated.png b/asset-work/kq4_028_mine_entrance/caption_1_807248518_generated.png similarity index 100% rename from asset-work/kq4_028_mine_entrance/caption_1_807248518/generated.png rename to asset-work/kq4_028_mine_entrance/caption_1_807248518_generated.png diff --git a/asset-work/kq4_028_mine_entrance/caption_1_807248518_generated.png.import b/asset-work/kq4_028_mine_entrance/caption_1_807248518_generated.png.import new file mode 100644 index 0000000..ce6d221 --- /dev/null +++ b/asset-work/kq4_028_mine_entrance/caption_1_807248518_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cdcrv4slgv5xo" +path="res://.godot/imported/caption_1_807248518_generated.png-7c0e40c56cf3bf728462209d756e2ec4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_028_mine_entrance/caption_1_807248518_generated.png" +dest_files=["res://.godot/imported/caption_1_807248518_generated.png-7c0e40c56cf3bf728462209d756e2ec4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_028_mine_entrance/caption_2_2044923509/generated.png b/asset-work/kq4_028_mine_entrance/caption_2_2044923509_generated.png similarity index 100% rename from asset-work/kq4_028_mine_entrance/caption_2_2044923509/generated.png rename to asset-work/kq4_028_mine_entrance/caption_2_2044923509_generated.png diff --git a/asset-work/kq4_028_mine_entrance/caption_2_2044923509_generated.png.import b/asset-work/kq4_028_mine_entrance/caption_2_2044923509_generated.png.import new file mode 100644 index 0000000..49b2634 --- /dev/null +++ b/asset-work/kq4_028_mine_entrance/caption_2_2044923509_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dqvawd7pqpgtt" +path="res://.godot/imported/caption_2_2044923509_generated.png-b7fecd90c7a89ea8670d13d4fb369543.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_028_mine_entrance/caption_2_2044923509_generated.png" +dest_files=["res://.godot/imported/caption_2_2044923509_generated.png-b7fecd90c7a89ea8670d13d4fb369543.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_028_mine_entrance/caption_2_3240789552/generated.png b/asset-work/kq4_028_mine_entrance/caption_2_3240789552_generated.png similarity index 100% rename from asset-work/kq4_028_mine_entrance/caption_2_3240789552/generated.png rename to asset-work/kq4_028_mine_entrance/caption_2_3240789552_generated.png diff --git a/asset-work/kq4_028_mine_entrance/caption_2_3240789552_generated.png.import b/asset-work/kq4_028_mine_entrance/caption_2_3240789552_generated.png.import new file mode 100644 index 0000000..063b1c3 --- /dev/null +++ b/asset-work/kq4_028_mine_entrance/caption_2_3240789552_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dcb6dgn1m4oiv" +path="res://.godot/imported/caption_2_3240789552_generated.png-22cfb95c8ea89ee2acc758904b147121.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_028_mine_entrance/caption_2_3240789552_generated.png" +dest_files=["res://.godot/imported/caption_2_3240789552_generated.png-22cfb95c8ea89ee2acc758904b147121.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_028_mine_entrance/caption_3_3190299998/generated.png b/asset-work/kq4_028_mine_entrance/caption_3_3190299998_generated.png similarity index 100% rename from asset-work/kq4_028_mine_entrance/caption_3_3190299998/generated.png rename to asset-work/kq4_028_mine_entrance/caption_3_3190299998_generated.png diff --git a/asset-work/kq4_028_mine_entrance/caption_3_3190299998_generated.png.import b/asset-work/kq4_028_mine_entrance/caption_3_3190299998_generated.png.import new file mode 100644 index 0000000..95c31dc --- /dev/null +++ b/asset-work/kq4_028_mine_entrance/caption_3_3190299998_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://btkmuh84ih5pt" +path="res://.godot/imported/caption_3_3190299998_generated.png-1f8f45302cacfb273b95139b54a0eb9e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_028_mine_entrance/caption_3_3190299998_generated.png" +dest_files=["res://.godot/imported/caption_3_3190299998_generated.png-1f8f45302cacfb273b95139b54a0eb9e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_028_mine_entrance/caption_3_520525579/generated.png b/asset-work/kq4_028_mine_entrance/caption_3_520525579_generated.png similarity index 100% rename from asset-work/kq4_028_mine_entrance/caption_3_520525579/generated.png rename to asset-work/kq4_028_mine_entrance/caption_3_520525579_generated.png diff --git a/asset-work/kq4_028_mine_entrance/caption_3_520525579_generated.png.import b/asset-work/kq4_028_mine_entrance/caption_3_520525579_generated.png.import new file mode 100644 index 0000000..49ab99a --- /dev/null +++ b/asset-work/kq4_028_mine_entrance/caption_3_520525579_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bkjgnd0ur65lt" +path="res://.godot/imported/caption_3_520525579_generated.png-e9b2e08c26f76b05340dfc08ebda4351.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_028_mine_entrance/caption_3_520525579_generated.png" +dest_files=["res://.godot/imported/caption_3_520525579_generated.png-e9b2e08c26f76b05340dfc08ebda4351.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_029_dense_forest/caption_1_2644558852/generated.png b/asset-work/kq4_029_dense_forest/caption_1_2644558852_generated.png similarity index 100% rename from asset-work/kq4_029_dense_forest/caption_1_2644558852/generated.png rename to asset-work/kq4_029_dense_forest/caption_1_2644558852_generated.png diff --git a/asset-work/kq4_029_dense_forest/caption_1_2644558852_generated.png.import b/asset-work/kq4_029_dense_forest/caption_1_2644558852_generated.png.import new file mode 100644 index 0000000..2055c26 --- /dev/null +++ b/asset-work/kq4_029_dense_forest/caption_1_2644558852_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://icm3hdasxtkd" +path="res://.godot/imported/caption_1_2644558852_generated.png-7fbff6338ff20b2ab4a2920eb811842b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_029_dense_forest/caption_1_2644558852_generated.png" +dest_files=["res://.godot/imported/caption_1_2644558852_generated.png-7fbff6338ff20b2ab4a2920eb811842b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_029_dense_forest/caption_1_4246844482/generated.png b/asset-work/kq4_029_dense_forest/caption_1_4246844482_generated.png similarity index 100% rename from asset-work/kq4_029_dense_forest/caption_1_4246844482/generated.png rename to asset-work/kq4_029_dense_forest/caption_1_4246844482_generated.png diff --git a/asset-work/kq4_029_dense_forest/caption_1_4246844482_generated.png.import b/asset-work/kq4_029_dense_forest/caption_1_4246844482_generated.png.import new file mode 100644 index 0000000..3de17c9 --- /dev/null +++ b/asset-work/kq4_029_dense_forest/caption_1_4246844482_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ck4oavos5hjvh" +path="res://.godot/imported/caption_1_4246844482_generated.png-95c1b71dada0680ce1ee1f74baac35fd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_029_dense_forest/caption_1_4246844482_generated.png" +dest_files=["res://.godot/imported/caption_1_4246844482_generated.png-95c1b71dada0680ce1ee1f74baac35fd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_029_dense_forest/caption_2_3151632481/generated.png b/asset-work/kq4_029_dense_forest/caption_2_3151632481_generated.png similarity index 100% rename from asset-work/kq4_029_dense_forest/caption_2_3151632481/generated.png rename to asset-work/kq4_029_dense_forest/caption_2_3151632481_generated.png diff --git a/asset-work/kq4_029_dense_forest/caption_2_3151632481_generated.png.import b/asset-work/kq4_029_dense_forest/caption_2_3151632481_generated.png.import new file mode 100644 index 0000000..31cd68b --- /dev/null +++ b/asset-work/kq4_029_dense_forest/caption_2_3151632481_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dxdr8cx836gmu" +path="res://.godot/imported/caption_2_3151632481_generated.png-b41e9c6e6159a7337308630cd3f06da1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_029_dense_forest/caption_2_3151632481_generated.png" +dest_files=["res://.godot/imported/caption_2_3151632481_generated.png-b41e9c6e6159a7337308630cd3f06da1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_029_dense_forest/caption_2_687909387/generated.png b/asset-work/kq4_029_dense_forest/caption_2_687909387_generated.png similarity index 100% rename from asset-work/kq4_029_dense_forest/caption_2_687909387/generated.png rename to asset-work/kq4_029_dense_forest/caption_2_687909387_generated.png diff --git a/asset-work/kq4_029_dense_forest/caption_2_687909387_generated.png.import b/asset-work/kq4_029_dense_forest/caption_2_687909387_generated.png.import new file mode 100644 index 0000000..9e0300b --- /dev/null +++ b/asset-work/kq4_029_dense_forest/caption_2_687909387_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://3k07cjbt0k8p" +path="res://.godot/imported/caption_2_687909387_generated.png-6524699822ad67f4aedbb5bb839e5ad4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_029_dense_forest/caption_2_687909387_generated.png" +dest_files=["res://.godot/imported/caption_2_687909387_generated.png-6524699822ad67f4aedbb5bb839e5ad4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_029_dense_forest/caption_3_1620170238/generated.png b/asset-work/kq4_029_dense_forest/caption_3_1620170238_generated.png similarity index 100% rename from asset-work/kq4_029_dense_forest/caption_3_1620170238/generated.png rename to asset-work/kq4_029_dense_forest/caption_3_1620170238_generated.png diff --git a/asset-work/kq4_029_dense_forest/caption_3_1620170238_generated.png.import b/asset-work/kq4_029_dense_forest/caption_3_1620170238_generated.png.import new file mode 100644 index 0000000..3c803f2 --- /dev/null +++ b/asset-work/kq4_029_dense_forest/caption_3_1620170238_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dhrgbga8p2g2q" +path="res://.godot/imported/caption_3_1620170238_generated.png-4552dd9ae770b236d38160761bc4efd0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_029_dense_forest/caption_3_1620170238_generated.png" +dest_files=["res://.godot/imported/caption_3_1620170238_generated.png-4552dd9ae770b236d38160761bc4efd0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_029_dense_forest/caption_3_996142334/generated.png b/asset-work/kq4_029_dense_forest/caption_3_996142334_generated.png similarity index 100% rename from asset-work/kq4_029_dense_forest/caption_3_996142334/generated.png rename to asset-work/kq4_029_dense_forest/caption_3_996142334_generated.png diff --git a/asset-work/kq4_029_dense_forest/caption_3_996142334_generated.png.import b/asset-work/kq4_029_dense_forest/caption_3_996142334_generated.png.import new file mode 100644 index 0000000..3c87d65 --- /dev/null +++ b/asset-work/kq4_029_dense_forest/caption_3_996142334_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://chkq10oir3pck" +path="res://.godot/imported/caption_3_996142334_generated.png-c361329bb2cda58b0faf4d973febca1b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_029_dense_forest/caption_3_996142334_generated.png" +dest_files=["res://.godot/imported/caption_3_996142334_generated.png-c361329bb2cda58b0faf4d973febca1b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_030_mountain_pass/caption_1_1583504611/caption_1.txt b/asset-work/kq4_030_mountain_pass/caption_1_1583504611/caption_1.txt deleted file mode 100644 index 2beebdb..0000000 --- a/asset-work/kq4_030_mountain_pass/caption_1_1583504611/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A dramatic mountain pass vista from elevated perspective, where a treacherous path clings to the steep face of rising terrain. In the foreground, jagged granite boulders cluster along the trail's edge, their rough surfaces catching sharp morning light and casting deep violet shadows. A weathered wooden barrier stretches across the middle distance, its aged planks bleached silver-gray by sun and wind, providing the only protection against the perilous drop beyond. The narrow path winds upward toward the right, disappearing into the mountainous heights. To the left and background, dense evergreen forest crowns the lower slopes, deep green conifers standing sentinel against a twilight sky transitioning from cobalt to indigo. The rocky cliff face dominates the right side of the composition, displaying stratified geological layers in umber and slate tones. Atmospheric perspective softens the distant peaks into hazy blue silhouettes. The palette balances warm ochres and siennas of the trail against cool granite grays and forest greens, with dramatic chiaroscuro lighting emphasizing the dangerous beauty of this mountain passage. diff --git a/asset-work/kq4_030_mountain_pass/caption_1_1583504611/caption_1_3733128109/caption_1.txt b/asset-work/kq4_030_mountain_pass/caption_1_1583504611/caption_1_3733128109/caption_1.txt deleted file mode 100644 index 2beebdb..0000000 --- a/asset-work/kq4_030_mountain_pass/caption_1_1583504611/caption_1_3733128109/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A dramatic mountain pass vista from elevated perspective, where a treacherous path clings to the steep face of rising terrain. In the foreground, jagged granite boulders cluster along the trail's edge, their rough surfaces catching sharp morning light and casting deep violet shadows. A weathered wooden barrier stretches across the middle distance, its aged planks bleached silver-gray by sun and wind, providing the only protection against the perilous drop beyond. The narrow path winds upward toward the right, disappearing into the mountainous heights. To the left and background, dense evergreen forest crowns the lower slopes, deep green conifers standing sentinel against a twilight sky transitioning from cobalt to indigo. The rocky cliff face dominates the right side of the composition, displaying stratified geological layers in umber and slate tones. Atmospheric perspective softens the distant peaks into hazy blue silhouettes. The palette balances warm ochres and siennas of the trail against cool granite grays and forest greens, with dramatic chiaroscuro lighting emphasizing the dangerous beauty of this mountain passage. diff --git a/asset-work/kq4_030_mountain_pass/caption_1_1583504611/caption_1_3733128109/generated.png b/asset-work/kq4_030_mountain_pass/caption_1_1583504611/caption_1_3733128109/generated.png deleted file mode 100644 index fe2d9d5..0000000 --- a/asset-work/kq4_030_mountain_pass/caption_1_1583504611/caption_1_3733128109/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c4f9a58e743b8dfa0f203e17998990bc24254f11eeadee396b6bfb4b9a91aeb6 -size 4811395 diff --git a/asset-work/kq4_030_mountain_pass/caption_1_1583504611/generated.png b/asset-work/kq4_030_mountain_pass/caption_1_1583504611_generated.png similarity index 100% rename from asset-work/kq4_030_mountain_pass/caption_1_1583504611/generated.png rename to asset-work/kq4_030_mountain_pass/caption_1_1583504611_generated.png diff --git a/asset-work/kq4_030_mountain_pass/caption_1_1583504611_generated.png.import b/asset-work/kq4_030_mountain_pass/caption_1_1583504611_generated.png.import new file mode 100644 index 0000000..4faa6d3 --- /dev/null +++ b/asset-work/kq4_030_mountain_pass/caption_1_1583504611_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://di1sfixqoe6hp" +path="res://.godot/imported/caption_1_1583504611_generated.png-15eda2c790a6ad6271b0a373dee094a5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_030_mountain_pass/caption_1_1583504611_generated.png" +dest_files=["res://.godot/imported/caption_1_1583504611_generated.png-15eda2c790a6ad6271b0a373dee094a5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_030_mountain_pass/caption_2_3460087483/caption_2.txt b/asset-work/kq4_030_mountain_pass/caption_2_3460087483/caption_2.txt deleted file mode 100644 index 6aa7b75..0000000 --- a/asset-work/kq4_030_mountain_pass/caption_2_3460087483/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A perilous mountain trail rendered from high vantage point, revealing the precarious nature of this alpine passage. The immediate foreground features scattered field stones and rocky outcrops painted with thick impasto texture, suggesting the harsh, unwelcoming terrain. A slender dirt path cuts diagonally across the composition, climbing steeply toward forested heights. Mid-ground reveals a rustic wooden fence or railing, its rough-hewn posts and horizontal beams offering scant protection from the dizzying precipice. Towering evergreen trees frame the background, their dark green masses creating a stark contrast against the pale rocky slopes. The right side of the scene is dominated by a sheer cliff face of weathered stone, displaying vertical striations and crevices that speak of ancient geological forces. Soft atmospheric haze veils the distant mountain ridges in misty blue-grays. Golden afternoon light rakes across the scene from the left, illuminating the path's dusty surface and creating long, dramatic shadows that emphasize the steep grade. The color harmony weaves together earthy trail tones, shadowed rock grays, and the deep viridian of the forest canopy against an azure sky. diff --git a/asset-work/kq4_030_mountain_pass/caption_2_3460087483/caption_2_795918500/caption_2.txt b/asset-work/kq4_030_mountain_pass/caption_2_3460087483/caption_2_795918500/caption_2.txt deleted file mode 100644 index 6aa7b75..0000000 --- a/asset-work/kq4_030_mountain_pass/caption_2_3460087483/caption_2_795918500/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A perilous mountain trail rendered from high vantage point, revealing the precarious nature of this alpine passage. The immediate foreground features scattered field stones and rocky outcrops painted with thick impasto texture, suggesting the harsh, unwelcoming terrain. A slender dirt path cuts diagonally across the composition, climbing steeply toward forested heights. Mid-ground reveals a rustic wooden fence or railing, its rough-hewn posts and horizontal beams offering scant protection from the dizzying precipice. Towering evergreen trees frame the background, their dark green masses creating a stark contrast against the pale rocky slopes. The right side of the scene is dominated by a sheer cliff face of weathered stone, displaying vertical striations and crevices that speak of ancient geological forces. Soft atmospheric haze veils the distant mountain ridges in misty blue-grays. Golden afternoon light rakes across the scene from the left, illuminating the path's dusty surface and creating long, dramatic shadows that emphasize the steep grade. The color harmony weaves together earthy trail tones, shadowed rock grays, and the deep viridian of the forest canopy against an azure sky. diff --git a/asset-work/kq4_030_mountain_pass/caption_2_3460087483/caption_2_795918500/generated.png b/asset-work/kq4_030_mountain_pass/caption_2_3460087483/caption_2_795918500/generated.png deleted file mode 100644 index 6e77846..0000000 --- a/asset-work/kq4_030_mountain_pass/caption_2_3460087483/caption_2_795918500/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7c53959b26dff7267f2ce1ab809a083fea93f965187c158b590d7299c298c0f8 -size 4748712 diff --git a/asset-work/kq4_030_mountain_pass/caption_2_3460087483/generated.png b/asset-work/kq4_030_mountain_pass/caption_2_3460087483_generated.png similarity index 100% rename from asset-work/kq4_030_mountain_pass/caption_2_3460087483/generated.png rename to asset-work/kq4_030_mountain_pass/caption_2_3460087483_generated.png diff --git a/asset-work/kq4_030_mountain_pass/caption_2_3460087483_generated.png.import b/asset-work/kq4_030_mountain_pass/caption_2_3460087483_generated.png.import new file mode 100644 index 0000000..d7e5bed --- /dev/null +++ b/asset-work/kq4_030_mountain_pass/caption_2_3460087483_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://yor8k5td152t" +path="res://.godot/imported/caption_2_3460087483_generated.png-bc67d1007d1eaa12c141ed26a828a3c3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_030_mountain_pass/caption_2_3460087483_generated.png" +dest_files=["res://.godot/imported/caption_2_3460087483_generated.png-bc67d1007d1eaa12c141ed26a828a3c3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_030_mountain_pass/caption_3_1747467029/caption_3.txt b/asset-work/kq4_030_mountain_pass/caption_3_1747467029/caption_3.txt deleted file mode 100644 index 4410246..0000000 --- a/asset-work/kq4_030_mountain_pass/caption_3_1747467029/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A sweeping view of a rugged mountain passage from bird's-eye perspective, where civilization's modest path challenges the wild grandeur of the peaks. Foreground terrain reveals rough, sandy soil dotted with angular boulders and fractured stone, painted in warm terra cotta and burnt sienna hues. A humble wooden fence traverses the middle ground, its weathered timbers creating a horizontal element that contrasts with the vertical thrust of the surrounding cliffs. The winding trail climbs steadily from lower left toward the forested summit, inviting yet forbidding in its steep ascent. Dense pine woodland carpets the upper slopes and background, deep forest greens melting into atmospheric blue distance. The massive rock formation on the right displays dramatic stratification, layers of gray and brown stone etched by wind and time. Subtle details emerge in the cliff face—shadowed crevices, mineral deposits, hardy alpine vegetation clinging to cracks. Evening light suffuses the scene with a golden-rose glow, casting the eastern cliffs in warm illumination while the western faces recede into cool purple shadows. The composition balances the intimate textures of the path with the monumental scale of the mountain environment, rendered in a palette of earthy ochres, sage greens, and slate grays under dramatic alpine lighting. diff --git a/asset-work/kq4_030_mountain_pass/caption_3_1747467029/caption_3_225523968/caption_3.txt b/asset-work/kq4_030_mountain_pass/caption_3_1747467029/caption_3_225523968/caption_3.txt deleted file mode 100644 index 4410246..0000000 --- a/asset-work/kq4_030_mountain_pass/caption_3_1747467029/caption_3_225523968/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A sweeping view of a rugged mountain passage from bird's-eye perspective, where civilization's modest path challenges the wild grandeur of the peaks. Foreground terrain reveals rough, sandy soil dotted with angular boulders and fractured stone, painted in warm terra cotta and burnt sienna hues. A humble wooden fence traverses the middle ground, its weathered timbers creating a horizontal element that contrasts with the vertical thrust of the surrounding cliffs. The winding trail climbs steadily from lower left toward the forested summit, inviting yet forbidding in its steep ascent. Dense pine woodland carpets the upper slopes and background, deep forest greens melting into atmospheric blue distance. The massive rock formation on the right displays dramatic stratification, layers of gray and brown stone etched by wind and time. Subtle details emerge in the cliff face—shadowed crevices, mineral deposits, hardy alpine vegetation clinging to cracks. Evening light suffuses the scene with a golden-rose glow, casting the eastern cliffs in warm illumination while the western faces recede into cool purple shadows. The composition balances the intimate textures of the path with the monumental scale of the mountain environment, rendered in a palette of earthy ochres, sage greens, and slate grays under dramatic alpine lighting. diff --git a/asset-work/kq4_030_mountain_pass/caption_3_1747467029/caption_3_225523968/generated.png b/asset-work/kq4_030_mountain_pass/caption_3_1747467029/caption_3_225523968/generated.png deleted file mode 100644 index a48ed40..0000000 --- a/asset-work/kq4_030_mountain_pass/caption_3_1747467029/caption_3_225523968/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:80c48299c2eeba4c269fc65c1f2b78e17ac01a22f4421890467d83ca8bee95ba -size 4845035 diff --git a/asset-work/kq4_030_mountain_pass/caption_3_1747467029/generated.png b/asset-work/kq4_030_mountain_pass/caption_3_1747467029_generated.png similarity index 100% rename from asset-work/kq4_030_mountain_pass/caption_3_1747467029/generated.png rename to asset-work/kq4_030_mountain_pass/caption_3_1747467029_generated.png diff --git a/asset-work/kq4_030_mountain_pass/caption_3_1747467029_generated.png.import b/asset-work/kq4_030_mountain_pass/caption_3_1747467029_generated.png.import new file mode 100644 index 0000000..972e0ca --- /dev/null +++ b/asset-work/kq4_030_mountain_pass/caption_3_1747467029_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c573wfrv4xuee" +path="res://.godot/imported/caption_3_1747467029_generated.png-053066fade908b6f7cc4bc1f72d04892.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_030_mountain_pass/caption_3_1747467029_generated.png" +dest_files=["res://.godot/imported/caption_3_1747467029_generated.png-053066fade908b6f7cc4bc1f72d04892.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_031_open_ocean/caption_1_1094671368/generated.png b/asset-work/kq4_031_open_ocean/caption_1_1094671368_generated.png similarity index 100% rename from asset-work/kq4_031_open_ocean/caption_1_1094671368/generated.png rename to asset-work/kq4_031_open_ocean/caption_1_1094671368_generated.png diff --git a/asset-work/kq4_031_open_ocean/caption_1_1094671368_generated.png.import b/asset-work/kq4_031_open_ocean/caption_1_1094671368_generated.png.import new file mode 100644 index 0000000..08ee222 --- /dev/null +++ b/asset-work/kq4_031_open_ocean/caption_1_1094671368_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://lxp46luimcyg" +path="res://.godot/imported/caption_1_1094671368_generated.png-507b522c22b9c8c1119ec11faab43c45.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_031_open_ocean/caption_1_1094671368_generated.png" +dest_files=["res://.godot/imported/caption_1_1094671368_generated.png-507b522c22b9c8c1119ec11faab43c45.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_031_open_ocean/caption_1_956631468/generated.png b/asset-work/kq4_031_open_ocean/caption_1_956631468_generated.png similarity index 100% rename from asset-work/kq4_031_open_ocean/caption_1_956631468/generated.png rename to asset-work/kq4_031_open_ocean/caption_1_956631468_generated.png diff --git a/asset-work/kq4_031_open_ocean/caption_1_956631468_generated.png.import b/asset-work/kq4_031_open_ocean/caption_1_956631468_generated.png.import new file mode 100644 index 0000000..46d5541 --- /dev/null +++ b/asset-work/kq4_031_open_ocean/caption_1_956631468_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cai30huqqsurd" +path="res://.godot/imported/caption_1_956631468_generated.png-26bce60c9d532cd3e0dc44a02aad13fa.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_031_open_ocean/caption_1_956631468_generated.png" +dest_files=["res://.godot/imported/caption_1_956631468_generated.png-26bce60c9d532cd3e0dc44a02aad13fa.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_031_open_ocean/caption_2_588908338/generated.png b/asset-work/kq4_031_open_ocean/caption_2_588908338_generated.png similarity index 100% rename from asset-work/kq4_031_open_ocean/caption_2_588908338/generated.png rename to asset-work/kq4_031_open_ocean/caption_2_588908338_generated.png diff --git a/asset-work/kq4_031_open_ocean/caption_2_588908338_generated.png.import b/asset-work/kq4_031_open_ocean/caption_2_588908338_generated.png.import new file mode 100644 index 0000000..e89c249 --- /dev/null +++ b/asset-work/kq4_031_open_ocean/caption_2_588908338_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c2k8r084dnt17" +path="res://.godot/imported/caption_2_588908338_generated.png-963919b9d7185125db5666df29f381be.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_031_open_ocean/caption_2_588908338_generated.png" +dest_files=["res://.godot/imported/caption_2_588908338_generated.png-963919b9d7185125db5666df29f381be.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_031_open_ocean/caption_2_827301880/generated.png b/asset-work/kq4_031_open_ocean/caption_2_827301880_generated.png similarity index 100% rename from asset-work/kq4_031_open_ocean/caption_2_827301880/generated.png rename to asset-work/kq4_031_open_ocean/caption_2_827301880_generated.png diff --git a/asset-work/kq4_031_open_ocean/caption_2_827301880_generated.png.import b/asset-work/kq4_031_open_ocean/caption_2_827301880_generated.png.import new file mode 100644 index 0000000..91814cc --- /dev/null +++ b/asset-work/kq4_031_open_ocean/caption_2_827301880_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b5memsefendg5" +path="res://.godot/imported/caption_2_827301880_generated.png-5101688335f79c4f79b4b674b98daaee.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_031_open_ocean/caption_2_827301880_generated.png" +dest_files=["res://.godot/imported/caption_2_827301880_generated.png-5101688335f79c4f79b4b674b98daaee.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_031_open_ocean/caption_3_1625087904/generated.png b/asset-work/kq4_031_open_ocean/caption_3_1625087904_generated.png similarity index 100% rename from asset-work/kq4_031_open_ocean/caption_3_1625087904/generated.png rename to asset-work/kq4_031_open_ocean/caption_3_1625087904_generated.png diff --git a/asset-work/kq4_031_open_ocean/caption_3_1625087904_generated.png.import b/asset-work/kq4_031_open_ocean/caption_3_1625087904_generated.png.import new file mode 100644 index 0000000..cdf0d72 --- /dev/null +++ b/asset-work/kq4_031_open_ocean/caption_3_1625087904_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://78j0ilhp6of6" +path="res://.godot/imported/caption_3_1625087904_generated.png-e1ce4ccdfb6cd9aefad0af3a0a816275.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_031_open_ocean/caption_3_1625087904_generated.png" +dest_files=["res://.godot/imported/caption_3_1625087904_generated.png-e1ce4ccdfb6cd9aefad0af3a0a816275.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_031_open_ocean/caption_3_17989454/generated.png b/asset-work/kq4_031_open_ocean/caption_3_17989454_generated.png similarity index 100% rename from asset-work/kq4_031_open_ocean/caption_3_17989454/generated.png rename to asset-work/kq4_031_open_ocean/caption_3_17989454_generated.png diff --git a/asset-work/kq4_031_open_ocean/caption_3_17989454_generated.png.import b/asset-work/kq4_031_open_ocean/caption_3_17989454_generated.png.import new file mode 100644 index 0000000..1aaf48e --- /dev/null +++ b/asset-work/kq4_031_open_ocean/caption_3_17989454_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cutfuutdlxkce" +path="res://.godot/imported/caption_3_17989454_generated.png-e2e98060ad371a389f5fdbd4df2fd40c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_031_open_ocean/caption_3_17989454_generated.png" +dest_files=["res://.godot/imported/caption_3_17989454_generated.png-e2e98060ad371a389f5fdbd4df2fd40c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_032_ocean_near_island/caption_1_2871851710/generated.png b/asset-work/kq4_032_ocean_near_island/caption_1_2871851710_generated.png similarity index 100% rename from asset-work/kq4_032_ocean_near_island/caption_1_2871851710/generated.png rename to asset-work/kq4_032_ocean_near_island/caption_1_2871851710_generated.png diff --git a/asset-work/kq4_032_ocean_near_island/caption_1_2871851710_generated.png.import b/asset-work/kq4_032_ocean_near_island/caption_1_2871851710_generated.png.import new file mode 100644 index 0000000..cdb4161 --- /dev/null +++ b/asset-work/kq4_032_ocean_near_island/caption_1_2871851710_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://y0tnil74nt0k" +path="res://.godot/imported/caption_1_2871851710_generated.png-3309f13c8ae1e28a9696c68df0fd6750.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_032_ocean_near_island/caption_1_2871851710_generated.png" +dest_files=["res://.godot/imported/caption_1_2871851710_generated.png-3309f13c8ae1e28a9696c68df0fd6750.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_032_ocean_near_island/caption_1_2945943398/generated.png b/asset-work/kq4_032_ocean_near_island/caption_1_2945943398_generated.png similarity index 100% rename from asset-work/kq4_032_ocean_near_island/caption_1_2945943398/generated.png rename to asset-work/kq4_032_ocean_near_island/caption_1_2945943398_generated.png diff --git a/asset-work/kq4_032_ocean_near_island/caption_1_2945943398_generated.png.import b/asset-work/kq4_032_ocean_near_island/caption_1_2945943398_generated.png.import new file mode 100644 index 0000000..3091d2b --- /dev/null +++ b/asset-work/kq4_032_ocean_near_island/caption_1_2945943398_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cxnc0vosj68cv" +path="res://.godot/imported/caption_1_2945943398_generated.png-51c4fca8250d5a85cb79819600e3c99a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_032_ocean_near_island/caption_1_2945943398_generated.png" +dest_files=["res://.godot/imported/caption_1_2945943398_generated.png-51c4fca8250d5a85cb79819600e3c99a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_032_ocean_near_island/caption_2_2804893010/generated.png b/asset-work/kq4_032_ocean_near_island/caption_2_2804893010_generated.png similarity index 100% rename from asset-work/kq4_032_ocean_near_island/caption_2_2804893010/generated.png rename to asset-work/kq4_032_ocean_near_island/caption_2_2804893010_generated.png diff --git a/asset-work/kq4_032_ocean_near_island/caption_2_2804893010_generated.png.import b/asset-work/kq4_032_ocean_near_island/caption_2_2804893010_generated.png.import new file mode 100644 index 0000000..f07c436 --- /dev/null +++ b/asset-work/kq4_032_ocean_near_island/caption_2_2804893010_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cpo668uw2mngc" +path="res://.godot/imported/caption_2_2804893010_generated.png-ffea9836cc0fb1ee3f7661cad1dc1d3a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_032_ocean_near_island/caption_2_2804893010_generated.png" +dest_files=["res://.godot/imported/caption_2_2804893010_generated.png-ffea9836cc0fb1ee3f7661cad1dc1d3a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_032_ocean_near_island/caption_2_917893285/generated.png b/asset-work/kq4_032_ocean_near_island/caption_2_917893285_generated.png similarity index 100% rename from asset-work/kq4_032_ocean_near_island/caption_2_917893285/generated.png rename to asset-work/kq4_032_ocean_near_island/caption_2_917893285_generated.png diff --git a/asset-work/kq4_032_ocean_near_island/caption_2_917893285_generated.png.import b/asset-work/kq4_032_ocean_near_island/caption_2_917893285_generated.png.import new file mode 100644 index 0000000..c25029e --- /dev/null +++ b/asset-work/kq4_032_ocean_near_island/caption_2_917893285_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://beb6ahnb0swar" +path="res://.godot/imported/caption_2_917893285_generated.png-b7cefa3ccc4a5eb048b89cc59ebc826a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_032_ocean_near_island/caption_2_917893285_generated.png" +dest_files=["res://.godot/imported/caption_2_917893285_generated.png-b7cefa3ccc4a5eb048b89cc59ebc826a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_032_ocean_near_island/caption_3_2594249650/generated.png b/asset-work/kq4_032_ocean_near_island/caption_3_2594249650_generated.png similarity index 100% rename from asset-work/kq4_032_ocean_near_island/caption_3_2594249650/generated.png rename to asset-work/kq4_032_ocean_near_island/caption_3_2594249650_generated.png diff --git a/asset-work/kq4_032_ocean_near_island/caption_3_2594249650_generated.png.import b/asset-work/kq4_032_ocean_near_island/caption_3_2594249650_generated.png.import new file mode 100644 index 0000000..781d0df --- /dev/null +++ b/asset-work/kq4_032_ocean_near_island/caption_3_2594249650_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://iyj3bddhfn0m" +path="res://.godot/imported/caption_3_2594249650_generated.png-122b525783e822ed41f453c2697e80a1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_032_ocean_near_island/caption_3_2594249650_generated.png" +dest_files=["res://.godot/imported/caption_3_2594249650_generated.png-122b525783e822ed41f453c2697e80a1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_032_ocean_near_island/caption_3_3034120439/generated.png b/asset-work/kq4_032_ocean_near_island/caption_3_3034120439_generated.png similarity index 100% rename from asset-work/kq4_032_ocean_near_island/caption_3_3034120439/generated.png rename to asset-work/kq4_032_ocean_near_island/caption_3_3034120439_generated.png diff --git a/asset-work/kq4_032_ocean_near_island/caption_3_3034120439_generated.png.import b/asset-work/kq4_032_ocean_near_island/caption_3_3034120439_generated.png.import new file mode 100644 index 0000000..7d4cdf4 --- /dev/null +++ b/asset-work/kq4_032_ocean_near_island/caption_3_3034120439_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bigr4ngydi33c" +path="res://.godot/imported/caption_3_3034120439_generated.png-8b4401ec8dafdc9011f471995b863244.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_032_ocean_near_island/caption_3_3034120439_generated.png" +dest_files=["res://.godot/imported/caption_3_3034120439_generated.png-8b4401ec8dafdc9011f471995b863244.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_033_enchanted_island_beach/caption_1_423833682/caption_1.txt b/asset-work/kq4_033_enchanted_island_beach/caption_1_423833682/caption_1.txt deleted file mode 100644 index fbc319f..0000000 --- a/asset-work/kq4_033_enchanted_island_beach/caption_1_423833682/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A sweeping high-angle view of a pristine tropical cove where powdery golden sands meet crystalline turquoise waters in a gentle crescent arc. In the foreground, wind-sculpted dunes display rippled textures with hardy coastal grasses and flowering scrub catching warm afternoon light. The beach curves gracefully toward the middle distance, where translucent shallows reveal sandy bottom through layers of aquamarine and cerulean, gradually deepening to rich sapphire and indigo offshore. To the right, a majestic palm tree leans gracefully over the shoreline, its fronds rendered in feathery strokes of emerald and jade, casting dappled shadows across the sand. Behind the coastal vegetation, the lush grounds of an ivory palace stretch toward the horizon, formal gardens displaying geometric patterns of verdant hedges and brilliant blooms. The background reveals endless ocean meeting a vast cerulean sky brushed with gossamer cirrus clouds. Golden sunlight bathes the scene from the upper left, creating velvet shadows and luminous highlights that emphasize the tranquil, enchanted atmosphere of this island paradise. diff --git a/asset-work/kq4_033_enchanted_island_beach/caption_1_423833682/generated.png b/asset-work/kq4_033_enchanted_island_beach/caption_1_423833682_generated.png similarity index 100% rename from asset-work/kq4_033_enchanted_island_beach/caption_1_423833682/generated.png rename to asset-work/kq4_033_enchanted_island_beach/caption_1_423833682_generated.png diff --git a/asset-work/kq4_033_enchanted_island_beach/caption_1_423833682_generated.png.import b/asset-work/kq4_033_enchanted_island_beach/caption_1_423833682_generated.png.import new file mode 100644 index 0000000..33c3f06 --- /dev/null +++ b/asset-work/kq4_033_enchanted_island_beach/caption_1_423833682_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://3boekiq6opmm" +path="res://.godot/imported/caption_1_423833682_generated.png-59438576c4a4c5be742cc24ae910be71.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_033_enchanted_island_beach/caption_1_423833682_generated.png" +dest_files=["res://.godot/imported/caption_1_423833682_generated.png-59438576c4a4c5be742cc24ae910be71.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_033_enchanted_island_beach/caption_2_3130997667/caption_2.txt b/asset-work/kq4_033_enchanted_island_beach/caption_2_3130997667/caption_2.txt deleted file mode 100644 index 81e78da..0000000 --- a/asset-work/kq4_033_enchanted_island_beach/caption_2_3130997667/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. An elevated perspective overlooking a secluded enchanted island beach bathed in ethereal, diffused light. The immediate foreground reveals textured coastal scrub and dense tropical undergrowth in rich shades of forest green and sage, interspersed with clusters of vibrant exotic flowers. A solitary palm tree dominates the right composition, its trunk twisting organically as it leans toward the sea, fronds spreading like verdant fans against the azure sky. The middle ground opens to reveal pristine ivory sands curving along the shoreline, their surfaces marked by gentle wave patterns and tidal ripples. Crystalline waters lap softly at the beach, displaying a mesmerizing gradient from pale aquamarine near shore through turquoise to deep marine blue at the horizon line. In the background, behind a screen of luxuriant garden vegetation, the pale walls of an ivory palace rise gracefully, its architecture suggesting ancient elegance and magical mystery. Soft clouds drift across an endless blue expanse, while dappled sunlight filters through the palm fronds, creating intricate shadow patterns on the warm sand below. The palette harmonizes warm ochres and siennas with cool oceanic blues and lush tropical greens. diff --git a/asset-work/kq4_033_enchanted_island_beach/caption_2_3130997667/generated.png b/asset-work/kq4_033_enchanted_island_beach/caption_2_3130997667_generated.png similarity index 100% rename from asset-work/kq4_033_enchanted_island_beach/caption_2_3130997667/generated.png rename to asset-work/kq4_033_enchanted_island_beach/caption_2_3130997667_generated.png diff --git a/asset-work/kq4_033_enchanted_island_beach/caption_2_3130997667_generated.png.import b/asset-work/kq4_033_enchanted_island_beach/caption_2_3130997667_generated.png.import new file mode 100644 index 0000000..1e51585 --- /dev/null +++ b/asset-work/kq4_033_enchanted_island_beach/caption_2_3130997667_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dv1qtj4fhkvql" +path="res://.godot/imported/caption_2_3130997667_generated.png-6b61b4328e610addf4d49766d86d1dd5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_033_enchanted_island_beach/caption_2_3130997667_generated.png" +dest_files=["res://.godot/imported/caption_2_3130997667_generated.png-6b61b4328e610addf4d49766d86d1dd5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_033_enchanted_island_beach/caption_3_3225827885/caption_3.txt b/asset-work/kq4_033_enchanted_island_beach/caption_3_3225827885/caption_3.txt deleted file mode 100644 index 268c371..0000000 --- a/asset-work/kq4_033_enchanted_island_beach/caption_3_3225827885/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A breathtaking bird's-eye vista capturing the magic of an enchanted island shoreline where land and sea merge in harmonious beauty. The foreground presents windswept coastal dunes adorned with resilient tropical vegetation, their leaves rendered in thick impasto strokes of emerald and malachite, interwoven with trailing vines and delicate wildflowers in coral and gold tones. The beach sweeps in an elegant curve from right to left, golden sands transitioning smoothly into gentle shallows painted with translucent layers of turquoise and aquamarine that reveal the sandy bottom beneath. The water deepens gradually to ultramarine and cobalt, stretching toward a distant horizon where sea meets sky in atmospheric haze. To the right, a stately palm tree with gracefully arching trunk and lush canopy provides vertical interest, its silhouette mirrored in wet sand. Behind the immediate shoreline, formal palace gardens display manicured hedges and ornamental plantings surrounding an ivory palace that gleams softly in the background. The sky above is a vast dome of cerulean brushed with delicate cumulus clouds catching the warm amber light of late afternoon. Sparkling highlights dance on the water's surface while long shadows stretch across the sand, creating dramatic depth and emphasizing the otherworldly enchantment of this magical coastal sanctuary. diff --git a/asset-work/kq4_033_enchanted_island_beach/caption_3_3225827885/generated.png b/asset-work/kq4_033_enchanted_island_beach/caption_3_3225827885_generated.png similarity index 100% rename from asset-work/kq4_033_enchanted_island_beach/caption_3_3225827885/generated.png rename to asset-work/kq4_033_enchanted_island_beach/caption_3_3225827885_generated.png diff --git a/asset-work/kq4_033_enchanted_island_beach/caption_3_3225827885_generated.png.import b/asset-work/kq4_033_enchanted_island_beach/caption_3_3225827885_generated.png.import new file mode 100644 index 0000000..797f98a --- /dev/null +++ b/asset-work/kq4_033_enchanted_island_beach/caption_3_3225827885_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c8ggmkbku33f8" +path="res://.godot/imported/caption_3_3225827885_generated.png-faecd9898c499a714b7a4b587caf9d71.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_033_enchanted_island_beach/caption_3_3225827885_generated.png" +dest_files=["res://.godot/imported/caption_3_3225827885_generated.png-faecd9898c499a714b7a4b587caf9d71.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_034_island_beach/caption_1_4084374994/generated.png b/asset-work/kq4_034_island_beach/caption_1_4084374994_generated.png similarity index 100% rename from asset-work/kq4_034_island_beach/caption_1_4084374994/generated.png rename to asset-work/kq4_034_island_beach/caption_1_4084374994_generated.png diff --git a/asset-work/kq4_034_island_beach/caption_1_4084374994_generated.png.import b/asset-work/kq4_034_island_beach/caption_1_4084374994_generated.png.import new file mode 100644 index 0000000..37474ec --- /dev/null +++ b/asset-work/kq4_034_island_beach/caption_1_4084374994_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c7lxtep6e4aoj" +path="res://.godot/imported/caption_1_4084374994_generated.png-ffd680046ff4aefe8b30f12c9c652711.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_034_island_beach/caption_1_4084374994_generated.png" +dest_files=["res://.godot/imported/caption_1_4084374994_generated.png-ffd680046ff4aefe8b30f12c9c652711.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_034_island_beach/caption_1_527597298/generated.png b/asset-work/kq4_034_island_beach/caption_1_527597298_generated.png similarity index 100% rename from asset-work/kq4_034_island_beach/caption_1_527597298/generated.png rename to asset-work/kq4_034_island_beach/caption_1_527597298_generated.png diff --git a/asset-work/kq4_034_island_beach/caption_1_527597298_generated.png.import b/asset-work/kq4_034_island_beach/caption_1_527597298_generated.png.import new file mode 100644 index 0000000..a0a34aa --- /dev/null +++ b/asset-work/kq4_034_island_beach/caption_1_527597298_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b2ojxxcvchurd" +path="res://.godot/imported/caption_1_527597298_generated.png-3b9451bf70ed9140f2eeaabe77a48f7e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_034_island_beach/caption_1_527597298_generated.png" +dest_files=["res://.godot/imported/caption_1_527597298_generated.png-3b9451bf70ed9140f2eeaabe77a48f7e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_034_island_beach/caption_2_240663360/generated.png b/asset-work/kq4_034_island_beach/caption_2_240663360_generated.png similarity index 100% rename from asset-work/kq4_034_island_beach/caption_2_240663360/generated.png rename to asset-work/kq4_034_island_beach/caption_2_240663360_generated.png diff --git a/asset-work/kq4_034_island_beach/caption_2_240663360_generated.png.import b/asset-work/kq4_034_island_beach/caption_2_240663360_generated.png.import new file mode 100644 index 0000000..7ad5f76 --- /dev/null +++ b/asset-work/kq4_034_island_beach/caption_2_240663360_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cx0m0iwlc2et5" +path="res://.godot/imported/caption_2_240663360_generated.png-40ba3c289e9b8a2f70784ae98c63f321.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_034_island_beach/caption_2_240663360_generated.png" +dest_files=["res://.godot/imported/caption_2_240663360_generated.png-40ba3c289e9b8a2f70784ae98c63f321.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_034_island_beach/caption_2_3049084886/generated.png b/asset-work/kq4_034_island_beach/caption_2_3049084886_generated.png similarity index 100% rename from asset-work/kq4_034_island_beach/caption_2_3049084886/generated.png rename to asset-work/kq4_034_island_beach/caption_2_3049084886_generated.png diff --git a/asset-work/kq4_034_island_beach/caption_2_3049084886_generated.png.import b/asset-work/kq4_034_island_beach/caption_2_3049084886_generated.png.import new file mode 100644 index 0000000..1ba8b66 --- /dev/null +++ b/asset-work/kq4_034_island_beach/caption_2_3049084886_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bcv3uifo7loxg" +path="res://.godot/imported/caption_2_3049084886_generated.png-43af788b2ef2c20bd8f99d1587937c07.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_034_island_beach/caption_2_3049084886_generated.png" +dest_files=["res://.godot/imported/caption_2_3049084886_generated.png-43af788b2ef2c20bd8f99d1587937c07.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_034_island_beach/caption_3_3923460606/generated.png b/asset-work/kq4_034_island_beach/caption_3_3923460606_generated.png similarity index 100% rename from asset-work/kq4_034_island_beach/caption_3_3923460606/generated.png rename to asset-work/kq4_034_island_beach/caption_3_3923460606_generated.png diff --git a/asset-work/kq4_034_island_beach/caption_3_3923460606_generated.png.import b/asset-work/kq4_034_island_beach/caption_3_3923460606_generated.png.import new file mode 100644 index 0000000..83a54be --- /dev/null +++ b/asset-work/kq4_034_island_beach/caption_3_3923460606_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://du4rqchcqxk8s" +path="res://.godot/imported/caption_3_3923460606_generated.png-b5543e0330b6bfbdd1bd974340037701.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_034_island_beach/caption_3_3923460606_generated.png" +dest_files=["res://.godot/imported/caption_3_3923460606_generated.png-b5543e0330b6bfbdd1bd974340037701.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_034_island_beach/caption_3_4286180710/generated.png b/asset-work/kq4_034_island_beach/caption_3_4286180710_generated.png similarity index 100% rename from asset-work/kq4_034_island_beach/caption_3_4286180710/generated.png rename to asset-work/kq4_034_island_beach/caption_3_4286180710_generated.png diff --git a/asset-work/kq4_034_island_beach/caption_3_4286180710_generated.png.import b/asset-work/kq4_034_island_beach/caption_3_4286180710_generated.png.import new file mode 100644 index 0000000..34cdfcf --- /dev/null +++ b/asset-work/kq4_034_island_beach/caption_3_4286180710_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bouocowhfpy0a" +path="res://.godot/imported/caption_3_4286180710_generated.png-c0be9e6990cbea9ba88de6b2bacf0b3d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_034_island_beach/caption_3_4286180710_generated.png" +dest_files=["res://.godot/imported/caption_3_4286180710_generated.png-c0be9e6990cbea9ba88de6b2bacf0b3d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_035_island_beach/caption_1_1785534793/caption_1.txt b/asset-work/kq4_035_island_beach/caption_1_1785534793/caption_1.txt deleted file mode 100644 index 5dfe8f7..0000000 --- a/asset-work/kq4_035_island_beach/caption_1_1785534793/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A sweeping high-angle vista captures a secluded tropical beach where ivory sands meet crystalline waters in gentle embrace. The foreground reveals textured coastal vegetation—arching palm fronds and wind-swept shrubs rooted in sandy soil, their surfaces catching warm golden light. A graceful shoreline curves through the middle distance, where aquamarine shallows transition to deeper sapphire blues offshore. The wet sand reflects pale sky in mirror-like patches, while gentle breakers create delicate lace patterns along the water's edge. To the left, lush tropical greenery cascades toward the beach in layered foliage of emerald and jade. The composition draws the eye along the curving beach toward the distant horizon, where sea and sky merge in soft atmospheric haze. Warm ochre and cream tones of the sand contrast beautifully with cool cerulean and turquoise waters. Diffused afternoon light bathes the scene, casting subtle shadows beneath the vegetation and highlighting the rippled textures of wind-sculpted dunes. diff --git a/asset-work/kq4_035_island_beach/caption_1_1785534793/caption_1_590651103/caption_1.txt b/asset-work/kq4_035_island_beach/caption_1_1785534793/caption_1_590651103/caption_1.txt deleted file mode 100644 index 5dfe8f7..0000000 --- a/asset-work/kq4_035_island_beach/caption_1_1785534793/caption_1_590651103/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A sweeping high-angle vista captures a secluded tropical beach where ivory sands meet crystalline waters in gentle embrace. The foreground reveals textured coastal vegetation—arching palm fronds and wind-swept shrubs rooted in sandy soil, their surfaces catching warm golden light. A graceful shoreline curves through the middle distance, where aquamarine shallows transition to deeper sapphire blues offshore. The wet sand reflects pale sky in mirror-like patches, while gentle breakers create delicate lace patterns along the water's edge. To the left, lush tropical greenery cascades toward the beach in layered foliage of emerald and jade. The composition draws the eye along the curving beach toward the distant horizon, where sea and sky merge in soft atmospheric haze. Warm ochre and cream tones of the sand contrast beautifully with cool cerulean and turquoise waters. Diffused afternoon light bathes the scene, casting subtle shadows beneath the vegetation and highlighting the rippled textures of wind-sculpted dunes. diff --git a/asset-work/kq4_035_island_beach/caption_1_1785534793/caption_1_590651103/generated.png b/asset-work/kq4_035_island_beach/caption_1_1785534793/caption_1_590651103/generated.png deleted file mode 100644 index 2d13602..0000000 --- a/asset-work/kq4_035_island_beach/caption_1_1785534793/caption_1_590651103/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b3aabedb2b85a1c32a15be3c41b2d3a8290625be96d194e63c4f18482d89d47d -size 4661667 diff --git a/asset-work/kq4_035_island_beach/caption_1_1785534793/generated.png b/asset-work/kq4_035_island_beach/caption_1_1785534793_generated.png similarity index 100% rename from asset-work/kq4_035_island_beach/caption_1_1785534793/generated.png rename to asset-work/kq4_035_island_beach/caption_1_1785534793_generated.png diff --git a/asset-work/kq4_035_island_beach/caption_1_1785534793_generated.png.import b/asset-work/kq4_035_island_beach/caption_1_1785534793_generated.png.import new file mode 100644 index 0000000..f7ee9d0 --- /dev/null +++ b/asset-work/kq4_035_island_beach/caption_1_1785534793_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bdagxmwayvkl6" +path="res://.godot/imported/caption_1_1785534793_generated.png-e17b6411774a60ac4251bc7d5ea2cb8e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_035_island_beach/caption_1_1785534793_generated.png" +dest_files=["res://.godot/imported/caption_1_1785534793_generated.png-e17b6411774a60ac4251bc7d5ea2cb8e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_035_island_beach/caption_2_3829469484/caption_2.txt b/asset-work/kq4_035_island_beach/caption_2_3829469484/caption_2.txt deleted file mode 100644 index 14e4fc1..0000000 --- a/asset-work/kq4_035_island_beach/caption_2_3829469484/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. From an elevated perspective, a pristine island beach unfolds like a painter's dream of tropical paradise. The immediate foreground displays weathered driftwood and hardy coastal plants clinging to sandy dunes, their textures rendered with thick impasto strokes. A sweeping crescent of pearl-white beach dominates the middle ground, where translucent turquoise waters lap gently at the shore in rhythmic patterns. The beach curves gracefully, revealing wet sand gleaming like burnished silver where recent waves have retreated. Deep ultramarine waters stretch toward the horizon, their surfaces catching subtle highlights from diffused sunlight. Scattered tropical vegetation punctuates the left foreground—dense clusters of deep green foliage providing rich contrast against the pale sand. Atmospheric perspective softens distant elements, where sky meets sea in a delicate gradient of powder blues and soft violets. The palette harmonizes warm golden sands, lush emerald greens, and cool aquatic blues under romantic, painterly light that suggests late afternoon tranquility. diff --git a/asset-work/kq4_035_island_beach/caption_2_3829469484/caption_2_3726102247/caption_2.txt b/asset-work/kq4_035_island_beach/caption_2_3829469484/caption_2_3726102247/caption_2.txt deleted file mode 100644 index 14e4fc1..0000000 --- a/asset-work/kq4_035_island_beach/caption_2_3829469484/caption_2_3726102247/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. From an elevated perspective, a pristine island beach unfolds like a painter's dream of tropical paradise. The immediate foreground displays weathered driftwood and hardy coastal plants clinging to sandy dunes, their textures rendered with thick impasto strokes. A sweeping crescent of pearl-white beach dominates the middle ground, where translucent turquoise waters lap gently at the shore in rhythmic patterns. The beach curves gracefully, revealing wet sand gleaming like burnished silver where recent waves have retreated. Deep ultramarine waters stretch toward the horizon, their surfaces catching subtle highlights from diffused sunlight. Scattered tropical vegetation punctuates the left foreground—dense clusters of deep green foliage providing rich contrast against the pale sand. Atmospheric perspective softens distant elements, where sky meets sea in a delicate gradient of powder blues and soft violets. The palette harmonizes warm golden sands, lush emerald greens, and cool aquatic blues under romantic, painterly light that suggests late afternoon tranquility. diff --git a/asset-work/kq4_035_island_beach/caption_2_3829469484/caption_2_3726102247/generated.png b/asset-work/kq4_035_island_beach/caption_2_3829469484/caption_2_3726102247/generated.png deleted file mode 100644 index 785b3fa..0000000 --- a/asset-work/kq4_035_island_beach/caption_2_3829469484/caption_2_3726102247/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:74bb13a4af754e3d50ca598e1108598746e1d7feace94dcbc60a2fdbcbe217b7 -size 4400123 diff --git a/asset-work/kq4_035_island_beach/caption_2_3829469484/generated.png b/asset-work/kq4_035_island_beach/caption_2_3829469484_generated.png similarity index 100% rename from asset-work/kq4_035_island_beach/caption_2_3829469484/generated.png rename to asset-work/kq4_035_island_beach/caption_2_3829469484_generated.png diff --git a/asset-work/kq4_035_island_beach/caption_2_3829469484_generated.png.import b/asset-work/kq4_035_island_beach/caption_2_3829469484_generated.png.import new file mode 100644 index 0000000..a25d10d --- /dev/null +++ b/asset-work/kq4_035_island_beach/caption_2_3829469484_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bjgp5ae0riu6s" +path="res://.godot/imported/caption_2_3829469484_generated.png-790e98ddaae4a4a42efb5c260db81274.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_035_island_beach/caption_2_3829469484_generated.png" +dest_files=["res://.godot/imported/caption_2_3829469484_generated.png-790e98ddaae4a4a42efb5c260db81274.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_035_island_beach/caption_3_2827644475/caption_3.txt b/asset-work/kq4_035_island_beach/caption_3_2827644475/caption_3.txt deleted file mode 100644 index 211230f..0000000 --- a/asset-work/kq4_035_island_beach/caption_3_2827644475/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A panoramic bird's-eye view reveals an idyllic island sanctuary where nature's elements compose a masterpiece of coastal beauty. Foreground dunes display rippled sand patterns shaped by persistent sea breezes, interspersed with hardy beach grasses and sculptural tropical plants that cast velvet shadows across the terrain. The beach arcs through the composition like a brushstroke of warm ivory, meeting crystalline waters that shimmer in gradients of turquoise near shore transitioning to profound indigo offshore. Gentle waves create parallel white lines as they roll toward land, their foam rendered with delicate touches of titanium white. Lush vegetation clusters in the left foreground—palms and dense shrubs painted with rich viridian and sap green tones that speak of tropical abundance. The spatial depth draws the viewer's gaze along the curving shoreline toward distant horizons softened by atmospheric haze. Color relationships balance warm earth tones against cool aquatic hues, all unified under golden-hour light that imparts a dreamlike, romantic quality to this secluded coastal paradise. diff --git a/asset-work/kq4_035_island_beach/caption_3_2827644475/caption_3_3742230619/caption_3.txt b/asset-work/kq4_035_island_beach/caption_3_2827644475/caption_3_3742230619/caption_3.txt deleted file mode 100644 index 211230f..0000000 --- a/asset-work/kq4_035_island_beach/caption_3_2827644475/caption_3_3742230619/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A panoramic bird's-eye view reveals an idyllic island sanctuary where nature's elements compose a masterpiece of coastal beauty. Foreground dunes display rippled sand patterns shaped by persistent sea breezes, interspersed with hardy beach grasses and sculptural tropical plants that cast velvet shadows across the terrain. The beach arcs through the composition like a brushstroke of warm ivory, meeting crystalline waters that shimmer in gradients of turquoise near shore transitioning to profound indigo offshore. Gentle waves create parallel white lines as they roll toward land, their foam rendered with delicate touches of titanium white. Lush vegetation clusters in the left foreground—palms and dense shrubs painted with rich viridian and sap green tones that speak of tropical abundance. The spatial depth draws the viewer's gaze along the curving shoreline toward distant horizons softened by atmospheric haze. Color relationships balance warm earth tones against cool aquatic hues, all unified under golden-hour light that imparts a dreamlike, romantic quality to this secluded coastal paradise. diff --git a/asset-work/kq4_035_island_beach/caption_3_2827644475/caption_3_3742230619/generated.png b/asset-work/kq4_035_island_beach/caption_3_2827644475/caption_3_3742230619/generated.png deleted file mode 100644 index 133dafd..0000000 --- a/asset-work/kq4_035_island_beach/caption_3_2827644475/caption_3_3742230619/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a3948863894d65786066d24b412db9de2b4e32fabc88d7e718d107874123d2e0 -size 4711963 diff --git a/asset-work/kq4_035_island_beach/caption_3_2827644475/generated.png b/asset-work/kq4_035_island_beach/caption_3_2827644475_generated.png similarity index 100% rename from asset-work/kq4_035_island_beach/caption_3_2827644475/generated.png rename to asset-work/kq4_035_island_beach/caption_3_2827644475_generated.png diff --git a/asset-work/kq4_035_island_beach/caption_3_2827644475_generated.png.import b/asset-work/kq4_035_island_beach/caption_3_2827644475_generated.png.import new file mode 100644 index 0000000..858465e --- /dev/null +++ b/asset-work/kq4_035_island_beach/caption_3_2827644475_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://drllmx6fj1i1s" +path="res://.godot/imported/caption_3_2827644475_generated.png-e4674aa3d079be1584e6f4fc8645a4e6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_035_island_beach/caption_3_2827644475_generated.png" +dest_files=["res://.godot/imported/caption_3_2827644475_generated.png-e4674aa3d079be1584e6f4fc8645a4e6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_036_island_garden_pond/caption_1_1325367041/caption_1.txt b/asset-work/kq4_036_island_garden_pond/caption_1_1325367041/caption_1.txt deleted file mode 100644 index 10826f2..0000000 --- a/asset-work/kq4_036_island_garden_pond/caption_1_1325367041/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A high-angle view of an enchanted island garden sanctuary, where nature and elegance harmoniously intertwine. In the foreground, smooth flagstone pathways wind through emerald lawns, their surfaces weathered to soft gray tones and framed by meticulously trimmed hedges that form verdant borders. At the center, a crystalline pond mirrors the sky above, its circular form enclosed by an ornate stone bridge adorned with carved swan figures that emerge like frozen guardians from each arch. The bridge's weathered limestone curves gracefully over the reflective water, casting delicate shadows on the tranquil surface below. A garden bench rests invitingly beside the pond, offering respite amid the cultivated beauty. To the right, a grand ivory palace rises with classical dignity, its pale walls contrasting against the deep greens of tropical foliage. Beyond the garden, glimpses of sandy beach and azure ocean peek through gaps in the lush perimeter plantings. Background trees display the dense canopies of island species, their leaves rendered in layered strokes of jade and malachite. The palette balances warm ivory architecture with cool cerulean water and rich forest greens, bathed in soft afternoon light that filters through the canopy. diff --git a/asset-work/kq4_036_island_garden_pond/caption_1_1325367041/generated.png b/asset-work/kq4_036_island_garden_pond/caption_1_1325367041_generated.png similarity index 100% rename from asset-work/kq4_036_island_garden_pond/caption_1_1325367041/generated.png rename to asset-work/kq4_036_island_garden_pond/caption_1_1325367041_generated.png diff --git a/asset-work/kq4_036_island_garden_pond/caption_1_1325367041_generated.png.import b/asset-work/kq4_036_island_garden_pond/caption_1_1325367041_generated.png.import new file mode 100644 index 0000000..73b5558 --- /dev/null +++ b/asset-work/kq4_036_island_garden_pond/caption_1_1325367041_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://tusa8r4wl54b" +path="res://.godot/imported/caption_1_1325367041_generated.png-1bf71984b8b00feef1e01a01b9e6decd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_036_island_garden_pond/caption_1_1325367041_generated.png" +dest_files=["res://.godot/imported/caption_1_1325367041_generated.png-1bf71984b8b00feef1e01a01b9e6decd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_036_island_garden_pond/caption_2_1399966580/caption_2.txt b/asset-work/kq4_036_island_garden_pond/caption_2_1399966580/caption_2.txt deleted file mode 100644 index abbf51e..0000000 --- a/asset-work/kq4_036_island_garden_pond/caption_2_1399966580/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. An elevated perspective reveals a magical garden paradise floating upon an island, where cultivated beauty meets wild coastal charm. The immediate foreground features sweeping emerald lawns dotted with vibrant flower beds bursting with blossoms in coral and gold. A circular pond of sapphire clarity anchors the composition, its surface rippling gently in the tropical breeze. Spanning this aquatic jewel stands an elegant arched bridge of pale stone, its swan sculptures carved with baroque flourishes that catch the diffused light filtering through overhead palms. Flagstone paths radiate outward in geometric precision, their pale surfaces creating rhythmic patterns against the surrounding verdure. To the upper right, the magnificent ivory palace looms with regal presence, its pristine walls and architectural details suggesting a fairy-tale kingdom. The background reveals glimpses of an endless blue ocean beyond manicured hedgerows, while exotic trees with dense canopies frame the scene. Lush tropical vegetation in varying shades of emerald and sage creates depth through overlapping layers. The color harmony blends warm architectural tones, cool water reflections, and the deep greens of carefully maintained gardens under soft, golden-hour illumination. diff --git a/asset-work/kq4_036_island_garden_pond/caption_2_1399966580/generated.png b/asset-work/kq4_036_island_garden_pond/caption_2_1399966580_generated.png similarity index 100% rename from asset-work/kq4_036_island_garden_pond/caption_2_1399966580/generated.png rename to asset-work/kq4_036_island_garden_pond/caption_2_1399966580_generated.png diff --git a/asset-work/kq4_036_island_garden_pond/caption_2_1399966580_generated.png.import b/asset-work/kq4_036_island_garden_pond/caption_2_1399966580_generated.png.import new file mode 100644 index 0000000..1b8bdcb --- /dev/null +++ b/asset-work/kq4_036_island_garden_pond/caption_2_1399966580_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bjiul4ixq7aaf" +path="res://.godot/imported/caption_2_1399966580_generated.png-7d424c4bdd72bd060869547a548bc555.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_036_island_garden_pond/caption_2_1399966580_generated.png" +dest_files=["res://.godot/imported/caption_2_1399966580_generated.png-7d424c4bdd72bd060869547a548bc555.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_036_island_garden_pond/caption_3_4185888652/caption_3.txt b/asset-work/kq4_036_island_garden_pond/caption_3_4185888652/caption_3.txt deleted file mode 100644 index 91b1506..0000000 --- a/asset-work/kq4_036_island_garden_pond/caption_3_4185888652/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A sweeping bird's-eye vista captures an idyllic island garden sanctuary, where marble-white architecture meets crystalline waters amid tropical splendor. Foreground details reveal textured flagstone walkways meandering through velvet lawns, their surfaces broken by occasional clusters of flowering shrubs in warm autumnal hues. The central focus falls upon a perfectly circular pond of mirror-like stillness, ringed by an exquisite stone bridge whose twin arches frame the water like architectural parentheses. The bridge's pale limestone surface bears the weathered patina of age, while sculpted swan figures perch gracefully at its termini. Beyond this aquatic centerpiece, a wooden garden bench invites contemplation, positioned to overlook the serene waters. To the right, the imposing ivory palace rises with classical grandeur, its facade illuminated by gentle sunlight that models its architectural details in subtle relief. Background elements include distant glimpses of sandy beach meeting turquoise ocean, while towering trees with thick canopies create a natural perimeter wall. The scene unfolds under soft, diffused lighting that enhances the sense of enchanted tranquility, with a palette harmonizing warm stone tones, cool reflective blues, and the varied greens of meticulously maintained island vegetation. diff --git a/asset-work/kq4_036_island_garden_pond/caption_3_4185888652/generated.png b/asset-work/kq4_036_island_garden_pond/caption_3_4185888652_generated.png similarity index 100% rename from asset-work/kq4_036_island_garden_pond/caption_3_4185888652/generated.png rename to asset-work/kq4_036_island_garden_pond/caption_3_4185888652_generated.png diff --git a/asset-work/kq4_036_island_garden_pond/caption_3_4185888652_generated.png.import b/asset-work/kq4_036_island_garden_pond/caption_3_4185888652_generated.png.import new file mode 100644 index 0000000..9b82e3a --- /dev/null +++ b/asset-work/kq4_036_island_garden_pond/caption_3_4185888652_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d0xnkakkab5g0" +path="res://.godot/imported/caption_3_4185888652_generated.png-4f8d055e4f5c431135abbef66eac1afa.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_036_island_garden_pond/caption_3_4185888652_generated.png" +dest_files=["res://.godot/imported/caption_3_4185888652_generated.png-4f8d055e4f5c431135abbef66eac1afa.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_037_fairy_island/caption_1_3081553964/caption_1.txt b/asset-work/kq4_037_fairy_island/caption_1_3081553964/caption_1.txt deleted file mode 100644 index cfd767b..0000000 --- a/asset-work/kq4_037_fairy_island/caption_1_3081553964/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. An enchanting aerial view of a magical garden sanctuary dominated by an elegant fairy pavilion at its heart. The foreground reveals lush emerald lawns meticulously maintained, their velvet texture catching dappled sunlight filtering through ancient canopy trees. Twin sentinel trees frame the composition with gnarled, silver-barked trunks that twist skyward, their spreading branches casting intricate lace shadows across the manicured grounds. A meandering stone pathway of irregular flagstones leads the eye toward the central structure, its surface weathered smooth by centuries of gentle use. Bordering the path, carefully tended flower beds burst with cultivated blooms in jewel tones of sapphire, ruby, and amber, their petals rendered with delicate brushwork. The middle ground reveals the pavilion itself, an architectural jewel with a conical roof in rose and lavender hues that tapers to a delicate point, supported by slender columns. Behind, a high garden wall of pale limestone blocks stretches across the horizon, its surface softened by trailing vines and moss. The background dissolves into atmospheric haze where more foliage suggests hidden depths beyond the formal garden. Soft golden light bathes the scene from a high angle, creating subtle shadows that emphasize the three-dimensional layering of the enchanted landscape. diff --git a/asset-work/kq4_037_fairy_island/caption_1_3081553964/caption_1_4110258750/caption_1.txt b/asset-work/kq4_037_fairy_island/caption_1_3081553964/caption_1_4110258750/caption_1.txt deleted file mode 100644 index cfd767b..0000000 --- a/asset-work/kq4_037_fairy_island/caption_1_3081553964/caption_1_4110258750/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. An enchanting aerial view of a magical garden sanctuary dominated by an elegant fairy pavilion at its heart. The foreground reveals lush emerald lawns meticulously maintained, their velvet texture catching dappled sunlight filtering through ancient canopy trees. Twin sentinel trees frame the composition with gnarled, silver-barked trunks that twist skyward, their spreading branches casting intricate lace shadows across the manicured grounds. A meandering stone pathway of irregular flagstones leads the eye toward the central structure, its surface weathered smooth by centuries of gentle use. Bordering the path, carefully tended flower beds burst with cultivated blooms in jewel tones of sapphire, ruby, and amber, their petals rendered with delicate brushwork. The middle ground reveals the pavilion itself, an architectural jewel with a conical roof in rose and lavender hues that tapers to a delicate point, supported by slender columns. Behind, a high garden wall of pale limestone blocks stretches across the horizon, its surface softened by trailing vines and moss. The background dissolves into atmospheric haze where more foliage suggests hidden depths beyond the formal garden. Soft golden light bathes the scene from a high angle, creating subtle shadows that emphasize the three-dimensional layering of the enchanted landscape. diff --git a/asset-work/kq4_037_fairy_island/caption_1_3081553964/caption_1_4110258750/generated.png b/asset-work/kq4_037_fairy_island/caption_1_3081553964/caption_1_4110258750/generated.png deleted file mode 100644 index 4cac9e0..0000000 --- a/asset-work/kq4_037_fairy_island/caption_1_3081553964/caption_1_4110258750/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1604ff7d7fcec66c804546de26f13b5e7cdcf405c89b1cf4eef1ee77520ee51b -size 4637450 diff --git a/asset-work/kq4_037_fairy_island/caption_1_3081553964/generated.png b/asset-work/kq4_037_fairy_island/caption_1_3081553964_generated.png similarity index 100% rename from asset-work/kq4_037_fairy_island/caption_1_3081553964/generated.png rename to asset-work/kq4_037_fairy_island/caption_1_3081553964_generated.png diff --git a/asset-work/kq4_037_fairy_island/caption_1_3081553964_generated.png.import b/asset-work/kq4_037_fairy_island/caption_1_3081553964_generated.png.import new file mode 100644 index 0000000..3bbd38e --- /dev/null +++ b/asset-work/kq4_037_fairy_island/caption_1_3081553964_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cfqhm1ukbca22" +path="res://.godot/imported/caption_1_3081553964_generated.png-9e71fe29fa3fd1590a0afc6518cb4bec.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_037_fairy_island/caption_1_3081553964_generated.png" +dest_files=["res://.godot/imported/caption_1_3081553964_generated.png-9e71fe29fa3fd1590a0afc6518cb4bec.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_037_fairy_island/caption_2_390584574/caption_2.txt b/asset-work/kq4_037_fairy_island/caption_2_390584574/caption_2.txt deleted file mode 100644 index 385f62f..0000000 --- a/asset-work/kq4_037_fairy_island/caption_2_390584574/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A bird's-eye perspective of an otherworldly garden retreat where nature and delicate architecture exist in perfect harmony. In the immediate foreground, velvety grass carpets roll gently, their surface showing subtle variations in tone where sunlight penetrates the overhead canopy. Two majestic trees anchor the composition on either side, their bark rendered in textured strokes of umber and gray, roots partially visible where they emerge from the earth like ancient serpents. Between them stretches a formal garden bisected by a straight path of fitted stones, their irregular edges softened by tufts of moss and small wildflowers growing in the crevices. The middle ground centers on a whimsical pavilion with a conical roof painted in soft mauve and blush tones, its silhouette both elegant and playful against the sky. Neat hedgerows and cultivated borders of blooming perennials frame the pathway, creating geometric patterns within the organic landscape. Behind the structure, a substantial wall of pale stone blocks forms the garden's boundary, its surface showing the gentle patina of age. The background fades into soft atmospheric perspective where hints of additional greenery suggest the garden continues beyond sight. Warm afternoon light suffuses the scene, casting gentle shadows that model the terrain and architecture with painterly subtlety. diff --git a/asset-work/kq4_037_fairy_island/caption_2_390584574/caption_2_3041929721/caption_2.txt b/asset-work/kq4_037_fairy_island/caption_2_390584574/caption_2_3041929721/caption_2.txt deleted file mode 100644 index 385f62f..0000000 --- a/asset-work/kq4_037_fairy_island/caption_2_390584574/caption_2_3041929721/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A bird's-eye perspective of an otherworldly garden retreat where nature and delicate architecture exist in perfect harmony. In the immediate foreground, velvety grass carpets roll gently, their surface showing subtle variations in tone where sunlight penetrates the overhead canopy. Two majestic trees anchor the composition on either side, their bark rendered in textured strokes of umber and gray, roots partially visible where they emerge from the earth like ancient serpents. Between them stretches a formal garden bisected by a straight path of fitted stones, their irregular edges softened by tufts of moss and small wildflowers growing in the crevices. The middle ground centers on a whimsical pavilion with a conical roof painted in soft mauve and blush tones, its silhouette both elegant and playful against the sky. Neat hedgerows and cultivated borders of blooming perennials frame the pathway, creating geometric patterns within the organic landscape. Behind the structure, a substantial wall of pale stone blocks forms the garden's boundary, its surface showing the gentle patina of age. The background fades into soft atmospheric perspective where hints of additional greenery suggest the garden continues beyond sight. Warm afternoon light suffuses the scene, casting gentle shadows that model the terrain and architecture with painterly subtlety. diff --git a/asset-work/kq4_037_fairy_island/caption_2_390584574/caption_2_3041929721/generated.png b/asset-work/kq4_037_fairy_island/caption_2_390584574/caption_2_3041929721/generated.png deleted file mode 100644 index 794e52c..0000000 --- a/asset-work/kq4_037_fairy_island/caption_2_390584574/caption_2_3041929721/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c6e7863a633702797c0f266311ae8770825cbaa17130462fad2de63e03536f20 -size 4892597 diff --git a/asset-work/kq4_037_fairy_island/caption_2_390584574/generated.png b/asset-work/kq4_037_fairy_island/caption_2_390584574_generated.png similarity index 100% rename from asset-work/kq4_037_fairy_island/caption_2_390584574/generated.png rename to asset-work/kq4_037_fairy_island/caption_2_390584574_generated.png diff --git a/asset-work/kq4_037_fairy_island/caption_2_390584574_generated.png.import b/asset-work/kq4_037_fairy_island/caption_2_390584574_generated.png.import new file mode 100644 index 0000000..81b7fc5 --- /dev/null +++ b/asset-work/kq4_037_fairy_island/caption_2_390584574_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dglfsa2fwn0et" +path="res://.godot/imported/caption_2_390584574_generated.png-f19636d391d79f8265ecb897d01f3544.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_037_fairy_island/caption_2_390584574_generated.png" +dest_files=["res://.godot/imported/caption_2_390584574_generated.png-f19636d391d79f8265ecb897d01f3544.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_037_fairy_island/caption_3_975978202/caption_3.txt b/asset-work/kq4_037_fairy_island/caption_3_975978202/caption_3.txt deleted file mode 100644 index 735c096..0000000 --- a/asset-work/kq4_037_fairy_island/caption_3_975978202/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. An elevated view capturing a serene fairy garden where cultivated beauty meets woodland mystery. The foreground presents rolling lawns of deep viridian, their surfaces marked by subtle undulations and patches of clover and tiny wildflowers. Two substantial trees with spreading canopies flank the scene, their twisted trunks rendered in layered strokes of bark texture, casting dramatic shadows across the emerald grass. A central avenue of fitted stone slabs creates a formal approach, bordered by meticulously arranged flower beds bursting with cultivated blooms in complementary hues of crimson, gold, and violet. The stones themselves show weathering and age, with moss and small plants colonizing the gaps between them. The middle ground reveals an enchanting pavilion with a conical roof in shades of orchid and amethyst, its architectural details suggesting elven craftsmanship rather than human construction. Behind this focal point rises a tall boundary wall of pale stone, its regular courses contrasting with the organic forms of the garden while providing a backdrop that emphasizes the pavilion's delicate silhouette. In the background, atmospheric haze softens the transition to distant foliage, creating depth through diminishing contrast and cooler color temperature. The scene is bathed in gentle, diffused light suggesting either early morning or late afternoon, with shadows that stretch languidly across the tranquil landscape. diff --git a/asset-work/kq4_037_fairy_island/caption_3_975978202/caption_3_3183973644/caption_3.txt b/asset-work/kq4_037_fairy_island/caption_3_975978202/caption_3_3183973644/caption_3.txt deleted file mode 100644 index 735c096..0000000 --- a/asset-work/kq4_037_fairy_island/caption_3_975978202/caption_3_3183973644/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. An elevated view capturing a serene fairy garden where cultivated beauty meets woodland mystery. The foreground presents rolling lawns of deep viridian, their surfaces marked by subtle undulations and patches of clover and tiny wildflowers. Two substantial trees with spreading canopies flank the scene, their twisted trunks rendered in layered strokes of bark texture, casting dramatic shadows across the emerald grass. A central avenue of fitted stone slabs creates a formal approach, bordered by meticulously arranged flower beds bursting with cultivated blooms in complementary hues of crimson, gold, and violet. The stones themselves show weathering and age, with moss and small plants colonizing the gaps between them. The middle ground reveals an enchanting pavilion with a conical roof in shades of orchid and amethyst, its architectural details suggesting elven craftsmanship rather than human construction. Behind this focal point rises a tall boundary wall of pale stone, its regular courses contrasting with the organic forms of the garden while providing a backdrop that emphasizes the pavilion's delicate silhouette. In the background, atmospheric haze softens the transition to distant foliage, creating depth through diminishing contrast and cooler color temperature. The scene is bathed in gentle, diffused light suggesting either early morning or late afternoon, with shadows that stretch languidly across the tranquil landscape. diff --git a/asset-work/kq4_037_fairy_island/caption_3_975978202/caption_3_3183973644/generated.png b/asset-work/kq4_037_fairy_island/caption_3_975978202/caption_3_3183973644/generated.png deleted file mode 100644 index 9a61eaf..0000000 --- a/asset-work/kq4_037_fairy_island/caption_3_975978202/caption_3_3183973644/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0c53a83e12865e2569a34bd6c51032050faca7826b0529c64239c9996336a57b -size 4882030 diff --git a/asset-work/kq4_037_fairy_island/caption_3_975978202/generated.png b/asset-work/kq4_037_fairy_island/caption_3_975978202_generated.png similarity index 100% rename from asset-work/kq4_037_fairy_island/caption_3_975978202/generated.png rename to asset-work/kq4_037_fairy_island/caption_3_975978202_generated.png diff --git a/asset-work/kq4_037_fairy_island/caption_3_975978202_generated.png.import b/asset-work/kq4_037_fairy_island/caption_3_975978202_generated.png.import new file mode 100644 index 0000000..de50fc2 --- /dev/null +++ b/asset-work/kq4_037_fairy_island/caption_3_975978202_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cb152wm7wi7g1" +path="res://.godot/imported/caption_3_975978202_generated.png-0851c6ecb67cb7280fcc49a3d2f1caf3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_037_fairy_island/caption_3_975978202_generated.png" +dest_files=["res://.godot/imported/caption_3_975978202_generated.png-0851c6ecb67cb7280fcc49a3d2f1caf3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_038_island_garden/caption_1_4178091806/caption_1.txt b/asset-work/kq4_038_island_garden/caption_1_4178091806/caption_1.txt deleted file mode 100644 index d635e2a..0000000 --- a/asset-work/kq4_038_island_garden/caption_1_4178091806/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A serene island garden viewed from above, where manicured nature meets classical architecture in harmonious composition. In the foreground, symmetrical flower beds burst with crimson and azure blooms arranged in formal geometric patterns, their velvety petals catching gentle morning light. Stone pathways of weathered gray flagstones create elegant lines leading toward a central fountain, where a graceful dolphin sculpture spouts crystalline water in an eternal arc. The middle ground reveals lush emerald lawns bordered by precisely trimmed boxwood hedges, their deep green surfaces providing rich textural contrast. To the left, a stately white building with pale brickwork rises, its clean lines suggesting noble residence or sanctuary. Ancient trees with gnarled trunks and spreading canopies frame the garden perimeter, their leaves filtering sunlight into dappled patterns. In the background, the tranquil sea stretches to a hazy horizon where cerulean water meets soft pearl-gray sky. The color palette harmonizes verdant greens, warm stone grays, vibrant floral hues, and the cool blues of distant water under diffused daylight. diff --git a/asset-work/kq4_038_island_garden/caption_1_4178091806/generated.png b/asset-work/kq4_038_island_garden/caption_1_4178091806_generated.png similarity index 100% rename from asset-work/kq4_038_island_garden/caption_1_4178091806/generated.png rename to asset-work/kq4_038_island_garden/caption_1_4178091806_generated.png diff --git a/asset-work/kq4_038_island_garden/caption_1_4178091806_generated.png.import b/asset-work/kq4_038_island_garden/caption_1_4178091806_generated.png.import new file mode 100644 index 0000000..057b73c --- /dev/null +++ b/asset-work/kq4_038_island_garden/caption_1_4178091806_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://crwngbtj408nu" +path="res://.godot/imported/caption_1_4178091806_generated.png-ff9504dbb85f93a45f136bc3818d96aa.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_038_island_garden/caption_1_4178091806_generated.png" +dest_files=["res://.godot/imported/caption_1_4178091806_generated.png-ff9504dbb85f93a45f136bc3818d96aa.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_038_island_garden/caption_2_2157214432/caption_2.txt b/asset-work/kq4_038_island_garden/caption_2_2157214432/caption_2.txt deleted file mode 100644 index 6cbb981..0000000 --- a/asset-work/kq4_038_island_garden/caption_2_2157214432/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. An elevated view captures a secluded island sanctuary where formal horticulture embraces the sea. The immediate foreground displays ornate planting beds arranged in crescents and curves, densely packed with blossoms in sunset tones of coral, magenta, and burnished gold. A central walkway of pale limestone pavers draws the eye toward an ornate fountain featuring a leaping aquatic creature rendered in weathered bronze-green patina. Broad swathes of pristine lawn occupy the middle distance, their surfaces showing subtle undulations and the soft shadows of passing clouds. Mature specimens of sculpted trees stand as living architecture along the garden edges, their canopies creating pools of cool shade. The white masonry structure on the left presents smooth walls punctuated by deep shadows, suggesting cool interior spaces beyond. Beyond the cultivated grounds, the ocean glimmers in bands of turquoise and deep sapphire, while the sky above holds soft cumulus clouds against powder blue. Afternoon light strikes the scene at an angle, casting elongated shadows and enriching the saturated colors of this island paradise. diff --git a/asset-work/kq4_038_island_garden/caption_2_2157214432/generated.png b/asset-work/kq4_038_island_garden/caption_2_2157214432_generated.png similarity index 100% rename from asset-work/kq4_038_island_garden/caption_2_2157214432/generated.png rename to asset-work/kq4_038_island_garden/caption_2_2157214432_generated.png diff --git a/asset-work/kq4_038_island_garden/caption_2_2157214432_generated.png.import b/asset-work/kq4_038_island_garden/caption_2_2157214432_generated.png.import new file mode 100644 index 0000000..cc63bce --- /dev/null +++ b/asset-work/kq4_038_island_garden/caption_2_2157214432_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bidx4m1r7jbi7" +path="res://.godot/imported/caption_2_2157214432_generated.png-99611564cbf1bb9e117ec220339dae62.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_038_island_garden/caption_2_2157214432_generated.png" +dest_files=["res://.godot/imported/caption_2_2157214432_generated.png-99611564cbf1bb9e117ec220339dae62.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_038_island_garden/caption_3_1026681537/caption_3.txt b/asset-work/kq4_038_island_garden/caption_3_1026681537/caption_3.txt deleted file mode 100644 index 354e9b5..0000000 --- a/asset-work/kq4_038_island_garden/caption_3_1026681537/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A panoramic vista reveals an island estate garden suspended between cultivated elegance and wild maritime beauty. Foreground terraces showcase intricate parterres planted with jewel-toned flowers in swirling patterns, their colors intensified by rich garden soil. A dignified fountain anchors the composition's heart, its sculpted marine figure emerging from circular stonework while water catches light in silvery sheets. Gravel paths in soft buff tones wind through the middle ground, bordered by disciplined rows of flowering shrubs and ornamental grasses swaying in the sea breeze. Ancient deciduous trees with muscular trunks and dense foliage provide vertical emphasis and frame the view toward the horizon. The substantial white building occupies the left register, its classical proportions and pale surfaces reflecting abundant natural light. In the distance, the meeting of land and sea creates a shimmering boundary where wavelets sparkle against the shoreline. The atmospheric perspective softens distant elements into violet and azure hazes. The entire scene bathes in clear, bright daylight that reveals every textural nuance from rough bark to polished stone to delicate petals. diff --git a/asset-work/kq4_038_island_garden/caption_3_1026681537/generated.png b/asset-work/kq4_038_island_garden/caption_3_1026681537_generated.png similarity index 100% rename from asset-work/kq4_038_island_garden/caption_3_1026681537/generated.png rename to asset-work/kq4_038_island_garden/caption_3_1026681537_generated.png diff --git a/asset-work/kq4_038_island_garden/caption_3_1026681537_generated.png.import b/asset-work/kq4_038_island_garden/caption_3_1026681537_generated.png.import new file mode 100644 index 0000000..fd5559d --- /dev/null +++ b/asset-work/kq4_038_island_garden/caption_3_1026681537_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bpgthudjqx7eb" +path="res://.godot/imported/caption_3_1026681537_generated.png-06aba4ca9f63868d55bb338f4cb56531.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_038_island_garden/caption_3_1026681537_generated.png" +dest_files=["res://.godot/imported/caption_3_1026681537_generated.png-06aba4ca9f63868d55bb338f4cb56531.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_039_island_beach/caption_1_1884800086/caption_1.txt b/asset-work/kq4_039_island_beach/caption_1_1884800086/caption_1.txt deleted file mode 100644 index 19aba9b..0000000 --- a/asset-work/kq4_039_island_beach/caption_1_1884800086/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A pristine tropical island beach viewed from an elevated bird's-eye perspective, where ivory sands curve gracefully along crystalline turquoise waters. In the immediate foreground, textured golden sand stretches toward the shoreline, rippled by tidal patterns and dotted with small shells and coral fragments. The beach sweeps in a gentle arc toward the middle distance, where shallow waters shimmer in graduated layers of aqua and cerulean, gradually deepening to rich marine blue offshore. Towering palm trees with windswept fronds lean protectively over the beach from the right, their trunks gnarled and textured, casting dappled shadows across the sand. Behind them, verdant grassy slopes rise gently, covered in lush tropical vegetation rendered in strokes of emerald and jade. The background reveals an endless expanse of deep ocean, painted in velvety ultramarine and indigo tones that meet a brilliant azure sky. A single luminous white cloud drifts lazily overhead, catching warm sunlight. The color palette balances cool aquatic blues with warm golden sands and vibrant tropical greens under bright midday illumination. diff --git a/asset-work/kq4_039_island_beach/caption_1_1884800086/generated.png b/asset-work/kq4_039_island_beach/caption_1_1884800086_generated.png similarity index 100% rename from asset-work/kq4_039_island_beach/caption_1_1884800086/generated.png rename to asset-work/kq4_039_island_beach/caption_1_1884800086_generated.png diff --git a/asset-work/kq4_039_island_beach/caption_1_1884800086_generated.png.import b/asset-work/kq4_039_island_beach/caption_1_1884800086_generated.png.import new file mode 100644 index 0000000..4345bca --- /dev/null +++ b/asset-work/kq4_039_island_beach/caption_1_1884800086_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cji76yfwulk11" +path="res://.godot/imported/caption_1_1884800086_generated.png-d69deef967907dffd7b0db6d7277fc92.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_039_island_beach/caption_1_1884800086_generated.png" +dest_files=["res://.godot/imported/caption_1_1884800086_generated.png-d69deef967907dffd7b0db6d7277fc92.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_039_island_beach/caption_2_2333877833/caption_2.txt b/asset-work/kq4_039_island_beach/caption_2_2333877833/caption_2.txt deleted file mode 100644 index eaebc68..0000000 --- a/asset-work/kq4_039_island_beach/caption_2_2333877833/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A secluded island paradise captured from above, showcasing a crescent of pearl-white sand embracing translucent turquoise shallows. The foreground reveals wind-sculpted dunes with hardy coastal grasses and scattered palm fronds, their textures rendered in thick impasto strokes. The beach curves invitingly toward the center, where gentle waves create delicate white lace patterns along the waterline, the sea transitioning from pale aquamarine near shore to profound sapphire depths beyond. To the right, ancient palm trees with weathered trunks arch gracefully over the sand, their lush green canopies forming a natural shelter. A verdant hillside rises behind the trees, carpeted in dense tropical foliage that catches golden afternoon light. The distant horizon melts sea and sky together in atmospheric perspective, the ocean painted in layered strokes of cobalt and Prussian blue. Above, a vast cerulean dome holds a solitary cumulus cloud glowing with soft white highlights. The scene harmonizes warm ochres and siennas of the sand against cool aquatic tones, with vibrant greens providing natural contrast, all bathed in romantic tropical sunlight. diff --git a/asset-work/kq4_039_island_beach/caption_2_2333877833/generated.png b/asset-work/kq4_039_island_beach/caption_2_2333877833_generated.png similarity index 100% rename from asset-work/kq4_039_island_beach/caption_2_2333877833/generated.png rename to asset-work/kq4_039_island_beach/caption_2_2333877833_generated.png diff --git a/asset-work/kq4_039_island_beach/caption_2_2333877833_generated.png.import b/asset-work/kq4_039_island_beach/caption_2_2333877833_generated.png.import new file mode 100644 index 0000000..bcd66b1 --- /dev/null +++ b/asset-work/kq4_039_island_beach/caption_2_2333877833_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b0tfwyr1gighi" +path="res://.godot/imported/caption_2_2333877833_generated.png-2241e8bb994a857348b6676dc4423346.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_039_island_beach/caption_2_2333877833_generated.png" +dest_files=["res://.godot/imported/caption_2_2333877833_generated.png-2241e8bb994a857348b6676dc4423346.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_039_island_beach/caption_3_528935161/caption_3.txt b/asset-work/kq4_039_island_beach/caption_3_528935161/caption_3.txt deleted file mode 100644 index 4221691..0000000 --- a/asset-work/kq4_039_island_beach/caption_3_528935161/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A dramatic elevated vista overlooking a tranquil island cove, where creamy sands meet jewel-toned waters in a sweeping embrace. The immediate foreground displays sun-bleached beach textures with subtle variations in tone indicating wet and dry areas, scattered with small stones and driftwood. The shoreline curves elegantly toward the middle ground, where crystalline shallows reveal sandy bottom through translucent layers of teal and turquoise, deepening abruptly to midnight blue offshore. Majestic palm trees with textured, fibrous trunks stand sentinel on the right, their fronds creating intricate shadow patterns across the golden sand below. Behind them, rolling hills covered in rich tropical vegetation ascend gently, painted in strokes of viridian and moss green with highlights of lemon and chartreuse where sunlight penetrates the canopy. The vast ocean stretches to the horizon in the background, its surface rendered in smooth gradations from azure to navy, meeting a clear sky of infinite blue. A single ethereal cloud floats serenely above, its edges catching rosy light. The composition balances warm sand tones, cool water hues, and lush vegetation greens under soft diffused daylight, creating an idyllic tropical sanctuary. diff --git a/asset-work/kq4_039_island_beach/caption_3_528935161/generated.png b/asset-work/kq4_039_island_beach/caption_3_528935161_generated.png similarity index 100% rename from asset-work/kq4_039_island_beach/caption_3_528935161/generated.png rename to asset-work/kq4_039_island_beach/caption_3_528935161_generated.png diff --git a/asset-work/kq4_039_island_beach/caption_3_528935161_generated.png.import b/asset-work/kq4_039_island_beach/caption_3_528935161_generated.png.import new file mode 100644 index 0000000..7abf40e --- /dev/null +++ b/asset-work/kq4_039_island_beach/caption_3_528935161_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://4351l6tj6yah" +path="res://.godot/imported/caption_3_528935161_generated.png-d8c4a1ce5c34fc2471690b0ef3aa5b07.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_039_island_beach/caption_3_528935161_generated.png" +dest_files=["res://.godot/imported/caption_3_528935161_generated.png-d8c4a1ce5c34fc2471690b0ef3aa5b07.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_040_island_beach_east/caption_1_4232831138/caption_1.txt b/asset-work/kq4_040_island_beach_east/caption_1_4232831138/caption_1.txt deleted file mode 100644 index f2e5bf4..0000000 --- a/asset-work/kq4_040_island_beach_east/caption_1_4232831138/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A breathtaking aerial view of an exotic island paradise, where a magnificent ivory palace rises majestically from the center of lush tropical grounds. In the immediate foreground, pristine golden sands stretch toward the viewer, their surfaces rippled with patterns from gentle tides, catching warm sunlight. The azure ocean laps gently at the shoreline beyond the beach, rendered in strokes of cerulean and turquoise that shimmer with reflected light. A luxuriant garden carpeted in emerald grass surrounds the palace, featuring meticulously manicured low hedges that create formal geometric patterns. The palace itself dominates the middle ground, its pristine white walls gleaming against the verdant landscape, topped with distinctive conical towers capped in rich violet and magenta hues. Stone steps lead invitingly from the garden to the grand entrance. In the background, the bright cerulean sky stretches endlessly, merging with the distant horizon where ocean meets heavens. Towering palms and flowering trees frame the palace in verdant splendor, their fronds casting delicate shadows across the grounds. The color palette balances warm golden sands and rich garden greens against the cool blues of sea and sky, all bathed in radiant tropical sunlight. diff --git a/asset-work/kq4_040_island_beach_east/caption_1_4232831138/generated.png b/asset-work/kq4_040_island_beach_east/caption_1_4232831138_generated.png similarity index 100% rename from asset-work/kq4_040_island_beach_east/caption_1_4232831138/generated.png rename to asset-work/kq4_040_island_beach_east/caption_1_4232831138_generated.png diff --git a/asset-work/kq4_040_island_beach_east/caption_1_4232831138_generated.png.import b/asset-work/kq4_040_island_beach_east/caption_1_4232831138_generated.png.import new file mode 100644 index 0000000..d13bfce --- /dev/null +++ b/asset-work/kq4_040_island_beach_east/caption_1_4232831138_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dxwqerm6v30s6" +path="res://.godot/imported/caption_1_4232831138_generated.png-82aa30735f4fec413f6f42cc14545e66.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_040_island_beach_east/caption_1_4232831138_generated.png" +dest_files=["res://.godot/imported/caption_1_4232831138_generated.png-82aa30735f4fec413f6f42cc14545e66.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_040_island_beach_east/caption_2_1398449338/caption_2.txt b/asset-work/kq4_040_island_beach_east/caption_2_1398449338/caption_2.txt deleted file mode 100644 index 7a34f53..0000000 --- a/asset-work/kq4_040_island_beach_east/caption_2_1398449338/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A sweeping panoramic vista capturing an enchanted island retreat viewed from elevated perspective. The foreground reveals smooth sandy beaches in warm ochre tones, their surfaces showing subtle textural variations between dry and tide-wet areas. Beyond the beach, crystalline waters in graduated shades of aquamarine and sapphire stretch toward the horizon. The middle ground is dominated by an extraordinary ivory palace, its walls painted in creamy whites and subtle pearl grays that suggest ancient stone. Multiple towers rise elegantly, each crowned with conical roofs in deep amethyst and royal purple that provide striking chromatic contrast. A splendid garden encircles the palace, featuring lush carpets of grass in varying tones from sage to emerald, interspersed with flowering shrubs and low ornamental hedges. Stone staircases ascend from the manicured grounds to the palace entrance. Background elements include the vast expanse of ocean fading into atmospheric perspective, and a sky of soft cerulean brushed with wisps of cloud. The composition emphasizes depth through overlapping planes of beach, water, garden, and architecture, all unified under the golden glow of afternoon tropical light. diff --git a/asset-work/kq4_040_island_beach_east/caption_2_1398449338/generated.png b/asset-work/kq4_040_island_beach_east/caption_2_1398449338_generated.png similarity index 100% rename from asset-work/kq4_040_island_beach_east/caption_2_1398449338/generated.png rename to asset-work/kq4_040_island_beach_east/caption_2_1398449338_generated.png diff --git a/asset-work/kq4_040_island_beach_east/caption_2_1398449338_generated.png.import b/asset-work/kq4_040_island_beach_east/caption_2_1398449338_generated.png.import new file mode 100644 index 0000000..5050bc1 --- /dev/null +++ b/asset-work/kq4_040_island_beach_east/caption_2_1398449338_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ma8sl008wq8w" +path="res://.godot/imported/caption_2_1398449338_generated.png-fbda08b099c79683b1f7d4f3a815c365.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_040_island_beach_east/caption_2_1398449338_generated.png" +dest_files=["res://.godot/imported/caption_2_1398449338_generated.png-fbda08b099c79683b1f7d4f3a815c365.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_040_island_beach_east/caption_3_4131629296/caption_3.txt b/asset-work/kq4_040_island_beach_east/caption_3_4131629296/caption_3.txt deleted file mode 100644 index 189266e..0000000 --- a/asset-work/kq4_040_island_beach_east/caption_3_4131629296/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A romantic bird's-eye view of a secluded island sanctuary where fantasy architecture meets pristine nature. The immediate foreground displays textured sandy shores in honey and wheat tones, scattered with small shells and driftwood, leading down to gentle surf that creates white lace patterns on the beach. Behind the sand, the brilliant blue ocean stretches into the distance, its surface animated with subtle wave patterns catching light. The composition's focal point is a wondrous ivory palace rising from the island's heart, rendered with architectural precision showing multiple stories and ornate details. Conical towers with distinctive magenta and violet roofs punctuate the skyline, their saturated hues creating visual anchors against the azure heavens. A formal garden surrounds the palace, with clipped hedges forming geometric borders around verdant lawns dotted with flowering blossoms in soft pastels. Mature trees with dense canopies frame the palace on either side, their foliage painted in rich greens with touches of umber and olive. The background dissolves into atmospheric haze where sea meets sky in a seamless gradient of blues. The entire scene glows with warm, diffused sunlight that emphasizes the romantic, otherworldly quality of this island paradise. diff --git a/asset-work/kq4_040_island_beach_east/caption_3_4131629296/generated.png b/asset-work/kq4_040_island_beach_east/caption_3_4131629296_generated.png similarity index 100% rename from asset-work/kq4_040_island_beach_east/caption_3_4131629296/generated.png rename to asset-work/kq4_040_island_beach_east/caption_3_4131629296_generated.png diff --git a/asset-work/kq4_040_island_beach_east/caption_3_4131629296_generated.png.import b/asset-work/kq4_040_island_beach_east/caption_3_4131629296_generated.png.import new file mode 100644 index 0000000..c56b481 --- /dev/null +++ b/asset-work/kq4_040_island_beach_east/caption_3_4131629296_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dr8tjls3i18ea" +path="res://.godot/imported/caption_3_4131629296_generated.png-20f62c700d106bb94ffc2145bb4279e6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_040_island_beach_east/caption_3_4131629296_generated.png" +dest_files=["res://.godot/imported/caption_3_4131629296_generated.png-20f62c700d106bb94ffc2145bb4279e6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_041_island_shore/caption_1_371294647/caption_1.txt b/asset-work/kq4_041_island_shore/caption_1_371294647/caption_1.txt deleted file mode 100644 index db9b618..0000000 --- a/asset-work/kq4_041_island_shore/caption_1_371294647/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A sweeping bird's-eye view reveals a pristine tropical shoreline curving along the edge of a magical island. In the foreground, golden-hued sand stretches toward the viewer, its surface rippled with subtle patterns from gentle tides, scattered with small shells and driftwood fragments. The middle ground showcases crystalline turquoise waters lapping softly against the beach, foam-white crests creating delicate lace patterns where sea meets shore. To the left, verdant grassy terrain rises gently, crowned by windswept trees with emerald canopies that cast dappled shadows across the landscape. A weathered wooden fence meanders through the greenery, suggesting human presence without disrupting the natural harmony. In the distant background, the magnificent silhouette of an ivory palace gleams against the horizon, its pale spires catching sunlight and creating a focal point of ethereal beauty. The sky above transitions from deep azure near the zenith to softer cerulean at the horizon, with wisps of cotton-white clouds drifting lazily overhead. Warm afternoon light bathes the entire scene, creating rich golden highlights on the sand and shimmering reflections on the water's surface, while cool blue shadows in the deeper ocean provide striking contrast. diff --git a/asset-work/kq4_041_island_shore/caption_1_371294647/caption_1_2695076398/caption_1.txt b/asset-work/kq4_041_island_shore/caption_1_371294647/caption_1_2695076398/caption_1.txt deleted file mode 100644 index db9b618..0000000 --- a/asset-work/kq4_041_island_shore/caption_1_371294647/caption_1_2695076398/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A sweeping bird's-eye view reveals a pristine tropical shoreline curving along the edge of a magical island. In the foreground, golden-hued sand stretches toward the viewer, its surface rippled with subtle patterns from gentle tides, scattered with small shells and driftwood fragments. The middle ground showcases crystalline turquoise waters lapping softly against the beach, foam-white crests creating delicate lace patterns where sea meets shore. To the left, verdant grassy terrain rises gently, crowned by windswept trees with emerald canopies that cast dappled shadows across the landscape. A weathered wooden fence meanders through the greenery, suggesting human presence without disrupting the natural harmony. In the distant background, the magnificent silhouette of an ivory palace gleams against the horizon, its pale spires catching sunlight and creating a focal point of ethereal beauty. The sky above transitions from deep azure near the zenith to softer cerulean at the horizon, with wisps of cotton-white clouds drifting lazily overhead. Warm afternoon light bathes the entire scene, creating rich golden highlights on the sand and shimmering reflections on the water's surface, while cool blue shadows in the deeper ocean provide striking contrast. diff --git a/asset-work/kq4_041_island_shore/caption_1_371294647/caption_1_2695076398/generated.png b/asset-work/kq4_041_island_shore/caption_1_371294647/caption_1_2695076398/generated.png deleted file mode 100644 index b259324..0000000 --- a/asset-work/kq4_041_island_shore/caption_1_371294647/caption_1_2695076398/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b8779b6eb8d9ab73bf76e8f80a40e3daeb8308b520f5a1254c99c7732b269231 -size 4615624 diff --git a/asset-work/kq4_041_island_shore/caption_1_371294647/generated.png b/asset-work/kq4_041_island_shore/caption_1_371294647_generated.png similarity index 100% rename from asset-work/kq4_041_island_shore/caption_1_371294647/generated.png rename to asset-work/kq4_041_island_shore/caption_1_371294647_generated.png diff --git a/asset-work/kq4_041_island_shore/caption_1_371294647_generated.png.import b/asset-work/kq4_041_island_shore/caption_1_371294647_generated.png.import new file mode 100644 index 0000000..048905f --- /dev/null +++ b/asset-work/kq4_041_island_shore/caption_1_371294647_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bxecw6f3du68d" +path="res://.godot/imported/caption_1_371294647_generated.png-e835facea63511d3598689c0b33730a0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_041_island_shore/caption_1_371294647_generated.png" +dest_files=["res://.godot/imported/caption_1_371294647_generated.png-e835facea63511d3598689c0b33730a0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_041_island_shore/caption_2_2638692684/caption_2.txt b/asset-work/kq4_041_island_shore/caption_2_2638692684/caption_2.txt deleted file mode 100644 index 8ad5414..0000000 --- a/asset-work/kq4_041_island_shore/caption_2_2638692684/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. From an elevated perspective, a serene island coastline unfolds in painterly splendor, where land and sea meet in harmonious embrace. The immediate foreground features textured beach sand in warm ochre and cream tones, marked by the rhythmic patterns of retreating waves and scattered with small stones polished smooth by eternal tides. Moving into the middle distance, the shoreline curves gracefully, revealing shallows of translucent aquamarine that gradually deepen to rich marine blues offshore. On the left, a grassy knoll rises softly, its emerald surface dotted with resilient coastal vegetation and anchored by mature trees whose twisted trunks speak of years shaped by ocean winds. A simple wooden fence traces the boundary between grass and sand, weathered gray by salt and sun. Dominating the northern horizon, an ivory palace rises in majestic isolation, its pale walls glowing with an otherworldly luminescence that suggests magic permeates this place. The sky stretches overhead in vast expanse of sapphire, accented by billowing cumulus clouds tinged with silver and gold by the late-day sun. Light filters through the atmosphere, creating atmospheric perspective that softens distant elements while bringing rich detail to the textured sand and foam-kissed waves in the foreground. diff --git a/asset-work/kq4_041_island_shore/caption_2_2638692684/caption_2_2428135010/caption_2.txt b/asset-work/kq4_041_island_shore/caption_2_2638692684/caption_2_2428135010/caption_2.txt deleted file mode 100644 index 8ad5414..0000000 --- a/asset-work/kq4_041_island_shore/caption_2_2638692684/caption_2_2428135010/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. From an elevated perspective, a serene island coastline unfolds in painterly splendor, where land and sea meet in harmonious embrace. The immediate foreground features textured beach sand in warm ochre and cream tones, marked by the rhythmic patterns of retreating waves and scattered with small stones polished smooth by eternal tides. Moving into the middle distance, the shoreline curves gracefully, revealing shallows of translucent aquamarine that gradually deepen to rich marine blues offshore. On the left, a grassy knoll rises softly, its emerald surface dotted with resilient coastal vegetation and anchored by mature trees whose twisted trunks speak of years shaped by ocean winds. A simple wooden fence traces the boundary between grass and sand, weathered gray by salt and sun. Dominating the northern horizon, an ivory palace rises in majestic isolation, its pale walls glowing with an otherworldly luminescence that suggests magic permeates this place. The sky stretches overhead in vast expanse of sapphire, accented by billowing cumulus clouds tinged with silver and gold by the late-day sun. Light filters through the atmosphere, creating atmospheric perspective that softens distant elements while bringing rich detail to the textured sand and foam-kissed waves in the foreground. diff --git a/asset-work/kq4_041_island_shore/caption_2_2638692684/caption_2_2428135010/generated.png b/asset-work/kq4_041_island_shore/caption_2_2638692684/caption_2_2428135010/generated.png deleted file mode 100644 index 1277636..0000000 --- a/asset-work/kq4_041_island_shore/caption_2_2638692684/caption_2_2428135010/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b930c72824c071b1426dd76e716bfd07fc12319b33fd9a34da1083e6030b6ccc -size 4271983 diff --git a/asset-work/kq4_041_island_shore/caption_2_2638692684/generated.png b/asset-work/kq4_041_island_shore/caption_2_2638692684_generated.png similarity index 100% rename from asset-work/kq4_041_island_shore/caption_2_2638692684/generated.png rename to asset-work/kq4_041_island_shore/caption_2_2638692684_generated.png diff --git a/asset-work/kq4_041_island_shore/caption_2_2638692684_generated.png.import b/asset-work/kq4_041_island_shore/caption_2_2638692684_generated.png.import new file mode 100644 index 0000000..b950ebc --- /dev/null +++ b/asset-work/kq4_041_island_shore/caption_2_2638692684_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ba1yn1r7utte3" +path="res://.godot/imported/caption_2_2638692684_generated.png-31815b79919e6a2a4d71ef7bde41e001.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_041_island_shore/caption_2_2638692684_generated.png" +dest_files=["res://.godot/imported/caption_2_2638692684_generated.png-31815b79919e6a2a4d71ef7bde41e001.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_041_island_shore/caption_3_2633380390/caption_3.txt b/asset-work/kq4_041_island_shore/caption_3_2633380390/caption_3.txt deleted file mode 100644 index 9911cb8..0000000 --- a/asset-work/kq4_041_island_shore/caption_3_2633380390/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A panoramic vista captures the enchanting boundary where a magical island meets endless ocean, viewed from above in sweeping composition. The foreground presents rippled beach sand in delicate gradations of ivory and pale gold, interspersed with tide pools that mirror the sky like scattered mirrors. The central composition reveals gentle waves rolling onto shore, their translucent crests catching light to create shimmering bands of turquoise and white that contrast with the deep indigo of open water beyond. To the left, lush coastal grasses and low vegetation create a rich tapestry of emerald and sage greens, anchored by graceful trees whose foliage rustles in the sea breeze. A rustic fence of weathered timber creates a gentle diagonal leading the eye inland. The northern background is dominated by the ethereal presence of an ivory palace, its architectural details softened by distance yet unmistakably majestic, rising from the island's interior like a dream made solid. Above, the sky displays perfect clarity in cerulean blue, with a few wispy cirrus clouds adding texture to the vast expanse. Golden hour lighting casts long shadows across the sand while illuminating the treetops with warm amber highlights, creating depth through chiaroscuro effects and emphasizing the three-dimensional quality of this idyllic coastal sanctuary. diff --git a/asset-work/kq4_041_island_shore/caption_3_2633380390/caption_3_236337041/caption_3.txt b/asset-work/kq4_041_island_shore/caption_3_2633380390/caption_3_236337041/caption_3.txt deleted file mode 100644 index 9911cb8..0000000 --- a/asset-work/kq4_041_island_shore/caption_3_2633380390/caption_3_236337041/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A panoramic vista captures the enchanting boundary where a magical island meets endless ocean, viewed from above in sweeping composition. The foreground presents rippled beach sand in delicate gradations of ivory and pale gold, interspersed with tide pools that mirror the sky like scattered mirrors. The central composition reveals gentle waves rolling onto shore, their translucent crests catching light to create shimmering bands of turquoise and white that contrast with the deep indigo of open water beyond. To the left, lush coastal grasses and low vegetation create a rich tapestry of emerald and sage greens, anchored by graceful trees whose foliage rustles in the sea breeze. A rustic fence of weathered timber creates a gentle diagonal leading the eye inland. The northern background is dominated by the ethereal presence of an ivory palace, its architectural details softened by distance yet unmistakably majestic, rising from the island's interior like a dream made solid. Above, the sky displays perfect clarity in cerulean blue, with a few wispy cirrus clouds adding texture to the vast expanse. Golden hour lighting casts long shadows across the sand while illuminating the treetops with warm amber highlights, creating depth through chiaroscuro effects and emphasizing the three-dimensional quality of this idyllic coastal sanctuary. diff --git a/asset-work/kq4_041_island_shore/caption_3_2633380390/caption_3_236337041/generated.png b/asset-work/kq4_041_island_shore/caption_3_2633380390/caption_3_236337041/generated.png deleted file mode 100644 index e0b883c..0000000 --- a/asset-work/kq4_041_island_shore/caption_3_2633380390/caption_3_236337041/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4089e6875d3673d4aab44fe09f83176e0bfaffbab3b95f6f97a1063bfb538640 -size 4227404 diff --git a/asset-work/kq4_041_island_shore/caption_3_2633380390/generated.png b/asset-work/kq4_041_island_shore/caption_3_2633380390_generated.png similarity index 100% rename from asset-work/kq4_041_island_shore/caption_3_2633380390/generated.png rename to asset-work/kq4_041_island_shore/caption_3_2633380390_generated.png diff --git a/asset-work/kq4_041_island_shore/caption_3_2633380390_generated.png.import b/asset-work/kq4_041_island_shore/caption_3_2633380390_generated.png.import new file mode 100644 index 0000000..62407c4 --- /dev/null +++ b/asset-work/kq4_041_island_shore/caption_3_2633380390_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ci7s55tgr4qoe" +path="res://.godot/imported/caption_3_2633380390_generated.png-8cf1c78b331eb9783e49c835025a4b23.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_041_island_shore/caption_3_2633380390_generated.png" +dest_files=["res://.godot/imported/caption_3_2633380390_generated.png-8cf1c78b331eb9783e49c835025a4b23.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_042_fishermans_shack_inside/caption_1_980293982/caption_1.txt b/asset-work/kq4_042_fishermans_shack_inside/caption_1_980293982/caption_1.txt deleted file mode 100644 index 069804d..0000000 --- a/asset-work/kq4_042_fishermans_shack_inside/caption_1_980293982/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A humble fisherman's shack interior viewed from a high angle, revealing a cramped but intimate dwelling of weathered horizontal logs. The foreground features a worn wooden table with simple chairs, their surfaces smoothed by years of use and catching warm amber light from an unseen source. To the left, an open doorway frames a tantalizing glimpse of azure ocean waters and verdant coastal grasses beyond, creating a striking contrast between the dim interior and bright exterior world. The middle ground centers on a cast-iron stove with vertical chimney pipe ascending to the ceiling, beside which stands a cupboard stocked with meager provisions. Dominating the back wall, a magnificent trophy fish—likely a marlin or swordfish—hangs proudly above the shelf, its silvery form preserved in perpetual display. To the right, a lumpy bed draped in deep blue blankets nestles against the log wall, suggesting nights of exhausted slumber after long days at sea. The palette harmonizes warm honeyed wood tones with cool ocean blues glimpsed through the doorway, while shadows pool in corners, creating intimate depth and rustic atmosphere. diff --git a/asset-work/kq4_042_fishermans_shack_inside/caption_1_980293982/generated.png b/asset-work/kq4_042_fishermans_shack_inside/caption_1_980293982_generated.png similarity index 100% rename from asset-work/kq4_042_fishermans_shack_inside/caption_1_980293982/generated.png rename to asset-work/kq4_042_fishermans_shack_inside/caption_1_980293982_generated.png diff --git a/asset-work/kq4_042_fishermans_shack_inside/caption_1_980293982_generated.png.import b/asset-work/kq4_042_fishermans_shack_inside/caption_1_980293982_generated.png.import new file mode 100644 index 0000000..d1ecf29 --- /dev/null +++ b/asset-work/kq4_042_fishermans_shack_inside/caption_1_980293982_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dka3fsrnp0sog" +path="res://.godot/imported/caption_1_980293982_generated.png-0dbb37f456183fce3162edbfa07f9e13.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_042_fishermans_shack_inside/caption_1_980293982_generated.png" +dest_files=["res://.godot/imported/caption_1_980293982_generated.png-0dbb37f456183fce3162edbfa07f9e13.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_042_fishermans_shack_inside/caption_2_1618075724/caption_2.txt b/asset-work/kq4_042_fishermans_shack_inside/caption_2_1618075724/caption_2.txt deleted file mode 100644 index e2f1860..0000000 --- a/asset-work/kq4_042_fishermans_shack_inside/caption_2_1618075724/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A cozy maritime cottage interior captured from above, showcasing the rough-hewn character of a working fisherman's dwelling. The immediate foreground presents an unmade bed with rumpled blue covers, suggesting recent occupation, while nearby a small window admits pale natural light that illuminates dust motes dancing in the air. The central space is dominated by a sturdy wooden table bearing the patina of countless shared meals, surrounded by utilitarian chairs. Against the back wall, a substantial cupboard overflows with canned goods and simple provisions, topped by the impressive mounted catch of a large game fish—its sleek form rendered in strokes of silver and blue-gray, a testament to past triumphs on the open water. A wood-burning stove anchors the left side, its black iron surface contrasting with the warm golden-brown of the horizontal log walls. Through an open door on the left, the viewer glimpses the shimmering sea beyond, connecting this modest shelter to the vast maritime world outside. The color scheme blends earthy umbers and siennas of aged wood with marine blues and the soft grays of weathered materials, all bathed in gentle diffused daylight. diff --git a/asset-work/kq4_042_fishermans_shack_inside/caption_2_1618075724/generated.png b/asset-work/kq4_042_fishermans_shack_inside/caption_2_1618075724_generated.png similarity index 100% rename from asset-work/kq4_042_fishermans_shack_inside/caption_2_1618075724/generated.png rename to asset-work/kq4_042_fishermans_shack_inside/caption_2_1618075724_generated.png diff --git a/asset-work/kq4_042_fishermans_shack_inside/caption_2_1618075724_generated.png.import b/asset-work/kq4_042_fishermans_shack_inside/caption_2_1618075724_generated.png.import new file mode 100644 index 0000000..f9517d1 --- /dev/null +++ b/asset-work/kq4_042_fishermans_shack_inside/caption_2_1618075724_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://brckyriwcqt65" +path="res://.godot/imported/caption_2_1618075724_generated.png-093ecbac60ee8aa832b48e7a27dc8bf2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_042_fishermans_shack_inside/caption_2_1618075724_generated.png" +dest_files=["res://.godot/imported/caption_2_1618075724_generated.png-093ecbac60ee8aa832b48e7a27dc8bf2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_042_fishermans_shack_inside/caption_3_3765646204/caption_3.txt b/asset-work/kq4_042_fishermans_shack_inside/caption_3_3765646204/caption_3.txt deleted file mode 100644 index 54bc368..0000000 --- a/asset-work/kq4_042_fishermans_shack_inside/caption_3_3765646204/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. An elevated perspective reveals the intimate interior of a coastal dweller's modest home, where every surface tells a story of hard-won existence. The foreground features a simple sleeping quarters with a bed dressed in deep indigo linens, positioned against walls constructed of substantial horizontal timbers worn smooth by time and salt air. The middle composition draws the eye to a well-used dining area centered around a rustic plank table, its surface bearing knife marks and stains of countless humble meals. Behind this domestic scene rises a cast-iron heating stove with vertical piping, and beside it shelves stocked with the basic necessities of survival. A magnificent preserved fish trophy commands attention on the back wall, its impressive size suggesting legendary catches from treacherous waters. To the left, an open portal reveals a breathtaking view of the sparkling ocean, creating a natural vignette of turquoise and cerulean that contrasts with the warm amber interior. Windows on opposing walls allow cross-breezes and shifting light to play across the textured log surfaces throughout the day. The artistic treatment emphasizes the tactile quality of weathered wood grain, the softness of worn fabrics, and the atmospheric depth created by overlapping planes of interior space opening to infinite coastal horizons. diff --git a/asset-work/kq4_042_fishermans_shack_inside/caption_3_3765646204/generated.png b/asset-work/kq4_042_fishermans_shack_inside/caption_3_3765646204_generated.png similarity index 100% rename from asset-work/kq4_042_fishermans_shack_inside/caption_3_3765646204/generated.png rename to asset-work/kq4_042_fishermans_shack_inside/caption_3_3765646204_generated.png diff --git a/asset-work/kq4_042_fishermans_shack_inside/caption_3_3765646204_generated.png.import b/asset-work/kq4_042_fishermans_shack_inside/caption_3_3765646204_generated.png.import new file mode 100644 index 0000000..22073e9 --- /dev/null +++ b/asset-work/kq4_042_fishermans_shack_inside/caption_3_3765646204_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://715i36juprl5" +path="res://.godot/imported/caption_3_3765646204_generated.png-24143774ceeecdbb176b640c9a380596.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_042_fishermans_shack_inside/caption_3_3765646204_generated.png" +dest_files=["res://.godot/imported/caption_3_3765646204_generated.png-24143774ceeecdbb176b640c9a380596.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_043_desert_island/caption_1_1852333925/caption_1.txt b/asset-work/kq4_043_desert_island/caption_1_1852333925/caption_1.txt deleted file mode 100644 index 0ebbf2d..0000000 --- a/asset-work/kq4_043_desert_island/caption_1_1852333925/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A solitary desert island emerges from crystalline turquoise waters, viewed from an elevated aerial perspective that reveals its intimate oval shape. In the foreground, weathered wooden fragments of a shipwreck scatter across golden sand, their bleached surfaces catching harsh tropical sunlight. A majestic coconut palm dominates the center, its verdant fronds creating a dramatic canopy over the island, the trunk rendered in textured bark patterns of umber and sienna. The middle ground reveals smooth beach sand transitioning to shallow reef waters, where gradients of aquamarine deepen to rich cobalt offshore. Broken timbers and splintered planks lie half-buried in the sand, testament to maritime tragedy. A small sandbar extends toward the lower right, connected by shallow tidal pools reflecting the azure sky above. Background waters stretch to the horizon in layered blues, from cerulean shallows to deep indigo depths. Wispy cumulus clouds drift across a brilliant cerulean sky. The lighting suggests midday sun, casting short shadows and creating high contrast between sun-bleached sand and the palm's cool green shade. Palette harmonizes warm golds and ochres against cool ocean blues and vibrant greens. diff --git a/asset-work/kq4_043_desert_island/caption_1_1852333925/generated.png b/asset-work/kq4_043_desert_island/caption_1_1852333925_generated.png similarity index 100% rename from asset-work/kq4_043_desert_island/caption_1_1852333925/generated.png rename to asset-work/kq4_043_desert_island/caption_1_1852333925_generated.png diff --git a/asset-work/kq4_043_desert_island/caption_1_1852333925_generated.png.import b/asset-work/kq4_043_desert_island/caption_1_1852333925_generated.png.import new file mode 100644 index 0000000..6d15519 --- /dev/null +++ b/asset-work/kq4_043_desert_island/caption_1_1852333925_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://kdvamdn8elh3" +path="res://.godot/imported/caption_1_1852333925_generated.png-6d8c186be3461690a91094ae257c7805.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_043_desert_island/caption_1_1852333925_generated.png" +dest_files=["res://.godot/imported/caption_1_1852333925_generated.png-6d8c186be3461690a91094ae257c7805.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_043_desert_island/caption_2_3832551073/caption_2.txt b/asset-work/kq4_043_desert_island/caption_2_3832551073/caption_2.txt deleted file mode 100644 index c76ce04..0000000 --- a/asset-work/kq4_043_desert_island/caption_2_3832551073/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A remote tropical atoll rises from the endless ocean, captured from a sweeping bird's-eye vantage point that emphasizes isolation and serenity. The foreground presents wind-sculpted sand dunes textured with ripples and tidal patterns, where fragments of an ancient shipwreck emerge from the beach like skeletal remains. A solitary palm tree anchors the composition, its crown of emerald fronds rustling in unseen trade winds, casting velvet shadows across the bleached sand. The island's perimeter dissolves into shallow reef waters rendered in translucent layers of jade and turquoise. Scattered wooden debris—broken spars, splintered hull planks, and rusted iron fittings—create linear elements against the organic curves of sand and palm. A narrow sand spit extends toward a smaller islet, surrounded by crystalline shallows that reveal coral textures beneath. Background seascape transitions through prismatic blues, from foam-flecked shallows to dark ultramarine depths on the horizon. The sky dominates the upper register with voluminous white cumulus formations. Golden afternoon light bathes the scene, creating warm highlights on the palm trunk and long, soft shadows that emphasize the island's three-dimensionality. diff --git a/asset-work/kq4_043_desert_island/caption_2_3832551073/generated.png b/asset-work/kq4_043_desert_island/caption_2_3832551073_generated.png similarity index 100% rename from asset-work/kq4_043_desert_island/caption_2_3832551073/generated.png rename to asset-work/kq4_043_desert_island/caption_2_3832551073_generated.png diff --git a/asset-work/kq4_043_desert_island/caption_2_3832551073_generated.png.import b/asset-work/kq4_043_desert_island/caption_2_3832551073_generated.png.import new file mode 100644 index 0000000..8f76e5a --- /dev/null +++ b/asset-work/kq4_043_desert_island/caption_2_3832551073_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bmoay4dptk6m2" +path="res://.godot/imported/caption_2_3832551073_generated.png-c9b13a13c06a9c96c51d26d299105e62.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_043_desert_island/caption_2_3832551073_generated.png" +dest_files=["res://.godot/imported/caption_2_3832551073_generated.png-c9b13a13c06a9c96c51d26d299105e62.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_043_desert_island/caption_3_4213525394/caption_3.txt b/asset-work/kq4_043_desert_island/caption_3_4213525394/caption_3.txt deleted file mode 100644 index 394cb93..0000000 --- a/asset-work/kq4_043_desert_island/caption_3_4213525394/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. An isolated oceanic jewel viewed from above, where a tiny sand cay breaks the monotony of endless blue waters. The immediate foreground displays coarse coral sand in warm ivory tones, textured with wind patterns and scattered with maritime flotsam from some long-forgotten wreck. A proud palm stands sentinel at the island's heart, its feathery fronds creating intricate shadow lacework on the beach below, the trunk showing fibrous bark texture in warm browns. The middle ground reveals the island's crescent shape, where pale sand meets translucent shallows in a delicate marriage of textures. Wooden wreckage lies strewn across the beach—curved hull ribs, weathered decking, and splintered masts—painted with the patina of salt and sun. A slender sandbar extends seaward, nearly touching a smaller satellite island. The surrounding waters display remarkable chromatic depth, transitioning from pale aqua over sand to deep navy blue offshore. Background atmosphere shows hazy horizon where sea meets sky in soft atmospheric perspective. The composition balances vertical palm against horizontal expanse. Late afternoon light creates dramatic side illumination, emphasizing surface textures and casting the palm's silhouette across golden sand. diff --git a/asset-work/kq4_043_desert_island/caption_3_4213525394/generated.png b/asset-work/kq4_043_desert_island/caption_3_4213525394_generated.png similarity index 100% rename from asset-work/kq4_043_desert_island/caption_3_4213525394/generated.png rename to asset-work/kq4_043_desert_island/caption_3_4213525394_generated.png diff --git a/asset-work/kq4_043_desert_island/caption_3_4213525394_generated.png.import b/asset-work/kq4_043_desert_island/caption_3_4213525394_generated.png.import new file mode 100644 index 0000000..40b276a --- /dev/null +++ b/asset-work/kq4_043_desert_island/caption_3_4213525394_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cawmxq2w30ttk" +path="res://.godot/imported/caption_3_4213525394_generated.png-2ee45e8504d4b119bc2b5918c78e0d76.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_043_desert_island/caption_3_4213525394_generated.png" +dest_files=["res://.godot/imported/caption_3_4213525394_generated.png-2ee45e8504d4b119bc2b5918c78e0d76.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_044_inside_whale/caption_1_141701640/caption_1.txt b/asset-work/kq4_044_inside_whale/caption_1_141701640/caption_1.txt deleted file mode 100644 index f130b42..0000000 --- a/asset-work/kq4_044_inside_whale/caption_1_141701640/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A cavernous organic interior viewed from above, revealing the vast pink-veined chamber of a leviathan's stomach. In the foreground, rippling pools of iridescent seawater reflect subtle luminescence from unseen openings above, their surfaces marbled with oil-slick patterns of violet and indigo. Floating debris—splintered wooden fragments and bleached skeletal remains—drift upon these brackish shallows, their textures rendered in thick impasto strokes suggesting waterlogged decay. The middle ground is dominated by an enormous muscular tongue, its surface a landscape of bumpy papillae and glistening membrane stretching across the chamber like a fleshy isthmus, painted in deep crimsons and magentas with highlights of arterial red. Behind this massive form, the esophagus rises in concentric folds of visceral tissue, terminating in a dark cavernous throat where a pendulous uvula hangs like a great crimson bell. The background reveals rows of massive ivory molars emerging from swollen gum tissue, their surfaces etched with the patina of age and use. Soft bioluminescent light filters from above, casting velvet shadows across the undulating organic architecture and creating an otherworldly atmosphere of aqueous twilight within this impossible maritime cathedral. diff --git a/asset-work/kq4_044_inside_whale/caption_1_141701640/caption_1_3443622466/caption_1.txt b/asset-work/kq4_044_inside_whale/caption_1_141701640/caption_1_3443622466/caption_1.txt deleted file mode 100644 index f130b42..0000000 --- a/asset-work/kq4_044_inside_whale/caption_1_141701640/caption_1_3443622466/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A cavernous organic interior viewed from above, revealing the vast pink-veined chamber of a leviathan's stomach. In the foreground, rippling pools of iridescent seawater reflect subtle luminescence from unseen openings above, their surfaces marbled with oil-slick patterns of violet and indigo. Floating debris—splintered wooden fragments and bleached skeletal remains—drift upon these brackish shallows, their textures rendered in thick impasto strokes suggesting waterlogged decay. The middle ground is dominated by an enormous muscular tongue, its surface a landscape of bumpy papillae and glistening membrane stretching across the chamber like a fleshy isthmus, painted in deep crimsons and magentas with highlights of arterial red. Behind this massive form, the esophagus rises in concentric folds of visceral tissue, terminating in a dark cavernous throat where a pendulous uvula hangs like a great crimson bell. The background reveals rows of massive ivory molars emerging from swollen gum tissue, their surfaces etched with the patina of age and use. Soft bioluminescent light filters from above, casting velvet shadows across the undulating organic architecture and creating an otherworldly atmosphere of aqueous twilight within this impossible maritime cathedral. diff --git a/asset-work/kq4_044_inside_whale/caption_1_141701640/caption_1_3443622466/generated.png b/asset-work/kq4_044_inside_whale/caption_1_141701640/caption_1_3443622466/generated.png deleted file mode 100644 index 82a8d20..0000000 --- a/asset-work/kq4_044_inside_whale/caption_1_141701640/caption_1_3443622466/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9cecea0b8889df27a0146e3a4aa6bc05907e2b98c2145d3b1e3394f21a64e20a -size 4621374 diff --git a/asset-work/kq4_044_inside_whale/caption_1_141701640/generated.png b/asset-work/kq4_044_inside_whale/caption_1_141701640_generated.png similarity index 100% rename from asset-work/kq4_044_inside_whale/caption_1_141701640/generated.png rename to asset-work/kq4_044_inside_whale/caption_1_141701640_generated.png diff --git a/asset-work/kq4_044_inside_whale/caption_1_141701640_generated.png.import b/asset-work/kq4_044_inside_whale/caption_1_141701640_generated.png.import new file mode 100644 index 0000000..7d092af --- /dev/null +++ b/asset-work/kq4_044_inside_whale/caption_1_141701640_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cp41f5srhe11a" +path="res://.godot/imported/caption_1_141701640_generated.png-b4c119762019dce4204127ef6072f534.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_044_inside_whale/caption_1_141701640_generated.png" +dest_files=["res://.godot/imported/caption_1_141701640_generated.png-b4c119762019dce4204127ef6072f534.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_044_inside_whale/caption_2_892083224/caption_2.txt b/asset-work/kq4_044_inside_whale/caption_2_892083224/caption_2.txt deleted file mode 100644 index fb1ab20..0000000 --- a/asset-work/kq4_044_inside_whale/caption_2_892083224/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A dramatic bird's-eye perspective looking down into the vast crimson chamber of an ocean giant's belly, where organic architecture merges with captured seascape. The immediate foreground reveals translucent pools of amethyst-tinted water, their surfaces disturbed by gentle currents and scattered with drifting wreckage—a shattered vessel's ribs and waterlogged timbers rendered in umber and sienna tones. The middle ground presents an immense fleshy promontory, the creature's tongue rising in textured ridges of scarlet and rose, its bumpy surface catching ethereal light from the throat opening above. Subtle veins map across this muscular landscape like rivers viewed from altitude. In the background, the esophagus opens in dark majesty, framed by the pale gleam of enormous conical teeth set in swollen coral-pink gums. A fleshy uvula dangles like a great stalactite, painted in deep burgundy with translucent edges where light passes through membrane. The entire composition glows with an uncanny internal luminescence, seawater reflecting soft phospherescent blues against the dominant palette of arterial reds and organic crimsons, creating a haunting interplay between the aqueous and the visceral in this impossible submarine grotto. diff --git a/asset-work/kq4_044_inside_whale/caption_2_892083224/caption_2_1338414748/caption_2.txt b/asset-work/kq4_044_inside_whale/caption_2_892083224/caption_2_1338414748/caption_2.txt deleted file mode 100644 index fb1ab20..0000000 --- a/asset-work/kq4_044_inside_whale/caption_2_892083224/caption_2_1338414748/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A dramatic bird's-eye perspective looking down into the vast crimson chamber of an ocean giant's belly, where organic architecture merges with captured seascape. The immediate foreground reveals translucent pools of amethyst-tinted water, their surfaces disturbed by gentle currents and scattered with drifting wreckage—a shattered vessel's ribs and waterlogged timbers rendered in umber and sienna tones. The middle ground presents an immense fleshy promontory, the creature's tongue rising in textured ridges of scarlet and rose, its bumpy surface catching ethereal light from the throat opening above. Subtle veins map across this muscular landscape like rivers viewed from altitude. In the background, the esophagus opens in dark majesty, framed by the pale gleam of enormous conical teeth set in swollen coral-pink gums. A fleshy uvula dangles like a great stalactite, painted in deep burgundy with translucent edges where light passes through membrane. The entire composition glows with an uncanny internal luminescence, seawater reflecting soft phospherescent blues against the dominant palette of arterial reds and organic crimsons, creating a haunting interplay between the aqueous and the visceral in this impossible submarine grotto. diff --git a/asset-work/kq4_044_inside_whale/caption_2_892083224/caption_2_1338414748/generated.png b/asset-work/kq4_044_inside_whale/caption_2_892083224/caption_2_1338414748/generated.png deleted file mode 100644 index 66af968..0000000 --- a/asset-work/kq4_044_inside_whale/caption_2_892083224/caption_2_1338414748/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:fdd5b70ff7a17773de9007ae537c56ce28048799f56a3a4f3c240ee4248c9236 -size 3800713 diff --git a/asset-work/kq4_044_inside_whale/caption_2_892083224/generated.png b/asset-work/kq4_044_inside_whale/caption_2_892083224_generated.png similarity index 100% rename from asset-work/kq4_044_inside_whale/caption_2_892083224/generated.png rename to asset-work/kq4_044_inside_whale/caption_2_892083224_generated.png diff --git a/asset-work/kq4_044_inside_whale/caption_2_892083224_generated.png.import b/asset-work/kq4_044_inside_whale/caption_2_892083224_generated.png.import new file mode 100644 index 0000000..6aaecc3 --- /dev/null +++ b/asset-work/kq4_044_inside_whale/caption_2_892083224_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cghetf483mtev" +path="res://.godot/imported/caption_2_892083224_generated.png-1ddb17516c1ead45bd86a0b33352f4c6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_044_inside_whale/caption_2_892083224_generated.png" +dest_files=["res://.godot/imported/caption_2_892083224_generated.png-1ddb17516c1ead45bd86a0b33352f4c6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_044_inside_whale/caption_3_314360900/caption_3.txt b/asset-work/kq4_044_inside_whale/caption_3_314360900/caption_3.txt deleted file mode 100644 index a394479..0000000 --- a/asset-work/kq4_044_inside_whale/caption_3_314360900/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. An extraordinary elevated vista peering into the gullet of a marine colossus, where biological architecture creates a surreal cavern of living tissue and trapped ocean. Foreground details reveal shallow tidal pools of glassy cerulean water interspersed with ribbed sandbars of pinkish membrane, scattered with the detritus of maritime misfortune—splintered oak planks and calcified fragments resting upon the submerged terrain like offerings upon an altar. The central composition features a massive textured tongue, its surface a rolling topography of slick papillae painted in layered glazes of crimson, magenta, and arterial scarlet, glistening with mucous sheen. This organic mass stretches toward the background where the throat opens in shadowy grandeur, encircled by curtains of velvety esophageal tissue in deep rose and burgundy tones. Massive ivory molars frame the upper reaches, their surfaces worn smooth by countless tons of ocean pressure, while a great uvula hangs suspended like a fleshy chandelier. Diffuse bioluminescent illumination emanates from the throat opening, casting soft shadows across the undulating interior walls and creating an atmosphere of mysterious cathedral-like reverence within this impossible aquatic sanctum, where cool marine blues contrast dramatically with warm visceral crimsons throughout. diff --git a/asset-work/kq4_044_inside_whale/caption_3_314360900/caption_3_52084258/caption_3.txt b/asset-work/kq4_044_inside_whale/caption_3_314360900/caption_3_52084258/caption_3.txt deleted file mode 100644 index a394479..0000000 --- a/asset-work/kq4_044_inside_whale/caption_3_314360900/caption_3_52084258/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. An extraordinary elevated vista peering into the gullet of a marine colossus, where biological architecture creates a surreal cavern of living tissue and trapped ocean. Foreground details reveal shallow tidal pools of glassy cerulean water interspersed with ribbed sandbars of pinkish membrane, scattered with the detritus of maritime misfortune—splintered oak planks and calcified fragments resting upon the submerged terrain like offerings upon an altar. The central composition features a massive textured tongue, its surface a rolling topography of slick papillae painted in layered glazes of crimson, magenta, and arterial scarlet, glistening with mucous sheen. This organic mass stretches toward the background where the throat opens in shadowy grandeur, encircled by curtains of velvety esophageal tissue in deep rose and burgundy tones. Massive ivory molars frame the upper reaches, their surfaces worn smooth by countless tons of ocean pressure, while a great uvula hangs suspended like a fleshy chandelier. Diffuse bioluminescent illumination emanates from the throat opening, casting soft shadows across the undulating interior walls and creating an atmosphere of mysterious cathedral-like reverence within this impossible aquatic sanctum, where cool marine blues contrast dramatically with warm visceral crimsons throughout. diff --git a/asset-work/kq4_044_inside_whale/caption_3_314360900/caption_3_52084258/generated.png b/asset-work/kq4_044_inside_whale/caption_3_314360900/caption_3_52084258/generated.png deleted file mode 100644 index 6755e48..0000000 --- a/asset-work/kq4_044_inside_whale/caption_3_314360900/caption_3_52084258/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:bd1f00ea527fc89542cb10f5eac0d405eab186deb19262642af4e481719fee1c -size 4186525 diff --git a/asset-work/kq4_044_inside_whale/caption_3_314360900/generated.png b/asset-work/kq4_044_inside_whale/caption_3_314360900_generated.png similarity index 100% rename from asset-work/kq4_044_inside_whale/caption_3_314360900/generated.png rename to asset-work/kq4_044_inside_whale/caption_3_314360900_generated.png diff --git a/asset-work/kq4_044_inside_whale/caption_3_314360900_generated.png.import b/asset-work/kq4_044_inside_whale/caption_3_314360900_generated.png.import new file mode 100644 index 0000000..e5262d6 --- /dev/null +++ b/asset-work/kq4_044_inside_whale/caption_3_314360900_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ddi2dv5wqwn1d" +path="res://.godot/imported/caption_3_314360900_generated.png-f55555fcc909fe95a157d5c9902c8a58.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_044_inside_whale/caption_3_314360900_generated.png" +dest_files=["res://.godot/imported/caption_3_314360900_generated.png-f55555fcc909fe95a157d5c9902c8a58.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_045_genestas_bed_chamber/caption_1_2843805725/caption_1.txt b/asset-work/kq4_045_genestas_bed_chamber/caption_1_2843805725/caption_1.txt deleted file mode 100644 index b98d708..0000000 --- a/asset-work/kq4_045_genestas_bed_chamber/caption_1_2843805725/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A majestic high-angle view of an enchanted bed chamber within a fairy queen's tower. The foreground reveals smooth polished floor tiles in deep sapphire and amethyst tones, reflecting soft ambient light from unseen sources. Dominating the center, an extraordinary bed shaped like an enormous seashell commands attention, its spiraled form draped with translucent silvery-blue canopy fabric that cascades from an unseen ceiling point. Coral-pink bedposts rise like living branches, adorned with lush green potted plants whose leaves spill outward in verdant profusion. Behind the bed, a tall arched window frames a glimpse of distant cerulean ocean, its panes filtering ethereal blue light that suffuses the room. The walls are constructed of massive cut stones painted in mystical turquoise and teal hues, suggesting ancient magical masonry. Wide steps in the foreground lead downward into shadow, implying this chamber sits elevated within the tower. The palette harmonizes cool ocean blues, warm coral accents, and touches of gold from candlelight, all bathed in serene twilight atmosphere. diff --git a/asset-work/kq4_045_genestas_bed_chamber/caption_1_2843805725/generated.png b/asset-work/kq4_045_genestas_bed_chamber/caption_1_2843805725_generated.png similarity index 100% rename from asset-work/kq4_045_genestas_bed_chamber/caption_1_2843805725/generated.png rename to asset-work/kq4_045_genestas_bed_chamber/caption_1_2843805725_generated.png diff --git a/asset-work/kq4_045_genestas_bed_chamber/caption_1_2843805725_generated.png.import b/asset-work/kq4_045_genestas_bed_chamber/caption_1_2843805725_generated.png.import new file mode 100644 index 0000000..7fad05f --- /dev/null +++ b/asset-work/kq4_045_genestas_bed_chamber/caption_1_2843805725_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bn201xpt8ala8" +path="res://.godot/imported/caption_1_2843805725_generated.png-ab53c345cf92e4a7b1d45f2399800001.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_045_genestas_bed_chamber/caption_1_2843805725_generated.png" +dest_files=["res://.godot/imported/caption_1_2843805725_generated.png-ab53c345cf92e4a7b1d45f2399800001.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_045_genestas_bed_chamber/caption_2_1773815382/caption_2.txt b/asset-work/kq4_045_genestas_bed_chamber/caption_2_1773815382/caption_2.txt deleted file mode 100644 index 735bd28..0000000 --- a/asset-work/kq4_045_genestas_bed_chamber/caption_2_1773815382/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. An elevated perspective reveals an opulent bed chamber of serene beauty, nestled within stone walls of weathered turquoise and sea-green masonry. The immediate foreground shows broad steps carpeted in deep indigo, descending into mystery, their edges catching golden candlelight. At the chamber's heart rests a magnificent bed carved from an enormous pearlescent seashell, its swirling form draped with gossamer curtains of pale aqua that billow softly in imagined breeze. Flanking this centerpiece, ornate planters in rose-gold tones burst with tropical greenery, their leaves painted with thick impasto texture. Above and behind, a grand Gothic window reveals a shimmering seascape vista, its leaded panes creating geometric patterns of light on the floor. The walls curve slightly, suggesting a circular tower room, their stone blocks displaying varied shades of teal and aquamarine. Delicate candle sconces provide warm amber accents against the cool color scheme. The overall mood conveys tranquil mysticism, with rich jewel tones of sapphire, turquoise, and coral creating a harmonious sanctuary suspended between sea and sky. diff --git a/asset-work/kq4_045_genestas_bed_chamber/caption_2_1773815382/generated.png b/asset-work/kq4_045_genestas_bed_chamber/caption_2_1773815382_generated.png similarity index 100% rename from asset-work/kq4_045_genestas_bed_chamber/caption_2_1773815382/generated.png rename to asset-work/kq4_045_genestas_bed_chamber/caption_2_1773815382_generated.png diff --git a/asset-work/kq4_045_genestas_bed_chamber/caption_2_1773815382_generated.png.import b/asset-work/kq4_045_genestas_bed_chamber/caption_2_1773815382_generated.png.import new file mode 100644 index 0000000..545880a --- /dev/null +++ b/asset-work/kq4_045_genestas_bed_chamber/caption_2_1773815382_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d0w5l8w4y6pdf" +path="res://.godot/imported/caption_2_1773815382_generated.png-dcf6b01c0566dfebcbdad79e9c7083c5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_045_genestas_bed_chamber/caption_2_1773815382_generated.png" +dest_files=["res://.godot/imported/caption_2_1773815382_generated.png-dcf6b01c0566dfebcbdad79e9c7083c5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_045_genestas_bed_chamber/caption_3_1962764359/caption_3.txt b/asset-work/kq4_045_genestas_bed_chamber/caption_3_1962764359/caption_3.txt deleted file mode 100644 index 0d2b51d..0000000 --- a/asset-work/kq4_045_genestas_bed_chamber/caption_3_1962764359/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A bird's-eye view captures an ethereal bed chamber suspended high in a fairy-tale tower, bathed in otherworldly radiance. The foreground presents plush carpeted steps in midnight blue, their velvet texture rendered with swirling brushstrokes as they lead away from the viewer. Central to the composition sits a fantastical shell-shaped bed, its spiraling form reminiscent of a giant nautilus, crowned by flowing draperies in pale turquoise that pool like water around coral-hued bedposts. Lush flowering plants in ornate red planters flank the bed, their emerald foliage contrasting vibrantly against the cool surroundings. A magnificent stained window dominates the rear wall, its pointed arch framing a view of endless azure ocean beyond, light streaming through in shafts of sapphire and silver. The surrounding walls display masterful stonework in varying shades of aquamarine and teal, suggesting centuries of magical habitation. Hints of golden candlelight flicker from wall sconces, casting dancing shadows across the textured surfaces. The color palette weaves together oceanic blues, warm corals, and touches of verdant green, all unified by soft, dreamlike illumination that transforms this chamber into a painterly vision of enchanted serenity. diff --git a/asset-work/kq4_045_genestas_bed_chamber/caption_3_1962764359/generated.png b/asset-work/kq4_045_genestas_bed_chamber/caption_3_1962764359_generated.png similarity index 100% rename from asset-work/kq4_045_genestas_bed_chamber/caption_3_1962764359/generated.png rename to asset-work/kq4_045_genestas_bed_chamber/caption_3_1962764359_generated.png diff --git a/asset-work/kq4_045_genestas_bed_chamber/caption_3_1962764359_generated.png.import b/asset-work/kq4_045_genestas_bed_chamber/caption_3_1962764359_generated.png.import new file mode 100644 index 0000000..2124d5e --- /dev/null +++ b/asset-work/kq4_045_genestas_bed_chamber/caption_3_1962764359_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c8k6dtubsronl" +path="res://.godot/imported/caption_3_1962764359_generated.png-71c46b11fa721506f86e1d882f1387ad.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_045_genestas_bed_chamber/caption_3_1962764359_generated.png" +dest_files=["res://.godot/imported/caption_3_1962764359_generated.png-71c46b11fa721506f86e1d882f1387ad.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_046_tower_stairway/caption_1_2419261563/caption_1.txt b/asset-work/kq4_046_tower_stairway/caption_1_2419261563/caption_1.txt deleted file mode 100644 index e2b6589..0000000 --- a/asset-work/kq4_046_tower_stairway/caption_1_2419261563/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A magnificent tower stairway viewed from an elevated perspective, revealing the architectural grandeur of an ivory palace interior. The composition centers on a sweeping staircase that curves upward through multiple levels, its steps carpeted in rich royal purple that contrasts elegantly with the pale cream-colored stone walls. Golden railings with intricate scrollwork line the stair edges, catching shafts of warm light filtering through arched windows. In the foreground, massive terracotta urns overflow with lush flowering vines, their verdant tendrils cascading down the stone landings and adding organic softness to the geometric precision of the architecture. The walls display subtle texture variations suggesting aged masonry, while distant windows reveal glimpses of cerulean sky beyond. Light creates dramatic shadows in the stairwell's depths, emphasizing the vertical journey through the tower. The color palette harmonizes warm ivory and gold tones with deep purples and vibrant greens, creating a sense of regal elegance and timeless beauty. Atmospheric perspective softens the upper reaches of the stairway, suggesting its impressive height and architectural complexity. diff --git a/asset-work/kq4_046_tower_stairway/caption_1_2419261563/generated.png b/asset-work/kq4_046_tower_stairway/caption_1_2419261563_generated.png similarity index 100% rename from asset-work/kq4_046_tower_stairway/caption_1_2419261563/generated.png rename to asset-work/kq4_046_tower_stairway/caption_1_2419261563_generated.png diff --git a/asset-work/kq4_046_tower_stairway/caption_1_2419261563_generated.png.import b/asset-work/kq4_046_tower_stairway/caption_1_2419261563_generated.png.import new file mode 100644 index 0000000..112dfe1 --- /dev/null +++ b/asset-work/kq4_046_tower_stairway/caption_1_2419261563_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bak14eb08x1sf" +path="res://.godot/imported/caption_1_2419261563_generated.png-4e5ab8b56aefab8f603dd893adbfd564.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_046_tower_stairway/caption_1_2419261563_generated.png" +dest_files=["res://.godot/imported/caption_1_2419261563_generated.png-4e5ab8b56aefab8f603dd893adbfd564.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_046_tower_stairway/caption_2_656002988/caption_2.txt b/asset-work/kq4_046_tower_stairway/caption_2_656002988/caption_2.txt deleted file mode 100644 index 3fb9a02..0000000 --- a/asset-work/kq4_046_tower_stairway/caption_2_656002988/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. An interior tower vista captured from a high vantage point, showcasing the dramatic verticality of a grand palace stairwell. Foreground details reveal weathered stone walls in warm ivory hues, their surfaces displaying the gentle patina of age and craftsmanship. A magnificent staircase spirals upward, its treads covered in luxurious deep magenta carpeting that creates a striking ribbon of color winding through the composition. Ornate golden balustrades catch the light, their metallic gleam providing luminous accents against the neutral stone. Large ceramic planters positioned on intermediate landings burst with trailing green foliage and delicate blossoms, introducing natural elements to the architectural space. Through tall arched openings, soft natural light streams in, illuminating dust motes in the air and casting elongated shadows that emphasize the stairway's depth. Background reveals multiple levels receding into atmospheric haze, with tapestries suggested on distant walls. The palette balances cool stone grays against warm golds, deep jewel-toned carpets, and fresh botanical greens, all unified under a diffused luminous atmosphere that suggests enchanted interior spaces. diff --git a/asset-work/kq4_046_tower_stairway/caption_2_656002988/generated.png b/asset-work/kq4_046_tower_stairway/caption_2_656002988_generated.png similarity index 100% rename from asset-work/kq4_046_tower_stairway/caption_2_656002988/generated.png rename to asset-work/kq4_046_tower_stairway/caption_2_656002988_generated.png diff --git a/asset-work/kq4_046_tower_stairway/caption_2_656002988_generated.png.import b/asset-work/kq4_046_tower_stairway/caption_2_656002988_generated.png.import new file mode 100644 index 0000000..77cff0c --- /dev/null +++ b/asset-work/kq4_046_tower_stairway/caption_2_656002988_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://oixfjig2i483" +path="res://.godot/imported/caption_2_656002988_generated.png-6a3595f0d9e3397c0b7b94157fa21ed5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_046_tower_stairway/caption_2_656002988_generated.png" +dest_files=["res://.godot/imported/caption_2_656002988_generated.png-6a3595f0d9e3397c0b7b94157fa21ed5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_046_tower_stairway/caption_3_3297492079/caption_3.txt b/asset-work/kq4_046_tower_stairway/caption_3_3297492079/caption_3.txt deleted file mode 100644 index c40b827..0000000 --- a/asset-work/kq4_046_tower_stairway/caption_3_3297492079/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A breathtaking vertical composition of an ivory palace tower's interior stairwell, rendered from an elevated bird's-eye perspective that emphasizes the architectural drama. The eye travels along a sweeping staircase that ascends through multiple floors, each step adorned with plush purple runner carpets that cascade like royal banners down the structure. Hand-forged golden railings with elegant curves provide safety while contributing decorative splendor, their surfaces gleaming where touched by light. Strategic landings feature imposing red earthenware vessels containing exuberant flowering plants, their emerald leaves spilling over container edges and trailing down stone surfaces in painterly brushstrokes. The walls exhibit subtle variations in ivory and cream tones, suggesting fine masonry and the soft accumulation of time. Window openings at various levels admit gentle illumination that models the architectural forms and creates rhythmic patterns of light and shadow. In the distance, upper levels dissolve into misty atmospheric perspective, suggesting the tower's impressive scale. The harmonious palette of warm neutrals, regal purples, burnished golds, and vibrant greens evokes a sense of magical elegance and timeless fairytale architecture. diff --git a/asset-work/kq4_046_tower_stairway/caption_3_3297492079/generated.png b/asset-work/kq4_046_tower_stairway/caption_3_3297492079_generated.png similarity index 100% rename from asset-work/kq4_046_tower_stairway/caption_3_3297492079/generated.png rename to asset-work/kq4_046_tower_stairway/caption_3_3297492079_generated.png diff --git a/asset-work/kq4_046_tower_stairway/caption_3_3297492079_generated.png.import b/asset-work/kq4_046_tower_stairway/caption_3_3297492079_generated.png.import new file mode 100644 index 0000000..1ae3d60 --- /dev/null +++ b/asset-work/kq4_046_tower_stairway/caption_3_3297492079_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bkvuepmoomplf" +path="res://.godot/imported/caption_3_3297492079_generated.png-992d18557da9610957f608b09ca83e0e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_046_tower_stairway/caption_3_3297492079_generated.png" +dest_files=["res://.godot/imported/caption_3_3297492079_generated.png-992d18557da9610957f608b09ca83e0e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_047_genestas_palace_entry_hall/caption_1_623407014/caption_1.txt b/asset-work/kq4_047_genestas_palace_entry_hall/caption_1_623407014/caption_1.txt deleted file mode 100644 index afdb370..0000000 --- a/asset-work/kq4_047_genestas_palace_entry_hall/caption_1_623407014/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A grand palace entry hall viewed from above, bathed in ethereal light filtering through crystalline skylights overhead. The foreground reveals richly patterned floor tiles in deep amethyst and plum tones, their polished surfaces reflecting ambient luminescence. Massive terracotta urns flank the central passage, each containing lush weeping willows whose trailing branches cascade downward like verdant waterfalls, their leaves rendered in strokes of jade and emerald. Three grand archways pierce the turquoise-tiled wall beyond, their dark openings suggesting mysteries within. The central arch, framed by ornate stone moldings, serves as the focal point, while flanking passages hint at labyrinthine wings extending into shadow. The background dissolves into soft atmospheric haze where climbing vines and flowering creepers embrace the upper architecture, their blossoms adding touches of ivory and pale gold. The palette harmonizes cool cerulean wall tones with warm terracotta accents and the deep jewel tones of the floor, all unified by diffused, magical light that seems to emanate from the very air itself. diff --git a/asset-work/kq4_047_genestas_palace_entry_hall/caption_1_623407014/generated.png b/asset-work/kq4_047_genestas_palace_entry_hall/caption_1_623407014_generated.png similarity index 100% rename from asset-work/kq4_047_genestas_palace_entry_hall/caption_1_623407014/generated.png rename to asset-work/kq4_047_genestas_palace_entry_hall/caption_1_623407014_generated.png diff --git a/asset-work/kq4_047_genestas_palace_entry_hall/caption_1_623407014_generated.png.import b/asset-work/kq4_047_genestas_palace_entry_hall/caption_1_623407014_generated.png.import new file mode 100644 index 0000000..0d746b5 --- /dev/null +++ b/asset-work/kq4_047_genestas_palace_entry_hall/caption_1_623407014_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d2vpkforckvqu" +path="res://.godot/imported/caption_1_623407014_generated.png-eefcc8d944a3a5453f2d8df5486569ab.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_047_genestas_palace_entry_hall/caption_1_623407014_generated.png" +dest_files=["res://.godot/imported/caption_1_623407014_generated.png-eefcc8d944a3a5453f2d8df5486569ab.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_047_genestas_palace_entry_hall/caption_2_1783053294/caption_2.txt b/asset-work/kq4_047_genestas_palace_entry_hall/caption_2_1783053294/caption_2.txt deleted file mode 100644 index cf9c5f5..0000000 --- a/asset-work/kq4_047_genestas_palace_entry_hall/caption_2_1783053294/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. An opulent palace antechamber captured from an elevated perspective, showcasing the interplay between cultivated nature and regal architecture. The immediate foreground displays intricate parquet flooring in swirling patterns of burgundy and midnight blue, each tile catching prismatic light from unseen sources above. Twin monumental planters of burnished copper command attention, their surfaces oxidized to rich patina greens and russets, each nurturing mature trees with gnarled trunks and abundant foliage that creates a canopy effect overhead. Three arched doorways punctuate the far wall, their turquoise tilework gleaming with subtle iridescence, the central portal grandest of all with its elaborate stone surround. Vines and flowering plants spill from architectural niches in the background, softening the transition between structure and nature. The middle ground reveals subtle shadows cast by the overarching vegetation, creating dappled patterns across the floor. The color scheme balances the cool aquamarine of walls against warm metallic urn tones and the organic greens of thriving plant life, all suffused with a soft, otherworldly glow suggesting enchantment. diff --git a/asset-work/kq4_047_genestas_palace_entry_hall/caption_2_1783053294/generated.png b/asset-work/kq4_047_genestas_palace_entry_hall/caption_2_1783053294_generated.png similarity index 100% rename from asset-work/kq4_047_genestas_palace_entry_hall/caption_2_1783053294/generated.png rename to asset-work/kq4_047_genestas_palace_entry_hall/caption_2_1783053294_generated.png diff --git a/asset-work/kq4_047_genestas_palace_entry_hall/caption_2_1783053294_generated.png.import b/asset-work/kq4_047_genestas_palace_entry_hall/caption_2_1783053294_generated.png.import new file mode 100644 index 0000000..77a0c54 --- /dev/null +++ b/asset-work/kq4_047_genestas_palace_entry_hall/caption_2_1783053294_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c54hssa7beayr" +path="res://.godot/imported/caption_2_1783053294_generated.png-765ab67a901ad7f8dbd6dd5ce1dbb1ff.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_047_genestas_palace_entry_hall/caption_2_1783053294_generated.png" +dest_files=["res://.godot/imported/caption_2_1783053294_generated.png-765ab67a901ad7f8dbd6dd5ce1dbb1ff.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_047_genestas_palace_entry_hall/caption_3_1924303112/caption_3.txt b/asset-work/kq4_047_genestas_palace_entry_hall/caption_3_1924303112/caption_3.txt deleted file mode 100644 index d403208..0000000 --- a/asset-work/kq4_047_genestas_palace_entry_hall/caption_3_1924303112/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A magnificent palace entry viewed from above, where nature and architecture merge in harmonious splendor. The foreground presents tessellated floor tiles in deep violet and mulberry hues, their glossy surfaces creating subtle reflections of the verdant canopy overhead. Two imposing ceramic vessels anchor the composition, their rounded forms glazed in warm sienna and ochre tones, each cradling mature weeping trees whose pendulous branches sweep downward in graceful arcs of spring green and olive. Beyond, three stately archways pierce a wall of turquoise mosaic tiles, their dark interiors suggesting depths yet unexplored, with the central archway crowned by elegant stone tracery. The background reveals an abundance of climbing vegetation embracing the upper reaches, leaves rendered in layered strokes from lime to forest green, interspersed with delicate white blossoms. Soft illumination filters through the overhead foliage, casting gentle shadows and creating pools of light across the patterned floor. The palette unifies cool architectural blues with earthy vessel tones and living greens, bathed in diffuse, magical radiance that transforms the space into a realm between the natural and the fantastical. diff --git a/asset-work/kq4_047_genestas_palace_entry_hall/caption_3_1924303112/generated.png b/asset-work/kq4_047_genestas_palace_entry_hall/caption_3_1924303112_generated.png similarity index 100% rename from asset-work/kq4_047_genestas_palace_entry_hall/caption_3_1924303112/generated.png rename to asset-work/kq4_047_genestas_palace_entry_hall/caption_3_1924303112_generated.png diff --git a/asset-work/kq4_047_genestas_palace_entry_hall/caption_3_1924303112_generated.png.import b/asset-work/kq4_047_genestas_palace_entry_hall/caption_3_1924303112_generated.png.import new file mode 100644 index 0000000..4b9f856 --- /dev/null +++ b/asset-work/kq4_047_genestas_palace_entry_hall/caption_3_1924303112_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bjvn6arhdyemy" +path="res://.godot/imported/caption_3_1924303112_generated.png-ebaf3c8fd0f672ca89bde4f0c7ce5e2c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_047_genestas_palace_entry_hall/caption_3_1924303112_generated.png" +dest_files=["res://.godot/imported/caption_3_1924303112_generated.png-ebaf3c8fd0f672ca89bde4f0c7ce5e2c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_048_ogres_bedroom/caption_1_2832340042/caption_1.txt b/asset-work/kq4_048_ogres_bedroom/caption_1_2832340042/caption_1.txt deleted file mode 100644 index 017686c..0000000 --- a/asset-work/kq4_048_ogres_bedroom/caption_1_2832340042/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A dramatic high-angle view of a rustic chamber carved from rough-hewn stone and aged timber. In the immediate foreground, weathered wooden planks show deep grain patterns and subtle wear marks, while a dark bearskin rug sprawls across the floor, its fur rendered in thick impasto strokes of umber and sable. The middle ground is dominated by an enormous bed draped in rich emerald bedding that cascades over the sides in velvet folds. Heavy crimson curtains frame two tall windows set into the rugged stone wall behind, their fabric painted with lush, dramatic folds that catch warm amber light filtering through the glass. To the left, a sturdy wooden door with iron fittings stands closed, its surface showing years of use. On the right, a substantial wooden dresser with brass pulls sits beneath an oval mirror that reflects the room's muted interior light. An axe leans against the wall nearby, its wooden handle and steel head painted with realistic texture. The palette harmonizes deep forest greens, warm russet reds, and weathered wood tones under soft, directional light streaming through the curtained windows. diff --git a/asset-work/kq4_048_ogres_bedroom/caption_1_2832340042/generated.png b/asset-work/kq4_048_ogres_bedroom/caption_1_2832340042_generated.png similarity index 100% rename from asset-work/kq4_048_ogres_bedroom/caption_1_2832340042/generated.png rename to asset-work/kq4_048_ogres_bedroom/caption_1_2832340042_generated.png diff --git a/asset-work/kq4_048_ogres_bedroom/caption_1_2832340042_generated.png.import b/asset-work/kq4_048_ogres_bedroom/caption_1_2832340042_generated.png.import new file mode 100644 index 0000000..797c0f9 --- /dev/null +++ b/asset-work/kq4_048_ogres_bedroom/caption_1_2832340042_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bbgahtganrj75" +path="res://.godot/imported/caption_1_2832340042_generated.png-4810e1bf1adb368c5d5b9587196b2542.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_048_ogres_bedroom/caption_1_2832340042_generated.png" +dest_files=["res://.godot/imported/caption_1_2832340042_generated.png-4810e1bf1adb368c5d5b9587196b2542.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_048_ogres_bedroom/caption_2_323955017/caption_2.txt b/asset-work/kq4_048_ogres_bedroom/caption_2_323955017/caption_2.txt deleted file mode 100644 index b553287..0000000 --- a/asset-work/kq4_048_ogres_bedroom/caption_2_323955017/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. An elevated perspective reveals an intimate rustic bedroom with formidable stone walls rising on three sides. The foreground displays aged wooden floorboards in warm honey tones, their surfaces catching shafts of afternoon light that stream through tall windows. A luxurious bearskin rug lies near the massive bed, its dark fur rendered with tactile brushwork suggesting softness and weight. The central bed commands attention with voluminous green bedding piled high in mounded strokes of emerald and sage, creating a nest-like sanctuary against the cold stone. Two imposing windows punctuate the back wall, their crimson drapes drawn back to reveal forest views beyond, the fabric painted with heavy, theatrical folds. To the left, a paneled wooden door with substantial iron hardware suggests security and privacy. The right wall features a polished wooden dresser topped with simple objects, while an oval mirror catches and scatters light across the stone surfaces. An axe rests against the wall, its presence a subtle narrative element. The composition balances rough-hewn stone grays and browns against the rich jewel tones of textiles, illuminated by natural light that creates dramatic shadow patterns across the interior. diff --git a/asset-work/kq4_048_ogres_bedroom/caption_2_323955017/generated.png b/asset-work/kq4_048_ogres_bedroom/caption_2_323955017_generated.png similarity index 100% rename from asset-work/kq4_048_ogres_bedroom/caption_2_323955017/generated.png rename to asset-work/kq4_048_ogres_bedroom/caption_2_323955017_generated.png diff --git a/asset-work/kq4_048_ogres_bedroom/caption_2_323955017_generated.png.import b/asset-work/kq4_048_ogres_bedroom/caption_2_323955017_generated.png.import new file mode 100644 index 0000000..9d854fd --- /dev/null +++ b/asset-work/kq4_048_ogres_bedroom/caption_2_323955017_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dkdyx03l65hu2" +path="res://.godot/imported/caption_2_323955017_generated.png-4414769047b1c2f53e86183979ca8329.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_048_ogres_bedroom/caption_2_323955017_generated.png" +dest_files=["res://.godot/imported/caption_2_323955017_generated.png-4414769047b1c2f53e86183979ca8329.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_048_ogres_bedroom/caption_3_2523619118/caption_3.txt b/asset-work/kq4_048_ogres_bedroom/caption_3_2523619118/caption_3.txt deleted file mode 100644 index b98416d..0000000 --- a/asset-work/kq4_048_ogres_bedroom/caption_3_2523619118/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A commanding bird's-eye view of a formidable stone chamber transformed into sleeping quarters through the addition of massive wooden furnishings. The immediate foreground reveals planked flooring in warm ochre and burnt sienna, the wood grain suggested through directional brushstrokes that lead the eye toward the room's center. A dark fur rug anchors the space before an immense bed, its emerald coverings painted with thick, luxurious impasto that suggests weight and comfort against the austere stone surroundings. The back wall features rough masonry in layered grays, punctuated by two tall windows dressed in sweeping crimson curtains that pool slightly at the floor, their color providing striking contrast to the neutral stone. Soft light filters through these windows, creating atmospheric depth and illuminating dust motes in golden shafts. To the left, a heavy wooden door with dark metal studs offers the only exit. The right side of the chamber holds a substantial dresser with carved details and an oval mirror that captures fragmented reflections of the room. An axe leans casually against the wall, its utilitarian form rendered with careful attention to material textures. The overall palette combines earthy stone tones, warm wood hues, and rich textile colors under diffused natural lighting that emphasizes the room's cavernous yet cozy character. diff --git a/asset-work/kq4_048_ogres_bedroom/caption_3_2523619118/caption_3_2121903926/caption_3.txt b/asset-work/kq4_048_ogres_bedroom/caption_3_2523619118/caption_3_2121903926/caption_3.txt deleted file mode 100644 index b98416d..0000000 --- a/asset-work/kq4_048_ogres_bedroom/caption_3_2523619118/caption_3_2121903926/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A commanding bird's-eye view of a formidable stone chamber transformed into sleeping quarters through the addition of massive wooden furnishings. The immediate foreground reveals planked flooring in warm ochre and burnt sienna, the wood grain suggested through directional brushstrokes that lead the eye toward the room's center. A dark fur rug anchors the space before an immense bed, its emerald coverings painted with thick, luxurious impasto that suggests weight and comfort against the austere stone surroundings. The back wall features rough masonry in layered grays, punctuated by two tall windows dressed in sweeping crimson curtains that pool slightly at the floor, their color providing striking contrast to the neutral stone. Soft light filters through these windows, creating atmospheric depth and illuminating dust motes in golden shafts. To the left, a heavy wooden door with dark metal studs offers the only exit. The right side of the chamber holds a substantial dresser with carved details and an oval mirror that captures fragmented reflections of the room. An axe leans casually against the wall, its utilitarian form rendered with careful attention to material textures. The overall palette combines earthy stone tones, warm wood hues, and rich textile colors under diffused natural lighting that emphasizes the room's cavernous yet cozy character. diff --git a/asset-work/kq4_048_ogres_bedroom/caption_3_2523619118/caption_3_2121903926/generated.png b/asset-work/kq4_048_ogres_bedroom/caption_3_2523619118/caption_3_2121903926/generated.png deleted file mode 100644 index 7efc929..0000000 --- a/asset-work/kq4_048_ogres_bedroom/caption_3_2523619118/caption_3_2121903926/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:23ca19a4bccfa7acd2a2283ca45a8d34a7a045c1073abb97a3958ff8d89b9681 -size 4149291 diff --git a/asset-work/kq4_048_ogres_bedroom/caption_3_2523619118/generated.png b/asset-work/kq4_048_ogres_bedroom/caption_3_2523619118_generated.png similarity index 100% rename from asset-work/kq4_048_ogres_bedroom/caption_3_2523619118/generated.png rename to asset-work/kq4_048_ogres_bedroom/caption_3_2523619118_generated.png diff --git a/asset-work/kq4_048_ogres_bedroom/caption_3_2523619118_generated.png.import b/asset-work/kq4_048_ogres_bedroom/caption_3_2523619118_generated.png.import new file mode 100644 index 0000000..3221df1 --- /dev/null +++ b/asset-work/kq4_048_ogres_bedroom/caption_3_2523619118_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cifmr12kd5bvq" +path="res://.godot/imported/caption_3_2523619118_generated.png-ef08a864d100fa7e4532610cd655b5d1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_048_ogres_bedroom/caption_3_2523619118_generated.png" +dest_files=["res://.godot/imported/caption_3_2523619118_generated.png-ef08a864d100fa7e4532610cd655b5d1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_049_ogres_cottage/caption_1_3716549416/caption_1.txt b/asset-work/kq4_049_ogres_cottage/caption_1_3716549416/caption_1.txt deleted file mode 100644 index dd475a3..0000000 --- a/asset-work/kq4_049_ogres_cottage/caption_1_3716549416/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A rustic cottage interior viewed from elevated perspective, revealing the rough-hewn character of a forest dweller's abode. The foreground displays weathered wooden floorboards, their grain patterns catching warm amber light filtering through unseen windows. Heavy stone walls rise on the left, their irregular surfaces built from roughly fitted gray boulders mortared together, creating textural depth through chiaroscuro shadows. In the middle ground, sturdy wooden furniture dominates the space—a substantial table and benches crafted from thick timber, their surfaces worn smooth by years of use. A worn rug in muted earth tones covers part of the floor, its fibers suggesting heavy foot traffic. To the right, a wooden staircase ascends into shadow, its steps showing the patina of countless journeys upward. A dark closet doorway beneath the stairs creates mysterious depth, while another doorway to the right suggests additional chambers beyond. The background reveals more stone construction and dim openings leading to other parts of the dwelling. The palette harmonizes warm honeyed wood tones with cool gray stones and deep shadows, illuminated by soft directional light that suggests late afternoon sun filtering through window openings. diff --git a/asset-work/kq4_049_ogres_cottage/caption_1_3716549416/caption_1_404721864/caption_1.txt b/asset-work/kq4_049_ogres_cottage/caption_1_3716549416/caption_1_404721864/caption_1.txt deleted file mode 100644 index dd475a3..0000000 --- a/asset-work/kq4_049_ogres_cottage/caption_1_3716549416/caption_1_404721864/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A rustic cottage interior viewed from elevated perspective, revealing the rough-hewn character of a forest dweller's abode. The foreground displays weathered wooden floorboards, their grain patterns catching warm amber light filtering through unseen windows. Heavy stone walls rise on the left, their irregular surfaces built from roughly fitted gray boulders mortared together, creating textural depth through chiaroscuro shadows. In the middle ground, sturdy wooden furniture dominates the space—a substantial table and benches crafted from thick timber, their surfaces worn smooth by years of use. A worn rug in muted earth tones covers part of the floor, its fibers suggesting heavy foot traffic. To the right, a wooden staircase ascends into shadow, its steps showing the patina of countless journeys upward. A dark closet doorway beneath the stairs creates mysterious depth, while another doorway to the right suggests additional chambers beyond. The background reveals more stone construction and dim openings leading to other parts of the dwelling. The palette harmonizes warm honeyed wood tones with cool gray stones and deep shadows, illuminated by soft directional light that suggests late afternoon sun filtering through window openings. diff --git a/asset-work/kq4_049_ogres_cottage/caption_1_3716549416/caption_1_404721864/generated.png b/asset-work/kq4_049_ogres_cottage/caption_1_3716549416/caption_1_404721864/generated.png deleted file mode 100644 index 1d7c511..0000000 --- a/asset-work/kq4_049_ogres_cottage/caption_1_3716549416/caption_1_404721864/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2e7627d773e83a19e85d0b28586eb77058e36b0c4afc7d80bfeb90e1c36c1713 -size 4280820 diff --git a/asset-work/kq4_049_ogres_cottage/caption_1_3716549416/generated.png b/asset-work/kq4_049_ogres_cottage/caption_1_3716549416_generated.png similarity index 100% rename from asset-work/kq4_049_ogres_cottage/caption_1_3716549416/generated.png rename to asset-work/kq4_049_ogres_cottage/caption_1_3716549416_generated.png diff --git a/asset-work/kq4_049_ogres_cottage/caption_1_3716549416_generated.png.import b/asset-work/kq4_049_ogres_cottage/caption_1_3716549416_generated.png.import new file mode 100644 index 0000000..be79de2 --- /dev/null +++ b/asset-work/kq4_049_ogres_cottage/caption_1_3716549416_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d1858htr4f1os" +path="res://.godot/imported/caption_1_3716549416_generated.png-d4e44145b2eadbb6ebc2234f057ea5a5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_049_ogres_cottage/caption_1_3716549416_generated.png" +dest_files=["res://.godot/imported/caption_1_3716549416_generated.png-d4e44145b2eadbb6ebc2234f057ea5a5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_049_ogres_cottage/caption_2_2384190098/caption_2.txt b/asset-work/kq4_049_ogres_cottage/caption_2_2384190098/caption_2.txt deleted file mode 100644 index 8a6cf10..0000000 --- a/asset-work/kq4_049_ogres_cottage/caption_2_2384190098/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A humble dwelling's interior rendered from bird's-eye view, capturing the raw simplicity of rural architecture. Foreground details reveal earthen-toned flooring with scattered straw and coarse fiber textures, suggesting practical living. The left wall presents an impressive stone construction, each boulder painted with individual character—mossy patches, weathered surfaces, and deep crevices catching pockets of shadow. Massive wooden support beams frame openings, their dark timber contrasting against the lighter stone. Centered in the composition, heavy wooden furniture anchors the room—a broad table and seating that speak to functional design over ornament. A faded rug in ochre and brown hues partially covers the floor, its edges frayed with age. The right side features an ascending staircase, its wooden steps disappearing into the upper darkness, while beneath it, a mysterious closet opening hints at secrets stored within. Multiple doorways pierce the walls, creating spatial depth and suggesting the cottage's larger footprint. Light enters from unseen sources, casting angular shadows across the stone and wood, while the color palette emphasizes natural materials: slate grays, weathered browns, honeyed ambers, and deep umbers that create an atmosphere of primitive coziness tinged with unease. diff --git a/asset-work/kq4_049_ogres_cottage/caption_2_2384190098/caption_2_3292468635/caption_2.txt b/asset-work/kq4_049_ogres_cottage/caption_2_2384190098/caption_2_3292468635/caption_2.txt deleted file mode 100644 index 8a6cf10..0000000 --- a/asset-work/kq4_049_ogres_cottage/caption_2_2384190098/caption_2_3292468635/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A humble dwelling's interior rendered from bird's-eye view, capturing the raw simplicity of rural architecture. Foreground details reveal earthen-toned flooring with scattered straw and coarse fiber textures, suggesting practical living. The left wall presents an impressive stone construction, each boulder painted with individual character—mossy patches, weathered surfaces, and deep crevices catching pockets of shadow. Massive wooden support beams frame openings, their dark timber contrasting against the lighter stone. Centered in the composition, heavy wooden furniture anchors the room—a broad table and seating that speak to functional design over ornament. A faded rug in ochre and brown hues partially covers the floor, its edges frayed with age. The right side features an ascending staircase, its wooden steps disappearing into the upper darkness, while beneath it, a mysterious closet opening hints at secrets stored within. Multiple doorways pierce the walls, creating spatial depth and suggesting the cottage's larger footprint. Light enters from unseen sources, casting angular shadows across the stone and wood, while the color palette emphasizes natural materials: slate grays, weathered browns, honeyed ambers, and deep umbers that create an atmosphere of primitive coziness tinged with unease. diff --git a/asset-work/kq4_049_ogres_cottage/caption_2_2384190098/caption_2_3292468635/generated.png b/asset-work/kq4_049_ogres_cottage/caption_2_2384190098/caption_2_3292468635/generated.png deleted file mode 100644 index 3796f9c..0000000 --- a/asset-work/kq4_049_ogres_cottage/caption_2_2384190098/caption_2_3292468635/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3fc8643891d4758de3e755746ca3f190c2ba227c6a38ab2064f03850ebed08a1 -size 4193192 diff --git a/asset-work/kq4_049_ogres_cottage/caption_2_2384190098/generated.png b/asset-work/kq4_049_ogres_cottage/caption_2_2384190098_generated.png similarity index 100% rename from asset-work/kq4_049_ogres_cottage/caption_2_2384190098/generated.png rename to asset-work/kq4_049_ogres_cottage/caption_2_2384190098_generated.png diff --git a/asset-work/kq4_049_ogres_cottage/caption_2_2384190098_generated.png.import b/asset-work/kq4_049_ogres_cottage/caption_2_2384190098_generated.png.import new file mode 100644 index 0000000..e98dd2c --- /dev/null +++ b/asset-work/kq4_049_ogres_cottage/caption_2_2384190098_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bil7vgnvarsqw" +path="res://.godot/imported/caption_2_2384190098_generated.png-260a74f170dbe13b007abe01db9d0a10.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_049_ogres_cottage/caption_2_2384190098_generated.png" +dest_files=["res://.godot/imported/caption_2_2384190098_generated.png-260a74f170dbe13b007abe01db9d0a10.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_049_ogres_cottage/caption_3_1629730154/caption_3.txt b/asset-work/kq4_049_ogres_cottage/caption_3_1629730154/caption_3.txt deleted file mode 100644 index 75fdce8..0000000 --- a/asset-work/kq4_049_ogres_cottage/caption_3_1629730154/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. An interior scene of rough domesticity viewed from above, revealing the stark beauty of utilitarian design. The immediate foreground shows textured flooring where worn planks meet a threadbare rug, painted with visible brushstrokes suggesting coarse fabric. Dominating the left side, a formidable stone wall rises with geological weight, its surface a mosaic of irregular gray stones fitted together with rough mortar, some stones catching highlights while others recede into velvety shadow. Wooden structural elements frame the space—thick posts and lintels that support the dwelling's framework, their surfaces darkened by age and use. In the center, sturdy furniture crafted from solid timber provides gathering space, the wood's natural grain patterns rendered in warm umber and sienna tones. A stairway climbs along the right wall, its simple construction leading to unseen upper quarters, while beneath its angle, a dark storage space creates mysterious negative space. Openings in the walls suggest passages to exterior forest and adjacent rooms, their darkness contrasting with the lit interior. The lighting suggests late-day sun entering from the left, casting long shadows across floor and furniture, while the overall palette balances cool stone grays against warm wood tones and earthy floor hues, creating an atmosphere of rustic shelter with underlying tension. diff --git a/asset-work/kq4_049_ogres_cottage/caption_3_1629730154/caption_3_385963811/caption_3.txt b/asset-work/kq4_049_ogres_cottage/caption_3_1629730154/caption_3_385963811/caption_3.txt deleted file mode 100644 index 75fdce8..0000000 --- a/asset-work/kq4_049_ogres_cottage/caption_3_1629730154/caption_3_385963811/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. An interior scene of rough domesticity viewed from above, revealing the stark beauty of utilitarian design. The immediate foreground shows textured flooring where worn planks meet a threadbare rug, painted with visible brushstrokes suggesting coarse fabric. Dominating the left side, a formidable stone wall rises with geological weight, its surface a mosaic of irregular gray stones fitted together with rough mortar, some stones catching highlights while others recede into velvety shadow. Wooden structural elements frame the space—thick posts and lintels that support the dwelling's framework, their surfaces darkened by age and use. In the center, sturdy furniture crafted from solid timber provides gathering space, the wood's natural grain patterns rendered in warm umber and sienna tones. A stairway climbs along the right wall, its simple construction leading to unseen upper quarters, while beneath its angle, a dark storage space creates mysterious negative space. Openings in the walls suggest passages to exterior forest and adjacent rooms, their darkness contrasting with the lit interior. The lighting suggests late-day sun entering from the left, casting long shadows across floor and furniture, while the overall palette balances cool stone grays against warm wood tones and earthy floor hues, creating an atmosphere of rustic shelter with underlying tension. diff --git a/asset-work/kq4_049_ogres_cottage/caption_3_1629730154/caption_3_385963811/generated.png b/asset-work/kq4_049_ogres_cottage/caption_3_1629730154/caption_3_385963811/generated.png deleted file mode 100644 index 0e259c8..0000000 --- a/asset-work/kq4_049_ogres_cottage/caption_3_1629730154/caption_3_385963811/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:79fe1d90b9b6f63a8b1bf4a3c5b7706837b65d2280753e4101afe110b0bca2d3 -size 4322474 diff --git a/asset-work/kq4_049_ogres_cottage/caption_3_1629730154/generated.png b/asset-work/kq4_049_ogres_cottage/caption_3_1629730154_generated.png similarity index 100% rename from asset-work/kq4_049_ogres_cottage/caption_3_1629730154/generated.png rename to asset-work/kq4_049_ogres_cottage/caption_3_1629730154_generated.png diff --git a/asset-work/kq4_049_ogres_cottage/caption_3_1629730154_generated.png.import b/asset-work/kq4_049_ogres_cottage/caption_3_1629730154_generated.png.import new file mode 100644 index 0000000..2fe15e2 --- /dev/null +++ b/asset-work/kq4_049_ogres_cottage/caption_3_1629730154_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c4hfnxpvg40wr" +path="res://.godot/imported/caption_3_1629730154_generated.png-77df2aac781e9e10bf8af62d87fd2b1c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_049_ogres_cottage/caption_3_1629730154_generated.png" +dest_files=["res://.godot/imported/caption_3_1629730154_generated.png-77df2aac781e9e10bf8af62d87fd2b1c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_050_ogress_kitchen/caption_1_1261593218/caption_1.txt b/asset-work/kq4_050_ogress_kitchen/caption_1_1261593218/caption_1.txt deleted file mode 100644 index 9e2440e..0000000 --- a/asset-work/kq4_050_ogress_kitchen/caption_1_1261593218/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A rustic kitchen interior viewed from a high angle, revealing rough-hewn stone walls with irregular gray and brown textures that enclose the space on three sides. In the foreground, weathered wooden floor planks stretch across the room, their grain marked by years of heavy use, with subtle shadows pooling in the gaps between boards. To the right stands a substantial wooden carving table, its surface worn smooth by countless preparations, while on the left a sturdy doorway framed by thick timbers offers passage to the outside world. The middle ground centers on a cast-iron wood stove with tall black chimney pipe reaching toward the ceiling, atop which sits a large cauldron emitting wisps of steam that catch the light filtering through a window on the back wall. Through that window, a glimpse of verdant forest foliage creates a natural backdrop, the greens muted by the glass and distance. Heavy blue garments hang on hooks along the right stone wall, adding color accents against the earthy palette of grays, umbers, and deep browns. Soft natural light streams through the window, illuminating dust motes and casting warm pools of illumination across the floor while leaving corners in velvety shadow. diff --git a/asset-work/kq4_050_ogress_kitchen/caption_1_1261593218/caption_1_3591017886/caption_1.txt b/asset-work/kq4_050_ogress_kitchen/caption_1_1261593218/caption_1_3591017886/caption_1.txt deleted file mode 100644 index 9e2440e..0000000 --- a/asset-work/kq4_050_ogress_kitchen/caption_1_1261593218/caption_1_3591017886/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A rustic kitchen interior viewed from a high angle, revealing rough-hewn stone walls with irregular gray and brown textures that enclose the space on three sides. In the foreground, weathered wooden floor planks stretch across the room, their grain marked by years of heavy use, with subtle shadows pooling in the gaps between boards. To the right stands a substantial wooden carving table, its surface worn smooth by countless preparations, while on the left a sturdy doorway framed by thick timbers offers passage to the outside world. The middle ground centers on a cast-iron wood stove with tall black chimney pipe reaching toward the ceiling, atop which sits a large cauldron emitting wisps of steam that catch the light filtering through a window on the back wall. Through that window, a glimpse of verdant forest foliage creates a natural backdrop, the greens muted by the glass and distance. Heavy blue garments hang on hooks along the right stone wall, adding color accents against the earthy palette of grays, umbers, and deep browns. Soft natural light streams through the window, illuminating dust motes and casting warm pools of illumination across the floor while leaving corners in velvety shadow. diff --git a/asset-work/kq4_050_ogress_kitchen/caption_1_1261593218/caption_1_3591017886/generated.png b/asset-work/kq4_050_ogress_kitchen/caption_1_1261593218/caption_1_3591017886/generated.png deleted file mode 100644 index 88fccc4..0000000 --- a/asset-work/kq4_050_ogress_kitchen/caption_1_1261593218/caption_1_3591017886/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:be15f815952a2b9164a087bc545ea0538e41c7e009848daca5b5716752356baf -size 4168127 diff --git a/asset-work/kq4_050_ogress_kitchen/caption_1_1261593218/generated.png b/asset-work/kq4_050_ogress_kitchen/caption_1_1261593218_generated.png similarity index 100% rename from asset-work/kq4_050_ogress_kitchen/caption_1_1261593218/generated.png rename to asset-work/kq4_050_ogress_kitchen/caption_1_1261593218_generated.png diff --git a/asset-work/kq4_050_ogress_kitchen/caption_1_1261593218_generated.png.import b/asset-work/kq4_050_ogress_kitchen/caption_1_1261593218_generated.png.import new file mode 100644 index 0000000..cd40265 --- /dev/null +++ b/asset-work/kq4_050_ogress_kitchen/caption_1_1261593218_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bgstck618y270" +path="res://.godot/imported/caption_1_1261593218_generated.png-6b76676e1d4c6785fb7550d759845869.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_050_ogress_kitchen/caption_1_1261593218_generated.png" +dest_files=["res://.godot/imported/caption_1_1261593218_generated.png-6b76676e1d4c6785fb7550d759845869.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_050_ogress_kitchen/caption_2_2875909945/caption_2.txt b/asset-work/kq4_050_ogress_kitchen/caption_2_2875909945/caption_2.txt deleted file mode 100644 index 9f8c132..0000000 --- a/asset-work/kq4_050_ogress_kitchen/caption_2_2875909945/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. An elevated perspective reveals the interior of a primitive stone cottage kitchen, where massive irregular rocks form the back and side walls in layers of slate gray and mossy brown. The immediate foreground shows broad wooden floorboards extending toward the viewer, their surfaces bearing the patina of age and use, with knots and grain patterns visible in the warm light. To the left, a doorway framed by thick wooden beams opens onto darkness beyond, while wooden barrels or storage containers rest nearby, their curved forms catching highlights. The central composition features a robust iron stove with vertical chimney stack, its dark metal surfaces contrasting against the pale stone behind, surmounted by a substantial cooking pot from which faint vapor rises. A long wooden work table occupies the right side of the room, its surface scarred and seasoned, positioned against the stone wall where vivid blue fabric hangs from pegs, providing a striking color note. Behind the stove, a generous window reveals a blurred view of forest greenery, creating depth and suggesting the wilderness beyond. The lighting suggests late afternoon, with golden beams slanting through the window to create dramatic patterns of illumination and shadow across the floor and walls, while the overall palette harmonizes warm wood tones, cool stone grays, and touches of forest green. diff --git a/asset-work/kq4_050_ogress_kitchen/caption_2_2875909945/caption_2_2582341134/caption_2.txt b/asset-work/kq4_050_ogress_kitchen/caption_2_2875909945/caption_2_2582341134/caption_2.txt deleted file mode 100644 index 9f8c132..0000000 --- a/asset-work/kq4_050_ogress_kitchen/caption_2_2875909945/caption_2_2582341134/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. An elevated perspective reveals the interior of a primitive stone cottage kitchen, where massive irregular rocks form the back and side walls in layers of slate gray and mossy brown. The immediate foreground shows broad wooden floorboards extending toward the viewer, their surfaces bearing the patina of age and use, with knots and grain patterns visible in the warm light. To the left, a doorway framed by thick wooden beams opens onto darkness beyond, while wooden barrels or storage containers rest nearby, their curved forms catching highlights. The central composition features a robust iron stove with vertical chimney stack, its dark metal surfaces contrasting against the pale stone behind, surmounted by a substantial cooking pot from which faint vapor rises. A long wooden work table occupies the right side of the room, its surface scarred and seasoned, positioned against the stone wall where vivid blue fabric hangs from pegs, providing a striking color note. Behind the stove, a generous window reveals a blurred view of forest greenery, creating depth and suggesting the wilderness beyond. The lighting suggests late afternoon, with golden beams slanting through the window to create dramatic patterns of illumination and shadow across the floor and walls, while the overall palette harmonizes warm wood tones, cool stone grays, and touches of forest green. diff --git a/asset-work/kq4_050_ogress_kitchen/caption_2_2875909945/caption_2_2582341134/generated.png b/asset-work/kq4_050_ogress_kitchen/caption_2_2875909945/caption_2_2582341134/generated.png deleted file mode 100644 index bf2772d..0000000 --- a/asset-work/kq4_050_ogress_kitchen/caption_2_2875909945/caption_2_2582341134/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:68de3cd6e3be2da1dc51cf27f2518f3b79f9b014d6247fb19a10d7b2c034585e -size 3986892 diff --git a/asset-work/kq4_050_ogress_kitchen/caption_2_2875909945/generated.png b/asset-work/kq4_050_ogress_kitchen/caption_2_2875909945_generated.png similarity index 100% rename from asset-work/kq4_050_ogress_kitchen/caption_2_2875909945/generated.png rename to asset-work/kq4_050_ogress_kitchen/caption_2_2875909945_generated.png diff --git a/asset-work/kq4_050_ogress_kitchen/caption_2_2875909945_generated.png.import b/asset-work/kq4_050_ogress_kitchen/caption_2_2875909945_generated.png.import new file mode 100644 index 0000000..bb79e0f --- /dev/null +++ b/asset-work/kq4_050_ogress_kitchen/caption_2_2875909945_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://jmvo3lpakyr4" +path="res://.godot/imported/caption_2_2875909945_generated.png-e4409ab0d98b658e07f2240fa2873bbc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_050_ogress_kitchen/caption_2_2875909945_generated.png" +dest_files=["res://.godot/imported/caption_2_2875909945_generated.png-e4409ab0d98b658e07f2240fa2873bbc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_050_ogress_kitchen/caption_3_4025188291/caption_3.txt b/asset-work/kq4_050_ogress_kitchen/caption_3_4025188291/caption_3.txt deleted file mode 100644 index 717ae7a..0000000 --- a/asset-work/kq4_050_ogress_kitchen/caption_3_4025188291/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A bird's-eye view captures the intimate interior of a forest cottage kitchen, dominated by roughly coursed stone walls that enclose the space with primitive solidity. The foreground presents wide plank flooring in warm honey and amber tones, the wood grain running parallel to the picture plane, with subtle variations in color suggesting wear patterns and age. Along the left wall, a heavy timber doorframe stands open, revealing a sliver of the world outside, beside which cylindrical wooden containers add vertical interest. The middle ground composition is anchored by a substantial black cookstove with tall vertical chimney extending upward, its metallic surfaces gleaming dully in the ambient light, supporting a generous cooking vessel. To the right, a sturdy wooden table extends along the wall, its surface showing years of service, beneath a cluster of deep indigo and cobalt garments suspended from wall hooks that provide rich color against the neutral stone. The background features a broad window opening onto a verdant woodland scene, the greens soft and atmospheric through the glazing, allowing natural light to flood the space and create luminous patches on the floor while leaving the stone walls in dramatic half-shadow. The painting balances textural contrasts between rough stone, smooth wood, and soft fabric, unified by an earthy palette of umbers, siennas, and slate grays punctuated by those striking blue accents. diff --git a/asset-work/kq4_050_ogress_kitchen/caption_3_4025188291/caption_3_3760942136/caption_3.txt b/asset-work/kq4_050_ogress_kitchen/caption_3_4025188291/caption_3_3760942136/caption_3.txt deleted file mode 100644 index 717ae7a..0000000 --- a/asset-work/kq4_050_ogress_kitchen/caption_3_4025188291/caption_3_3760942136/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A bird's-eye view captures the intimate interior of a forest cottage kitchen, dominated by roughly coursed stone walls that enclose the space with primitive solidity. The foreground presents wide plank flooring in warm honey and amber tones, the wood grain running parallel to the picture plane, with subtle variations in color suggesting wear patterns and age. Along the left wall, a heavy timber doorframe stands open, revealing a sliver of the world outside, beside which cylindrical wooden containers add vertical interest. The middle ground composition is anchored by a substantial black cookstove with tall vertical chimney extending upward, its metallic surfaces gleaming dully in the ambient light, supporting a generous cooking vessel. To the right, a sturdy wooden table extends along the wall, its surface showing years of service, beneath a cluster of deep indigo and cobalt garments suspended from wall hooks that provide rich color against the neutral stone. The background features a broad window opening onto a verdant woodland scene, the greens soft and atmospheric through the glazing, allowing natural light to flood the space and create luminous patches on the floor while leaving the stone walls in dramatic half-shadow. The painting balances textural contrasts between rough stone, smooth wood, and soft fabric, unified by an earthy palette of umbers, siennas, and slate grays punctuated by those striking blue accents. diff --git a/asset-work/kq4_050_ogress_kitchen/caption_3_4025188291/caption_3_3760942136/generated.png b/asset-work/kq4_050_ogress_kitchen/caption_3_4025188291/caption_3_3760942136/generated.png deleted file mode 100644 index b11c839..0000000 --- a/asset-work/kq4_050_ogress_kitchen/caption_3_4025188291/caption_3_3760942136/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:43e68e182130683178b5ec97dba622e7deaf7654ef86e5e51e3b40ef53679e6a -size 4110381 diff --git a/asset-work/kq4_050_ogress_kitchen/caption_3_4025188291/generated.png b/asset-work/kq4_050_ogress_kitchen/caption_3_4025188291_generated.png similarity index 100% rename from asset-work/kq4_050_ogress_kitchen/caption_3_4025188291/generated.png rename to asset-work/kq4_050_ogress_kitchen/caption_3_4025188291_generated.png diff --git a/asset-work/kq4_050_ogress_kitchen/caption_3_4025188291_generated.png.import b/asset-work/kq4_050_ogress_kitchen/caption_3_4025188291_generated.png.import new file mode 100644 index 0000000..8ac0134 --- /dev/null +++ b/asset-work/kq4_050_ogress_kitchen/caption_3_4025188291_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://fmgwvugei6wy" +path="res://.godot/imported/caption_3_4025188291_generated.png-836d298c335d3a46d11280a3428f0903.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_050_ogress_kitchen/caption_3_4025188291_generated.png" +dest_files=["res://.godot/imported/caption_3_4025188291_generated.png-836d298c335d3a46d11280a3428f0903.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_051_ogres_closet/caption_1_1188948339/generated.png b/asset-work/kq4_051_ogres_closet/caption_1_1188948339_generated.png similarity index 100% rename from asset-work/kq4_051_ogres_closet/caption_1_1188948339/generated.png rename to asset-work/kq4_051_ogres_closet/caption_1_1188948339_generated.png diff --git a/asset-work/kq4_051_ogres_closet/caption_1_1188948339_generated.png.import b/asset-work/kq4_051_ogres_closet/caption_1_1188948339_generated.png.import new file mode 100644 index 0000000..1eadd35 --- /dev/null +++ b/asset-work/kq4_051_ogres_closet/caption_1_1188948339_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dgse2wjyy74c3" +path="res://.godot/imported/caption_1_1188948339_generated.png-dd22c22460fd8c96395d66f3da2b4965.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_051_ogres_closet/caption_1_1188948339_generated.png" +dest_files=["res://.godot/imported/caption_1_1188948339_generated.png-dd22c22460fd8c96395d66f3da2b4965.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_051_ogres_closet/caption_1_1331404086/generated.png b/asset-work/kq4_051_ogres_closet/caption_1_1331404086_generated.png similarity index 100% rename from asset-work/kq4_051_ogres_closet/caption_1_1331404086/generated.png rename to asset-work/kq4_051_ogres_closet/caption_1_1331404086_generated.png diff --git a/asset-work/kq4_051_ogres_closet/caption_1_1331404086_generated.png.import b/asset-work/kq4_051_ogres_closet/caption_1_1331404086_generated.png.import new file mode 100644 index 0000000..af0c45a --- /dev/null +++ b/asset-work/kq4_051_ogres_closet/caption_1_1331404086_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bqsm14jlb7o0a" +path="res://.godot/imported/caption_1_1331404086_generated.png-6cf11c7a167dd2109139da0667ab3688.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_051_ogres_closet/caption_1_1331404086_generated.png" +dest_files=["res://.godot/imported/caption_1_1331404086_generated.png-6cf11c7a167dd2109139da0667ab3688.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_051_ogres_closet/caption_2_1589230837/generated.png b/asset-work/kq4_051_ogres_closet/caption_2_1589230837_generated.png similarity index 100% rename from asset-work/kq4_051_ogres_closet/caption_2_1589230837/generated.png rename to asset-work/kq4_051_ogres_closet/caption_2_1589230837_generated.png diff --git a/asset-work/kq4_051_ogres_closet/caption_2_1589230837_generated.png.import b/asset-work/kq4_051_ogres_closet/caption_2_1589230837_generated.png.import new file mode 100644 index 0000000..9195546 --- /dev/null +++ b/asset-work/kq4_051_ogres_closet/caption_2_1589230837_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cqb1vfdqujst5" +path="res://.godot/imported/caption_2_1589230837_generated.png-430fdf347c1ff5de9ed28ca4de704fb6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_051_ogres_closet/caption_2_1589230837_generated.png" +dest_files=["res://.godot/imported/caption_2_1589230837_generated.png-430fdf347c1ff5de9ed28ca4de704fb6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_051_ogres_closet/caption_2_344441471/generated.png b/asset-work/kq4_051_ogres_closet/caption_2_344441471_generated.png similarity index 100% rename from asset-work/kq4_051_ogres_closet/caption_2_344441471/generated.png rename to asset-work/kq4_051_ogres_closet/caption_2_344441471_generated.png diff --git a/asset-work/kq4_051_ogres_closet/caption_2_344441471_generated.png.import b/asset-work/kq4_051_ogres_closet/caption_2_344441471_generated.png.import new file mode 100644 index 0000000..77d9e9e --- /dev/null +++ b/asset-work/kq4_051_ogres_closet/caption_2_344441471_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b2525jvre6q6a" +path="res://.godot/imported/caption_2_344441471_generated.png-024389cde2a3ede6cab3af91640553b3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_051_ogres_closet/caption_2_344441471_generated.png" +dest_files=["res://.godot/imported/caption_2_344441471_generated.png-024389cde2a3ede6cab3af91640553b3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_051_ogres_closet/caption_3_1869711425/generated.png b/asset-work/kq4_051_ogres_closet/caption_3_1869711425_generated.png similarity index 100% rename from asset-work/kq4_051_ogres_closet/caption_3_1869711425/generated.png rename to asset-work/kq4_051_ogres_closet/caption_3_1869711425_generated.png diff --git a/asset-work/kq4_051_ogres_closet/caption_3_1869711425_generated.png.import b/asset-work/kq4_051_ogres_closet/caption_3_1869711425_generated.png.import new file mode 100644 index 0000000..ebd857a --- /dev/null +++ b/asset-work/kq4_051_ogres_closet/caption_3_1869711425_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cmwgo1u2044nd" +path="res://.godot/imported/caption_3_1869711425_generated.png-d500869e2eecd9f4f6610c40cbc59818.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_051_ogres_closet/caption_3_1869711425_generated.png" +dest_files=["res://.godot/imported/caption_3_1869711425_generated.png-d500869e2eecd9f4f6610c40cbc59818.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_051_ogres_closet/caption_3_2325086778/generated.png b/asset-work/kq4_051_ogres_closet/caption_3_2325086778_generated.png similarity index 100% rename from asset-work/kq4_051_ogres_closet/caption_3_2325086778/generated.png rename to asset-work/kq4_051_ogres_closet/caption_3_2325086778_generated.png diff --git a/asset-work/kq4_051_ogres_closet/caption_3_2325086778_generated.png.import b/asset-work/kq4_051_ogres_closet/caption_3_2325086778_generated.png.import new file mode 100644 index 0000000..1d50d65 --- /dev/null +++ b/asset-work/kq4_051_ogres_closet/caption_3_2325086778_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bv2516s48anjm" +path="res://.godot/imported/caption_3_2325086778_generated.png-cfa4e3b125862026f71bd17a5aa8bb82.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_051_ogres_closet/caption_3_2325086778_generated.png" +dest_files=["res://.godot/imported/caption_3_2325086778_generated.png-cfa4e3b125862026f71bd17a5aa8bb82.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_053_seven_dwarfs_bedroom/caption_1_360939437/caption_1.txt b/asset-work/kq4_053_seven_dwarfs_bedroom/caption_1_360939437/caption_1.txt deleted file mode 100644 index 52973e5..0000000 --- a/asset-work/kq4_053_seven_dwarfs_bedroom/caption_1_360939437/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A warm, rustic bedroom interior viewed from an elevated angle, revealing the cozy sanctuary of a woodland cottage. In the foreground, thick-planked wooden floorboards display rich honey and amber tones, their grain patterns catching soft afternoon light filtering through a window. A braided oval rug in deep crimson and earth tones anchors the composition, its woven texture rendered with thick impasto strokes. The middle ground reveals seven small beds arranged in tiered rows against the left wall, their wooden frames sturdy and worn smooth by time, dressed in coverings of royal purple and dusty rose velvet that cascade in soft folds. A sturdy chest of drawers in deep burgundy stands to the right, its polished surface reflecting the dim interior light. Rough-hewn timber beams frame the ceiling, their dark umber surfaces contrasting with lighter walls of packed earth and stone. In the background, a small window draped with simple blue curtains allows a glimpse of verdant forest beyond. The palette harmonizes warm wood tones, deep purples, and muted earth colors under gentle, diffused daylight. diff --git a/asset-work/kq4_053_seven_dwarfs_bedroom/caption_1_360939437/generated.png b/asset-work/kq4_053_seven_dwarfs_bedroom/caption_1_360939437_generated.png similarity index 100% rename from asset-work/kq4_053_seven_dwarfs_bedroom/caption_1_360939437/generated.png rename to asset-work/kq4_053_seven_dwarfs_bedroom/caption_1_360939437_generated.png diff --git a/asset-work/kq4_053_seven_dwarfs_bedroom/caption_1_360939437_generated.png.import b/asset-work/kq4_053_seven_dwarfs_bedroom/caption_1_360939437_generated.png.import new file mode 100644 index 0000000..6716ecf --- /dev/null +++ b/asset-work/kq4_053_seven_dwarfs_bedroom/caption_1_360939437_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://muqjsrnrihtt" +path="res://.godot/imported/caption_1_360939437_generated.png-300e1ebdc1839c746dc03d0e5c7d075d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_053_seven_dwarfs_bedroom/caption_1_360939437_generated.png" +dest_files=["res://.godot/imported/caption_1_360939437_generated.png-300e1ebdc1839c746dc03d0e5c7d075d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_053_seven_dwarfs_bedroom/caption_2_4237779050/caption_2.txt b/asset-work/kq4_053_seven_dwarfs_bedroom/caption_2_4237779050/caption_2.txt deleted file mode 100644 index 96e3ddd..0000000 --- a/asset-work/kq4_053_seven_dwarfs_bedroom/caption_2_4237779050/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. An intimate cottage bedroom captured from above, showcasing humble comfort nestled within timber walls. Foreground details reveal scarred wooden floor planks in varying shades of burnt sienna and raw umber, their worn surfaces telling stories of countless footsteps. A hand-braided rug in rust and ochre spans the center, its circular form creating a visual anchor amidst the rectangular architecture. The middle composition features tiered sleeping quarters built against rough stone and timber walls—seven modest beds stacked in orderly rows, their wooden posts and rails displaying the patina of age, dressed in textiles of deep violet and mauve that pool in gentle shadows. To the right, a solid chest of drawers in dark mahogany offers storage, its brass handles catching glints of light. Massive support beams traverse the ceiling overhead, their dark surfaces etched with wood grain. Background elements include a simple window framed by homespun blue curtains that flutter slightly, revealing glimpses of pine forest and pale sky. The lighting suggests late afternoon, casting elongated shadows and bathing the scene in golden warmth that contrasts with cool stone walls and rich textile hues. diff --git a/asset-work/kq4_053_seven_dwarfs_bedroom/caption_2_4237779050/generated.png b/asset-work/kq4_053_seven_dwarfs_bedroom/caption_2_4237779050_generated.png similarity index 100% rename from asset-work/kq4_053_seven_dwarfs_bedroom/caption_2_4237779050/generated.png rename to asset-work/kq4_053_seven_dwarfs_bedroom/caption_2_4237779050_generated.png diff --git a/asset-work/kq4_053_seven_dwarfs_bedroom/caption_2_4237779050_generated.png.import b/asset-work/kq4_053_seven_dwarfs_bedroom/caption_2_4237779050_generated.png.import new file mode 100644 index 0000000..a73a6e4 --- /dev/null +++ b/asset-work/kq4_053_seven_dwarfs_bedroom/caption_2_4237779050_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dglhnykos7eim" +path="res://.godot/imported/caption_2_4237779050_generated.png-433fbcb6bdef83cefec271fbcb817797.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_053_seven_dwarfs_bedroom/caption_2_4237779050_generated.png" +dest_files=["res://.godot/imported/caption_2_4237779050_generated.png-433fbcb6bdef83cefec271fbcb817797.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_053_seven_dwarfs_bedroom/caption_3_1677583412/caption_3.txt b/asset-work/kq4_053_seven_dwarfs_bedroom/caption_3_1677583412/caption_3.txt deleted file mode 100644 index 0ae0960..0000000 --- a/asset-work/kq4_053_seven_dwarfs_bedroom/caption_3_1677583412/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A high-angle perspective revealing a quaint woodland bedroom sanctuary with rustic charm and modest comforts. The immediate foreground shows weathered floorboards in tones of chestnut and golden oak, their surfaces displaying natural wood grain patterns and the subtle unevenness of hand-hewn craftsmanship. A thick, braided rug in warm terracotta and brown hues occupies the central floor space, its circular woven texture providing soft contrast to the hard wooden surfaces. Middle ground composition centers on a wall of seven diminutive beds arranged in stepped formation, each crafted from sturdy timber with simple posts and rails, adorned with bedding in deep amethyst and dusty plum fabrics that drape naturally over the edges. Against the right wall stands a substantial wooden dresser in rich crimson-brown, its drawers slightly irregular with handmade character. The background reveals rough-hewn support beams overhead and a small window with simple blue drapery, through which muted green forest foliage is visible. The walls show a combination of exposed timber framing and earthen plaster. Lighting streams gently from the window, creating soft shadows and highlighting the textural interplay between polished wood, woven fabrics, and rough stonework in a harmonious palette of warm browns, deep purples, and forest greens. diff --git a/asset-work/kq4_053_seven_dwarfs_bedroom/caption_3_1677583412/generated.png b/asset-work/kq4_053_seven_dwarfs_bedroom/caption_3_1677583412_generated.png similarity index 100% rename from asset-work/kq4_053_seven_dwarfs_bedroom/caption_3_1677583412/generated.png rename to asset-work/kq4_053_seven_dwarfs_bedroom/caption_3_1677583412_generated.png diff --git a/asset-work/kq4_053_seven_dwarfs_bedroom/caption_3_1677583412_generated.png.import b/asset-work/kq4_053_seven_dwarfs_bedroom/caption_3_1677583412_generated.png.import new file mode 100644 index 0000000..452d98d --- /dev/null +++ b/asset-work/kq4_053_seven_dwarfs_bedroom/caption_3_1677583412_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bapnc0r55clun" +path="res://.godot/imported/caption_3_1677583412_generated.png-44b1612663d6eab2973943ce85de110c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_053_seven_dwarfs_bedroom/caption_3_1677583412_generated.png" +dest_files=["res://.godot/imported/caption_3_1677583412_generated.png-44b1612663d6eab2973943ce85de110c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_054_seven_dwarfs_cottage/caption_1_1858563010/caption_1.txt b/asset-work/kq4_054_seven_dwarfs_cottage/caption_1_1858563010/caption_1.txt deleted file mode 100644 index e572d46..0000000 --- a/asset-work/kq4_054_seven_dwarfs_cottage/caption_1_1858563010/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A high-angle view into the warm, rustic interior of a woodland cottage kitchen, where rough-hewn timber beams and stone walls speak of honest craftsmanship. In the foreground, a long wooden table dominates the space, its worn surface bearing the patina of countless meals, with a small blue pouch resting upon it like a jewel. The middle ground reveals a generous stone fireplace to the left, where dancing flames heat a bubbling cauldron, casting amber light that plays across the room. Above the mantel, empty bowls await their purpose, while a worn rag rug spreads across the floor in muted earth tones. To the right, wooden cabinets line the walls with sturdy doors, and a narrow closet harbors a simple broom. The background features a diamond-paned window that frames a glimpse of verdant forest beyond, infusing the space with soft natural light. A broken cuckoo clock hangs on the wall, frozen in time. The palette harmonizes warm honeyed woods, terracotta reds of the brickwork, and cool forest greens filtering through the glass, all bathed in the golden glow of hearth-fire warmth. diff --git a/asset-work/kq4_054_seven_dwarfs_cottage/caption_1_1858563010/caption_1_3202668343/caption_1.txt b/asset-work/kq4_054_seven_dwarfs_cottage/caption_1_1858563010/caption_1_3202668343/caption_1.txt deleted file mode 100644 index e572d46..0000000 --- a/asset-work/kq4_054_seven_dwarfs_cottage/caption_1_1858563010/caption_1_3202668343/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A high-angle view into the warm, rustic interior of a woodland cottage kitchen, where rough-hewn timber beams and stone walls speak of honest craftsmanship. In the foreground, a long wooden table dominates the space, its worn surface bearing the patina of countless meals, with a small blue pouch resting upon it like a jewel. The middle ground reveals a generous stone fireplace to the left, where dancing flames heat a bubbling cauldron, casting amber light that plays across the room. Above the mantel, empty bowls await their purpose, while a worn rag rug spreads across the floor in muted earth tones. To the right, wooden cabinets line the walls with sturdy doors, and a narrow closet harbors a simple broom. The background features a diamond-paned window that frames a glimpse of verdant forest beyond, infusing the space with soft natural light. A broken cuckoo clock hangs on the wall, frozen in time. The palette harmonizes warm honeyed woods, terracotta reds of the brickwork, and cool forest greens filtering through the glass, all bathed in the golden glow of hearth-fire warmth. diff --git a/asset-work/kq4_054_seven_dwarfs_cottage/caption_1_1858563010/caption_1_3202668343/generated.png b/asset-work/kq4_054_seven_dwarfs_cottage/caption_1_1858563010/caption_1_3202668343/generated.png deleted file mode 100644 index 720a2b7..0000000 --- a/asset-work/kq4_054_seven_dwarfs_cottage/caption_1_1858563010/caption_1_3202668343/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:787b5464d9a89c6ae910c65ca261b866c9341bede49c8faee7876d2ba4ffdf6f -size 3964815 diff --git a/asset-work/kq4_054_seven_dwarfs_cottage/caption_1_1858563010/generated.png b/asset-work/kq4_054_seven_dwarfs_cottage/caption_1_1858563010_generated.png similarity index 100% rename from asset-work/kq4_054_seven_dwarfs_cottage/caption_1_1858563010/generated.png rename to asset-work/kq4_054_seven_dwarfs_cottage/caption_1_1858563010_generated.png diff --git a/asset-work/kq4_054_seven_dwarfs_cottage/caption_1_1858563010_generated.png.import b/asset-work/kq4_054_seven_dwarfs_cottage/caption_1_1858563010_generated.png.import new file mode 100644 index 0000000..21d3c6c --- /dev/null +++ b/asset-work/kq4_054_seven_dwarfs_cottage/caption_1_1858563010_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c1wjfial5fjhf" +path="res://.godot/imported/caption_1_1858563010_generated.png-f6bb411a2e5c5f508c2d80053841c549.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_054_seven_dwarfs_cottage/caption_1_1858563010_generated.png" +dest_files=["res://.godot/imported/caption_1_1858563010_generated.png-f6bb411a2e5c5f508c2d80053841c549.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_054_seven_dwarfs_cottage/caption_2_2218108500/caption_2.txt b/asset-work/kq4_054_seven_dwarfs_cottage/caption_2_2218108500/caption_2.txt deleted file mode 100644 index a6238fe..0000000 --- a/asset-work/kq4_054_seven_dwarfs_cottage/caption_2_2218108500/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. An elevated perspective into a cozy tree house kitchen, where gnarled wooden beams and whitewashed stone create an atmosphere of woodland refuge. The immediate foreground showcases a sturdy oak table, its grain visible through years of use, with a blue pouch sitting prominently atop its surface. At the center-left, a substantial fireplace of rough brick and stone anchors the composition, flames licking beneath a copper cauldron that sends wisps of aromatic steam upward. Clean bowls rest upon the mantel shelf, catching the warm firelight. The middle ground reveals built-in cupboards of honey-colored pine lining the walls, their simple latches speaking of practical design. A broom stands in a corner closet, partially visible. The background centers on a quaint window with leaded panes, through which deep green foliage is visible, bringing the outside forest into dialogue with the interior. A narrow stairway climbs into shadow at the right, suggesting additional chambers above. The rag rug on the floor displays faded patterns in crimson and cream. The color scheme weaves together golden firelight, cool window light, and the warm browns of aged timber in a harmonious rustic symphony. diff --git a/asset-work/kq4_054_seven_dwarfs_cottage/caption_2_2218108500/caption_2_2805997320/caption_2.txt b/asset-work/kq4_054_seven_dwarfs_cottage/caption_2_2218108500/caption_2_2805997320/caption_2.txt deleted file mode 100644 index a6238fe..0000000 --- a/asset-work/kq4_054_seven_dwarfs_cottage/caption_2_2218108500/caption_2_2805997320/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. An elevated perspective into a cozy tree house kitchen, where gnarled wooden beams and whitewashed stone create an atmosphere of woodland refuge. The immediate foreground showcases a sturdy oak table, its grain visible through years of use, with a blue pouch sitting prominently atop its surface. At the center-left, a substantial fireplace of rough brick and stone anchors the composition, flames licking beneath a copper cauldron that sends wisps of aromatic steam upward. Clean bowls rest upon the mantel shelf, catching the warm firelight. The middle ground reveals built-in cupboards of honey-colored pine lining the walls, their simple latches speaking of practical design. A broom stands in a corner closet, partially visible. The background centers on a quaint window with leaded panes, through which deep green foliage is visible, bringing the outside forest into dialogue with the interior. A narrow stairway climbs into shadow at the right, suggesting additional chambers above. The rag rug on the floor displays faded patterns in crimson and cream. The color scheme weaves together golden firelight, cool window light, and the warm browns of aged timber in a harmonious rustic symphony. diff --git a/asset-work/kq4_054_seven_dwarfs_cottage/caption_2_2218108500/caption_2_2805997320/generated.png b/asset-work/kq4_054_seven_dwarfs_cottage/caption_2_2218108500/caption_2_2805997320/generated.png deleted file mode 100644 index 03655f4..0000000 --- a/asset-work/kq4_054_seven_dwarfs_cottage/caption_2_2218108500/caption_2_2805997320/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a7460e38938440d0246df33a1e29d66e09c48ca7cb389ccc4d9e3901034c87a7 -size 4045504 diff --git a/asset-work/kq4_054_seven_dwarfs_cottage/caption_2_2218108500/generated.png b/asset-work/kq4_054_seven_dwarfs_cottage/caption_2_2218108500_generated.png similarity index 100% rename from asset-work/kq4_054_seven_dwarfs_cottage/caption_2_2218108500/generated.png rename to asset-work/kq4_054_seven_dwarfs_cottage/caption_2_2218108500_generated.png diff --git a/asset-work/kq4_054_seven_dwarfs_cottage/caption_2_2218108500_generated.png.import b/asset-work/kq4_054_seven_dwarfs_cottage/caption_2_2218108500_generated.png.import new file mode 100644 index 0000000..ab89eb4 --- /dev/null +++ b/asset-work/kq4_054_seven_dwarfs_cottage/caption_2_2218108500_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ruoayysv86x5" +path="res://.godot/imported/caption_2_2218108500_generated.png-14cc0a5c51c703904557f5d73c00d2c0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_054_seven_dwarfs_cottage/caption_2_2218108500_generated.png" +dest_files=["res://.godot/imported/caption_2_2218108500_generated.png-14cc0a5c51c703904557f5d73c00d2c0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_054_seven_dwarfs_cottage/caption_3_1130939898/caption_3.txt b/asset-work/kq4_054_seven_dwarfs_cottage/caption_3_1130939898/caption_3.txt deleted file mode 100644 index f3de3fd..0000000 --- a/asset-work/kq4_054_seven_dwarfs_cottage/caption_3_1130939898/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A bird's-eye view of a charming cottage interior nestled within an ancient tree, where living wood and stone merge in rustic harmony. The foreground features a lengthy wooden dining table, its surface scarred by time and use, holding a small blue pouch as its centerpiece. To the left, a generous fireplace built of river stones and brick contains a merry fire beneath a blackened cooking pot, its contents simmering gently. The mantel above displays ceramic bowls in orderly rows. Along the right wall, floor-to-ceiling cabinetry in weathered pine provides storage, while a shallow closet reveals the worn bristles of a well-used broom. The background is dominated by a mullioned window that opens onto a sun-dappled forest scene, the green canopy visible through diamond-shaped panes. A worn rag rug in burgundy and ochre spreads across the plank floor, its fibers catching the interplay of firelight and daylight. A narrow wooden stairway ascends into shadowy heights at the rear right. The palette balances warm hearth tones—amber, russet, and gold—against the cool emerald and sage visible through the window, all rendered with the rich impasto texture of oil on canvas. diff --git a/asset-work/kq4_054_seven_dwarfs_cottage/caption_3_1130939898/caption_3_2665227167/caption_3.txt b/asset-work/kq4_054_seven_dwarfs_cottage/caption_3_1130939898/caption_3_2665227167/caption_3.txt deleted file mode 100644 index f3de3fd..0000000 --- a/asset-work/kq4_054_seven_dwarfs_cottage/caption_3_1130939898/caption_3_2665227167/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A bird's-eye view of a charming cottage interior nestled within an ancient tree, where living wood and stone merge in rustic harmony. The foreground features a lengthy wooden dining table, its surface scarred by time and use, holding a small blue pouch as its centerpiece. To the left, a generous fireplace built of river stones and brick contains a merry fire beneath a blackened cooking pot, its contents simmering gently. The mantel above displays ceramic bowls in orderly rows. Along the right wall, floor-to-ceiling cabinetry in weathered pine provides storage, while a shallow closet reveals the worn bristles of a well-used broom. The background is dominated by a mullioned window that opens onto a sun-dappled forest scene, the green canopy visible through diamond-shaped panes. A worn rag rug in burgundy and ochre spreads across the plank floor, its fibers catching the interplay of firelight and daylight. A narrow wooden stairway ascends into shadowy heights at the rear right. The palette balances warm hearth tones—amber, russet, and gold—against the cool emerald and sage visible through the window, all rendered with the rich impasto texture of oil on canvas. diff --git a/asset-work/kq4_054_seven_dwarfs_cottage/caption_3_1130939898/caption_3_2665227167/generated.png b/asset-work/kq4_054_seven_dwarfs_cottage/caption_3_1130939898/caption_3_2665227167/generated.png deleted file mode 100644 index bb8fa8d..0000000 --- a/asset-work/kq4_054_seven_dwarfs_cottage/caption_3_1130939898/caption_3_2665227167/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7bdbcce2289de291196296e5c332cb81fd12d2a9aaf0d6b5045058ce68156452 -size 4390171 diff --git a/asset-work/kq4_054_seven_dwarfs_cottage/caption_3_1130939898/generated.png b/asset-work/kq4_054_seven_dwarfs_cottage/caption_3_1130939898_generated.png similarity index 100% rename from asset-work/kq4_054_seven_dwarfs_cottage/caption_3_1130939898/generated.png rename to asset-work/kq4_054_seven_dwarfs_cottage/caption_3_1130939898_generated.png diff --git a/asset-work/kq4_054_seven_dwarfs_cottage/caption_3_1130939898_generated.png.import b/asset-work/kq4_054_seven_dwarfs_cottage/caption_3_1130939898_generated.png.import new file mode 100644 index 0000000..6e54c89 --- /dev/null +++ b/asset-work/kq4_054_seven_dwarfs_cottage/caption_3_1130939898_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://q7l17u4ursxr" +path="res://.godot/imported/caption_3_1130939898_generated.png-1f8c62aab545bfc8be7a54fa112ddb8d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_054_seven_dwarfs_cottage/caption_3_1130939898_generated.png" +dest_files=["res://.godot/imported/caption_3_1130939898_generated.png-1f8c62aab545bfc8be7a54fa112ddb8d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_055_seven_dwarfs_diamond_mine/caption_1_2476211393/caption_1.txt b/asset-work/kq4_055_seven_dwarfs_diamond_mine/caption_1_2476211393/caption_1.txt deleted file mode 100644 index 26374a2..0000000 --- a/asset-work/kq4_055_seven_dwarfs_diamond_mine/caption_1_2476211393/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A dramatic high-angle view into the depths of an underground diamond mine, where amber-hued cavern walls rise like ancient geological cathedrals. In the foreground, jagged boulders and rock debris scatter across the earthen floor, their surfaces catching the dim, mysterious light from above. Thick wooden support beams, weathered and dark with age, brace against the cavern ceiling, creating strong vertical elements that draw the eye upward. The middle ground reveals a hazardous narrow ledge winding through the mine, its precarious path skirting deep shadowed crevices. Brilliant diamond formations catch scattered light along the walls, rendered as crystalline prisms of pale blue and green that punctuate the warm ochre and umber tones of the surrounding stone. In the background, the mine extends into velvety darkness, where the cavern narrows into mysterious passageways suggested by layered rock strata. The palette balances earthy rust and sienna against the cold sparkle of embedded gemstones, all bathed in subdued ambient light filtering from unseen openings above, creating dramatic chiaroscuro effects across the rugged terrain. diff --git a/asset-work/kq4_055_seven_dwarfs_diamond_mine/caption_1_2476211393/caption_1_3914415051/caption_1.txt b/asset-work/kq4_055_seven_dwarfs_diamond_mine/caption_1_2476211393/caption_1_3914415051/caption_1.txt deleted file mode 100644 index 26374a2..0000000 --- a/asset-work/kq4_055_seven_dwarfs_diamond_mine/caption_1_2476211393/caption_1_3914415051/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A dramatic high-angle view into the depths of an underground diamond mine, where amber-hued cavern walls rise like ancient geological cathedrals. In the foreground, jagged boulders and rock debris scatter across the earthen floor, their surfaces catching the dim, mysterious light from above. Thick wooden support beams, weathered and dark with age, brace against the cavern ceiling, creating strong vertical elements that draw the eye upward. The middle ground reveals a hazardous narrow ledge winding through the mine, its precarious path skirting deep shadowed crevices. Brilliant diamond formations catch scattered light along the walls, rendered as crystalline prisms of pale blue and green that punctuate the warm ochre and umber tones of the surrounding stone. In the background, the mine extends into velvety darkness, where the cavern narrows into mysterious passageways suggested by layered rock strata. The palette balances earthy rust and sienna against the cold sparkle of embedded gemstones, all bathed in subdued ambient light filtering from unseen openings above, creating dramatic chiaroscuro effects across the rugged terrain. diff --git a/asset-work/kq4_055_seven_dwarfs_diamond_mine/caption_1_2476211393/caption_1_3914415051/generated.png b/asset-work/kq4_055_seven_dwarfs_diamond_mine/caption_1_2476211393/caption_1_3914415051/generated.png deleted file mode 100644 index 83256f0..0000000 --- a/asset-work/kq4_055_seven_dwarfs_diamond_mine/caption_1_2476211393/caption_1_3914415051/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b24b404e9e5564188a4ec0d5d3bbdfa48c659ac14d7caa51fb30f843e5157cf9 -size 4354244 diff --git a/asset-work/kq4_055_seven_dwarfs_diamond_mine/caption_1_2476211393/generated.png b/asset-work/kq4_055_seven_dwarfs_diamond_mine/caption_1_2476211393_generated.png similarity index 100% rename from asset-work/kq4_055_seven_dwarfs_diamond_mine/caption_1_2476211393/generated.png rename to asset-work/kq4_055_seven_dwarfs_diamond_mine/caption_1_2476211393_generated.png diff --git a/asset-work/kq4_055_seven_dwarfs_diamond_mine/caption_1_2476211393_generated.png.import b/asset-work/kq4_055_seven_dwarfs_diamond_mine/caption_1_2476211393_generated.png.import new file mode 100644 index 0000000..fbd17b5 --- /dev/null +++ b/asset-work/kq4_055_seven_dwarfs_diamond_mine/caption_1_2476211393_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://brhpv7dlknn1o" +path="res://.godot/imported/caption_1_2476211393_generated.png-e789ddb41bd887c9e9b784359f75ed45.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_055_seven_dwarfs_diamond_mine/caption_1_2476211393_generated.png" +dest_files=["res://.godot/imported/caption_1_2476211393_generated.png-e789ddb41bd887c9e9b784359f75ed45.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_055_seven_dwarfs_diamond_mine/caption_2_1889327823/caption_2.txt b/asset-work/kq4_055_seven_dwarfs_diamond_mine/caption_2_1889327823/caption_2.txt deleted file mode 100644 index ada2341..0000000 --- a/asset-work/kq4_055_seven_dwarfs_diamond_mine/caption_2_1889327823/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. An atmospheric underground chamber viewed from above, revealing the Seven Dwarfs' diamond mine as a complex network of carved passages and natural caverns. The immediate foreground displays textured cave floor with scattered stone fragments and crystalline debris, painted with rough impasto strokes suggesting rough-hewn surfaces. Heavy timber supports, aged to silvery gray, span across the cavern width, their massive beams creating strong horizontal divisions in the composition. Along the middle ground, a perilous narrow pathway winds between rocky outcrops, while iridescent diamond clusters embedded in the clay walls catch and refract faint illumination, creating prismatic sparkles of ice blue and pale emerald against the warm earthy surroundings. Deep shadows pool in the lower recesses of the mine, contrasting with areas where diffuse light reveals the rough texture of excavated walls. Background passages recede into indistinct darkness, their entrances framed by jagged rock formations and wooden lintels. The overall atmosphere conveys subterranean mystery through a palette dominated by burnt umber, raw sienna, and ochre, punctuated by the cool glint of precious stones and subtle golden highlights from above-ground light sources. diff --git a/asset-work/kq4_055_seven_dwarfs_diamond_mine/caption_2_1889327823/caption_2_1077428729/caption_2.txt b/asset-work/kq4_055_seven_dwarfs_diamond_mine/caption_2_1889327823/caption_2_1077428729/caption_2.txt deleted file mode 100644 index ada2341..0000000 --- a/asset-work/kq4_055_seven_dwarfs_diamond_mine/caption_2_1889327823/caption_2_1077428729/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. An atmospheric underground chamber viewed from above, revealing the Seven Dwarfs' diamond mine as a complex network of carved passages and natural caverns. The immediate foreground displays textured cave floor with scattered stone fragments and crystalline debris, painted with rough impasto strokes suggesting rough-hewn surfaces. Heavy timber supports, aged to silvery gray, span across the cavern width, their massive beams creating strong horizontal divisions in the composition. Along the middle ground, a perilous narrow pathway winds between rocky outcrops, while iridescent diamond clusters embedded in the clay walls catch and refract faint illumination, creating prismatic sparkles of ice blue and pale emerald against the warm earthy surroundings. Deep shadows pool in the lower recesses of the mine, contrasting with areas where diffuse light reveals the rough texture of excavated walls. Background passages recede into indistinct darkness, their entrances framed by jagged rock formations and wooden lintels. The overall atmosphere conveys subterranean mystery through a palette dominated by burnt umber, raw sienna, and ochre, punctuated by the cool glint of precious stones and subtle golden highlights from above-ground light sources. diff --git a/asset-work/kq4_055_seven_dwarfs_diamond_mine/caption_2_1889327823/caption_2_1077428729/generated.png b/asset-work/kq4_055_seven_dwarfs_diamond_mine/caption_2_1889327823/caption_2_1077428729/generated.png deleted file mode 100644 index 99c664c..0000000 --- a/asset-work/kq4_055_seven_dwarfs_diamond_mine/caption_2_1889327823/caption_2_1077428729/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:363e723a7a5c81f2eba4842b04204215bddcad894c37e85422a046bcb6b5d18f -size 4117932 diff --git a/asset-work/kq4_055_seven_dwarfs_diamond_mine/caption_2_1889327823/generated.png b/asset-work/kq4_055_seven_dwarfs_diamond_mine/caption_2_1889327823_generated.png similarity index 100% rename from asset-work/kq4_055_seven_dwarfs_diamond_mine/caption_2_1889327823/generated.png rename to asset-work/kq4_055_seven_dwarfs_diamond_mine/caption_2_1889327823_generated.png diff --git a/asset-work/kq4_055_seven_dwarfs_diamond_mine/caption_2_1889327823_generated.png.import b/asset-work/kq4_055_seven_dwarfs_diamond_mine/caption_2_1889327823_generated.png.import new file mode 100644 index 0000000..4f75350 --- /dev/null +++ b/asset-work/kq4_055_seven_dwarfs_diamond_mine/caption_2_1889327823_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://t0ctkudt6u5n" +path="res://.godot/imported/caption_2_1889327823_generated.png-a5a86b3875d316926bca2c59086bec51.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_055_seven_dwarfs_diamond_mine/caption_2_1889327823_generated.png" +dest_files=["res://.godot/imported/caption_2_1889327823_generated.png-a5a86b3875d316926bca2c59086bec51.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_055_seven_dwarfs_diamond_mine/caption_3_3221303656/caption_3.txt b/asset-work/kq4_055_seven_dwarfs_diamond_mine/caption_3_3221303656/caption_3.txt deleted file mode 100644 index 7060515..0000000 --- a/asset-work/kq4_055_seven_dwarfs_diamond_mine/caption_3_3221303656/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A sweeping panoramic view of an excavated underground mine, captured from an elevated perspective that reveals the full scope of the cavernous interior. Foreground elements include weathered rock formations and loose sediment, rendered with thick textural brushwork suggesting the rough, uneven surface of hewn stone. Sturdy wooden scaffolding and support beams traverse the space, their dark vertical and horizontal lines creating a geometric framework against the organic curves of the cavern walls. The central composition features a treacherous narrow ledge snaking through the mine, while brilliant diamond deposits scattered throughout the earthen walls catch sparse illumination, appearing as scattered points of cerulean and aquamarine light against the dominant warm amber and rust tones. Background depths dissolve into velvety darkness pierced by the suggestion of distant passages and tunnel openings, their forms softened by atmospheric perspective. The lighting creates dramatic contrasts between illuminated wall sections and deep shadows, with subtle color variations in the stone ranging from golden yellow ochres to deeper reddish-browns. The scene balances industrial human intervention through the wooden supports with the raw, untouched beauty of the gemstone-laden earth, all unified by the mysterious, subdued illumination characteristic of subterranean spaces. diff --git a/asset-work/kq4_055_seven_dwarfs_diamond_mine/caption_3_3221303656/caption_3_1376976522/caption_3.txt b/asset-work/kq4_055_seven_dwarfs_diamond_mine/caption_3_3221303656/caption_3_1376976522/caption_3.txt deleted file mode 100644 index 7060515..0000000 --- a/asset-work/kq4_055_seven_dwarfs_diamond_mine/caption_3_3221303656/caption_3_1376976522/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A sweeping panoramic view of an excavated underground mine, captured from an elevated perspective that reveals the full scope of the cavernous interior. Foreground elements include weathered rock formations and loose sediment, rendered with thick textural brushwork suggesting the rough, uneven surface of hewn stone. Sturdy wooden scaffolding and support beams traverse the space, their dark vertical and horizontal lines creating a geometric framework against the organic curves of the cavern walls. The central composition features a treacherous narrow ledge snaking through the mine, while brilliant diamond deposits scattered throughout the earthen walls catch sparse illumination, appearing as scattered points of cerulean and aquamarine light against the dominant warm amber and rust tones. Background depths dissolve into velvety darkness pierced by the suggestion of distant passages and tunnel openings, their forms softened by atmospheric perspective. The lighting creates dramatic contrasts between illuminated wall sections and deep shadows, with subtle color variations in the stone ranging from golden yellow ochres to deeper reddish-browns. The scene balances industrial human intervention through the wooden supports with the raw, untouched beauty of the gemstone-laden earth, all unified by the mysterious, subdued illumination characteristic of subterranean spaces. diff --git a/asset-work/kq4_055_seven_dwarfs_diamond_mine/caption_3_3221303656/caption_3_1376976522/generated.png b/asset-work/kq4_055_seven_dwarfs_diamond_mine/caption_3_3221303656/caption_3_1376976522/generated.png deleted file mode 100644 index ded4f06..0000000 --- a/asset-work/kq4_055_seven_dwarfs_diamond_mine/caption_3_3221303656/caption_3_1376976522/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:bcf4b51a141f44938addd4d61b50d6874ba76b2c16b868c3e8844f3aa9dc56a4 -size 4019903 diff --git a/asset-work/kq4_055_seven_dwarfs_diamond_mine/caption_3_3221303656/generated.png b/asset-work/kq4_055_seven_dwarfs_diamond_mine/caption_3_3221303656_generated.png similarity index 100% rename from asset-work/kq4_055_seven_dwarfs_diamond_mine/caption_3_3221303656/generated.png rename to asset-work/kq4_055_seven_dwarfs_diamond_mine/caption_3_3221303656_generated.png diff --git a/asset-work/kq4_055_seven_dwarfs_diamond_mine/caption_3_3221303656_generated.png.import b/asset-work/kq4_055_seven_dwarfs_diamond_mine/caption_3_3221303656_generated.png.import new file mode 100644 index 0000000..5252a8c --- /dev/null +++ b/asset-work/kq4_055_seven_dwarfs_diamond_mine/caption_3_3221303656_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://beego2rqrd5cp" +path="res://.godot/imported/caption_3_3221303656_generated.png-d48869d136bb8d7b1333b37dffd17074.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_055_seven_dwarfs_diamond_mine/caption_3_3221303656_generated.png" +dest_files=["res://.godot/imported/caption_3_3221303656_generated.png-d48869d136bb8d7b1333b37dffd17074.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_056_diamond_mine/caption_1_3654680136/caption_1.txt b/asset-work/kq4_056_diamond_mine/caption_1_3654680136/caption_1.txt deleted file mode 100644 index e3bad9e..0000000 --- a/asset-work/kq4_056_diamond_mine/caption_1_3654680136/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A vast subterranean chamber viewed from elevated perspective, revealing the hollowed depths of an ancient diamond mine. In the foreground, rugged amber-toned rock walls display dramatic vertical striations and weathered textures, their surfaces catching warm lantern light that pools in velvet shadows. Thick wooden support beams traverse the cavern, their grain and knots rendered in rich umber and sienna tones, creating strong diagonal lines that draw the eye inward. The middle ground reveals a wooden platform structure, its planks weathered to silver-gray, suggesting years of labor beneath the earth. To the right, a cluster of mining equipment hints at human presence, while deep black voids punctuate the composition, suggesting unexplored passages and vertiginous depths. Background walls recede into velvety darkness, their warm ochre surfaces fading through atmospheric perspective. The palette harmonizes glowing amber rock faces, deep umbral shadows, and touches of warm light reflecting off crystalline mineral deposits scattered throughout the chamber. diff --git a/asset-work/kq4_056_diamond_mine/caption_1_3654680136/caption_1_1131904236/caption_1.txt b/asset-work/kq4_056_diamond_mine/caption_1_3654680136/caption_1_1131904236/caption_1.txt deleted file mode 100644 index e3bad9e..0000000 --- a/asset-work/kq4_056_diamond_mine/caption_1_3654680136/caption_1_1131904236/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A vast subterranean chamber viewed from elevated perspective, revealing the hollowed depths of an ancient diamond mine. In the foreground, rugged amber-toned rock walls display dramatic vertical striations and weathered textures, their surfaces catching warm lantern light that pools in velvet shadows. Thick wooden support beams traverse the cavern, their grain and knots rendered in rich umber and sienna tones, creating strong diagonal lines that draw the eye inward. The middle ground reveals a wooden platform structure, its planks weathered to silver-gray, suggesting years of labor beneath the earth. To the right, a cluster of mining equipment hints at human presence, while deep black voids punctuate the composition, suggesting unexplored passages and vertiginous depths. Background walls recede into velvety darkness, their warm ochre surfaces fading through atmospheric perspective. The palette harmonizes glowing amber rock faces, deep umbral shadows, and touches of warm light reflecting off crystalline mineral deposits scattered throughout the chamber. diff --git a/asset-work/kq4_056_diamond_mine/caption_1_3654680136/caption_1_1131904236/generated.png b/asset-work/kq4_056_diamond_mine/caption_1_3654680136/caption_1_1131904236/generated.png deleted file mode 100644 index f41bfe0..0000000 --- a/asset-work/kq4_056_diamond_mine/caption_1_3654680136/caption_1_1131904236/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0a129d732d88f992ed8a25945b4c03381566be43dbd731cf4bae6ccafedbd2d6 -size 4350655 diff --git a/asset-work/kq4_056_diamond_mine/caption_1_3654680136/generated.png b/asset-work/kq4_056_diamond_mine/caption_1_3654680136_generated.png similarity index 100% rename from asset-work/kq4_056_diamond_mine/caption_1_3654680136/generated.png rename to asset-work/kq4_056_diamond_mine/caption_1_3654680136_generated.png diff --git a/asset-work/kq4_056_diamond_mine/caption_1_3654680136_generated.png.import b/asset-work/kq4_056_diamond_mine/caption_1_3654680136_generated.png.import new file mode 100644 index 0000000..a90c236 --- /dev/null +++ b/asset-work/kq4_056_diamond_mine/caption_1_3654680136_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dvp7ka6xk3ecl" +path="res://.godot/imported/caption_1_3654680136_generated.png-ff0a1577cfa1fcf6a110143748c38182.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_056_diamond_mine/caption_1_3654680136_generated.png" +dest_files=["res://.godot/imported/caption_1_3654680136_generated.png-ff0a1577cfa1fcf6a110143748c38182.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_056_diamond_mine/caption_2_3876803545/caption_2.txt b/asset-work/kq4_056_diamond_mine/caption_2_3876803545/caption_2.txt deleted file mode 100644 index 64981d4..0000000 --- a/asset-work/kq4_056_diamond_mine/caption_2_3876803545/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A dramatic bird's-eye view into the bowels of a diamond mine, where earth's amber interior is exposed in sweeping geological grandeur. The immediate foreground features massive rough-hewn rock faces glowing with warm honey and burnt sienna tones, their surfaces textured with centuries of mineral deposits and water erosion patterns. Heavy timber supports frame the composition, their dark walnut surfaces creating strong vertical elements against the cavern walls. In the middle distance, a wooden scaffolding structure emerges from the shadows, its platforms and ladders suggesting the industrious extraction of precious stones. Deep black chasms open on either side, creating dramatic negative space that emphasizes the mine's dangerous depths. Crystalline glints catch the light throughout the scene, hinting at diamond deposits embedded in the rock. Background passages fade into mysterious darkness, their warm walls barely visible through layers of atmospheric haze. The lighting suggests multiple warm sources—perhaps lanterns or bioluminescent fungi—casting dancing shadows across the rough surfaces and creating a rich interplay of illumination and obscurity. diff --git a/asset-work/kq4_056_diamond_mine/caption_2_3876803545/caption_2_2647535476/caption_2.txt b/asset-work/kq4_056_diamond_mine/caption_2_3876803545/caption_2_2647535476/caption_2.txt deleted file mode 100644 index 64981d4..0000000 --- a/asset-work/kq4_056_diamond_mine/caption_2_3876803545/caption_2_2647535476/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A dramatic bird's-eye view into the bowels of a diamond mine, where earth's amber interior is exposed in sweeping geological grandeur. The immediate foreground features massive rough-hewn rock faces glowing with warm honey and burnt sienna tones, their surfaces textured with centuries of mineral deposits and water erosion patterns. Heavy timber supports frame the composition, their dark walnut surfaces creating strong vertical elements against the cavern walls. In the middle distance, a wooden scaffolding structure emerges from the shadows, its platforms and ladders suggesting the industrious extraction of precious stones. Deep black chasms open on either side, creating dramatic negative space that emphasizes the mine's dangerous depths. Crystalline glints catch the light throughout the scene, hinting at diamond deposits embedded in the rock. Background passages fade into mysterious darkness, their warm walls barely visible through layers of atmospheric haze. The lighting suggests multiple warm sources—perhaps lanterns or bioluminescent fungi—casting dancing shadows across the rough surfaces and creating a rich interplay of illumination and obscurity. diff --git a/asset-work/kq4_056_diamond_mine/caption_2_3876803545/caption_2_2647535476/generated.png b/asset-work/kq4_056_diamond_mine/caption_2_3876803545/caption_2_2647535476/generated.png deleted file mode 100644 index 88f3da7..0000000 --- a/asset-work/kq4_056_diamond_mine/caption_2_3876803545/caption_2_2647535476/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:de5a8d2c1c5db11ef267e178e235d0b3f81a9f0e64db0cf40d7dd7f5bf7611e0 -size 4166625 diff --git a/asset-work/kq4_056_diamond_mine/caption_2_3876803545/generated.png b/asset-work/kq4_056_diamond_mine/caption_2_3876803545_generated.png similarity index 100% rename from asset-work/kq4_056_diamond_mine/caption_2_3876803545/generated.png rename to asset-work/kq4_056_diamond_mine/caption_2_3876803545_generated.png diff --git a/asset-work/kq4_056_diamond_mine/caption_2_3876803545_generated.png.import b/asset-work/kq4_056_diamond_mine/caption_2_3876803545_generated.png.import new file mode 100644 index 0000000..acf444b --- /dev/null +++ b/asset-work/kq4_056_diamond_mine/caption_2_3876803545_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://coi8nwhrwkobb" +path="res://.godot/imported/caption_2_3876803545_generated.png-bdde3b64966235033f5e0c220631fe51.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_056_diamond_mine/caption_2_3876803545_generated.png" +dest_files=["res://.godot/imported/caption_2_3876803545_generated.png-bdde3b64966235033f5e0c220631fe51.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_056_diamond_mine/caption_3_2606831210/caption_3.txt b/asset-work/kq4_056_diamond_mine/caption_3_2606831210/caption_3.txt deleted file mode 100644 index 34ae715..0000000 --- a/asset-work/kq4_056_diamond_mine/caption_3_2606831210/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. An expansive underground mining complex viewed from high angle, revealing the intersection of natural cavern and human industry. Foreground rock formations display layered geological strata in warm terracotta and golden brown, their surfaces rough and jagged from excavation. Substantial wooden beams cross the space, their heavy construction painted in deep chestnut tones that contrast with the lighter rock faces. The central area features a raised wooden platform with detailed carpentry, its weathered planks and support posts suggesting decades of use. Dark voids punctuate the scene like ink blots, representing uncharted shafts and fathomless depths that create tension against the illuminated working areas. Scattered throughout are subtle crystalline formations catching stray light, suggesting diamond deposits hidden within the matrix. Background walls curve away into velvety darkness, their amber surfaces showing subtle color variations where mineral veins run through the stone. The overall lighting is warm and atmospheric, with pools of golden illumination competing with deep shadows to create a sense of mystery and hidden wealth beneath the earth's surface. diff --git a/asset-work/kq4_056_diamond_mine/caption_3_2606831210/caption_3_2261411234/caption_3.txt b/asset-work/kq4_056_diamond_mine/caption_3_2606831210/caption_3_2261411234/caption_3.txt deleted file mode 100644 index 34ae715..0000000 --- a/asset-work/kq4_056_diamond_mine/caption_3_2606831210/caption_3_2261411234/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. An expansive underground mining complex viewed from high angle, revealing the intersection of natural cavern and human industry. Foreground rock formations display layered geological strata in warm terracotta and golden brown, their surfaces rough and jagged from excavation. Substantial wooden beams cross the space, their heavy construction painted in deep chestnut tones that contrast with the lighter rock faces. The central area features a raised wooden platform with detailed carpentry, its weathered planks and support posts suggesting decades of use. Dark voids punctuate the scene like ink blots, representing uncharted shafts and fathomless depths that create tension against the illuminated working areas. Scattered throughout are subtle crystalline formations catching stray light, suggesting diamond deposits hidden within the matrix. Background walls curve away into velvety darkness, their amber surfaces showing subtle color variations where mineral veins run through the stone. The overall lighting is warm and atmospheric, with pools of golden illumination competing with deep shadows to create a sense of mystery and hidden wealth beneath the earth's surface. diff --git a/asset-work/kq4_056_diamond_mine/caption_3_2606831210/caption_3_2261411234/generated.png b/asset-work/kq4_056_diamond_mine/caption_3_2606831210/caption_3_2261411234/generated.png deleted file mode 100644 index 6fbbccf..0000000 --- a/asset-work/kq4_056_diamond_mine/caption_3_2606831210/caption_3_2261411234/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:16f911ea809a2d75edfbc096e3e0d3510a6ae6b913c2c2c6c003e035087b4f5b -size 4412677 diff --git a/asset-work/kq4_056_diamond_mine/caption_3_2606831210/generated.png b/asset-work/kq4_056_diamond_mine/caption_3_2606831210_generated.png similarity index 100% rename from asset-work/kq4_056_diamond_mine/caption_3_2606831210/generated.png rename to asset-work/kq4_056_diamond_mine/caption_3_2606831210_generated.png diff --git a/asset-work/kq4_056_diamond_mine/caption_3_2606831210_generated.png.import b/asset-work/kq4_056_diamond_mine/caption_3_2606831210_generated.png.import new file mode 100644 index 0000000..ccb3f86 --- /dev/null +++ b/asset-work/kq4_056_diamond_mine/caption_3_2606831210_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bwpy62jqqr3i" +path="res://.godot/imported/caption_3_2606831210_generated.png-e01774f68ba9aa1e064f440f5c053783.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_056_diamond_mine/caption_3_2606831210_generated.png" +dest_files=["res://.godot/imported/caption_3_2606831210_generated.png-e01774f68ba9aa1e064f440f5c053783.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_056_seven_dwarfs_diamond_mine_west/caption_1_2540259826/caption_1.txt b/asset-work/kq4_056_seven_dwarfs_diamond_mine_west/caption_1_2540259826/caption_1.txt deleted file mode 100644 index 31f0fa8..0000000 --- a/asset-work/kq4_056_seven_dwarfs_diamond_mine_west/caption_1_2540259826/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A dramatic underground cavern viewed from above, revealing the rugged interior of a working gemstone mine. Rough-hewn earthen walls display layered geological strata in umber, sienna, and ochre tones, their surfaces catching faint glimmers from embedded crystalline formations. Heavy timber supports brace the cavern ceiling, their weathered oak beams showing natural grain patterns and iron staining. In the middle ground, a sturdy wooden bucket overflows with uncut diamonds that catch and refract sparse lantern light into prismatic sparkles. The cavern floor reveals packed earth mixed with stone fragments and scattered mining debris. Deep shadows pool in the recesses of the rock walls, contrasting with illuminated areas where light penetrates from an unseen source. The background fades into velvety darkness, suggesting the mine extends further into the mountain depths. Atmospheric perspective softens distant rock formations while the foreground displays rich textural details of bark, stone, and crystalline mineral deposits. diff --git a/asset-work/kq4_056_seven_dwarfs_diamond_mine_west/caption_1_2540259826/caption_1_3315057640/caption_1.txt b/asset-work/kq4_056_seven_dwarfs_diamond_mine_west/caption_1_2540259826/caption_1_3315057640/caption_1.txt deleted file mode 100644 index 31f0fa8..0000000 --- a/asset-work/kq4_056_seven_dwarfs_diamond_mine_west/caption_1_2540259826/caption_1_3315057640/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A dramatic underground cavern viewed from above, revealing the rugged interior of a working gemstone mine. Rough-hewn earthen walls display layered geological strata in umber, sienna, and ochre tones, their surfaces catching faint glimmers from embedded crystalline formations. Heavy timber supports brace the cavern ceiling, their weathered oak beams showing natural grain patterns and iron staining. In the middle ground, a sturdy wooden bucket overflows with uncut diamonds that catch and refract sparse lantern light into prismatic sparkles. The cavern floor reveals packed earth mixed with stone fragments and scattered mining debris. Deep shadows pool in the recesses of the rock walls, contrasting with illuminated areas where light penetrates from an unseen source. The background fades into velvety darkness, suggesting the mine extends further into the mountain depths. Atmospheric perspective softens distant rock formations while the foreground displays rich textural details of bark, stone, and crystalline mineral deposits. diff --git a/asset-work/kq4_056_seven_dwarfs_diamond_mine_west/caption_1_2540259826/caption_1_3315057640/generated.png b/asset-work/kq4_056_seven_dwarfs_diamond_mine_west/caption_1_2540259826/caption_1_3315057640/generated.png deleted file mode 100644 index e188924..0000000 --- a/asset-work/kq4_056_seven_dwarfs_diamond_mine_west/caption_1_2540259826/caption_1_3315057640/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:05bf419994531728984a02cf89305d8e529ab3174c846b46ed42829699f81c35 -size 4529206 diff --git a/asset-work/kq4_056_seven_dwarfs_diamond_mine_west/caption_1_2540259826/generated.png b/asset-work/kq4_056_seven_dwarfs_diamond_mine_west/caption_1_2540259826_generated.png similarity index 100% rename from asset-work/kq4_056_seven_dwarfs_diamond_mine_west/caption_1_2540259826/generated.png rename to asset-work/kq4_056_seven_dwarfs_diamond_mine_west/caption_1_2540259826_generated.png diff --git a/asset-work/kq4_056_seven_dwarfs_diamond_mine_west/caption_1_2540259826_generated.png.import b/asset-work/kq4_056_seven_dwarfs_diamond_mine_west/caption_1_2540259826_generated.png.import new file mode 100644 index 0000000..9577c48 --- /dev/null +++ b/asset-work/kq4_056_seven_dwarfs_diamond_mine_west/caption_1_2540259826_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c6w1yvmd4dvw8" +path="res://.godot/imported/caption_1_2540259826_generated.png-1f83364d541fac67ec87826593545b2d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_056_seven_dwarfs_diamond_mine_west/caption_1_2540259826_generated.png" +dest_files=["res://.godot/imported/caption_1_2540259826_generated.png-1f83364d541fac67ec87826593545b2d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_056_seven_dwarfs_diamond_mine_west/caption_2_3459552520/caption_2.txt b/asset-work/kq4_056_seven_dwarfs_diamond_mine_west/caption_2_3459552520/caption_2.txt deleted file mode 100644 index 609ee94..0000000 --- a/asset-work/kq4_056_seven_dwarfs_diamond_mine_west/caption_2_3459552520/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. An elevated perspective reveals the interior of a subterranean mining chamber carved into mountainside bedrock. The composition centers on a generous wooden vessel brimming with raw diamonds, their faceted surfaces creating countless points of reflected luminance against the surrounding darkness. Rough stone walls exhibit natural striations and mineral deposits, painted with thick impasto strokes suggesting ancient geological processes. Substantial timber framing reinforces the excavation, vertical posts and horizontal beams creating geometric contrast against organic rock contours. The cavern floor shows worn pathways through compacted earth, strewn with fragments of quartz and mining residue. Light sources from above cast dramatic chiaroscuro effects across the scene, highlighting crystalline structures embedded in shadowed recesses. Cool slate grays and warm earth tones dominate the palette, punctuated by brilliant white and subtle blue diamond reflections. Background passages dissolve into mysterious darkness, hinting at unexplored tunnels extending deep into the mountain's core. diff --git a/asset-work/kq4_056_seven_dwarfs_diamond_mine_west/caption_2_3459552520/caption_2_1331480439/caption_2.txt b/asset-work/kq4_056_seven_dwarfs_diamond_mine_west/caption_2_3459552520/caption_2_1331480439/caption_2.txt deleted file mode 100644 index 609ee94..0000000 --- a/asset-work/kq4_056_seven_dwarfs_diamond_mine_west/caption_2_3459552520/caption_2_1331480439/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. An elevated perspective reveals the interior of a subterranean mining chamber carved into mountainside bedrock. The composition centers on a generous wooden vessel brimming with raw diamonds, their faceted surfaces creating countless points of reflected luminance against the surrounding darkness. Rough stone walls exhibit natural striations and mineral deposits, painted with thick impasto strokes suggesting ancient geological processes. Substantial timber framing reinforces the excavation, vertical posts and horizontal beams creating geometric contrast against organic rock contours. The cavern floor shows worn pathways through compacted earth, strewn with fragments of quartz and mining residue. Light sources from above cast dramatic chiaroscuro effects across the scene, highlighting crystalline structures embedded in shadowed recesses. Cool slate grays and warm earth tones dominate the palette, punctuated by brilliant white and subtle blue diamond reflections. Background passages dissolve into mysterious darkness, hinting at unexplored tunnels extending deep into the mountain's core. diff --git a/asset-work/kq4_056_seven_dwarfs_diamond_mine_west/caption_2_3459552520/caption_2_1331480439/generated.png b/asset-work/kq4_056_seven_dwarfs_diamond_mine_west/caption_2_3459552520/caption_2_1331480439/generated.png deleted file mode 100644 index ea9e31e..0000000 --- a/asset-work/kq4_056_seven_dwarfs_diamond_mine_west/caption_2_3459552520/caption_2_1331480439/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:081e3d4bb2e9fc1d7369f00ef686f96d6b8ec2ae8962cca1323077da04a92fe2 -size 4529146 diff --git a/asset-work/kq4_056_seven_dwarfs_diamond_mine_west/caption_2_3459552520/generated.png b/asset-work/kq4_056_seven_dwarfs_diamond_mine_west/caption_2_3459552520_generated.png similarity index 100% rename from asset-work/kq4_056_seven_dwarfs_diamond_mine_west/caption_2_3459552520/generated.png rename to asset-work/kq4_056_seven_dwarfs_diamond_mine_west/caption_2_3459552520_generated.png diff --git a/asset-work/kq4_056_seven_dwarfs_diamond_mine_west/caption_2_3459552520_generated.png.import b/asset-work/kq4_056_seven_dwarfs_diamond_mine_west/caption_2_3459552520_generated.png.import new file mode 100644 index 0000000..cc97108 --- /dev/null +++ b/asset-work/kq4_056_seven_dwarfs_diamond_mine_west/caption_2_3459552520_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://rirqnac5s75m" +path="res://.godot/imported/caption_2_3459552520_generated.png-d132f41d4c0e1d8847b07b2a315e0540.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_056_seven_dwarfs_diamond_mine_west/caption_2_3459552520_generated.png" +dest_files=["res://.godot/imported/caption_2_3459552520_generated.png-d132f41d4c0e1d8847b07b2a315e0540.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_056_seven_dwarfs_diamond_mine_west/caption_3_3897421475/caption_3.txt b/asset-work/kq4_056_seven_dwarfs_diamond_mine_west/caption_3_3897421475/caption_3.txt deleted file mode 100644 index db5685c..0000000 --- a/asset-work/kq4_056_seven_dwarfs_diamond_mine_west/caption_3_3897421475/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A bird's-eye view captures the intimate confines of an active gemstone mine, where rough bedrock walls enclose a treasure-laden workspace. The cavern's ceiling displays exposed geological layers in bands of rust, charcoal, and sandstone, while thick wooden crossbeams provide structural support, their surfaces bearing the patina of age and moisture. Centered in the composition sits a weathered wooden container overflowing with raw, uncut diamonds that scatter prismatic light throughout the chamber. The rocky floor shows evidence of excavation with scattered stone chips and earth packed by countless footsteps. Strategic illumination from mining lanterns creates pools of warm amber light against the prevailing cool darkness of the underground environment. Sparkling crystalline formations embedded in the walls catch and reflect these light sources, creating a constellation of subtle gleams. Deep shadows occupy the cavern's corners and background passages, adding mystery and depth while foreground elements display rich textural variation between rough stone, polished timber, and glittering mineral treasures. diff --git a/asset-work/kq4_056_seven_dwarfs_diamond_mine_west/caption_3_3897421475/caption_3_726903438/caption_3.txt b/asset-work/kq4_056_seven_dwarfs_diamond_mine_west/caption_3_3897421475/caption_3_726903438/caption_3.txt deleted file mode 100644 index db5685c..0000000 --- a/asset-work/kq4_056_seven_dwarfs_diamond_mine_west/caption_3_3897421475/caption_3_726903438/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A bird's-eye view captures the intimate confines of an active gemstone mine, where rough bedrock walls enclose a treasure-laden workspace. The cavern's ceiling displays exposed geological layers in bands of rust, charcoal, and sandstone, while thick wooden crossbeams provide structural support, their surfaces bearing the patina of age and moisture. Centered in the composition sits a weathered wooden container overflowing with raw, uncut diamonds that scatter prismatic light throughout the chamber. The rocky floor shows evidence of excavation with scattered stone chips and earth packed by countless footsteps. Strategic illumination from mining lanterns creates pools of warm amber light against the prevailing cool darkness of the underground environment. Sparkling crystalline formations embedded in the walls catch and reflect these light sources, creating a constellation of subtle gleams. Deep shadows occupy the cavern's corners and background passages, adding mystery and depth while foreground elements display rich textural variation between rough stone, polished timber, and glittering mineral treasures. diff --git a/asset-work/kq4_056_seven_dwarfs_diamond_mine_west/caption_3_3897421475/caption_3_726903438/generated.png b/asset-work/kq4_056_seven_dwarfs_diamond_mine_west/caption_3_3897421475/caption_3_726903438/generated.png deleted file mode 100644 index d50f8f2..0000000 --- a/asset-work/kq4_056_seven_dwarfs_diamond_mine_west/caption_3_3897421475/caption_3_726903438/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ff02749bb4335896fc65a8e5ff4e8fd82ac656c795df0b62dbc27303c615654a -size 4341883 diff --git a/asset-work/kq4_056_seven_dwarfs_diamond_mine_west/caption_3_3897421475/generated.png b/asset-work/kq4_056_seven_dwarfs_diamond_mine_west/caption_3_3897421475_generated.png similarity index 100% rename from asset-work/kq4_056_seven_dwarfs_diamond_mine_west/caption_3_3897421475/generated.png rename to asset-work/kq4_056_seven_dwarfs_diamond_mine_west/caption_3_3897421475_generated.png diff --git a/asset-work/kq4_056_seven_dwarfs_diamond_mine_west/caption_3_3897421475_generated.png.import b/asset-work/kq4_056_seven_dwarfs_diamond_mine_west/caption_3_3897421475_generated.png.import new file mode 100644 index 0000000..a984671 --- /dev/null +++ b/asset-work/kq4_056_seven_dwarfs_diamond_mine_west/caption_3_3897421475_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://co7hix0auekiv" +path="res://.godot/imported/caption_3_3897421475_generated.png-8b3c47c56d3661588b1e06e5009ec9b6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_056_seven_dwarfs_diamond_mine_west/caption_3_3897421475_generated.png" +dest_files=["res://.godot/imported/caption_3_3897421475_generated.png-8b3c47c56d3661588b1e06e5009ec9b6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_057_witch_cave/caption_1_3243931760/caption_1.txt b/asset-work/kq4_057_witch_cave/caption_1_3243931760/caption_1.txt deleted file mode 100644 index e467410..0000000 --- a/asset-work/kq4_057_witch_cave/caption_1_3243931760/caption_1.txt +++ /dev/null @@ -1,6 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A foreboding cave interior viewed from above, revealing a dark chamber carved from ancient stone. The foreground shows rough-hewn earth in warm sienna and umber tones, textured with centuries of accumulated dust and debris. The cave walls curve overhead in jagged, stratified layers of gray and charcoal stone, their surfaces catching flickering amber light from unseen sources. - -In the middle ground, a massive black cauldron dominates the space, suspended over crackling flames that cast dancing orange shadows across the cavern. The fire's glow illuminates the immediate area with warm, theatrical light while leaving the periphery in velvety darkness. To the right, wooden shelves emerge from the gloom, laden with vessels of colored glass—emerald, cobalt, and amber bottles containing mysterious contents that catch stray beams of light. - -The background reveals three alcoves carved into the rear wall, their depths lost in shadow, suggesting hidden recesses beyond the main chamber. A skull rests among the bottles, its bleached bone surfaces stark against the dark wood. Through a gap in the cave wall, twisted silhouettes of grasping trees are visible against a twilight sky. The color palette balances warm firelight oranges against cool stone grays and deep forest greens, creating dramatic chiaroscuro effects throughout the composition. - \ No newline at end of file diff --git a/asset-work/kq4_057_witch_cave/caption_1_3243931760/generated.png b/asset-work/kq4_057_witch_cave/caption_1_3243931760_generated.png similarity index 100% rename from asset-work/kq4_057_witch_cave/caption_1_3243931760/generated.png rename to asset-work/kq4_057_witch_cave/caption_1_3243931760_generated.png diff --git a/asset-work/kq4_057_witch_cave/caption_1_3243931760_generated.png.import b/asset-work/kq4_057_witch_cave/caption_1_3243931760_generated.png.import new file mode 100644 index 0000000..6e026bf --- /dev/null +++ b/asset-work/kq4_057_witch_cave/caption_1_3243931760_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://chioqu2psu174" +path="res://.godot/imported/caption_1_3243931760_generated.png-5fbb74e45213a3a50eac092e064d6367.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_057_witch_cave/caption_1_3243931760_generated.png" +dest_files=["res://.godot/imported/caption_1_3243931760_generated.png-5fbb74e45213a3a50eac092e064d6367.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_057_witch_cave/caption_2_2446433275/caption_2.txt b/asset-work/kq4_057_witch_cave/caption_2_2446433275/caption_2.txt deleted file mode 100644 index a23ef07..0000000 --- a/asset-work/kq4_057_witch_cave/caption_2_2446433275/caption_2.txt +++ /dev/null @@ -1,6 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. An atmospheric underground chamber viewed from an elevated perspective, its domed ceiling arching overhead like the inside of a massive stone skull. The foreground presents earthen ground in rich ochre and burnt sienna, scattered with rocky debris and uneven terrain that suggests untold years of habitation. - -At the composition's heart sits an imposing cauldron, its black iron surface gleaming dully in the firelight that blazes beneath it. Greenish vapor rises from the bubbling contents within, catching shafts of warm light that penetrate from an unseen entrance. The flames create a natural focal point, their orange-yellow tongues licking upward and casting elongated shadows that dance across the rough stone walls in rhythmic patterns. - -To the right, rustic shelving lines the cave wall, displaying an apothecary's collection of glass containers in varying shapes and sizes. Some vessels hold strange liquids in viridian and amber hues, while others remain mysteriously dark. A human skull presides over this collection, its hollow eye sockets staring into the middle distance. The background reveals a portal opening onto a dark forest, where twisted arboreal forms create a stark silhouette against fading daylight. The palette harmonizes earth tones with supernatural greens and the warm amber of firelight, all rendered with thick, expressive brushwork. - \ No newline at end of file diff --git a/asset-work/kq4_057_witch_cave/caption_2_2446433275/generated.png b/asset-work/kq4_057_witch_cave/caption_2_2446433275_generated.png similarity index 100% rename from asset-work/kq4_057_witch_cave/caption_2_2446433275/generated.png rename to asset-work/kq4_057_witch_cave/caption_2_2446433275_generated.png diff --git a/asset-work/kq4_057_witch_cave/caption_2_2446433275_generated.png.import b/asset-work/kq4_057_witch_cave/caption_2_2446433275_generated.png.import new file mode 100644 index 0000000..fdd7f5a --- /dev/null +++ b/asset-work/kq4_057_witch_cave/caption_2_2446433275_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c31mqcxr1vsss" +path="res://.godot/imported/caption_2_2446433275_generated.png-f38c3dccb04e3c0a09c58f8d09dc7145.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_057_witch_cave/caption_2_2446433275_generated.png" +dest_files=["res://.godot/imported/caption_2_2446433275_generated.png-f38c3dccb04e3c0a09c58f8d09dc7145.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_057_witch_cave/caption_3_2645573122/caption_3.txt b/asset-work/kq4_057_witch_cave/caption_3_2645573122/caption_3.txt deleted file mode 100644 index cc86928..0000000 --- a/asset-work/kq4_057_witch_cave/caption_3_2645573122/caption_3.txt +++ /dev/null @@ -1,6 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A mysterious cavern viewed from a high vantage point, its interior forming a natural amphitheater of weathered stone. The immediate foreground displays packed earth in shades of rust and tan, textured with small stones and organic matter accumulated over time. - -The central focus falls upon a large cauldron perched over burning embers, its circumference catching the fire's radiance while the interior remains mysteriously dark. Wisps of steam or smoke curl upward, painted with delicate, translucent brushstrokes that suggest movement and heat. This fire serves as the chamber's primary illumination source, creating a pool of warm golden light that gradually dissolves into cool shadows toward the cave's edges. - -Along the right wall, crude wooden shelves hold an assortment of alchemical vessels—some tall and slender, others squat and rounded—in glass tinted with emerald, sapphire, and topaz colors. Among these curiosities rests a stark white skull, its smooth surfaces contrasting with the rough textures surrounding it. The rear wall features three distinct niches carved into the living rock, their darkness suggesting hidden depths. Beyond the cave's entrance, glimpsed in the background, sinister tree forms stretch skeletal branches against a dusky sky. The overall mood balances warmth and menace through careful orchestration of light and shadow. - \ No newline at end of file diff --git a/asset-work/kq4_057_witch_cave/caption_3_2645573122/generated.png b/asset-work/kq4_057_witch_cave/caption_3_2645573122_generated.png similarity index 100% rename from asset-work/kq4_057_witch_cave/caption_3_2645573122/generated.png rename to asset-work/kq4_057_witch_cave/caption_3_2645573122_generated.png diff --git a/asset-work/kq4_057_witch_cave/caption_3_2645573122_generated.png.import b/asset-work/kq4_057_witch_cave/caption_3_2645573122_generated.png.import new file mode 100644 index 0000000..d77f275 --- /dev/null +++ b/asset-work/kq4_057_witch_cave/caption_3_2645573122_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://y6cb8i4soagf" +path="res://.godot/imported/caption_3_2645573122_generated.png-9e8822c354a4645c1ad2c830dd8c445d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_057_witch_cave/caption_3_2645573122_generated.png" +dest_files=["res://.godot/imported/caption_3_2645573122_generated.png-9e8822c354a4645c1ad2c830dd8c445d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_057_witches_cave/caption_1_1279478850/caption_1.txt b/asset-work/kq4_057_witches_cave/caption_1_1279478850/caption_1.txt deleted file mode 100644 index ea95718..0000000 --- a/asset-work/kq4_057_witches_cave/caption_1_1279478850/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A dimly lit cavern interior viewed from above, its rough-hewn walls revealing layered geological strata in muted grays and umbers. The foreground displays an earthen floor of rich burnt sienna, textured with subtle undulations and scattered mineral deposits. To the left, a curious alcove is carved into the stone, featuring what appears to be an ancient viewing portal framed by weathered rock, hinting at mysteries beyond. The right wall holds a rough wooden shelf laden with leather-bound tomes in jewel tones of emerald, sapphire, and ruby, their spines catching faint ambient light. Overhead, the domed ceiling curves in organic folds of shadowed stone, creating intimate spatial enclosure. Soft illumination emanates from unseen sources, casting warm amber highlights against cool gray shadows and emphasizing the cave's natural sculptural quality. The composition balances the rugged mineral textures of the enclosure against the hint of civilization suggested by the book collection. diff --git a/asset-work/kq4_057_witches_cave/caption_1_1279478850/generated.png b/asset-work/kq4_057_witches_cave/caption_1_1279478850_generated.png similarity index 100% rename from asset-work/kq4_057_witches_cave/caption_1_1279478850/generated.png rename to asset-work/kq4_057_witches_cave/caption_1_1279478850_generated.png diff --git a/asset-work/kq4_057_witches_cave/caption_1_1279478850_generated.png.import b/asset-work/kq4_057_witches_cave/caption_1_1279478850_generated.png.import new file mode 100644 index 0000000..13512d1 --- /dev/null +++ b/asset-work/kq4_057_witches_cave/caption_1_1279478850_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://jld3csrnvbs0" +path="res://.godot/imported/caption_1_1279478850_generated.png-09cf71647144b6a7f0e736108898778f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_057_witches_cave/caption_1_1279478850_generated.png" +dest_files=["res://.godot/imported/caption_1_1279478850_generated.png-09cf71647144b6a7f0e736108898778f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_057_witches_cave/caption_2_2896292335/caption_2.txt b/asset-work/kq4_057_witches_cave/caption_2_2896292335/caption_2.txt deleted file mode 100644 index 3e3ffac..0000000 --- a/asset-work/kq4_057_witches_cave/caption_2_2896292335/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A secluded grotto interior captured from an elevated perspective, revealing the intimate architecture of a primitive dwelling carved by nature and adapted by mysterious inhabitants. The immediate foreground shows compacted earth floor in warm terracotta tones, gradually rising toward rough stone walls that display centuries of mineral deposition in striated patterns. Dominating the left side, a natural shelf formation holds an enigmatic opening framed by crystalline rock formations, catching faint blue-green light from beyond. On the right, a sturdy ledge supports an eclectic collection of ancient volumes, their weathered covers in deep crimson, forest green, and midnight blue creating rich color accents against the neutral stone. The vaulted ceiling above arches in dramatic folds of granite and limestone, rendered with chiaroscuro brushwork that emphasizes the cave's protective embrace. Diffused golden light filters from an unseen source above, creating subtle rim lighting along rock edges and casting velvety shadows into the recesses. The atmosphere suggests ancient wisdom and arcane secrets held within these stone walls. diff --git a/asset-work/kq4_057_witches_cave/caption_2_2896292335/generated.png b/asset-work/kq4_057_witches_cave/caption_2_2896292335_generated.png similarity index 100% rename from asset-work/kq4_057_witches_cave/caption_2_2896292335/generated.png rename to asset-work/kq4_057_witches_cave/caption_2_2896292335_generated.png diff --git a/asset-work/kq4_057_witches_cave/caption_2_2896292335_generated.png.import b/asset-work/kq4_057_witches_cave/caption_2_2896292335_generated.png.import new file mode 100644 index 0000000..49a3cdc --- /dev/null +++ b/asset-work/kq4_057_witches_cave/caption_2_2896292335_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://uk4w3nakqoe4" +path="res://.godot/imported/caption_2_2896292335_generated.png-9199b0d8eb301c14099246863a6468e3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_057_witches_cave/caption_2_2896292335_generated.png" +dest_files=["res://.godot/imported/caption_2_2896292335_generated.png-9199b0d8eb301c14099246863a6468e3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_057_witches_cave/caption_3_90461190/caption_3.txt b/asset-work/kq4_057_witches_cave/caption_3_90461190/caption_3.txt deleted file mode 100644 index 2f5f24c..0000000 --- a/asset-work/kq4_057_witches_cave/caption_3_90461190/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. An atmospheric cave chamber viewed from a high angle, showcasing the interplay between natural rock formations and subtle signs of habitation. The foreground reveals earthen ground in tones of raw umber and yellow ochre, textured with the patina of age and use. Rising walls of rough-hewn stone display complex surface patterns where water and time have carved flowing channels and pockets into the gray-brown matrix. To the left, a peculiar aperture is set into the rock face, its frame suggesting an otherworldly portal or observation point that catches ethereal light. The right side features a natural stone ledge supporting a modest library of aged books, their spines presenting a spectrum of deep colors from burgundy to teal and gold, contrasting vividly with the neutral stone surroundings. Above, the cavern ceiling curves organically, its surface animated by dramatic shadows and subtle highlights that suggest depth and mystery. Warm amber illumination pools in the center of the space while cooler shadows retreat into the periphery, creating a sense of sanctuary within the ancient stone embrace. diff --git a/asset-work/kq4_057_witches_cave/caption_3_90461190/generated.png b/asset-work/kq4_057_witches_cave/caption_3_90461190_generated.png similarity index 100% rename from asset-work/kq4_057_witches_cave/caption_3_90461190/generated.png rename to asset-work/kq4_057_witches_cave/caption_3_90461190_generated.png diff --git a/asset-work/kq4_057_witches_cave/caption_3_90461190_generated.png.import b/asset-work/kq4_057_witches_cave/caption_3_90461190_generated.png.import new file mode 100644 index 0000000..43de44d --- /dev/null +++ b/asset-work/kq4_057_witches_cave/caption_3_90461190_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dkhgfuwprj7lk" +path="res://.godot/imported/caption_3_90461190_generated.png-86200a9501a66b02226d3e0293d839a6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_057_witches_cave/caption_3_90461190_generated.png" +dest_files=["res://.godot/imported/caption_3_90461190_generated.png-86200a9501a66b02226d3e0293d839a6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_058_organ_room/caption_1_1353249386/caption_1.txt b/asset-work/kq4_058_organ_room/caption_1_1353249386/caption_1.txt deleted file mode 100644 index e4c4c89..0000000 --- a/asset-work/kq4_058_organ_room/caption_1_1353249386/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A dramatic bird's-eye view reveals a circular stone tower chamber dominated by an ancient pipe organ at its heart. In the immediate foreground, weathered wooden floorboards display rich grain patterns and subtle variations in amber and umber tones, their surfaces bearing the patina of age. A simple wooden bench rests before the organ, its worn seat suggesting decades of use. The middle ground centers on the magnificent pipe organ itself, with rows of tarnished metallic pipes rising in graduated heights against rough-hewn stone walls. Dust motes dance in shafts of pale light filtering from above, illuminating cobwebs that drape across the instrument's wooden case. Behind the organ, massive irregular stones form the tower's interior wall, their cool gray surfaces mottled with shadow and age. To the side, a dark rectangular opening in the floor hints at spiral stairs descending into mysterious depths below. The background reveals the tower's conical wooden ceiling with exposed rafters creating radial patterns overhead. The palette harmonizes warm honeyed wood tones, cool slate grays, and deep umbral shadows, all bathed in ethereal, diffused light from an unseen source above. diff --git a/asset-work/kq4_058_organ_room/caption_1_1353249386/caption_1_1727787914/caption_1.txt b/asset-work/kq4_058_organ_room/caption_1_1353249386/caption_1_1727787914/caption_1.txt deleted file mode 100644 index e4c4c89..0000000 --- a/asset-work/kq4_058_organ_room/caption_1_1353249386/caption_1_1727787914/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A dramatic bird's-eye view reveals a circular stone tower chamber dominated by an ancient pipe organ at its heart. In the immediate foreground, weathered wooden floorboards display rich grain patterns and subtle variations in amber and umber tones, their surfaces bearing the patina of age. A simple wooden bench rests before the organ, its worn seat suggesting decades of use. The middle ground centers on the magnificent pipe organ itself, with rows of tarnished metallic pipes rising in graduated heights against rough-hewn stone walls. Dust motes dance in shafts of pale light filtering from above, illuminating cobwebs that drape across the instrument's wooden case. Behind the organ, massive irregular stones form the tower's interior wall, their cool gray surfaces mottled with shadow and age. To the side, a dark rectangular opening in the floor hints at spiral stairs descending into mysterious depths below. The background reveals the tower's conical wooden ceiling with exposed rafters creating radial patterns overhead. The palette harmonizes warm honeyed wood tones, cool slate grays, and deep umbral shadows, all bathed in ethereal, diffused light from an unseen source above. diff --git a/asset-work/kq4_058_organ_room/caption_1_1353249386/caption_1_1727787914/generated.png b/asset-work/kq4_058_organ_room/caption_1_1353249386/caption_1_1727787914/generated.png deleted file mode 100644 index 377905e..0000000 --- a/asset-work/kq4_058_organ_room/caption_1_1353249386/caption_1_1727787914/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:21493d01c892f4180524d51983720f7cf075c4610a630cb5430c9005d7d00809 -size 4267158 diff --git a/asset-work/kq4_058_organ_room/caption_1_1353249386/generated.png b/asset-work/kq4_058_organ_room/caption_1_1353249386_generated.png similarity index 100% rename from asset-work/kq4_058_organ_room/caption_1_1353249386/generated.png rename to asset-work/kq4_058_organ_room/caption_1_1353249386_generated.png diff --git a/asset-work/kq4_058_organ_room/caption_1_1353249386_generated.png.import b/asset-work/kq4_058_organ_room/caption_1_1353249386_generated.png.import new file mode 100644 index 0000000..fc429a4 --- /dev/null +++ b/asset-work/kq4_058_organ_room/caption_1_1353249386_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b5voi24him2tg" +path="res://.godot/imported/caption_1_1353249386_generated.png-e7ce3ea557d1cedf23672f1a3644d379.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_058_organ_room/caption_1_1353249386_generated.png" +dest_files=["res://.godot/imported/caption_1_1353249386_generated.png-e7ce3ea557d1cedf23672f1a3644d379.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_058_organ_room/caption_2_2222463895/caption_2.txt b/asset-work/kq4_058_organ_room/caption_2_2222463895/caption_2.txt deleted file mode 100644 index ff2a9e5..0000000 --- a/asset-work/kq4_058_organ_room/caption_2_2222463895/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. An elevated perspective captures the haunting atmosphere of a medieval tower room where time seems suspended in dust and shadow. The foreground presents textured wooden planking arranged in a circular pattern, its golden-brown surfaces showing knots, grain, and the gentle undulations of aged timber. A modest wooden stool sits centrally, positioned before an ornate pipe organ that commands the middle ground. The organ's case is crafted from dark mahogany, its surface bearing intricate carvings now softened by layers of dust. Multiple tiers of metallic pipes rise like vertical sentinels, catching glimmers of pale light that penetrate from a hidden opening above. Rough stone masonry encircles the room, massive blocks fitted together in ancient craftsmanship, their surfaces displaying variations from pale limestone to deeper charcoal shadows. A gaping rectangular void in the floor near the stool suggests a precipitous descent into darkness. The tower's interior curves gently, creating an intimate yet imposing space. Overhead, timber roof beams converge toward a central point, their dark forms silhouetted against the pale illumination filtering down. The overall palette balances warm wooden ochres against cool stone grays and velvety blacks, creating a melancholic, reverent atmosphere. diff --git a/asset-work/kq4_058_organ_room/caption_2_2222463895/caption_2_1340834676/caption_2.txt b/asset-work/kq4_058_organ_room/caption_2_2222463895/caption_2_1340834676/caption_2.txt deleted file mode 100644 index ff2a9e5..0000000 --- a/asset-work/kq4_058_organ_room/caption_2_2222463895/caption_2_1340834676/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. An elevated perspective captures the haunting atmosphere of a medieval tower room where time seems suspended in dust and shadow. The foreground presents textured wooden planking arranged in a circular pattern, its golden-brown surfaces showing knots, grain, and the gentle undulations of aged timber. A modest wooden stool sits centrally, positioned before an ornate pipe organ that commands the middle ground. The organ's case is crafted from dark mahogany, its surface bearing intricate carvings now softened by layers of dust. Multiple tiers of metallic pipes rise like vertical sentinels, catching glimmers of pale light that penetrate from a hidden opening above. Rough stone masonry encircles the room, massive blocks fitted together in ancient craftsmanship, their surfaces displaying variations from pale limestone to deeper charcoal shadows. A gaping rectangular void in the floor near the stool suggests a precipitous descent into darkness. The tower's interior curves gently, creating an intimate yet imposing space. Overhead, timber roof beams converge toward a central point, their dark forms silhouetted against the pale illumination filtering down. The overall palette balances warm wooden ochres against cool stone grays and velvety blacks, creating a melancholic, reverent atmosphere. diff --git a/asset-work/kq4_058_organ_room/caption_2_2222463895/caption_2_1340834676/generated.png b/asset-work/kq4_058_organ_room/caption_2_2222463895/caption_2_1340834676/generated.png deleted file mode 100644 index d2ed35e..0000000 --- a/asset-work/kq4_058_organ_room/caption_2_2222463895/caption_2_1340834676/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e4b99f874f87cf821c400f5d59418b963f676c91124e727ac1938831ea055aeb -size 4040344 diff --git a/asset-work/kq4_058_organ_room/caption_2_2222463895/generated.png b/asset-work/kq4_058_organ_room/caption_2_2222463895_generated.png similarity index 100% rename from asset-work/kq4_058_organ_room/caption_2_2222463895/generated.png rename to asset-work/kq4_058_organ_room/caption_2_2222463895_generated.png diff --git a/asset-work/kq4_058_organ_room/caption_2_2222463895_generated.png.import b/asset-work/kq4_058_organ_room/caption_2_2222463895_generated.png.import new file mode 100644 index 0000000..06f077b --- /dev/null +++ b/asset-work/kq4_058_organ_room/caption_2_2222463895_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b7jk8bsddyq38" +path="res://.godot/imported/caption_2_2222463895_generated.png-50122f0965802feaf48f5d9137e4a22a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_058_organ_room/caption_2_2222463895_generated.png" +dest_files=["res://.godot/imported/caption_2_2222463895_generated.png-50122f0965802feaf48f5d9137e4a22a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_058_organ_room/caption_3_741160876/caption_3.txt b/asset-work/kq4_058_organ_room/caption_3_741160876/caption_3.txt deleted file mode 100644 index 1e437ab..0000000 --- a/asset-work/kq4_058_organ_room/caption_3_741160876/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. From a commanding high angle, a circular chamber reveals itself as a sanctuary of forgotten music and ancient stone. The immediate foreground showcases honey-toned wooden floorboards arranged in concentric arcs, their surfaces polished by time to a soft sheen that catches ambient light. A solitary wooden bench sits before the room's centerpiece—an elaborate pipe organ with multiple ranks of pipes ascending in shimmering metallic rows. The middle ground is dominated by this majestic instrument, its wooden case displaying the rich patina of walnut and oak, while cobwebs drift like gossamer between the pipes. The rough stone walls of the tower embrace the scene, their irregular surfaces painted in layered grays and browns that suggest centuries of weathering. A mysterious dark opening interrupts the wooden floor, its rectangular form contrasting sharply with the organic curves of the room. In the background, the tower walls rise to meet a vaulted ceiling of heavy timber beams and planking, creating a protective canopy overhead. Light filters down from an unseen aperture above, casting dramatic shadows and illuminating dust particles suspended in the air. The color palette weaves together warm terracotta wood tones, cool blue-grays of ancient stone, and deep shadowy umbers, all unified by the soft, reverential quality of aged interior light. diff --git a/asset-work/kq4_058_organ_room/caption_3_741160876/caption_3_2993467557/caption_3.txt b/asset-work/kq4_058_organ_room/caption_3_741160876/caption_3_2993467557/caption_3.txt deleted file mode 100644 index 1e437ab..0000000 --- a/asset-work/kq4_058_organ_room/caption_3_741160876/caption_3_2993467557/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. From a commanding high angle, a circular chamber reveals itself as a sanctuary of forgotten music and ancient stone. The immediate foreground showcases honey-toned wooden floorboards arranged in concentric arcs, their surfaces polished by time to a soft sheen that catches ambient light. A solitary wooden bench sits before the room's centerpiece—an elaborate pipe organ with multiple ranks of pipes ascending in shimmering metallic rows. The middle ground is dominated by this majestic instrument, its wooden case displaying the rich patina of walnut and oak, while cobwebs drift like gossamer between the pipes. The rough stone walls of the tower embrace the scene, their irregular surfaces painted in layered grays and browns that suggest centuries of weathering. A mysterious dark opening interrupts the wooden floor, its rectangular form contrasting sharply with the organic curves of the room. In the background, the tower walls rise to meet a vaulted ceiling of heavy timber beams and planking, creating a protective canopy overhead. Light filters down from an unseen aperture above, casting dramatic shadows and illuminating dust particles suspended in the air. The color palette weaves together warm terracotta wood tones, cool blue-grays of ancient stone, and deep shadowy umbers, all unified by the soft, reverential quality of aged interior light. diff --git a/asset-work/kq4_058_organ_room/caption_3_741160876/caption_3_2993467557/generated.png b/asset-work/kq4_058_organ_room/caption_3_741160876/caption_3_2993467557/generated.png deleted file mode 100644 index 4c7c08c..0000000 --- a/asset-work/kq4_058_organ_room/caption_3_741160876/caption_3_2993467557/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1b9c5d3b856fd6a7fec4d195116cfa4112e287e00898f8e24419a34b2fe0f29a -size 4207371 diff --git a/asset-work/kq4_058_organ_room/caption_3_741160876/generated.png b/asset-work/kq4_058_organ_room/caption_3_741160876_generated.png similarity index 100% rename from asset-work/kq4_058_organ_room/caption_3_741160876/generated.png rename to asset-work/kq4_058_organ_room/caption_3_741160876_generated.png diff --git a/asset-work/kq4_058_organ_room/caption_3_741160876_generated.png.import b/asset-work/kq4_058_organ_room/caption_3_741160876_generated.png.import new file mode 100644 index 0000000..177496d --- /dev/null +++ b/asset-work/kq4_058_organ_room/caption_3_741160876_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://de5dcs6cfmeia" +path="res://.godot/imported/caption_3_741160876_generated.png-2fa5d232297e9b10306629414081dc3e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_058_organ_room/caption_3_741160876_generated.png" +dest_files=["res://.godot/imported/caption_3_741160876_generated.png-2fa5d232297e9b10306629414081dc3e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_058_tower_organ_room/caption_1_2161022333/generated.png b/asset-work/kq4_058_tower_organ_room/caption_1_2161022333_generated.png similarity index 100% rename from asset-work/kq4_058_tower_organ_room/caption_1_2161022333/generated.png rename to asset-work/kq4_058_tower_organ_room/caption_1_2161022333_generated.png diff --git a/asset-work/kq4_058_tower_organ_room/caption_1_2161022333_generated.png.import b/asset-work/kq4_058_tower_organ_room/caption_1_2161022333_generated.png.import new file mode 100644 index 0000000..dbc54aa --- /dev/null +++ b/asset-work/kq4_058_tower_organ_room/caption_1_2161022333_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b2ytcrg3t6y0h" +path="res://.godot/imported/caption_1_2161022333_generated.png-cab91d213d11f9cd0b0a2061d0016a86.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_058_tower_organ_room/caption_1_2161022333_generated.png" +dest_files=["res://.godot/imported/caption_1_2161022333_generated.png-cab91d213d11f9cd0b0a2061d0016a86.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_058_tower_organ_room/caption_1_3299039647/generated.png b/asset-work/kq4_058_tower_organ_room/caption_1_3299039647_generated.png similarity index 100% rename from asset-work/kq4_058_tower_organ_room/caption_1_3299039647/generated.png rename to asset-work/kq4_058_tower_organ_room/caption_1_3299039647_generated.png diff --git a/asset-work/kq4_058_tower_organ_room/caption_1_3299039647_generated.png.import b/asset-work/kq4_058_tower_organ_room/caption_1_3299039647_generated.png.import new file mode 100644 index 0000000..6eb3e3d --- /dev/null +++ b/asset-work/kq4_058_tower_organ_room/caption_1_3299039647_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://4frlrylwsi3a" +path="res://.godot/imported/caption_1_3299039647_generated.png-3b18965139a31c298a784d0fe37f3017.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_058_tower_organ_room/caption_1_3299039647_generated.png" +dest_files=["res://.godot/imported/caption_1_3299039647_generated.png-3b18965139a31c298a784d0fe37f3017.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_058_tower_organ_room/caption_2_1082071635/generated.png b/asset-work/kq4_058_tower_organ_room/caption_2_1082071635_generated.png similarity index 100% rename from asset-work/kq4_058_tower_organ_room/caption_2_1082071635/generated.png rename to asset-work/kq4_058_tower_organ_room/caption_2_1082071635_generated.png diff --git a/asset-work/kq4_058_tower_organ_room/caption_2_1082071635_generated.png.import b/asset-work/kq4_058_tower_organ_room/caption_2_1082071635_generated.png.import new file mode 100644 index 0000000..8cf3de2 --- /dev/null +++ b/asset-work/kq4_058_tower_organ_room/caption_2_1082071635_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://db0qom0ujyuqk" +path="res://.godot/imported/caption_2_1082071635_generated.png-ed6f4e10fcbc837e9cd2728f413a5635.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_058_tower_organ_room/caption_2_1082071635_generated.png" +dest_files=["res://.godot/imported/caption_2_1082071635_generated.png-ed6f4e10fcbc837e9cd2728f413a5635.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_058_tower_organ_room/caption_2_1428326770/generated.png b/asset-work/kq4_058_tower_organ_room/caption_2_1428326770_generated.png similarity index 100% rename from asset-work/kq4_058_tower_organ_room/caption_2_1428326770/generated.png rename to asset-work/kq4_058_tower_organ_room/caption_2_1428326770_generated.png diff --git a/asset-work/kq4_058_tower_organ_room/caption_2_1428326770_generated.png.import b/asset-work/kq4_058_tower_organ_room/caption_2_1428326770_generated.png.import new file mode 100644 index 0000000..d3a58b3 --- /dev/null +++ b/asset-work/kq4_058_tower_organ_room/caption_2_1428326770_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cdcqqv6hfs7dv" +path="res://.godot/imported/caption_2_1428326770_generated.png-dc793501806c4df07c0c8dc975a6098e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_058_tower_organ_room/caption_2_1428326770_generated.png" +dest_files=["res://.godot/imported/caption_2_1428326770_generated.png-dc793501806c4df07c0c8dc975a6098e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_058_tower_organ_room/caption_3_1529760824/generated.png b/asset-work/kq4_058_tower_organ_room/caption_3_1529760824_generated.png similarity index 100% rename from asset-work/kq4_058_tower_organ_room/caption_3_1529760824/generated.png rename to asset-work/kq4_058_tower_organ_room/caption_3_1529760824_generated.png diff --git a/asset-work/kq4_058_tower_organ_room/caption_3_1529760824_generated.png.import b/asset-work/kq4_058_tower_organ_room/caption_3_1529760824_generated.png.import new file mode 100644 index 0000000..aeea650 --- /dev/null +++ b/asset-work/kq4_058_tower_organ_room/caption_3_1529760824_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://73xtcgili2sm" +path="res://.godot/imported/caption_3_1529760824_generated.png-d28463c40bd9576f36d902f7aac542b5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_058_tower_organ_room/caption_3_1529760824_generated.png" +dest_files=["res://.godot/imported/caption_3_1529760824_generated.png-d28463c40bd9576f36d902f7aac542b5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_058_tower_organ_room/caption_3_3295098337/generated.png b/asset-work/kq4_058_tower_organ_room/caption_3_3295098337_generated.png similarity index 100% rename from asset-work/kq4_058_tower_organ_room/caption_3_3295098337/generated.png rename to asset-work/kq4_058_tower_organ_room/caption_3_3295098337_generated.png diff --git a/asset-work/kq4_058_tower_organ_room/caption_3_3295098337_generated.png.import b/asset-work/kq4_058_tower_organ_room/caption_3_3295098337_generated.png.import new file mode 100644 index 0000000..ccc53e1 --- /dev/null +++ b/asset-work/kq4_058_tower_organ_room/caption_3_3295098337_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://be012toeer1j2" +path="res://.godot/imported/caption_3_3295098337_generated.png-9333177df208bea49581ab0b753d3eec.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_058_tower_organ_room/caption_3_3295098337_generated.png" +dest_files=["res://.godot/imported/caption_3_3295098337_generated.png-9333177df208bea49581ab0b753d3eec.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_059_baby_nursery/caption_1_3911958117/caption_1.txt b/asset-work/kq4_059_baby_nursery/caption_1_3911958117/caption_1.txt deleted file mode 100644 index 30981a2..0000000 --- a/asset-work/kq4_059_baby_nursery/caption_1_3911958117/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A haunting high-angle view of an abandoned nursery frozen in time, bathed in ghostly twilight filtering through tall window panes. In the foreground, a weathered wooden rocking horse stands sentinel on worn floorboards, its painted surface faded and cracked with age, casting long shadows across a threadbare rose-colored rug. The middle ground reveals an intimate tableau of forgotten domesticity: a delicate blue wooden cradle with peeling paint sits beside a matching chest of drawers, both draped in gossamer cobwebs that catch the pale light like spun silver. To the right, an empty rocking chair faces the room, its curved runners suggesting countless hours of gentle motion now stilled. A large window dominates the left wall, framed by tattered curtains, offering a glimpse of stone markers beyond—a silent cemetery visible through dusty glass. The background shows walls where once-cheerful pink floral wallpaper peels away in strips, revealing aged plaster beneath. Wainscoting of dark wood runs along the lower walls, providing stark contrast to the faded upper surfaces. The color palette weaves melancholic dusty roses, faded cerulean blues, and warm amber wood tones, all suffused with ethereal moonlight that transforms neglect into romantic, painterly decay. \ No newline at end of file diff --git a/asset-work/kq4_059_baby_nursery/caption_1_3911958117/generated.png b/asset-work/kq4_059_baby_nursery/caption_1_3911958117_generated.png similarity index 100% rename from asset-work/kq4_059_baby_nursery/caption_1_3911958117/generated.png rename to asset-work/kq4_059_baby_nursery/caption_1_3911958117_generated.png diff --git a/asset-work/kq4_059_baby_nursery/caption_1_3911958117_generated.png.import b/asset-work/kq4_059_baby_nursery/caption_1_3911958117_generated.png.import new file mode 100644 index 0000000..82c2eba --- /dev/null +++ b/asset-work/kq4_059_baby_nursery/caption_1_3911958117_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dcgexl3mhdnta" +path="res://.godot/imported/caption_1_3911958117_generated.png-caaabac9c122a96646f2b874e6b605b3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_059_baby_nursery/caption_1_3911958117_generated.png" +dest_files=["res://.godot/imported/caption_1_3911958117_generated.png-caaabac9c122a96646f2b874e6b605b3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_059_baby_nursery/caption_2_3037083/caption_2.txt b/asset-work/kq4_059_baby_nursery/caption_2_3037083/caption_2.txt deleted file mode 100644 index 3fee563..0000000 --- a/asset-work/kq4_059_baby_nursery/caption_2_3037083/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. An elevated perspective reveals a melancholy Victorian nursery steeped in atmospheric decay and nostalgic sorrow. The immediate foreground features honey-toned wooden floorboards stretching toward a small wooden rocking horse, its mane and tail rendered in thick impasto suggesting worn toy hair, positioned as if mid-gallop on a faded crimson carpet. The middle ground centers on a pale blue cradle with curved rockers, its surface showing years of gentle use beside a sturdy chest with brass pulls tarnished to verdigris. An inviting rocking chair in matching blue occupies the right portion, angled toward the cradle as if awaiting a mother's return. The left wall is dominated by generous windows revealing skeletal tree branches and weathered gravestones outside, the glass panes casting geometric patterns of light across the dusty interior. Background walls display the ravages of time: rose-pink wallpaper bubbles and peels in dramatic sheets, exposing underlying plaster cracked like dried riverbeds. Dust motes dance in shafts of pale light, while cobwebs lace the corners with delicate silver filigree. The composition balances warm wooden textures against cool blue furnishings and the soft mauves of deteriorating wallpaper, all unified under diffused light that transforms abandonment into a meditation on memory and the passage of time. \ No newline at end of file diff --git a/asset-work/kq4_059_baby_nursery/caption_2_3037083/generated.png b/asset-work/kq4_059_baby_nursery/caption_2_3037083_generated.png similarity index 100% rename from asset-work/kq4_059_baby_nursery/caption_2_3037083/generated.png rename to asset-work/kq4_059_baby_nursery/caption_2_3037083_generated.png diff --git a/asset-work/kq4_059_baby_nursery/caption_2_3037083_generated.png.import b/asset-work/kq4_059_baby_nursery/caption_2_3037083_generated.png.import new file mode 100644 index 0000000..eda49a0 --- /dev/null +++ b/asset-work/kq4_059_baby_nursery/caption_2_3037083_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://mp74tmefwnxo" +path="res://.godot/imported/caption_2_3037083_generated.png-91ae87d38f3352f60d209031d0065081.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_059_baby_nursery/caption_2_3037083_generated.png" +dest_files=["res://.godot/imported/caption_2_3037083_generated.png-91ae87d38f3352f60d209031d0065081.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_059_baby_nursery/caption_3_2202587655/caption_3.txt b/asset-work/kq4_059_baby_nursery/caption_3_2202587655/caption_3.txt deleted file mode 100644 index 5a913b0..0000000 --- a/asset-work/kq4_059_baby_nursery/caption_3_2202587655/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A dramatic bird's-eye composition capturing a forgotten nursery suspended between innocence and decay, viewed as if through the perspective of time itself. Foreground elements include richly textured wooden plank flooring where a charming wooden rocking horse commands attention, its painted surfaces showing the patina of countless childhood adventures, standing upon a rectangular rug in deep rose hues now worn to reveal underlying weave patterns. The central middle ground presents a vignette of maternal care abandoned: a sky-blue wooden cradle with elegant turned spindles sits beside a substantial chest of drawers, their surfaces accumulated with decades of dust creating soft, velvety textures. A comfortable rocking chair faces inward, its woven seat and curved silhouette suggesting comfort now gone cold. To the left, tall casement windows frame a haunting view of marble monuments and iron crosses in a neglected cemetery beyond, the glass reflecting interior shadows while permitting ghostly exterior light to penetrate. Background architecture reveals a room in gentle dissolution: upper walls of once-vibrant pink floral paper hang in desolate strips, while lower walls boast substantial wainscoting of dark oak showing fine grain and craftsmanship. Delicate cobwebs span corners like lace curtains, and dust blankets every horizontal surface with uniform softness. The palette harmonizes dusty pinks, serene blues, warm wood tones, and the pale grays of filtered daylight, creating a romantic atmosphere where beauty emerges from the poetics of neglect. \ No newline at end of file diff --git a/asset-work/kq4_059_baby_nursery/caption_3_2202587655/generated.png b/asset-work/kq4_059_baby_nursery/caption_3_2202587655_generated.png similarity index 100% rename from asset-work/kq4_059_baby_nursery/caption_3_2202587655/generated.png rename to asset-work/kq4_059_baby_nursery/caption_3_2202587655_generated.png diff --git a/asset-work/kq4_059_baby_nursery/caption_3_2202587655_generated.png.import b/asset-work/kq4_059_baby_nursery/caption_3_2202587655_generated.png.import new file mode 100644 index 0000000..b38631d --- /dev/null +++ b/asset-work/kq4_059_baby_nursery/caption_3_2202587655_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c2l4gp22pwf0o" +path="res://.godot/imported/caption_3_2202587655_generated.png-6e2a317c49a77c4d631cbb9f78c5eba3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_059_baby_nursery/caption_3_2202587655_generated.png" +dest_files=["res://.godot/imported/caption_3_2202587655_generated.png-6e2a317c49a77c4d631cbb9f78c5eba3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_060_bedroom/caption_1_3779110798/caption_1.txt b/asset-work/kq4_060_bedroom/caption_1_3779110798/caption_1.txt deleted file mode 100644 index 0556ef9..0000000 --- a/asset-work/kq4_060_bedroom/caption_1_3779110798/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A high-angle perspective reveals a cozy yet elegant bedroom chamber within an ancient stone tower. In the foreground, the rich wooden floorboards stretch with visible grain and warm amber tones, catching subtle light that filters through the chamber. A heavy wooden dresser with carved panels stands against the right wall, its surface adorned with fine details suggesting craftsmanship of another era. The middle ground is dominated by an ornate four-poster bed dressed in deep blue velvet covers that cascade in luxurious folds, the fabric rendered in thick impasto strokes that catch the light. To the left, a stone fireplace with dancing flames casts warm orange glows across the room, the fire painted with flickering yellows and reds that contrast with the cool shadows. A magnificent window with draped blue curtains frames the distant view beyond, the glass panes reflecting muted afternoon light. In the background, heavy ceiling beams cross overhead in dark timber, while a mysterious square opening in the ceiling suggests access to realms above. The walls display a rich teal-blue hue with decorative paneling, creating an atmosphere of gothic romance. The chandelier hangs like a crystalline constellation, catching and scattering prismatic light throughout the chamber. diff --git a/asset-work/kq4_060_bedroom/caption_1_3779110798/caption_1_1501173044/caption_1.txt b/asset-work/kq4_060_bedroom/caption_1_3779110798/caption_1_1501173044/caption_1.txt deleted file mode 100644 index 0556ef9..0000000 --- a/asset-work/kq4_060_bedroom/caption_1_3779110798/caption_1_1501173044/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A high-angle perspective reveals a cozy yet elegant bedroom chamber within an ancient stone tower. In the foreground, the rich wooden floorboards stretch with visible grain and warm amber tones, catching subtle light that filters through the chamber. A heavy wooden dresser with carved panels stands against the right wall, its surface adorned with fine details suggesting craftsmanship of another era. The middle ground is dominated by an ornate four-poster bed dressed in deep blue velvet covers that cascade in luxurious folds, the fabric rendered in thick impasto strokes that catch the light. To the left, a stone fireplace with dancing flames casts warm orange glows across the room, the fire painted with flickering yellows and reds that contrast with the cool shadows. A magnificent window with draped blue curtains frames the distant view beyond, the glass panes reflecting muted afternoon light. In the background, heavy ceiling beams cross overhead in dark timber, while a mysterious square opening in the ceiling suggests access to realms above. The walls display a rich teal-blue hue with decorative paneling, creating an atmosphere of gothic romance. The chandelier hangs like a crystalline constellation, catching and scattering prismatic light throughout the chamber. diff --git a/asset-work/kq4_060_bedroom/caption_1_3779110798/caption_1_1501173044/generated.png b/asset-work/kq4_060_bedroom/caption_1_3779110798/caption_1_1501173044/generated.png deleted file mode 100644 index bb736af..0000000 --- a/asset-work/kq4_060_bedroom/caption_1_3779110798/caption_1_1501173044/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e1203c6916edae80ad22e534c8f9cef66551f74b8324fce1c2d6025e52149c7a -size 4384535 diff --git a/asset-work/kq4_060_bedroom/caption_1_3779110798/generated.png b/asset-work/kq4_060_bedroom/caption_1_3779110798_generated.png similarity index 100% rename from asset-work/kq4_060_bedroom/caption_1_3779110798/generated.png rename to asset-work/kq4_060_bedroom/caption_1_3779110798_generated.png diff --git a/asset-work/kq4_060_bedroom/caption_1_3779110798_generated.png.import b/asset-work/kq4_060_bedroom/caption_1_3779110798_generated.png.import new file mode 100644 index 0000000..b304f38 --- /dev/null +++ b/asset-work/kq4_060_bedroom/caption_1_3779110798_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://e2e6k3gibhv7" +path="res://.godot/imported/caption_1_3779110798_generated.png-2fa16170c7a53257d36fcc1578e59852.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_060_bedroom/caption_1_3779110798_generated.png" +dest_files=["res://.godot/imported/caption_1_3779110798_generated.png-2fa16170c7a53257d36fcc1578e59852.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_060_bedroom/caption_2_634086500/caption_2.txt b/asset-work/kq4_060_bedroom/caption_2_634086500/caption_2.txt deleted file mode 100644 index 0c90158..0000000 --- a/asset-work/kq4_060_bedroom/caption_2_634086500/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. An elevated view captures an intimate tower bedroom suffused with atmospheric mystery and warmth. The immediate foreground reveals textured floorboards laid in parallel lines, their honey-colored surfaces worn smooth by time and age, leading the eye deeper into the chamber. Along the right wall stands an imposing wooden wardrobe with paneled doors, its dark walnut finish gleaming in the room's ambient light. At the center of the composition, a grand bed draped in sumptuous sapphire bedding creates a focal point of comfort and luxury, the fabric folds painted with deep blues and subtle highlights suggesting rich velvet texture. To the left side, a substantial fireplace of rough-hewn stone contains lively flames that illuminate the space with dancing golden illumination, casting long velvet shadows across the floorboards. The background features tall windows hung with elegant blue draperies that pool gracefully at the base, framing a glimpse of the world outside. Overhead, substantial wooden beams traverse the ceiling in parallel lines, adding architectural depth and character. A dark square aperture in the ceiling hints at hidden spaces above, while a delicate chandelier suspended from the center sparkles with crystalline prisms. The walls are washed in deep teal tones with classical wainscoting, creating an ambiance of timeless gothic elegance bathed in firelight. diff --git a/asset-work/kq4_060_bedroom/caption_2_634086500/caption_2_1119378596/caption_2.txt b/asset-work/kq4_060_bedroom/caption_2_634086500/caption_2_1119378596/caption_2.txt deleted file mode 100644 index 0c90158..0000000 --- a/asset-work/kq4_060_bedroom/caption_2_634086500/caption_2_1119378596/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. An elevated view captures an intimate tower bedroom suffused with atmospheric mystery and warmth. The immediate foreground reveals textured floorboards laid in parallel lines, their honey-colored surfaces worn smooth by time and age, leading the eye deeper into the chamber. Along the right wall stands an imposing wooden wardrobe with paneled doors, its dark walnut finish gleaming in the room's ambient light. At the center of the composition, a grand bed draped in sumptuous sapphire bedding creates a focal point of comfort and luxury, the fabric folds painted with deep blues and subtle highlights suggesting rich velvet texture. To the left side, a substantial fireplace of rough-hewn stone contains lively flames that illuminate the space with dancing golden illumination, casting long velvet shadows across the floorboards. The background features tall windows hung with elegant blue draperies that pool gracefully at the base, framing a glimpse of the world outside. Overhead, substantial wooden beams traverse the ceiling in parallel lines, adding architectural depth and character. A dark square aperture in the ceiling hints at hidden spaces above, while a delicate chandelier suspended from the center sparkles with crystalline prisms. The walls are washed in deep teal tones with classical wainscoting, creating an ambiance of timeless gothic elegance bathed in firelight. diff --git a/asset-work/kq4_060_bedroom/caption_2_634086500/caption_2_1119378596/generated.png b/asset-work/kq4_060_bedroom/caption_2_634086500/caption_2_1119378596/generated.png deleted file mode 100644 index 127e870..0000000 --- a/asset-work/kq4_060_bedroom/caption_2_634086500/caption_2_1119378596/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9a1f4ed33f4207113886ee8e348838e3574ef7ed4b83a8ec4da9be210e4af0e9 -size 4273724 diff --git a/asset-work/kq4_060_bedroom/caption_2_634086500/generated.png b/asset-work/kq4_060_bedroom/caption_2_634086500_generated.png similarity index 100% rename from asset-work/kq4_060_bedroom/caption_2_634086500/generated.png rename to asset-work/kq4_060_bedroom/caption_2_634086500_generated.png diff --git a/asset-work/kq4_060_bedroom/caption_2_634086500_generated.png.import b/asset-work/kq4_060_bedroom/caption_2_634086500_generated.png.import new file mode 100644 index 0000000..902209a --- /dev/null +++ b/asset-work/kq4_060_bedroom/caption_2_634086500_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://kvrh1o6wvcrj" +path="res://.godot/imported/caption_2_634086500_generated.png-4982d77e16170ae97f3837c41f12fc55.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_060_bedroom/caption_2_634086500_generated.png" +dest_files=["res://.godot/imported/caption_2_634086500_generated.png-4982d77e16170ae97f3837c41f12fc55.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_060_bedroom/caption_3_1580151395/caption_3.txt b/asset-work/kq4_060_bedroom/caption_3_1580151395/caption_3.txt deleted file mode 100644 index b66e7ef..0000000 --- a/asset-work/kq4_060_bedroom/caption_3_1580151395/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A dramatic overhead perspective reveals a hauntingly beautiful bedroom within a medieval tower, painted with romantic atmosphere and rich textural detail. The foreground showcases beautifully aged hardwood flooring with visible grain patterns and subtle variations in tone from golden amber to warm umber, the planks receding in perspective toward the room's heart. To the right, an ornate wooden chest of drawers displays intricate carved details and polished surfaces that reflect the room's ambient light. The central composition features an imposing bed frame swathed in luxurious deep blue bedclothes that drape and fold with painterly elegance, the velvet fabric rendered in deep indigo and sapphire tones that shift with imagined light. Along the left wall, a grand stone fireplace crackles with vibrant flames painted in strokes of crimson, orange, and gold, providing warmth and illumination that creates dramatic chiaroscuro effects throughout the chamber. Behind the bed, tall arched windows adorned with flowing blue curtains allow soft natural light to filter in, creating an ethereal glow. The ceiling soars overhead with heavy dark beams crossing in geometric patterns, while a square trapdoor opening suggests mysterious passages above. A graceful chandelier descends from the vaulted ceiling, its crystalline elements scattering prismatic light. The walls wear a patina of teal-blue with decorative paneling that speaks to the room's noble heritage. diff --git a/asset-work/kq4_060_bedroom/caption_3_1580151395/caption_3_3488884881/caption_3.txt b/asset-work/kq4_060_bedroom/caption_3_1580151395/caption_3_3488884881/caption_3.txt deleted file mode 100644 index b66e7ef..0000000 --- a/asset-work/kq4_060_bedroom/caption_3_1580151395/caption_3_3488884881/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A dramatic overhead perspective reveals a hauntingly beautiful bedroom within a medieval tower, painted with romantic atmosphere and rich textural detail. The foreground showcases beautifully aged hardwood flooring with visible grain patterns and subtle variations in tone from golden amber to warm umber, the planks receding in perspective toward the room's heart. To the right, an ornate wooden chest of drawers displays intricate carved details and polished surfaces that reflect the room's ambient light. The central composition features an imposing bed frame swathed in luxurious deep blue bedclothes that drape and fold with painterly elegance, the velvet fabric rendered in deep indigo and sapphire tones that shift with imagined light. Along the left wall, a grand stone fireplace crackles with vibrant flames painted in strokes of crimson, orange, and gold, providing warmth and illumination that creates dramatic chiaroscuro effects throughout the chamber. Behind the bed, tall arched windows adorned with flowing blue curtains allow soft natural light to filter in, creating an ethereal glow. The ceiling soars overhead with heavy dark beams crossing in geometric patterns, while a square trapdoor opening suggests mysterious passages above. A graceful chandelier descends from the vaulted ceiling, its crystalline elements scattering prismatic light. The walls wear a patina of teal-blue with decorative paneling that speaks to the room's noble heritage. diff --git a/asset-work/kq4_060_bedroom/caption_3_1580151395/caption_3_3488884881/generated.png b/asset-work/kq4_060_bedroom/caption_3_1580151395/caption_3_3488884881/generated.png deleted file mode 100644 index 3d1b8f9..0000000 --- a/asset-work/kq4_060_bedroom/caption_3_1580151395/caption_3_3488884881/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a17e29436e9f3ae6f93a740894fe0061279e3709790405f2de6756bb1adfc327 -size 4387419 diff --git a/asset-work/kq4_060_bedroom/caption_3_1580151395/generated.png b/asset-work/kq4_060_bedroom/caption_3_1580151395_generated.png similarity index 100% rename from asset-work/kq4_060_bedroom/caption_3_1580151395/generated.png rename to asset-work/kq4_060_bedroom/caption_3_1580151395_generated.png diff --git a/asset-work/kq4_060_bedroom/caption_3_1580151395_generated.png.import b/asset-work/kq4_060_bedroom/caption_3_1580151395_generated.png.import new file mode 100644 index 0000000..f69e9c9 --- /dev/null +++ b/asset-work/kq4_060_bedroom/caption_3_1580151395_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bw7hqia4e8443" +path="res://.godot/imported/caption_3_1580151395_generated.png-394b2a7ab9e030d02cb1db92db6b759e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_060_bedroom/caption_3_1580151395_generated.png" +dest_files=["res://.godot/imported/caption_3_1580151395_generated.png-394b2a7ab9e030d02cb1db92db6b759e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_061_tower_stairs/caption_1_230062103/caption_1.txt b/asset-work/kq4_061_tower_stairs/caption_1_230062103/caption_1.txt deleted file mode 100644 index 23bda02..0000000 --- a/asset-work/kq4_061_tower_stairs/caption_1_230062103/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A vertiginous descent into a medieval stone tower viewed from high above, the spiral staircase coiling downward like a wooden serpent into shadowy depths. The foreground reveals rough-hewn stone walls with mortar lines creating geometric patterns, their surfaces weathered by centuries of moisture and air. Weathered wooden steps with visible grain and age-darkened planks spiral tightly around a central void, each tread catching slivers of pale light from unseen windows. The middle ground showcases the dramatic helix of the staircase winding downward, handrails following the same graceful curve, while shadows pool in the deep well at the center, suggesting mysterious depths below. Patches of verdant moss cling to the darker stone crevices, adding organic texture to the man-made structure. The background fades into impenetrable darkness at the tower's base, where light fails to penetrate. Cool gray stones contrast with warm amber wood tones, while deep umbral shadows create dramatic chiaroscuro effects. The palette balances slate grays, weathered oak browns, and mysterious blue-violet shadows, all rendered with thick impasto brushwork that emphasizes the rough texture of ancient masonry. diff --git a/asset-work/kq4_061_tower_stairs/caption_1_230062103/caption_1_254545832/caption_1.txt b/asset-work/kq4_061_tower_stairs/caption_1_230062103/caption_1_254545832/caption_1.txt deleted file mode 100644 index 23bda02..0000000 --- a/asset-work/kq4_061_tower_stairs/caption_1_230062103/caption_1_254545832/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A vertiginous descent into a medieval stone tower viewed from high above, the spiral staircase coiling downward like a wooden serpent into shadowy depths. The foreground reveals rough-hewn stone walls with mortar lines creating geometric patterns, their surfaces weathered by centuries of moisture and air. Weathered wooden steps with visible grain and age-darkened planks spiral tightly around a central void, each tread catching slivers of pale light from unseen windows. The middle ground showcases the dramatic helix of the staircase winding downward, handrails following the same graceful curve, while shadows pool in the deep well at the center, suggesting mysterious depths below. Patches of verdant moss cling to the darker stone crevices, adding organic texture to the man-made structure. The background fades into impenetrable darkness at the tower's base, where light fails to penetrate. Cool gray stones contrast with warm amber wood tones, while deep umbral shadows create dramatic chiaroscuro effects. The palette balances slate grays, weathered oak browns, and mysterious blue-violet shadows, all rendered with thick impasto brushwork that emphasizes the rough texture of ancient masonry. diff --git a/asset-work/kq4_061_tower_stairs/caption_1_230062103/caption_1_254545832/generated.png b/asset-work/kq4_061_tower_stairs/caption_1_230062103/caption_1_254545832/generated.png deleted file mode 100644 index 850afc7..0000000 --- a/asset-work/kq4_061_tower_stairs/caption_1_230062103/caption_1_254545832/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:08be92a8d39a1fd2c0d4f58151a0f1dc599cdc46f57364249800f32c237f5a08 -size 4450927 diff --git a/asset-work/kq4_061_tower_stairs/caption_1_230062103/generated.png b/asset-work/kq4_061_tower_stairs/caption_1_230062103_generated.png similarity index 100% rename from asset-work/kq4_061_tower_stairs/caption_1_230062103/generated.png rename to asset-work/kq4_061_tower_stairs/caption_1_230062103_generated.png diff --git a/asset-work/kq4_061_tower_stairs/caption_1_230062103_generated.png.import b/asset-work/kq4_061_tower_stairs/caption_1_230062103_generated.png.import new file mode 100644 index 0000000..d770164 --- /dev/null +++ b/asset-work/kq4_061_tower_stairs/caption_1_230062103_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bcrd3t3u0lgu6" +path="res://.godot/imported/caption_1_230062103_generated.png-ae5a8b44b83195475be9f46cdae957d1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_061_tower_stairs/caption_1_230062103_generated.png" +dest_files=["res://.godot/imported/caption_1_230062103_generated.png-ae5a8b44b83195475be9f46cdae957d1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_061_tower_stairs/caption_2_2258659795/caption_2.txt b/asset-work/kq4_061_tower_stairs/caption_2_2258659795/caption_2.txt deleted file mode 100644 index 202e2c0..0000000 --- a/asset-work/kq4_061_tower_stairs/caption_2_2258659795/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A dizzying perspective looking down a cylindrical stone tower, where time-worn wooden stairs spiral into the abyss below. In the immediate foreground, massive stone blocks form the tower's upper rim, their surfaces carved by age into organic undulations, with patches of emerald moss thriving in the perpetual dampness. The staircase emerges from the foreground, its wooden treads displaying rich patina and hand-worn smoothness from countless footsteps, winding gracefully around the tower's inner circumference. The middle ground reveals the spiral continuing its descent, each step diminishing in scale while gaining depth through atmospheric perspective, handrails following the same elegant curve like a ribbon of dark wood. Shafts of diffused light penetrate from above, illuminating dust motes dancing in the air and casting elongated shadows that accentuate the depth. The background plunges into velvety darkness at the tower's base, a mysterious void suggesting hidden chambers below. The composition balances the organic warmth of aged oak against the cold permanence of gray granite, with subtle ochres and siennas in the wood contrasting against blue-gray stone. Light filters from above, creating dramatic pools of illumination that reveal texture while leaving the depths in painterly shadow. diff --git a/asset-work/kq4_061_tower_stairs/caption_2_2258659795/caption_2_199499451/caption_2.txt b/asset-work/kq4_061_tower_stairs/caption_2_2258659795/caption_2_199499451/caption_2.txt deleted file mode 100644 index 202e2c0..0000000 --- a/asset-work/kq4_061_tower_stairs/caption_2_2258659795/caption_2_199499451/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A dizzying perspective looking down a cylindrical stone tower, where time-worn wooden stairs spiral into the abyss below. In the immediate foreground, massive stone blocks form the tower's upper rim, their surfaces carved by age into organic undulations, with patches of emerald moss thriving in the perpetual dampness. The staircase emerges from the foreground, its wooden treads displaying rich patina and hand-worn smoothness from countless footsteps, winding gracefully around the tower's inner circumference. The middle ground reveals the spiral continuing its descent, each step diminishing in scale while gaining depth through atmospheric perspective, handrails following the same elegant curve like a ribbon of dark wood. Shafts of diffused light penetrate from above, illuminating dust motes dancing in the air and casting elongated shadows that accentuate the depth. The background plunges into velvety darkness at the tower's base, a mysterious void suggesting hidden chambers below. The composition balances the organic warmth of aged oak against the cold permanence of gray granite, with subtle ochres and siennas in the wood contrasting against blue-gray stone. Light filters from above, creating dramatic pools of illumination that reveal texture while leaving the depths in painterly shadow. diff --git a/asset-work/kq4_061_tower_stairs/caption_2_2258659795/caption_2_199499451/generated.png b/asset-work/kq4_061_tower_stairs/caption_2_2258659795/caption_2_199499451/generated.png deleted file mode 100644 index 305aa98..0000000 --- a/asset-work/kq4_061_tower_stairs/caption_2_2258659795/caption_2_199499451/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c58c219b4454fe3dc5e5ca5e715fc509bdcc1fe93bd24ab3ddd3c9e5e22343ef -size 4244027 diff --git a/asset-work/kq4_061_tower_stairs/caption_2_2258659795/generated.png b/asset-work/kq4_061_tower_stairs/caption_2_2258659795_generated.png similarity index 100% rename from asset-work/kq4_061_tower_stairs/caption_2_2258659795/generated.png rename to asset-work/kq4_061_tower_stairs/caption_2_2258659795_generated.png diff --git a/asset-work/kq4_061_tower_stairs/caption_2_2258659795_generated.png.import b/asset-work/kq4_061_tower_stairs/caption_2_2258659795_generated.png.import new file mode 100644 index 0000000..c59132e --- /dev/null +++ b/asset-work/kq4_061_tower_stairs/caption_2_2258659795_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://nlfjef86i01m" +path="res://.godot/imported/caption_2_2258659795_generated.png-55a37eecf2397b46f719de56cbf24b7e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_061_tower_stairs/caption_2_2258659795_generated.png" +dest_files=["res://.godot/imported/caption_2_2258659795_generated.png-55a37eecf2397b46f719de56cbf24b7e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_061_tower_stairs/caption_3_1169375479/caption_3.txt b/asset-work/kq4_061_tower_stairs/caption_3_1169375479/caption_3.txt deleted file mode 100644 index 6bf1002..0000000 --- a/asset-work/kq4_061_tower_stairs/caption_3_1169375479/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A dramatic bird's-eye view descending into an ancient cylindrical tower, where a wooden staircase spirals downward like a helix carved by time. The foreground presents massive irregular stone blocks forming the tower's walls, their rough surfaces revealing centuries of weathering, with deep crevices harboring dark moisture and subtle patches of pale lichen. Broad wooden steps with visible grain patterns and hand-polished surfaces spiral tightly around the central shaft, each tread catching diagonal shafts of light that penetrate from narrow openings above. The middle ground follows the staircase as it winds gracefully downward, handrails accompanying the descent with elegant simplicity, while the central void grows increasingly shadowed and mysterious. Architectural details emerge in the stone masonry—rough chisel marks, uneven mortar lines, and the organic curves of aged rock. The background dissolves into deep shadow at the tower's foundation, where the spiral vanishes into impenetrable darkness. The palette harmonizes cool slate grays and charcoal shadows with warm honey-toned wood, while subtle green-gray touches of moss add natural accents. Dramatic side-lighting creates strong contrasts between illuminated stair surfaces and the velvety depths of the central well, emphasizing the dizzying vertical space. diff --git a/asset-work/kq4_061_tower_stairs/caption_3_1169375479/caption_3_2790188247/caption_3.txt b/asset-work/kq4_061_tower_stairs/caption_3_1169375479/caption_3_2790188247/caption_3.txt deleted file mode 100644 index 6bf1002..0000000 --- a/asset-work/kq4_061_tower_stairs/caption_3_1169375479/caption_3_2790188247/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A dramatic bird's-eye view descending into an ancient cylindrical tower, where a wooden staircase spirals downward like a helix carved by time. The foreground presents massive irregular stone blocks forming the tower's walls, their rough surfaces revealing centuries of weathering, with deep crevices harboring dark moisture and subtle patches of pale lichen. Broad wooden steps with visible grain patterns and hand-polished surfaces spiral tightly around the central shaft, each tread catching diagonal shafts of light that penetrate from narrow openings above. The middle ground follows the staircase as it winds gracefully downward, handrails accompanying the descent with elegant simplicity, while the central void grows increasingly shadowed and mysterious. Architectural details emerge in the stone masonry—rough chisel marks, uneven mortar lines, and the organic curves of aged rock. The background dissolves into deep shadow at the tower's foundation, where the spiral vanishes into impenetrable darkness. The palette harmonizes cool slate grays and charcoal shadows with warm honey-toned wood, while subtle green-gray touches of moss add natural accents. Dramatic side-lighting creates strong contrasts between illuminated stair surfaces and the velvety depths of the central well, emphasizing the dizzying vertical space. diff --git a/asset-work/kq4_061_tower_stairs/caption_3_1169375479/caption_3_2790188247/generated.png b/asset-work/kq4_061_tower_stairs/caption_3_1169375479/caption_3_2790188247/generated.png deleted file mode 100644 index 3974620..0000000 --- a/asset-work/kq4_061_tower_stairs/caption_3_1169375479/caption_3_2790188247/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:bce0ee2f76b15bb4db0c3e9d1a90876300b0480a06adc984cdf6818ec9fae693 -size 4533145 diff --git a/asset-work/kq4_061_tower_stairs/caption_3_1169375479/generated.png b/asset-work/kq4_061_tower_stairs/caption_3_1169375479_generated.png similarity index 100% rename from asset-work/kq4_061_tower_stairs/caption_3_1169375479/generated.png rename to asset-work/kq4_061_tower_stairs/caption_3_1169375479_generated.png diff --git a/asset-work/kq4_061_tower_stairs/caption_3_1169375479_generated.png.import b/asset-work/kq4_061_tower_stairs/caption_3_1169375479_generated.png.import new file mode 100644 index 0000000..66d0354 --- /dev/null +++ b/asset-work/kq4_061_tower_stairs/caption_3_1169375479_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://brcwstgq67vej" +path="res://.godot/imported/caption_3_1169375479_generated.png-4c5ef672759df3536c7d329aa040ec24.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_061_tower_stairs/caption_3_1169375479_generated.png" +dest_files=["res://.godot/imported/caption_3_1169375479_generated.png-4c5ef672759df3536c7d329aa040ec24.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_062_bedroom/caption_1_3877392774/caption_1.txt b/asset-work/kq4_062_bedroom/caption_1_3877392774/caption_1.txt deleted file mode 100644 index c1d0029..0000000 --- a/asset-work/kq4_062_bedroom/caption_1_3877392774/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A dimly lit chamber viewed from above, revealing the intimate quarters of a once-grand bedroom now succumbing to age and neglect. The foreground shows weathered wooden floorboards running parallel, their honeyed oak tones worn smooth by years of footsteps, with a faded rug of deep emerald and gold threads partially covering the center. Rising in the middle ground, an imposing four-poster bed dominates the space, its heavy wooden frame carved with faded decorative motifs, dressed in rumpled sheets of forest green that cascade over the sides in soft folds. To the left, a tall armoire stands sentinel, its dark wood surface catching what little light filters through the room. The right side features a dressing table crowned with an oval mirror that reflects ghostly hints of the chamber's blue walls. Those walls, painted in deep midnight blue, show patches of exposed plaster where time has eroded the finish, creating an irregular pattern of lighter tones against the darkness. The ceiling arches overhead in shadowed indigo. Muted afternoon light streams from an unseen source, casting elongated shadows across the floor and highlighting the dust motes suspended in the stale air, while preserving the melancholic atmosphere of abandonment. diff --git a/asset-work/kq4_062_bedroom/caption_1_3877392774/caption_1_3341310167/caption_1.txt b/asset-work/kq4_062_bedroom/caption_1_3877392774/caption_1_3341310167/caption_1.txt deleted file mode 100644 index c1d0029..0000000 --- a/asset-work/kq4_062_bedroom/caption_1_3877392774/caption_1_3341310167/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A dimly lit chamber viewed from above, revealing the intimate quarters of a once-grand bedroom now succumbing to age and neglect. The foreground shows weathered wooden floorboards running parallel, their honeyed oak tones worn smooth by years of footsteps, with a faded rug of deep emerald and gold threads partially covering the center. Rising in the middle ground, an imposing four-poster bed dominates the space, its heavy wooden frame carved with faded decorative motifs, dressed in rumpled sheets of forest green that cascade over the sides in soft folds. To the left, a tall armoire stands sentinel, its dark wood surface catching what little light filters through the room. The right side features a dressing table crowned with an oval mirror that reflects ghostly hints of the chamber's blue walls. Those walls, painted in deep midnight blue, show patches of exposed plaster where time has eroded the finish, creating an irregular pattern of lighter tones against the darkness. The ceiling arches overhead in shadowed indigo. Muted afternoon light streams from an unseen source, casting elongated shadows across the floor and highlighting the dust motes suspended in the stale air, while preserving the melancholic atmosphere of abandonment. diff --git a/asset-work/kq4_062_bedroom/caption_1_3877392774/caption_1_3341310167/generated.png b/asset-work/kq4_062_bedroom/caption_1_3877392774/caption_1_3341310167/generated.png deleted file mode 100644 index 7110760..0000000 --- a/asset-work/kq4_062_bedroom/caption_1_3877392774/caption_1_3341310167/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8967b0ab74e2f2a929b3413cca04e4163e9f2d7547aae02a19488439b0e203ea -size 4115856 diff --git a/asset-work/kq4_062_bedroom/caption_1_3877392774/generated.png b/asset-work/kq4_062_bedroom/caption_1_3877392774_generated.png similarity index 100% rename from asset-work/kq4_062_bedroom/caption_1_3877392774/generated.png rename to asset-work/kq4_062_bedroom/caption_1_3877392774_generated.png diff --git a/asset-work/kq4_062_bedroom/caption_1_3877392774_generated.png.import b/asset-work/kq4_062_bedroom/caption_1_3877392774_generated.png.import new file mode 100644 index 0000000..3e99ae9 --- /dev/null +++ b/asset-work/kq4_062_bedroom/caption_1_3877392774_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ctq51gl7bce3t" +path="res://.godot/imported/caption_1_3877392774_generated.png-458a1a9f956b989c0c7a26f0c7811282.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_062_bedroom/caption_1_3877392774_generated.png" +dest_files=["res://.godot/imported/caption_1_3877392774_generated.png-458a1a9f956b989c0c7a26f0c7811282.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_062_bedroom/caption_2_2823843674/caption_2.txt b/asset-work/kq4_062_bedroom/caption_2_2823843674/caption_2.txt deleted file mode 100644 index 1db5bd9..0000000 --- a/asset-work/kq4_062_bedroom/caption_2_2823843674/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. An atmospheric interior scene captured from an elevated perspective, presenting a vintage bedroom suffused with mysterious twilight hues. The immediate foreground reveals wide planks of aged timber flooring, their surfaces displaying the rich patina of decades, grain patterns visible beneath layers of subtle wear. A runner of deep green velvet, edged with tarnished gold fringe, stretches toward the room's centerpiece. In the middle distance, a substantial wooden bed commands attention with its robust frame of dark mahogany, the headboard reaching upward with ornamental flourishes now softened by time. The bed is dressed in linens of emerald silk that pool luxuriously around the base. To the left, an antique wardrobe with paneled doors stands against the wall, its brass fittings gleaming dully. Opposite, a mahogany vanity supports an ornate mirror in a gilded frame, the glass surface reflecting the room's azure walls. Those walls, painted in deep prussian blue, bear the scars of years in patches where plaster shows through, creating an organic texture of decay and beauty. The ceiling curves overhead in deeper shadow. Diffused light enters from the left, casting dramatic chiaroscuro effects across the furnishings and imbuing the space with romantic, nostalgic melancholy. diff --git a/asset-work/kq4_062_bedroom/caption_2_2823843674/caption_2_4277542663/caption_2.txt b/asset-work/kq4_062_bedroom/caption_2_2823843674/caption_2_4277542663/caption_2.txt deleted file mode 100644 index 1db5bd9..0000000 --- a/asset-work/kq4_062_bedroom/caption_2_2823843674/caption_2_4277542663/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. An atmospheric interior scene captured from an elevated perspective, presenting a vintage bedroom suffused with mysterious twilight hues. The immediate foreground reveals wide planks of aged timber flooring, their surfaces displaying the rich patina of decades, grain patterns visible beneath layers of subtle wear. A runner of deep green velvet, edged with tarnished gold fringe, stretches toward the room's centerpiece. In the middle distance, a substantial wooden bed commands attention with its robust frame of dark mahogany, the headboard reaching upward with ornamental flourishes now softened by time. The bed is dressed in linens of emerald silk that pool luxuriously around the base. To the left, an antique wardrobe with paneled doors stands against the wall, its brass fittings gleaming dully. Opposite, a mahogany vanity supports an ornate mirror in a gilded frame, the glass surface reflecting the room's azure walls. Those walls, painted in deep prussian blue, bear the scars of years in patches where plaster shows through, creating an organic texture of decay and beauty. The ceiling curves overhead in deeper shadow. Diffused light enters from the left, casting dramatic chiaroscuro effects across the furnishings and imbuing the space with romantic, nostalgic melancholy. diff --git a/asset-work/kq4_062_bedroom/caption_2_2823843674/caption_2_4277542663/generated.png b/asset-work/kq4_062_bedroom/caption_2_2823843674/caption_2_4277542663/generated.png deleted file mode 100644 index c810985..0000000 --- a/asset-work/kq4_062_bedroom/caption_2_2823843674/caption_2_4277542663/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a9944942d7e8759d1548b699ab8b2563a74b218fe454e086ad5b8ac7f88f6390 -size 3870250 diff --git a/asset-work/kq4_062_bedroom/caption_2_2823843674/generated.png b/asset-work/kq4_062_bedroom/caption_2_2823843674_generated.png similarity index 100% rename from asset-work/kq4_062_bedroom/caption_2_2823843674/generated.png rename to asset-work/kq4_062_bedroom/caption_2_2823843674_generated.png diff --git a/asset-work/kq4_062_bedroom/caption_2_2823843674_generated.png.import b/asset-work/kq4_062_bedroom/caption_2_2823843674_generated.png.import new file mode 100644 index 0000000..012bd8b --- /dev/null +++ b/asset-work/kq4_062_bedroom/caption_2_2823843674_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://r1bidv17uncc" +path="res://.godot/imported/caption_2_2823843674_generated.png-b95cdae7effc998e728f396c4ef19f6b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_062_bedroom/caption_2_2823843674_generated.png" +dest_files=["res://.godot/imported/caption_2_2823843674_generated.png-b95cdae7effc998e728f396c4ef19f6b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_062_bedroom/caption_3_4035411579/caption_3.txt b/asset-work/kq4_062_bedroom/caption_3_4035411579/caption_3.txt deleted file mode 100644 index a4e8aaf..0000000 --- a/asset-work/kq4_062_bedroom/caption_3_4035411579/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A hauntingly beautiful bedroom interior viewed from a high vantage point, capturing the essence of faded elegance and temporal decay. The foreground presents broad wooden floorboards arranged in traditional fashion, their surfaces burnished to a warm amber sheen through generations of use, interrupted by a rectangular carpet of deep forest green with intricate border patterns worn soft by time. Dominating the central space, an ornate wooden bed rises with imposing presence, its substantial frame crafted from dark timber and adorned with carved details now softened by age. The bedding of rich emerald fabric drapes heavily, suggesting recent occupancy despite the room's air of abandonment. To the left, a tall cabinet of matching dark wood provides vertical counterpoint, while the right side features a low dresser topped with an oval mirror whose silvered surface captures ethereal reflections of the chamber. The surrounding walls, painted in profound midnight blue, reveal extensive areas where the pigment has flaked away, exposing underlying plaster in irregular organic patterns that speak to the passage of years. Overhead, the ceiling recedes into velvety shadow. Soft directional light filters in from an opening on the left, creating dramatic contrasts between illuminated surfaces and deep umbral recesses, while emphasizing the textural richness of wood grain, fabric weave, and deteriorating plaster. diff --git a/asset-work/kq4_062_bedroom/caption_3_4035411579/caption_3_3980351313/caption_3.txt b/asset-work/kq4_062_bedroom/caption_3_4035411579/caption_3_3980351313/caption_3.txt deleted file mode 100644 index a4e8aaf..0000000 --- a/asset-work/kq4_062_bedroom/caption_3_4035411579/caption_3_3980351313/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A hauntingly beautiful bedroom interior viewed from a high vantage point, capturing the essence of faded elegance and temporal decay. The foreground presents broad wooden floorboards arranged in traditional fashion, their surfaces burnished to a warm amber sheen through generations of use, interrupted by a rectangular carpet of deep forest green with intricate border patterns worn soft by time. Dominating the central space, an ornate wooden bed rises with imposing presence, its substantial frame crafted from dark timber and adorned with carved details now softened by age. The bedding of rich emerald fabric drapes heavily, suggesting recent occupancy despite the room's air of abandonment. To the left, a tall cabinet of matching dark wood provides vertical counterpoint, while the right side features a low dresser topped with an oval mirror whose silvered surface captures ethereal reflections of the chamber. The surrounding walls, painted in profound midnight blue, reveal extensive areas where the pigment has flaked away, exposing underlying plaster in irregular organic patterns that speak to the passage of years. Overhead, the ceiling recedes into velvety shadow. Soft directional light filters in from an opening on the left, creating dramatic contrasts between illuminated surfaces and deep umbral recesses, while emphasizing the textural richness of wood grain, fabric weave, and deteriorating plaster. diff --git a/asset-work/kq4_062_bedroom/caption_3_4035411579/caption_3_3980351313/generated.png b/asset-work/kq4_062_bedroom/caption_3_4035411579/caption_3_3980351313/generated.png deleted file mode 100644 index 8e7b69f..0000000 --- a/asset-work/kq4_062_bedroom/caption_3_4035411579/caption_3_3980351313/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2a0fc5d7bf494389f63cc8403357cfc6243aec93a779d94bfa546e0e4f3ba861 -size 4203040 diff --git a/asset-work/kq4_062_bedroom/caption_3_4035411579/generated.png b/asset-work/kq4_062_bedroom/caption_3_4035411579_generated.png similarity index 100% rename from asset-work/kq4_062_bedroom/caption_3_4035411579/generated.png rename to asset-work/kq4_062_bedroom/caption_3_4035411579_generated.png diff --git a/asset-work/kq4_062_bedroom/caption_3_4035411579_generated.png.import b/asset-work/kq4_062_bedroom/caption_3_4035411579_generated.png.import new file mode 100644 index 0000000..d0447f6 --- /dev/null +++ b/asset-work/kq4_062_bedroom/caption_3_4035411579_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cjtry7ob01y5j" +path="res://.godot/imported/caption_3_4035411579_generated.png-8efee34a6b7419474c43c416a534c180.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_062_bedroom/caption_3_4035411579_generated.png" +dest_files=["res://.godot/imported/caption_3_4035411579_generated.png-8efee34a6b7419474c43c416a534c180.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_063_attic/caption_1_2030610154/generated.png b/asset-work/kq4_063_attic/caption_1_2030610154_generated.png similarity index 100% rename from asset-work/kq4_063_attic/caption_1_2030610154/generated.png rename to asset-work/kq4_063_attic/caption_1_2030610154_generated.png diff --git a/asset-work/kq4_063_attic/caption_1_2030610154_generated.png.import b/asset-work/kq4_063_attic/caption_1_2030610154_generated.png.import new file mode 100644 index 0000000..ad748af --- /dev/null +++ b/asset-work/kq4_063_attic/caption_1_2030610154_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bnhx1nmr4y7d" +path="res://.godot/imported/caption_1_2030610154_generated.png-a1e2073da2735c6e5d41b058d78d450d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_063_attic/caption_1_2030610154_generated.png" +dest_files=["res://.godot/imported/caption_1_2030610154_generated.png-a1e2073da2735c6e5d41b058d78d450d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_063_attic/caption_1_3296979163/generated.png b/asset-work/kq4_063_attic/caption_1_3296979163_generated.png similarity index 100% rename from asset-work/kq4_063_attic/caption_1_3296979163/generated.png rename to asset-work/kq4_063_attic/caption_1_3296979163_generated.png diff --git a/asset-work/kq4_063_attic/caption_1_3296979163_generated.png.import b/asset-work/kq4_063_attic/caption_1_3296979163_generated.png.import new file mode 100644 index 0000000..7d4d61f --- /dev/null +++ b/asset-work/kq4_063_attic/caption_1_3296979163_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cpyoa76wxymj7" +path="res://.godot/imported/caption_1_3296979163_generated.png-21ca61d1cbb6d6dab249389d1d824acc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_063_attic/caption_1_3296979163_generated.png" +dest_files=["res://.godot/imported/caption_1_3296979163_generated.png-21ca61d1cbb6d6dab249389d1d824acc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_063_attic/caption_2_2198242331/generated.png b/asset-work/kq4_063_attic/caption_2_2198242331_generated.png similarity index 100% rename from asset-work/kq4_063_attic/caption_2_2198242331/generated.png rename to asset-work/kq4_063_attic/caption_2_2198242331_generated.png diff --git a/asset-work/kq4_063_attic/caption_2_2198242331_generated.png.import b/asset-work/kq4_063_attic/caption_2_2198242331_generated.png.import new file mode 100644 index 0000000..d808cd4 --- /dev/null +++ b/asset-work/kq4_063_attic/caption_2_2198242331_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://buj7wh8ey0tem" +path="res://.godot/imported/caption_2_2198242331_generated.png-f29c7174e530d565348a09472fa61685.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_063_attic/caption_2_2198242331_generated.png" +dest_files=["res://.godot/imported/caption_2_2198242331_generated.png-f29c7174e530d565348a09472fa61685.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_063_attic/caption_2_3487328000/generated.png b/asset-work/kq4_063_attic/caption_2_3487328000_generated.png similarity index 100% rename from asset-work/kq4_063_attic/caption_2_3487328000/generated.png rename to asset-work/kq4_063_attic/caption_2_3487328000_generated.png diff --git a/asset-work/kq4_063_attic/caption_2_3487328000_generated.png.import b/asset-work/kq4_063_attic/caption_2_3487328000_generated.png.import new file mode 100644 index 0000000..ae78a60 --- /dev/null +++ b/asset-work/kq4_063_attic/caption_2_3487328000_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ceql8job2sq67" +path="res://.godot/imported/caption_2_3487328000_generated.png-c97a7958183130ab6dfb9938b0556fe9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_063_attic/caption_2_3487328000_generated.png" +dest_files=["res://.godot/imported/caption_2_3487328000_generated.png-c97a7958183130ab6dfb9938b0556fe9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_063_attic/caption_3_1847180194/generated.png b/asset-work/kq4_063_attic/caption_3_1847180194_generated.png similarity index 100% rename from asset-work/kq4_063_attic/caption_3_1847180194/generated.png rename to asset-work/kq4_063_attic/caption_3_1847180194_generated.png diff --git a/asset-work/kq4_063_attic/caption_3_1847180194_generated.png.import b/asset-work/kq4_063_attic/caption_3_1847180194_generated.png.import new file mode 100644 index 0000000..ab49841 --- /dev/null +++ b/asset-work/kq4_063_attic/caption_3_1847180194_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c2c876lpgndy4" +path="res://.godot/imported/caption_3_1847180194_generated.png-ab9958570a4df3590051d19607c22820.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_063_attic/caption_3_1847180194_generated.png" +dest_files=["res://.godot/imported/caption_3_1847180194_generated.png-ab9958570a4df3590051d19607c22820.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_063_attic/caption_3_418838532/generated.png b/asset-work/kq4_063_attic/caption_3_418838532_generated.png similarity index 100% rename from asset-work/kq4_063_attic/caption_3_418838532/generated.png rename to asset-work/kq4_063_attic/caption_3_418838532_generated.png diff --git a/asset-work/kq4_063_attic/caption_3_418838532_generated.png.import b/asset-work/kq4_063_attic/caption_3_418838532_generated.png.import new file mode 100644 index 0000000..f9d29a7 --- /dev/null +++ b/asset-work/kq4_063_attic/caption_3_418838532_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://brxhmg8vgmjyh" +path="res://.godot/imported/caption_3_418838532_generated.png-6c6ae8e9788fa052c134c12b7b2f7349.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_063_attic/caption_3_418838532_generated.png" +dest_files=["res://.godot/imported/caption_3_418838532_generated.png-6c6ae8e9788fa052c134c12b7b2f7349.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_064_old_dining_room/caption_1_2131765359/generated.png b/asset-work/kq4_064_old_dining_room/caption_1_2131765359_generated.png similarity index 100% rename from asset-work/kq4_064_old_dining_room/caption_1_2131765359/generated.png rename to asset-work/kq4_064_old_dining_room/caption_1_2131765359_generated.png diff --git a/asset-work/kq4_064_old_dining_room/caption_1_2131765359_generated.png.import b/asset-work/kq4_064_old_dining_room/caption_1_2131765359_generated.png.import new file mode 100644 index 0000000..70d6732 --- /dev/null +++ b/asset-work/kq4_064_old_dining_room/caption_1_2131765359_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://uk4bhbnxlnre" +path="res://.godot/imported/caption_1_2131765359_generated.png-1605d1ee7f9310d5cde6d3a528a14ace.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_064_old_dining_room/caption_1_2131765359_generated.png" +dest_files=["res://.godot/imported/caption_1_2131765359_generated.png-1605d1ee7f9310d5cde6d3a528a14ace.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_064_old_dining_room/caption_1_402473245/generated.png b/asset-work/kq4_064_old_dining_room/caption_1_402473245_generated.png similarity index 100% rename from asset-work/kq4_064_old_dining_room/caption_1_402473245/generated.png rename to asset-work/kq4_064_old_dining_room/caption_1_402473245_generated.png diff --git a/asset-work/kq4_064_old_dining_room/caption_1_402473245_generated.png.import b/asset-work/kq4_064_old_dining_room/caption_1_402473245_generated.png.import new file mode 100644 index 0000000..f2ffb32 --- /dev/null +++ b/asset-work/kq4_064_old_dining_room/caption_1_402473245_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cmupokq67cxum" +path="res://.godot/imported/caption_1_402473245_generated.png-d6a960fc1ce0a789af49ee6b9848ac9a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_064_old_dining_room/caption_1_402473245_generated.png" +dest_files=["res://.godot/imported/caption_1_402473245_generated.png-d6a960fc1ce0a789af49ee6b9848ac9a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_064_old_dining_room/caption_2_1240627922/generated.png b/asset-work/kq4_064_old_dining_room/caption_2_1240627922_generated.png similarity index 100% rename from asset-work/kq4_064_old_dining_room/caption_2_1240627922/generated.png rename to asset-work/kq4_064_old_dining_room/caption_2_1240627922_generated.png diff --git a/asset-work/kq4_064_old_dining_room/caption_2_1240627922_generated.png.import b/asset-work/kq4_064_old_dining_room/caption_2_1240627922_generated.png.import new file mode 100644 index 0000000..0eeed9b --- /dev/null +++ b/asset-work/kq4_064_old_dining_room/caption_2_1240627922_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bi5gr1pkw8moa" +path="res://.godot/imported/caption_2_1240627922_generated.png-25e8d1f0045596f1c157262db3d3f11d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_064_old_dining_room/caption_2_1240627922_generated.png" +dest_files=["res://.godot/imported/caption_2_1240627922_generated.png-25e8d1f0045596f1c157262db3d3f11d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_064_old_dining_room/caption_2_2663980632/generated.png b/asset-work/kq4_064_old_dining_room/caption_2_2663980632_generated.png similarity index 100% rename from asset-work/kq4_064_old_dining_room/caption_2_2663980632/generated.png rename to asset-work/kq4_064_old_dining_room/caption_2_2663980632_generated.png diff --git a/asset-work/kq4_064_old_dining_room/caption_2_2663980632_generated.png.import b/asset-work/kq4_064_old_dining_room/caption_2_2663980632_generated.png.import new file mode 100644 index 0000000..1667424 --- /dev/null +++ b/asset-work/kq4_064_old_dining_room/caption_2_2663980632_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cd1wdlvptq0jd" +path="res://.godot/imported/caption_2_2663980632_generated.png-a632c4c0ff3b7c30c9d20013e0148990.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_064_old_dining_room/caption_2_2663980632_generated.png" +dest_files=["res://.godot/imported/caption_2_2663980632_generated.png-a632c4c0ff3b7c30c9d20013e0148990.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_064_old_dining_room/caption_3_3210170694/generated.png b/asset-work/kq4_064_old_dining_room/caption_3_3210170694_generated.png similarity index 100% rename from asset-work/kq4_064_old_dining_room/caption_3_3210170694/generated.png rename to asset-work/kq4_064_old_dining_room/caption_3_3210170694_generated.png diff --git a/asset-work/kq4_064_old_dining_room/caption_3_3210170694_generated.png.import b/asset-work/kq4_064_old_dining_room/caption_3_3210170694_generated.png.import new file mode 100644 index 0000000..6e27d00 --- /dev/null +++ b/asset-work/kq4_064_old_dining_room/caption_3_3210170694_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://kevhjltiuvge" +path="res://.godot/imported/caption_3_3210170694_generated.png-749a76ed7f0907d26988986219233989.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_064_old_dining_room/caption_3_3210170694_generated.png" +dest_files=["res://.godot/imported/caption_3_3210170694_generated.png-749a76ed7f0907d26988986219233989.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_064_old_dining_room/caption_3_795893248/generated.png b/asset-work/kq4_064_old_dining_room/caption_3_795893248_generated.png similarity index 100% rename from asset-work/kq4_064_old_dining_room/caption_3_795893248/generated.png rename to asset-work/kq4_064_old_dining_room/caption_3_795893248_generated.png diff --git a/asset-work/kq4_064_old_dining_room/caption_3_795893248_generated.png.import b/asset-work/kq4_064_old_dining_room/caption_3_795893248_generated.png.import new file mode 100644 index 0000000..2ba99f9 --- /dev/null +++ b/asset-work/kq4_064_old_dining_room/caption_3_795893248_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dc7803qih3nd3" +path="res://.godot/imported/caption_3_795893248_generated.png-08b21df0e4ba02524b5e07ef5d868848.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_064_old_dining_room/caption_3_795893248_generated.png" +dest_files=["res://.godot/imported/caption_3_795893248_generated.png-08b21df0e4ba02524b5e07ef5d868848.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_065_old_kitchen/caption_1_3072413308/generated.png b/asset-work/kq4_065_old_kitchen/caption_1_3072413308_generated.png similarity index 100% rename from asset-work/kq4_065_old_kitchen/caption_1_3072413308/generated.png rename to asset-work/kq4_065_old_kitchen/caption_1_3072413308_generated.png diff --git a/asset-work/kq4_065_old_kitchen/caption_1_3072413308_generated.png.import b/asset-work/kq4_065_old_kitchen/caption_1_3072413308_generated.png.import new file mode 100644 index 0000000..67ee443 --- /dev/null +++ b/asset-work/kq4_065_old_kitchen/caption_1_3072413308_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://byx8cjye7gm1v" +path="res://.godot/imported/caption_1_3072413308_generated.png-ab5dc822d28f487cceae822967ae270d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_065_old_kitchen/caption_1_3072413308_generated.png" +dest_files=["res://.godot/imported/caption_1_3072413308_generated.png-ab5dc822d28f487cceae822967ae270d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_065_old_kitchen/caption_1_3646479347/generated.png b/asset-work/kq4_065_old_kitchen/caption_1_3646479347_generated.png similarity index 100% rename from asset-work/kq4_065_old_kitchen/caption_1_3646479347/generated.png rename to asset-work/kq4_065_old_kitchen/caption_1_3646479347_generated.png diff --git a/asset-work/kq4_065_old_kitchen/caption_1_3646479347_generated.png.import b/asset-work/kq4_065_old_kitchen/caption_1_3646479347_generated.png.import new file mode 100644 index 0000000..d4bf6e7 --- /dev/null +++ b/asset-work/kq4_065_old_kitchen/caption_1_3646479347_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dxtktfmj85x60" +path="res://.godot/imported/caption_1_3646479347_generated.png-2e280f6e415dd10386da90700024266e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_065_old_kitchen/caption_1_3646479347_generated.png" +dest_files=["res://.godot/imported/caption_1_3646479347_generated.png-2e280f6e415dd10386da90700024266e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_065_old_kitchen/caption_2_2220202351/generated.png b/asset-work/kq4_065_old_kitchen/caption_2_2220202351_generated.png similarity index 100% rename from asset-work/kq4_065_old_kitchen/caption_2_2220202351/generated.png rename to asset-work/kq4_065_old_kitchen/caption_2_2220202351_generated.png diff --git a/asset-work/kq4_065_old_kitchen/caption_2_2220202351_generated.png.import b/asset-work/kq4_065_old_kitchen/caption_2_2220202351_generated.png.import new file mode 100644 index 0000000..5474bf0 --- /dev/null +++ b/asset-work/kq4_065_old_kitchen/caption_2_2220202351_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dx6dhq541kxmw" +path="res://.godot/imported/caption_2_2220202351_generated.png-3991c2e2f4d5cffe4d97983bc683329d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_065_old_kitchen/caption_2_2220202351_generated.png" +dest_files=["res://.godot/imported/caption_2_2220202351_generated.png-3991c2e2f4d5cffe4d97983bc683329d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_065_old_kitchen/caption_2_2261038430/generated.png b/asset-work/kq4_065_old_kitchen/caption_2_2261038430_generated.png similarity index 100% rename from asset-work/kq4_065_old_kitchen/caption_2_2261038430/generated.png rename to asset-work/kq4_065_old_kitchen/caption_2_2261038430_generated.png diff --git a/asset-work/kq4_065_old_kitchen/caption_2_2261038430_generated.png.import b/asset-work/kq4_065_old_kitchen/caption_2_2261038430_generated.png.import new file mode 100644 index 0000000..da86a81 --- /dev/null +++ b/asset-work/kq4_065_old_kitchen/caption_2_2261038430_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cfugl1t60qemc" +path="res://.godot/imported/caption_2_2261038430_generated.png-04c777619bf0d892f616887648049be6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_065_old_kitchen/caption_2_2261038430_generated.png" +dest_files=["res://.godot/imported/caption_2_2261038430_generated.png-04c777619bf0d892f616887648049be6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_065_old_kitchen/caption_3_1019766204/generated.png b/asset-work/kq4_065_old_kitchen/caption_3_1019766204_generated.png similarity index 100% rename from asset-work/kq4_065_old_kitchen/caption_3_1019766204/generated.png rename to asset-work/kq4_065_old_kitchen/caption_3_1019766204_generated.png diff --git a/asset-work/kq4_065_old_kitchen/caption_3_1019766204_generated.png.import b/asset-work/kq4_065_old_kitchen/caption_3_1019766204_generated.png.import new file mode 100644 index 0000000..7550a7c --- /dev/null +++ b/asset-work/kq4_065_old_kitchen/caption_3_1019766204_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bgoi7jljem5v0" +path="res://.godot/imported/caption_3_1019766204_generated.png-d6a850f8d80a0cc4fb3174f97dce59d9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_065_old_kitchen/caption_3_1019766204_generated.png" +dest_files=["res://.godot/imported/caption_3_1019766204_generated.png-d6a850f8d80a0cc4fb3174f97dce59d9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_065_old_kitchen/caption_3_321534054/generated.png b/asset-work/kq4_065_old_kitchen/caption_3_321534054_generated.png similarity index 100% rename from asset-work/kq4_065_old_kitchen/caption_3_321534054/generated.png rename to asset-work/kq4_065_old_kitchen/caption_3_321534054_generated.png diff --git a/asset-work/kq4_065_old_kitchen/caption_3_321534054_generated.png.import b/asset-work/kq4_065_old_kitchen/caption_3_321534054_generated.png.import new file mode 100644 index 0000000..196b6ab --- /dev/null +++ b/asset-work/kq4_065_old_kitchen/caption_3_321534054_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cs7d2vococcf8" +path="res://.godot/imported/caption_3_321534054_generated.png-cae52a9fabc37eb6efe2604559766375.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_065_old_kitchen/caption_3_321534054_generated.png" +dest_files=["res://.godot/imported/caption_3_321534054_generated.png-cae52a9fabc37eb6efe2604559766375.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_066_secret_tower/caption_1_1453408152/generated.png b/asset-work/kq4_066_secret_tower/caption_1_1453408152_generated.png similarity index 100% rename from asset-work/kq4_066_secret_tower/caption_1_1453408152/generated.png rename to asset-work/kq4_066_secret_tower/caption_1_1453408152_generated.png diff --git a/asset-work/kq4_066_secret_tower/caption_1_1453408152_generated.png.import b/asset-work/kq4_066_secret_tower/caption_1_1453408152_generated.png.import new file mode 100644 index 0000000..f4d9425 --- /dev/null +++ b/asset-work/kq4_066_secret_tower/caption_1_1453408152_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://46qrxuyrm008" +path="res://.godot/imported/caption_1_1453408152_generated.png-8972e087b435cef03eb32e5c2a73dbfc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_066_secret_tower/caption_1_1453408152_generated.png" +dest_files=["res://.godot/imported/caption_1_1453408152_generated.png-8972e087b435cef03eb32e5c2a73dbfc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_066_secret_tower/caption_1_3105267499/generated.png b/asset-work/kq4_066_secret_tower/caption_1_3105267499_generated.png similarity index 100% rename from asset-work/kq4_066_secret_tower/caption_1_3105267499/generated.png rename to asset-work/kq4_066_secret_tower/caption_1_3105267499_generated.png diff --git a/asset-work/kq4_066_secret_tower/caption_1_3105267499_generated.png.import b/asset-work/kq4_066_secret_tower/caption_1_3105267499_generated.png.import new file mode 100644 index 0000000..ae632ad --- /dev/null +++ b/asset-work/kq4_066_secret_tower/caption_1_3105267499_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b4ahml4jvvaqm" +path="res://.godot/imported/caption_1_3105267499_generated.png-c341651b1544eb0389e8ed6b0c836b6f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_066_secret_tower/caption_1_3105267499_generated.png" +dest_files=["res://.godot/imported/caption_1_3105267499_generated.png-c341651b1544eb0389e8ed6b0c836b6f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_066_secret_tower/caption_2_1716828107/generated.png b/asset-work/kq4_066_secret_tower/caption_2_1716828107_generated.png similarity index 100% rename from asset-work/kq4_066_secret_tower/caption_2_1716828107/generated.png rename to asset-work/kq4_066_secret_tower/caption_2_1716828107_generated.png diff --git a/asset-work/kq4_066_secret_tower/caption_2_1716828107_generated.png.import b/asset-work/kq4_066_secret_tower/caption_2_1716828107_generated.png.import new file mode 100644 index 0000000..0357a09 --- /dev/null +++ b/asset-work/kq4_066_secret_tower/caption_2_1716828107_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://edf1vl176e8k" +path="res://.godot/imported/caption_2_1716828107_generated.png-3ef5722c8e09d6f32cb5cd5ac569f460.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_066_secret_tower/caption_2_1716828107_generated.png" +dest_files=["res://.godot/imported/caption_2_1716828107_generated.png-3ef5722c8e09d6f32cb5cd5ac569f460.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_066_secret_tower/caption_2_709045189/generated.png b/asset-work/kq4_066_secret_tower/caption_2_709045189_generated.png similarity index 100% rename from asset-work/kq4_066_secret_tower/caption_2_709045189/generated.png rename to asset-work/kq4_066_secret_tower/caption_2_709045189_generated.png diff --git a/asset-work/kq4_066_secret_tower/caption_2_709045189_generated.png.import b/asset-work/kq4_066_secret_tower/caption_2_709045189_generated.png.import new file mode 100644 index 0000000..c027c1f --- /dev/null +++ b/asset-work/kq4_066_secret_tower/caption_2_709045189_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dyrajg134yupb" +path="res://.godot/imported/caption_2_709045189_generated.png-6ebe9ed7ed8a431e798ce2047d62a545.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_066_secret_tower/caption_2_709045189_generated.png" +dest_files=["res://.godot/imported/caption_2_709045189_generated.png-6ebe9ed7ed8a431e798ce2047d62a545.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_066_secret_tower/caption_3_1862259228/generated.png b/asset-work/kq4_066_secret_tower/caption_3_1862259228_generated.png similarity index 100% rename from asset-work/kq4_066_secret_tower/caption_3_1862259228/generated.png rename to asset-work/kq4_066_secret_tower/caption_3_1862259228_generated.png diff --git a/asset-work/kq4_066_secret_tower/caption_3_1862259228_generated.png.import b/asset-work/kq4_066_secret_tower/caption_3_1862259228_generated.png.import new file mode 100644 index 0000000..c83279b --- /dev/null +++ b/asset-work/kq4_066_secret_tower/caption_3_1862259228_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://frf1vgrb4b8y" +path="res://.godot/imported/caption_3_1862259228_generated.png-ee8bdc03843f4fe272ade519b55646fb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_066_secret_tower/caption_3_1862259228_generated.png" +dest_files=["res://.godot/imported/caption_3_1862259228_generated.png-ee8bdc03843f4fe272ade519b55646fb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_066_secret_tower/caption_3_3302308763/generated.png b/asset-work/kq4_066_secret_tower/caption_3_3302308763_generated.png similarity index 100% rename from asset-work/kq4_066_secret_tower/caption_3_3302308763/generated.png rename to asset-work/kq4_066_secret_tower/caption_3_3302308763_generated.png diff --git a/asset-work/kq4_066_secret_tower/caption_3_3302308763_generated.png.import b/asset-work/kq4_066_secret_tower/caption_3_3302308763_generated.png.import new file mode 100644 index 0000000..b99a60b --- /dev/null +++ b/asset-work/kq4_066_secret_tower/caption_3_3302308763_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c8hx4jr3pp3w7" +path="res://.godot/imported/caption_3_3302308763_generated.png-73dbc42bba823cf09671b1366e78f6f3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_066_secret_tower/caption_3_3302308763_generated.png" +dest_files=["res://.godot/imported/caption_3_3302308763_generated.png-73dbc42bba823cf09671b1366e78f6f3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_067_the_parlor/caption_1_3350969598/generated.png b/asset-work/kq4_067_the_parlor/caption_1_3350969598_generated.png similarity index 100% rename from asset-work/kq4_067_the_parlor/caption_1_3350969598/generated.png rename to asset-work/kq4_067_the_parlor/caption_1_3350969598_generated.png diff --git a/asset-work/kq4_067_the_parlor/caption_1_3350969598_generated.png.import b/asset-work/kq4_067_the_parlor/caption_1_3350969598_generated.png.import new file mode 100644 index 0000000..04d21f8 --- /dev/null +++ b/asset-work/kq4_067_the_parlor/caption_1_3350969598_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b0we6vygjeaxb" +path="res://.godot/imported/caption_1_3350969598_generated.png-b9700c4e1db193ea8b3c258fb18b3350.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_067_the_parlor/caption_1_3350969598_generated.png" +dest_files=["res://.godot/imported/caption_1_3350969598_generated.png-b9700c4e1db193ea8b3c258fb18b3350.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_067_the_parlor/caption_1_3439042126/generated.png b/asset-work/kq4_067_the_parlor/caption_1_3439042126_generated.png similarity index 100% rename from asset-work/kq4_067_the_parlor/caption_1_3439042126/generated.png rename to asset-work/kq4_067_the_parlor/caption_1_3439042126_generated.png diff --git a/asset-work/kq4_067_the_parlor/caption_1_3439042126_generated.png.import b/asset-work/kq4_067_the_parlor/caption_1_3439042126_generated.png.import new file mode 100644 index 0000000..600179d --- /dev/null +++ b/asset-work/kq4_067_the_parlor/caption_1_3439042126_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://crc8jfbispk87" +path="res://.godot/imported/caption_1_3439042126_generated.png-3519cdc4539224f0125ad523fdbf80e9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_067_the_parlor/caption_1_3439042126_generated.png" +dest_files=["res://.godot/imported/caption_1_3439042126_generated.png-3519cdc4539224f0125ad523fdbf80e9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_067_the_parlor/caption_2_538485209/generated.png b/asset-work/kq4_067_the_parlor/caption_2_538485209_generated.png similarity index 100% rename from asset-work/kq4_067_the_parlor/caption_2_538485209/generated.png rename to asset-work/kq4_067_the_parlor/caption_2_538485209_generated.png diff --git a/asset-work/kq4_067_the_parlor/caption_2_538485209_generated.png.import b/asset-work/kq4_067_the_parlor/caption_2_538485209_generated.png.import new file mode 100644 index 0000000..51f1674 --- /dev/null +++ b/asset-work/kq4_067_the_parlor/caption_2_538485209_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cthemj8c60kta" +path="res://.godot/imported/caption_2_538485209_generated.png-3817e2607e5e2d542f6fa9fb6464c1ff.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_067_the_parlor/caption_2_538485209_generated.png" +dest_files=["res://.godot/imported/caption_2_538485209_generated.png-3817e2607e5e2d542f6fa9fb6464c1ff.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_067_the_parlor/caption_2_554074195/generated.png b/asset-work/kq4_067_the_parlor/caption_2_554074195_generated.png similarity index 100% rename from asset-work/kq4_067_the_parlor/caption_2_554074195/generated.png rename to asset-work/kq4_067_the_parlor/caption_2_554074195_generated.png diff --git a/asset-work/kq4_067_the_parlor/caption_2_554074195_generated.png.import b/asset-work/kq4_067_the_parlor/caption_2_554074195_generated.png.import new file mode 100644 index 0000000..cb241ef --- /dev/null +++ b/asset-work/kq4_067_the_parlor/caption_2_554074195_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://6fe03bxilk6l" +path="res://.godot/imported/caption_2_554074195_generated.png-441841e5e5b3ced28dbb7ea93c568a8e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_067_the_parlor/caption_2_554074195_generated.png" +dest_files=["res://.godot/imported/caption_2_554074195_generated.png-441841e5e5b3ced28dbb7ea93c568a8e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_067_the_parlor/caption_3_1325040537/generated.png b/asset-work/kq4_067_the_parlor/caption_3_1325040537_generated.png similarity index 100% rename from asset-work/kq4_067_the_parlor/caption_3_1325040537/generated.png rename to asset-work/kq4_067_the_parlor/caption_3_1325040537_generated.png diff --git a/asset-work/kq4_067_the_parlor/caption_3_1325040537_generated.png.import b/asset-work/kq4_067_the_parlor/caption_3_1325040537_generated.png.import new file mode 100644 index 0000000..7840b76 --- /dev/null +++ b/asset-work/kq4_067_the_parlor/caption_3_1325040537_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cua4pfapbc6sa" +path="res://.godot/imported/caption_3_1325040537_generated.png-c1d465504d7b622932dd730185e2bbb5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_067_the_parlor/caption_3_1325040537_generated.png" +dest_files=["res://.godot/imported/caption_3_1325040537_generated.png-c1d465504d7b622932dd730185e2bbb5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_067_the_parlor/caption_3_3813478189/generated.png b/asset-work/kq4_067_the_parlor/caption_3_3813478189_generated.png similarity index 100% rename from asset-work/kq4_067_the_parlor/caption_3_3813478189/generated.png rename to asset-work/kq4_067_the_parlor/caption_3_3813478189_generated.png diff --git a/asset-work/kq4_067_the_parlor/caption_3_3813478189_generated.png.import b/asset-work/kq4_067_the_parlor/caption_3_3813478189_generated.png.import new file mode 100644 index 0000000..65831e0 --- /dev/null +++ b/asset-work/kq4_067_the_parlor/caption_3_3813478189_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cuk2grn0kxchr" +path="res://.godot/imported/caption_3_3813478189_generated.png-7842b597098378f5d3d892dcd9c6e07e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_067_the_parlor/caption_3_3813478189_generated.png" +dest_files=["res://.godot/imported/caption_3_3813478189_generated.png-7842b597098378f5d3d892dcd9c6e07e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_068_the_foyer/caption_1_334417433/caption_1.txt b/asset-work/kq4_068_the_foyer/caption_1_334417433/caption_1.txt deleted file mode 100644 index 4b31cf5..0000000 --- a/asset-work/kq4_068_the_foyer/caption_1_334417433/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A grand interior foyer viewed from an elevated perspective, showcasing an elegant stair hall bathed in warm ambient light. The foreground reveals polished wooden flooring with subtle grain patterns and reflective surfaces catching golden light from unseen sources. A magnificent central staircase dominates the composition, its carved balustrades and newel posts rendered in rich mahogany tones, ascending gracefully toward an upper gallery. The walls display deep crimson paneling with vertical ribbing, creating rhythmic shadows that add architectural depth. Flanking the stairwell, ornate gilt-framed portraits hang at precise intervals, their subjects rendered with dignified formality. To the right, a stately grandfather clock stands sentinel, its polished case reflecting the room's warm illumination. A marble-topped console table anchors the center background, supporting an arrangement that catches the eye. Doorways pierce the walls at various levels, suggesting passages to chambers beyond. The color palette harmonizes burgundy, gold, and warm umber tones under soft, diffused lighting that creates intimate atmosphere within the grand space. diff --git a/asset-work/kq4_068_the_foyer/caption_1_334417433/generated.png b/asset-work/kq4_068_the_foyer/caption_1_334417433_generated.png similarity index 100% rename from asset-work/kq4_068_the_foyer/caption_1_334417433/generated.png rename to asset-work/kq4_068_the_foyer/caption_1_334417433_generated.png diff --git a/asset-work/kq4_068_the_foyer/caption_1_334417433_generated.png.import b/asset-work/kq4_068_the_foyer/caption_1_334417433_generated.png.import new file mode 100644 index 0000000..53872c5 --- /dev/null +++ b/asset-work/kq4_068_the_foyer/caption_1_334417433_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://u0dka01my5bi" +path="res://.godot/imported/caption_1_334417433_generated.png-1c12c8512255df2f628ebe030fae4b0e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_068_the_foyer/caption_1_334417433_generated.png" +dest_files=["res://.godot/imported/caption_1_334417433_generated.png-1c12c8512255df2f628ebe030fae4b0e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_068_the_foyer/caption_2_3697110684/caption_2.txt b/asset-work/kq4_068_the_foyer/caption_2_3697110684/caption_2.txt deleted file mode 100644 index 94e0096..0000000 --- a/asset-work/kq4_068_the_foyer/caption_2_3697110684/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. An opulent entry hall captured from above, revealing the refined elegance of a stately manor's threshold. The immediate foreground displays tessellated floor patterns in cream and amber, their surfaces gleaming with waxed perfection. Rising from the center, a sweeping staircase with velvet-carpeted treads in deep plum ascends between elaborately turned balusters, each spindle catching highlights like polished bone. The walls are swathed in rich scarlet wallpaper with subtle textural striations, creating a womb-like enclosure of warmth and privilege. On either side, formal portraits in heavy rococo frames preside over the space, their painted subjects gazing out with aristocratic composure. A tall pendulum clock of dark walnut occupies the right wall, its brass face gleaming against the crimson backdrop. Arched doorways on multiple levels punctuate the scene, their dark openings suggesting mystery beyond. The upper gallery reveals additional passages, creating layered spatial depth. Light streams from hidden sources, casting velvet shadows and illuminating dust motes in golden shafts. The overall impression suggests both welcome and grandeur, rendered with the tactile richness of oil on canvas. diff --git a/asset-work/kq4_068_the_foyer/caption_2_3697110684/generated.png b/asset-work/kq4_068_the_foyer/caption_2_3697110684_generated.png similarity index 100% rename from asset-work/kq4_068_the_foyer/caption_2_3697110684/generated.png rename to asset-work/kq4_068_the_foyer/caption_2_3697110684_generated.png diff --git a/asset-work/kq4_068_the_foyer/caption_2_3697110684_generated.png.import b/asset-work/kq4_068_the_foyer/caption_2_3697110684_generated.png.import new file mode 100644 index 0000000..31cbf57 --- /dev/null +++ b/asset-work/kq4_068_the_foyer/caption_2_3697110684_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cujyxobgcu8qf" +path="res://.godot/imported/caption_2_3697110684_generated.png-6b65a1c1efd8a9d33e135099b8fabe91.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_068_the_foyer/caption_2_3697110684_generated.png" +dest_files=["res://.godot/imported/caption_2_3697110684_generated.png-6b65a1c1efd8a9d33e135099b8fabe91.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_068_the_foyer/caption_3_1114744788/caption_3.txt b/asset-work/kq4_068_the_foyer/caption_3_1114744788/caption_3.txt deleted file mode 100644 index d795ead..0000000 --- a/asset-work/kq4_068_the_foyer/caption_3_1114744788/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A sumptuous entrance chamber viewed from a commanding height, revealing the architectural poetry of a grand residence's heart. The floor stretches out in the foreground, its parquet or polished planks displaying the patina of age and countless footsteps, variegated in honey and amber tones. The central staircase emerges as the compositional anchor, its carpeted runner in regal purple creating a visual pathway that draws the eye upward through the space. Intricately carved railings with rhythmic spindles frame the ascent, their woodwork catching warm light that filters from hidden sources above. Wall surfaces glow in deep rose and crimson, the vertical paneling creating strong linear elements that emphasize the room's height. Gilded frames containing ancestral portraits adorn these walls, their presence adding historical weight and familial legacy to the space. A distinguished longcase clock stands at attention near the right wall, its polished wood case and ornate dial speaking to craftsmanship of another era. Multiple doorways at ground and upper levels offer glimpses into adjoining spaces, creating a labyrinthine sense of possibility. The lighting suggests late afternoon, with warm golden rays casting elongated shadows and enriching the already sumptuous color palette of reds, golds, and deep wood tones. diff --git a/asset-work/kq4_068_the_foyer/caption_3_1114744788/generated.png b/asset-work/kq4_068_the_foyer/caption_3_1114744788_generated.png similarity index 100% rename from asset-work/kq4_068_the_foyer/caption_3_1114744788/generated.png rename to asset-work/kq4_068_the_foyer/caption_3_1114744788_generated.png diff --git a/asset-work/kq4_068_the_foyer/caption_3_1114744788_generated.png.import b/asset-work/kq4_068_the_foyer/caption_3_1114744788_generated.png.import new file mode 100644 index 0000000..a5b4c35 --- /dev/null +++ b/asset-work/kq4_068_the_foyer/caption_3_1114744788_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cieuaah6bu1ag" +path="res://.godot/imported/caption_3_1114744788_generated.png-3c7aa423db1f02701921ad34ffc8f77d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_068_the_foyer/caption_3_1114744788_generated.png" +dest_files=["res://.godot/imported/caption_3_1114744788_generated.png-3c7aa423db1f02701921ad34ffc8f77d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_069_the_crypt/caption_1_4227423911/caption_1.txt b/asset-work/kq4_069_the_crypt/caption_1_4227423911/caption_1.txt deleted file mode 100644 index ef1fe11..0000000 --- a/asset-work/kq4_069_the_crypt/caption_1_4227423911/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A dramatic high-angle view of an ancient burial crypt, its stone chamber bathed in ethereal, subterranean light filtering from unseen sources above. In the foreground, the crypt floor stretches in muted purple and mauve tones, its rough-hewn stone surface catching subtle reflections. To the left, a weathered stone altar stands solemnly, its surface worn smooth by centuries of ritual use, carved with faint traces of ancient hieroglyphics that spiral across its face. The middle ground reveals towering stone columns rising to support unseen ceilings, their fluted surfaces rendered in deep indigo and slate gray, casting long velvet shadows across the chamber. Against the far wall rests an ornate sarcophagus, its lid decorated with faded pictographs hinting at the occupant within. To the right, a raised platform looms above the crypt floor, its edge draped with coiled ropes waiting to become a ladder. Scattered shadows pool in the corners, suggesting hidden depths and passages beyond. The color palette harmonizes cool stone grays with warm undertones of aged limestone, creating an atmosphere of timeless mystery and reverence. diff --git a/asset-work/kq4_069_the_crypt/caption_1_4227423911/generated.png b/asset-work/kq4_069_the_crypt/caption_1_4227423911_generated.png similarity index 100% rename from asset-work/kq4_069_the_crypt/caption_1_4227423911/generated.png rename to asset-work/kq4_069_the_crypt/caption_1_4227423911_generated.png diff --git a/asset-work/kq4_069_the_crypt/caption_1_4227423911_generated.png.import b/asset-work/kq4_069_the_crypt/caption_1_4227423911_generated.png.import new file mode 100644 index 0000000..9e8c182 --- /dev/null +++ b/asset-work/kq4_069_the_crypt/caption_1_4227423911_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c00ma2i6ukh5e" +path="res://.godot/imported/caption_1_4227423911_generated.png-e44cc068f78ae5e374cf6f653e8cb777.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_069_the_crypt/caption_1_4227423911_generated.png" +dest_files=["res://.godot/imported/caption_1_4227423911_generated.png-e44cc068f78ae5e374cf6f653e8cb777.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_069_the_crypt/caption_2_1506518138/caption_2.txt b/asset-work/kq4_069_the_crypt/caption_2_1506518138/caption_2.txt deleted file mode 100644 index 115f9d0..0000000 --- a/asset-work/kq4_069_the_crypt/caption_2_1506518138/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. An elevated perspective reveals the solemn interior of an ancient tomb, where time seems suspended in layers of dust and shadow. The immediate foreground displays the crypt's uneven stone floor, painted in deep violet and rose-gold tones that suggest both age and mystery. Massive cylindrical columns dominate the middle ground, their surfaces textured with carved hieroglyphic patterns spiraling upward into darkness, each column casting dramatic chiaroscuro shadows that dance across the chamber. On the left, a substantial stone table or altar anchors the composition, its ancient surface bearing the patina of countless years. The back wall features an imposing sarcophagus, its decorated lid hinting at the eternal rest of some long-forgotten dignitary. An upper platform extends from the right wall, elevated above the main floor and accessible only by rope ladder, suggesting hidden treasures or dangers above. The lighting is atmospheric and diffused, creating pools of amber warmth against cool stone shadows. The overall palette blends mystical purples with earthy umbers and siennas, evoking the sacred hush of burial chambers untouched for millennia. diff --git a/asset-work/kq4_069_the_crypt/caption_2_1506518138/generated.png b/asset-work/kq4_069_the_crypt/caption_2_1506518138_generated.png similarity index 100% rename from asset-work/kq4_069_the_crypt/caption_2_1506518138/generated.png rename to asset-work/kq4_069_the_crypt/caption_2_1506518138_generated.png diff --git a/asset-work/kq4_069_the_crypt/caption_2_1506518138_generated.png.import b/asset-work/kq4_069_the_crypt/caption_2_1506518138_generated.png.import new file mode 100644 index 0000000..d428da4 --- /dev/null +++ b/asset-work/kq4_069_the_crypt/caption_2_1506518138_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c3s5apin0msn8" +path="res://.godot/imported/caption_2_1506518138_generated.png-cca75021bf0c152325afddfcd3cbceda.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_069_the_crypt/caption_2_1506518138_generated.png" +dest_files=["res://.godot/imported/caption_2_1506518138_generated.png-cca75021bf0c152325afddfcd3cbceda.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_069_the_crypt/caption_3_2757353028/caption_3.txt b/asset-work/kq4_069_the_crypt/caption_3_2757353028/caption_3.txt deleted file mode 100644 index e1339b9..0000000 --- a/asset-work/kq4_069_the_crypt/caption_3_2757353028/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A bird's-eye view captures the haunting beauty of an ancient Egyptian-style crypt, its chamber defined by stark architectural elements and atmospheric depth. The foreground presents a stone floor in rich magenta and dusty rose hues, the irregular surface suggesting centuries of erosion and ritual use. Dominating the left side stands a ceremonial stone altar, its rectangular form carved from the same ancient rock as the walls, surfaces smoothed by time and touch. The middle space is punctuated by majestic fluted columns that rise like sentinels, their stone rendered in deep blue-gray tones that recede into mysterious shadow. Hieroglyphic inscriptions trace the walls in bands of faded pigment, telling stories in a language lost to time. Against the distant wall, an ornate coffin rests in eternal repose, its decorated lid a focal point of reverence. To the right, a raised stone platform creates dramatic vertical interest, its edge marked by the suggestion of climbing apparatus. The lighting filters down from invisible sources above, creating dramatic contrasts between illuminated stone surfaces and velvety shadows. The composition balances architectural precision with the organic texture of aged stone, using a palette of deep purples, slate blues, and warm earth tones to create an atmosphere of ancient solemnity. diff --git a/asset-work/kq4_069_the_crypt/caption_3_2757353028/generated.png b/asset-work/kq4_069_the_crypt/caption_3_2757353028_generated.png similarity index 100% rename from asset-work/kq4_069_the_crypt/caption_3_2757353028/generated.png rename to asset-work/kq4_069_the_crypt/caption_3_2757353028_generated.png diff --git a/asset-work/kq4_069_the_crypt/caption_3_2757353028_generated.png.import b/asset-work/kq4_069_the_crypt/caption_3_2757353028_generated.png.import new file mode 100644 index 0000000..64034b6 --- /dev/null +++ b/asset-work/kq4_069_the_crypt/caption_3_2757353028_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bbylu02164ejb" +path="res://.godot/imported/caption_3_2757353028_generated.png-cf980f5bf9ec852f21b9e384771f9519.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_069_the_crypt/caption_3_2757353028_generated.png" +dest_files=["res://.godot/imported/caption_3_2757353028_generated.png-cf980f5bf9ec852f21b9e384771f9519.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_070_waterfall_cave/caption_1_4269223288/caption_1.txt b/asset-work/kq4_070_waterfall_cave/caption_1_4269223288/caption_1.txt deleted file mode 100644 index adc6567..0000000 --- a/asset-work/kq4_070_waterfall_cave/caption_1_4269223288/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A dramatic cave interior viewed from an elevated perspective, dominated by a magnificent waterfall cascading from above. In the foreground, dark rocky ledges display rich textures of moss-covered stone and wet mineral deposits, catching scattered light that penetrates from unseen openings above. The central feature commands attention: a powerful waterfall plunging into a deep azure pool, rendered with masterful strokes suggesting churning white foam where water meets surface. Crystalline spray mists the surrounding rocks, creating ephemeral rainbows in shafts of light. To the right, massive stone formations rise in layered geological strata, their surfaces slick with moisture and patches of luminescent cave vegetation. The pool extends toward the middle ground, its surface a mirror of reflected light and shadow, transitioning from turquoise shallows to mysterious depths. Background darkness suggests the vastness of the cavern system beyond, with only hints of distant rock walls emerging from velvety shadows. The palette harmonizes deep umbers and slate grays with vibrant cerulean blues and foam whites, illuminated by ethereal light filtering from above. \ No newline at end of file diff --git a/asset-work/kq4_070_waterfall_cave/caption_1_4269223288/generated.png b/asset-work/kq4_070_waterfall_cave/caption_1_4269223288_generated.png similarity index 100% rename from asset-work/kq4_070_waterfall_cave/caption_1_4269223288/generated.png rename to asset-work/kq4_070_waterfall_cave/caption_1_4269223288_generated.png diff --git a/asset-work/kq4_070_waterfall_cave/caption_1_4269223288_generated.png.import b/asset-work/kq4_070_waterfall_cave/caption_1_4269223288_generated.png.import new file mode 100644 index 0000000..66cae1a --- /dev/null +++ b/asset-work/kq4_070_waterfall_cave/caption_1_4269223288_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dlrjcrkewmdmn" +path="res://.godot/imported/caption_1_4269223288_generated.png-61d46eee0ba1d59feab43dfb213bb044.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_070_waterfall_cave/caption_1_4269223288_generated.png" +dest_files=["res://.godot/imported/caption_1_4269223288_generated.png-61d46eee0ba1d59feab43dfb213bb044.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_070_waterfall_cave/caption_2_2184009947/caption_2.txt b/asset-work/kq4_070_waterfall_cave/caption_2_2184009947/caption_2.txt deleted file mode 100644 index e321df6..0000000 --- a/asset-work/kq4_070_waterfall_cave/caption_2_2184009947/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A secluded cavern sanctuary captured from high angle, where nature's raw power meets serene stillness. The immediate foreground reveals rough-hewn stone terrain, textured with centuries of water erosion, lichen patterns, and glistening wet surfaces that reflect scattered illumination. A thundering waterfall dominates the left composition, painted with vigorous brushstrokes suggesting rushing water in translucent layers of aqua and pearl white, creating a constant mist that softens the surrounding atmosphere. The pool below spreads in the middle ground like liquid sapphire, its surface animated by concentric ripples and the continuous impact of falling water. On the right, monumental rock walls display vertical striations in muted earth tones, their faces adorned with hanging root systems and delicate fern colonies thriving in the perpetual humidity. Subtle light sources from above cast dramatic shadows that emphasize the cavern's three-dimensional depth. The background dissolves into mysterious darkness pierced only by occasional glints of wet stone. Color temperature shifts between cool cave shadows and warmer highlights where light penetrates, creating a romantic, contemplative mood. \ No newline at end of file diff --git a/asset-work/kq4_070_waterfall_cave/caption_2_2184009947/generated.png b/asset-work/kq4_070_waterfall_cave/caption_2_2184009947_generated.png similarity index 100% rename from asset-work/kq4_070_waterfall_cave/caption_2_2184009947/generated.png rename to asset-work/kq4_070_waterfall_cave/caption_2_2184009947_generated.png diff --git a/asset-work/kq4_070_waterfall_cave/caption_2_2184009947_generated.png.import b/asset-work/kq4_070_waterfall_cave/caption_2_2184009947_generated.png.import new file mode 100644 index 0000000..29e32cf --- /dev/null +++ b/asset-work/kq4_070_waterfall_cave/caption_2_2184009947_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cwrjge5g5dm40" +path="res://.godot/imported/caption_2_2184009947_generated.png-600d16297bd2df56349c286ddf3304a0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_070_waterfall_cave/caption_2_2184009947_generated.png" +dest_files=["res://.godot/imported/caption_2_2184009947_generated.png-600d16297bd2df56349c286ddf3304a0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_070_waterfall_cave/caption_3_2774181696/caption_3.txt b/asset-work/kq4_070_waterfall_cave/caption_3_2774181696/caption_3.txt deleted file mode 100644 index b464829..0000000 --- a/asset-work/kq4_070_waterfall_cave/caption_3_2774181696/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. An atmospheric grotto viewed from above, revealing the intimate relationship between stone and water in nature's hidden cathedral. Foreground terrain shows ancient rock formations worn smooth by millennia of water flow, their surfaces mottled with patches of emerald moss and dark algae thriving in the damp environment. The composition centers on a vertical waterfall descending with painterly energy, rendered in flowing strokes of turquoise and white that suggest both movement and translucency. Where the water strikes the pool below, churning patterns of foam create textural contrast against the stiller surrounding waters. The pool itself occupies the middle ground in deep ultramarine tones, its surface a study in reflected light and gentle ripples. Right-side rock walls rise in dramatic vertical planes, their rough surfaces catching highlights that reveal complex mineral compositions in subtle ochres and grays. Soft illumination from overhead crevices creates pools of light amid velvety shadows, guiding the eye through spatial depth. The background recedes into cavernous darkness, suggesting unexplored depths beyond. The overall palette balances cool aquamarines and deep slate blues with warm stone tones and ethereal highlights. diff --git a/asset-work/kq4_070_waterfall_cave/caption_3_2774181696/generated.png b/asset-work/kq4_070_waterfall_cave/caption_3_2774181696_generated.png similarity index 100% rename from asset-work/kq4_070_waterfall_cave/caption_3_2774181696/generated.png rename to asset-work/kq4_070_waterfall_cave/caption_3_2774181696_generated.png diff --git a/asset-work/kq4_070_waterfall_cave/caption_3_2774181696_generated.png.import b/asset-work/kq4_070_waterfall_cave/caption_3_2774181696_generated.png.import new file mode 100644 index 0000000..67d8ca1 --- /dev/null +++ b/asset-work/kq4_070_waterfall_cave/caption_3_2774181696_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c7m8himcheywx" +path="res://.godot/imported/caption_3_2774181696_generated.png-716ebb7d8f41995c4771e5bb9adffbf2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_070_waterfall_cave/caption_3_2774181696_generated.png" +dest_files=["res://.godot/imported/caption_3_2774181696_generated.png-716ebb7d8f41995c4771e5bb9adffbf2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_071_cave_entrance/caption_1_2507622027/generated.png b/asset-work/kq4_071_cave_entrance/caption_1_2507622027_generated.png similarity index 100% rename from asset-work/kq4_071_cave_entrance/caption_1_2507622027/generated.png rename to asset-work/kq4_071_cave_entrance/caption_1_2507622027_generated.png diff --git a/asset-work/kq4_071_cave_entrance/caption_1_2507622027_generated.png.import b/asset-work/kq4_071_cave_entrance/caption_1_2507622027_generated.png.import new file mode 100644 index 0000000..bce5851 --- /dev/null +++ b/asset-work/kq4_071_cave_entrance/caption_1_2507622027_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cp83jpkm4mdtp" +path="res://.godot/imported/caption_1_2507622027_generated.png-733733ea7d966e3c2c7c94a047ff8de7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_071_cave_entrance/caption_1_2507622027_generated.png" +dest_files=["res://.godot/imported/caption_1_2507622027_generated.png-733733ea7d966e3c2c7c94a047ff8de7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_071_cave_entrance/caption_1_3081292155/generated.png b/asset-work/kq4_071_cave_entrance/caption_1_3081292155_generated.png similarity index 100% rename from asset-work/kq4_071_cave_entrance/caption_1_3081292155/generated.png rename to asset-work/kq4_071_cave_entrance/caption_1_3081292155_generated.png diff --git a/asset-work/kq4_071_cave_entrance/caption_1_3081292155_generated.png.import b/asset-work/kq4_071_cave_entrance/caption_1_3081292155_generated.png.import new file mode 100644 index 0000000..24457c5 --- /dev/null +++ b/asset-work/kq4_071_cave_entrance/caption_1_3081292155_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c1pxa60ok3xbh" +path="res://.godot/imported/caption_1_3081292155_generated.png-4e8dd2c7cee061da016456ff984442dc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_071_cave_entrance/caption_1_3081292155_generated.png" +dest_files=["res://.godot/imported/caption_1_3081292155_generated.png-4e8dd2c7cee061da016456ff984442dc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_071_cave_entrance/caption_2_1196738011/generated.png b/asset-work/kq4_071_cave_entrance/caption_2_1196738011_generated.png similarity index 100% rename from asset-work/kq4_071_cave_entrance/caption_2_1196738011/generated.png rename to asset-work/kq4_071_cave_entrance/caption_2_1196738011_generated.png diff --git a/asset-work/kq4_071_cave_entrance/caption_2_1196738011_generated.png.import b/asset-work/kq4_071_cave_entrance/caption_2_1196738011_generated.png.import new file mode 100644 index 0000000..cf59fa9 --- /dev/null +++ b/asset-work/kq4_071_cave_entrance/caption_2_1196738011_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://nwxirx6x7ym8" +path="res://.godot/imported/caption_2_1196738011_generated.png-edc52353d688c0e8c3341ca4241a289a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_071_cave_entrance/caption_2_1196738011_generated.png" +dest_files=["res://.godot/imported/caption_2_1196738011_generated.png-edc52353d688c0e8c3341ca4241a289a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_071_cave_entrance/caption_2_3711382309/generated.png b/asset-work/kq4_071_cave_entrance/caption_2_3711382309_generated.png similarity index 100% rename from asset-work/kq4_071_cave_entrance/caption_2_3711382309/generated.png rename to asset-work/kq4_071_cave_entrance/caption_2_3711382309_generated.png diff --git a/asset-work/kq4_071_cave_entrance/caption_2_3711382309_generated.png.import b/asset-work/kq4_071_cave_entrance/caption_2_3711382309_generated.png.import new file mode 100644 index 0000000..e34a3a8 --- /dev/null +++ b/asset-work/kq4_071_cave_entrance/caption_2_3711382309_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cplmgr4032fwn" +path="res://.godot/imported/caption_2_3711382309_generated.png-3605a1bc15deb87e875b7af9b0aa2427.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_071_cave_entrance/caption_2_3711382309_generated.png" +dest_files=["res://.godot/imported/caption_2_3711382309_generated.png-3605a1bc15deb87e875b7af9b0aa2427.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_071_cave_entrance/caption_3_2498936888/generated.png b/asset-work/kq4_071_cave_entrance/caption_3_2498936888_generated.png similarity index 100% rename from asset-work/kq4_071_cave_entrance/caption_3_2498936888/generated.png rename to asset-work/kq4_071_cave_entrance/caption_3_2498936888_generated.png diff --git a/asset-work/kq4_071_cave_entrance/caption_3_2498936888_generated.png.import b/asset-work/kq4_071_cave_entrance/caption_3_2498936888_generated.png.import new file mode 100644 index 0000000..b8918c3 --- /dev/null +++ b/asset-work/kq4_071_cave_entrance/caption_3_2498936888_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cagi4adfgfh3u" +path="res://.godot/imported/caption_3_2498936888_generated.png-5bad52a8bc1cd616339cacb14576ce3d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_071_cave_entrance/caption_3_2498936888_generated.png" +dest_files=["res://.godot/imported/caption_3_2498936888_generated.png-5bad52a8bc1cd616339cacb14576ce3d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_071_cave_entrance/caption_3_3022172427/generated.png b/asset-work/kq4_071_cave_entrance/caption_3_3022172427_generated.png similarity index 100% rename from asset-work/kq4_071_cave_entrance/caption_3_3022172427/generated.png rename to asset-work/kq4_071_cave_entrance/caption_3_3022172427_generated.png diff --git a/asset-work/kq4_071_cave_entrance/caption_3_3022172427_generated.png.import b/asset-work/kq4_071_cave_entrance/caption_3_3022172427_generated.png.import new file mode 100644 index 0000000..a21e470 --- /dev/null +++ b/asset-work/kq4_071_cave_entrance/caption_3_3022172427_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bnrdxjxctmmm3" +path="res://.godot/imported/caption_3_3022172427_generated.png-8ea0dc394a75d21f4056fb1fbb7442a0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_071_cave_entrance/caption_3_3022172427_generated.png" +dest_files=["res://.godot/imported/caption_3_3022172427_generated.png-8ea0dc394a75d21f4056fb1fbb7442a0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_072_dark_cave_passage/caption_1_2286095559/caption_1.txt b/asset-work/kq4_072_dark_cave_passage/caption_1_2286095559/caption_1.txt deleted file mode 100644 index 2566bfe..0000000 --- a/asset-work/kq4_072_dark_cave_passage/caption_1_2286095559/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A foreboding underground passage viewed from a high vantage point, where darkness presses in from every side like velvet curtains. In the immediate foreground, rough-hewn earth and cold stone create an uneven floor, its surface rendered in deep umbers and charcoal grays. The middle ground reveals branching passageways that recede into impenetrable shadow, their walls rough with natural striations and mineral deposits catching faint phantom light. To the south, a slightly wider passage offers the only suggestion of escape from the oppressive darkness. The cave walls display layered geological formations in near-black tones, with subtle variations of slate and midnight blue barely discernible in the gloom. Stalactite formations hang like dark icicles from the unseen ceiling above. The background dissolves into pure obsidian blackness, creating infinite depth and mystery. Sparse illumination reveals only the immediate terrain, leaving distant passages to the imagination. The palette is dominated by deep charcoal, onyx, and earthy browns, with occasional subtle highlights of pale gray stone where faint light catches mineral deposits. diff --git a/asset-work/kq4_072_dark_cave_passage/caption_1_2286095559/caption_1_4178173007/caption_1.txt b/asset-work/kq4_072_dark_cave_passage/caption_1_2286095559/caption_1_4178173007/caption_1.txt deleted file mode 100644 index 2566bfe..0000000 --- a/asset-work/kq4_072_dark_cave_passage/caption_1_2286095559/caption_1_4178173007/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A foreboding underground passage viewed from a high vantage point, where darkness presses in from every side like velvet curtains. In the immediate foreground, rough-hewn earth and cold stone create an uneven floor, its surface rendered in deep umbers and charcoal grays. The middle ground reveals branching passageways that recede into impenetrable shadow, their walls rough with natural striations and mineral deposits catching faint phantom light. To the south, a slightly wider passage offers the only suggestion of escape from the oppressive darkness. The cave walls display layered geological formations in near-black tones, with subtle variations of slate and midnight blue barely discernible in the gloom. Stalactite formations hang like dark icicles from the unseen ceiling above. The background dissolves into pure obsidian blackness, creating infinite depth and mystery. Sparse illumination reveals only the immediate terrain, leaving distant passages to the imagination. The palette is dominated by deep charcoal, onyx, and earthy browns, with occasional subtle highlights of pale gray stone where faint light catches mineral deposits. diff --git a/asset-work/kq4_072_dark_cave_passage/caption_1_2286095559/caption_1_4178173007/generated.png b/asset-work/kq4_072_dark_cave_passage/caption_1_2286095559/caption_1_4178173007/generated.png deleted file mode 100644 index 20fb0ac..0000000 --- a/asset-work/kq4_072_dark_cave_passage/caption_1_2286095559/caption_1_4178173007/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e3716b5727e96b3fb61c3b887cdce69552e27176e257d94992e98ed07327dffd -size 4129825 diff --git a/asset-work/kq4_072_dark_cave_passage/caption_1_2286095559/generated.png b/asset-work/kq4_072_dark_cave_passage/caption_1_2286095559_generated.png similarity index 100% rename from asset-work/kq4_072_dark_cave_passage/caption_1_2286095559/generated.png rename to asset-work/kq4_072_dark_cave_passage/caption_1_2286095559_generated.png diff --git a/asset-work/kq4_072_dark_cave_passage/caption_1_2286095559_generated.png.import b/asset-work/kq4_072_dark_cave_passage/caption_1_2286095559_generated.png.import new file mode 100644 index 0000000..a163bf2 --- /dev/null +++ b/asset-work/kq4_072_dark_cave_passage/caption_1_2286095559_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://qqpi2o3gqh01" +path="res://.godot/imported/caption_1_2286095559_generated.png-3d6426f960d5d6af50a0d6497b3bf00a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_072_dark_cave_passage/caption_1_2286095559_generated.png" +dest_files=["res://.godot/imported/caption_1_2286095559_generated.png-3d6426f960d5d6af50a0d6497b3bf00a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_072_dark_cave_passage/caption_2_1822337300/caption_2.txt b/asset-work/kq4_072_dark_cave_passage/caption_2_1822337300/caption_2.txt deleted file mode 100644 index 3a86292..0000000 --- a/asset-work/kq4_072_dark_cave_passage/caption_2_1822337300/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. An ominous cavern corridor captured from above, where shadow reigns supreme and light is but a distant memory. The foreground shows compacted cave earth, textured with centuries of erosion and scattered stone debris, painted in rich dark siennas and burnt umbers. The central passage splits and winds through the middle distance, its walls carved by ancient water flows into sinuous curves and jagged outcroppings. To the east, a narrow fissure suggests a hidden passage barely wide enough to traverse, its opening framed by jagged rock teeth. The cave ceiling looms oppressively above, its texture suggested only by the deepest shadows. Background passages fade into absolute darkness, creating a sense of vast unknown depths beyond. Cold stone surfaces display subtle variations in mineral composition, some patches appearing slightly lighter where moisture has created thin limestone deposits. The atmosphere is heavy and still, with palpable weight pressing down from the mountain above. Color harmony emerges from near-black violets, deep forest greens lost in shadow, and the occasional warm glint of iron-rich stone, all unified under the dominion of darkness. diff --git a/asset-work/kq4_072_dark_cave_passage/caption_2_1822337300/caption_2_2748456042/caption_2.txt b/asset-work/kq4_072_dark_cave_passage/caption_2_1822337300/caption_2_2748456042/caption_2.txt deleted file mode 100644 index 3a86292..0000000 --- a/asset-work/kq4_072_dark_cave_passage/caption_2_1822337300/caption_2_2748456042/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. An ominous cavern corridor captured from above, where shadow reigns supreme and light is but a distant memory. The foreground shows compacted cave earth, textured with centuries of erosion and scattered stone debris, painted in rich dark siennas and burnt umbers. The central passage splits and winds through the middle distance, its walls carved by ancient water flows into sinuous curves and jagged outcroppings. To the east, a narrow fissure suggests a hidden passage barely wide enough to traverse, its opening framed by jagged rock teeth. The cave ceiling looms oppressively above, its texture suggested only by the deepest shadows. Background passages fade into absolute darkness, creating a sense of vast unknown depths beyond. Cold stone surfaces display subtle variations in mineral composition, some patches appearing slightly lighter where moisture has created thin limestone deposits. The atmosphere is heavy and still, with palpable weight pressing down from the mountain above. Color harmony emerges from near-black violets, deep forest greens lost in shadow, and the occasional warm glint of iron-rich stone, all unified under the dominion of darkness. diff --git a/asset-work/kq4_072_dark_cave_passage/caption_2_1822337300/caption_2_2748456042/generated.png b/asset-work/kq4_072_dark_cave_passage/caption_2_1822337300/caption_2_2748456042/generated.png deleted file mode 100644 index d7b5877..0000000 --- a/asset-work/kq4_072_dark_cave_passage/caption_2_1822337300/caption_2_2748456042/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:33c8da9f4e802be6c91fc87c7c15a3ba71e962ba5a6effc7f8ab7188efa6fdfe -size 3917679 diff --git a/asset-work/kq4_072_dark_cave_passage/caption_2_1822337300/generated.png b/asset-work/kq4_072_dark_cave_passage/caption_2_1822337300_generated.png similarity index 100% rename from asset-work/kq4_072_dark_cave_passage/caption_2_1822337300/generated.png rename to asset-work/kq4_072_dark_cave_passage/caption_2_1822337300_generated.png diff --git a/asset-work/kq4_072_dark_cave_passage/caption_2_1822337300_generated.png.import b/asset-work/kq4_072_dark_cave_passage/caption_2_1822337300_generated.png.import new file mode 100644 index 0000000..56a65b3 --- /dev/null +++ b/asset-work/kq4_072_dark_cave_passage/caption_2_1822337300_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://tyi7ennx8nbx" +path="res://.godot/imported/caption_2_1822337300_generated.png-aaa2011542dd4937e98fb51762def2ab.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_072_dark_cave_passage/caption_2_1822337300_generated.png" +dest_files=["res://.godot/imported/caption_2_1822337300_generated.png-aaa2011542dd4937e98fb51762def2ab.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_072_dark_cave_passage/caption_3_3587157212/caption_3.txt b/asset-work/kq4_072_dark_cave_passage/caption_3_3587157212/caption_3.txt deleted file mode 100644 index e43137c..0000000 --- a/asset-work/kq4_072_dark_cave_passage/caption_3_3587157212/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A haunting subterranean tunnel viewed from an elevated perspective, where darkness itself becomes the primary subject of the composition. The immediate foreground reveals rough cave flooring, a mixture of packed clay and fractured stone rendered in thick impasto strokes of deepest brown and anthracite. Multiple passages branch into the middle distance like dark veins, their openings creating organic negative spaces against the slightly lighter tunnel walls. The southern exit glows with subtle promise, its archway of natural stone framing the faintest suggestion of distant light. Cave walls show the layered history of geological time, strata upon strata of ancient sediment visible only as subtle shifts in the darkness. Mineral deposits create faint patterns of pale gray and muted ochre where they catch whatever meager illumination penetrates this deep. The background is an abyss of pure shadow, hinting at the vastness of the cave system beyond human perception. Spatial depth is conveyed through overlapping rock formations and the diminishing visibility of textural details. The palette is restrained and somber: ink blacks, earthy browns, and the occasional ghostly highlight of damp stone, creating an atmosphere of primal mystery and ancient silence. diff --git a/asset-work/kq4_072_dark_cave_passage/caption_3_3587157212/caption_3_4118669566/caption_3.txt b/asset-work/kq4_072_dark_cave_passage/caption_3_3587157212/caption_3_4118669566/caption_3.txt deleted file mode 100644 index e43137c..0000000 --- a/asset-work/kq4_072_dark_cave_passage/caption_3_3587157212/caption_3_4118669566/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A haunting subterranean tunnel viewed from an elevated perspective, where darkness itself becomes the primary subject of the composition. The immediate foreground reveals rough cave flooring, a mixture of packed clay and fractured stone rendered in thick impasto strokes of deepest brown and anthracite. Multiple passages branch into the middle distance like dark veins, their openings creating organic negative spaces against the slightly lighter tunnel walls. The southern exit glows with subtle promise, its archway of natural stone framing the faintest suggestion of distant light. Cave walls show the layered history of geological time, strata upon strata of ancient sediment visible only as subtle shifts in the darkness. Mineral deposits create faint patterns of pale gray and muted ochre where they catch whatever meager illumination penetrates this deep. The background is an abyss of pure shadow, hinting at the vastness of the cave system beyond human perception. Spatial depth is conveyed through overlapping rock formations and the diminishing visibility of textural details. The palette is restrained and somber: ink blacks, earthy browns, and the occasional ghostly highlight of damp stone, creating an atmosphere of primal mystery and ancient silence. diff --git a/asset-work/kq4_072_dark_cave_passage/caption_3_3587157212/caption_3_4118669566/generated.png b/asset-work/kq4_072_dark_cave_passage/caption_3_3587157212/caption_3_4118669566/generated.png deleted file mode 100644 index e68a2d8..0000000 --- a/asset-work/kq4_072_dark_cave_passage/caption_3_3587157212/caption_3_4118669566/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:28374fc9e1b74b75e4ae56e77879f9bd46f1d900a7bac80fd34dfa12f8fb260a -size 3763995 diff --git a/asset-work/kq4_072_dark_cave_passage/caption_3_3587157212/generated.png b/asset-work/kq4_072_dark_cave_passage/caption_3_3587157212_generated.png similarity index 100% rename from asset-work/kq4_072_dark_cave_passage/caption_3_3587157212/generated.png rename to asset-work/kq4_072_dark_cave_passage/caption_3_3587157212_generated.png diff --git a/asset-work/kq4_072_dark_cave_passage/caption_3_3587157212_generated.png.import b/asset-work/kq4_072_dark_cave_passage/caption_3_3587157212_generated.png.import new file mode 100644 index 0000000..32488a1 --- /dev/null +++ b/asset-work/kq4_072_dark_cave_passage/caption_3_3587157212_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://puha2cpxg50v" +path="res://.godot/imported/caption_3_3587157212_generated.png-664462f3d95f255437401bd49dbfdadc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_072_dark_cave_passage/caption_3_3587157212_generated.png" +dest_files=["res://.godot/imported/caption_3_3587157212_generated.png-664462f3d95f255437401bd49dbfdadc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_073_cave_exit/caption_1_2237935639/generated.png b/asset-work/kq4_073_cave_exit/caption_1_2237935639_generated.png similarity index 100% rename from asset-work/kq4_073_cave_exit/caption_1_2237935639/generated.png rename to asset-work/kq4_073_cave_exit/caption_1_2237935639_generated.png diff --git a/asset-work/kq4_073_cave_exit/caption_1_2237935639_generated.png.import b/asset-work/kq4_073_cave_exit/caption_1_2237935639_generated.png.import new file mode 100644 index 0000000..091714c --- /dev/null +++ b/asset-work/kq4_073_cave_exit/caption_1_2237935639_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cqhv0uj6w8xjw" +path="res://.godot/imported/caption_1_2237935639_generated.png-1018ce089f58251136e0dd9e63724525.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_073_cave_exit/caption_1_2237935639_generated.png" +dest_files=["res://.godot/imported/caption_1_2237935639_generated.png-1018ce089f58251136e0dd9e63724525.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_073_cave_exit/caption_1_3023472733/generated.png b/asset-work/kq4_073_cave_exit/caption_1_3023472733_generated.png similarity index 100% rename from asset-work/kq4_073_cave_exit/caption_1_3023472733/generated.png rename to asset-work/kq4_073_cave_exit/caption_1_3023472733_generated.png diff --git a/asset-work/kq4_073_cave_exit/caption_1_3023472733_generated.png.import b/asset-work/kq4_073_cave_exit/caption_1_3023472733_generated.png.import new file mode 100644 index 0000000..e330d4a --- /dev/null +++ b/asset-work/kq4_073_cave_exit/caption_1_3023472733_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ivowkyxvilfl" +path="res://.godot/imported/caption_1_3023472733_generated.png-e0122c11e6a0eac0f40d6cedbfbd40b3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_073_cave_exit/caption_1_3023472733_generated.png" +dest_files=["res://.godot/imported/caption_1_3023472733_generated.png-e0122c11e6a0eac0f40d6cedbfbd40b3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_073_cave_exit/caption_2_2625853343/generated.png b/asset-work/kq4_073_cave_exit/caption_2_2625853343_generated.png similarity index 100% rename from asset-work/kq4_073_cave_exit/caption_2_2625853343/generated.png rename to asset-work/kq4_073_cave_exit/caption_2_2625853343_generated.png diff --git a/asset-work/kq4_073_cave_exit/caption_2_2625853343_generated.png.import b/asset-work/kq4_073_cave_exit/caption_2_2625853343_generated.png.import new file mode 100644 index 0000000..ad1b87d --- /dev/null +++ b/asset-work/kq4_073_cave_exit/caption_2_2625853343_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dgfnwpuwsdm1c" +path="res://.godot/imported/caption_2_2625853343_generated.png-31c3bcb2f0a698bd996be5b6f3adc27b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_073_cave_exit/caption_2_2625853343_generated.png" +dest_files=["res://.godot/imported/caption_2_2625853343_generated.png-31c3bcb2f0a698bd996be5b6f3adc27b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_073_cave_exit/caption_2_3444694008/generated.png b/asset-work/kq4_073_cave_exit/caption_2_3444694008_generated.png similarity index 100% rename from asset-work/kq4_073_cave_exit/caption_2_3444694008/generated.png rename to asset-work/kq4_073_cave_exit/caption_2_3444694008_generated.png diff --git a/asset-work/kq4_073_cave_exit/caption_2_3444694008_generated.png.import b/asset-work/kq4_073_cave_exit/caption_2_3444694008_generated.png.import new file mode 100644 index 0000000..98fb6e4 --- /dev/null +++ b/asset-work/kq4_073_cave_exit/caption_2_3444694008_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://busivh6l7t3go" +path="res://.godot/imported/caption_2_3444694008_generated.png-fe58f4e623d555d8340f640b9b0e529c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_073_cave_exit/caption_2_3444694008_generated.png" +dest_files=["res://.godot/imported/caption_2_3444694008_generated.png-fe58f4e623d555d8340f640b9b0e529c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_073_cave_exit/caption_3_3163218268/generated.png b/asset-work/kq4_073_cave_exit/caption_3_3163218268_generated.png similarity index 100% rename from asset-work/kq4_073_cave_exit/caption_3_3163218268/generated.png rename to asset-work/kq4_073_cave_exit/caption_3_3163218268_generated.png diff --git a/asset-work/kq4_073_cave_exit/caption_3_3163218268_generated.png.import b/asset-work/kq4_073_cave_exit/caption_3_3163218268_generated.png.import new file mode 100644 index 0000000..8a39313 --- /dev/null +++ b/asset-work/kq4_073_cave_exit/caption_3_3163218268_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bxyxlu2erkras" +path="res://.godot/imported/caption_3_3163218268_generated.png-bcf01fde79c044fb42fe261bc274297f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_073_cave_exit/caption_3_3163218268_generated.png" +dest_files=["res://.godot/imported/caption_3_3163218268_generated.png-bcf01fde79c044fb42fe261bc274297f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_073_cave_exit/caption_3_528352334/generated.png b/asset-work/kq4_073_cave_exit/caption_3_528352334_generated.png similarity index 100% rename from asset-work/kq4_073_cave_exit/caption_3_528352334/generated.png rename to asset-work/kq4_073_cave_exit/caption_3_528352334_generated.png diff --git a/asset-work/kq4_073_cave_exit/caption_3_528352334_generated.png.import b/asset-work/kq4_073_cave_exit/caption_3_528352334_generated.png.import new file mode 100644 index 0000000..00bcc77 --- /dev/null +++ b/asset-work/kq4_073_cave_exit/caption_3_528352334_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dgckiklbghw7d" +path="res://.godot/imported/caption_3_528352334_generated.png-01cf978e52189fea83eef6274bb375e7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_073_cave_exit/caption_3_528352334_generated.png" +dest_files=["res://.godot/imported/caption_3_528352334_generated.png-01cf978e52189fea83eef6274bb375e7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_074_troll_cave/caption_1_3505971616/caption_1.txt b/asset-work/kq4_074_troll_cave/caption_1_3505971616/caption_1.txt deleted file mode 100644 index 6bf99e0..0000000 --- a/asset-work/kq4_074_troll_cave/caption_1_3505971616/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A foreboding subterranean chamber viewed from above, where ancient stone corridors converge in shadowy mystery. The foreground reveals rough-hewn cave walls with jagged, crystalline textures catching faint glimmers of ambient light from an unseen source. The middle ground opens into a central cavern space, its earthen floor packed hard and cold, striated with geological patterns formed over millennia. Dark passageways recede into velvet blackness toward the north and east, their mouths framed by irregular rock formations that suggest the gnarled fingers of some subterranean giant. The background dissolves into absolute darkness, creating an unsettling void that hints at endless tunnels beyond. Sparse illumination reveals subtle color variations in the stone—deep umbers, slate grays, and touches of ochre where mineral deposits catch the faintest light. The atmosphere is heavy with dampness and ancient silence, rendered in thick impasto strokes that emphasize the raw, untamed nature of this underground realm. diff --git a/asset-work/kq4_074_troll_cave/caption_1_3505971616/generated.png b/asset-work/kq4_074_troll_cave/caption_1_3505971616_generated.png similarity index 100% rename from asset-work/kq4_074_troll_cave/caption_1_3505971616/generated.png rename to asset-work/kq4_074_troll_cave/caption_1_3505971616_generated.png diff --git a/asset-work/kq4_074_troll_cave/caption_1_3505971616_generated.png.import b/asset-work/kq4_074_troll_cave/caption_1_3505971616_generated.png.import new file mode 100644 index 0000000..b511366 --- /dev/null +++ b/asset-work/kq4_074_troll_cave/caption_1_3505971616_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://lb14f2herkxy" +path="res://.godot/imported/caption_1_3505971616_generated.png-e6539d985d5ae4371486e481b54e2939.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_074_troll_cave/caption_1_3505971616_generated.png" +dest_files=["res://.godot/imported/caption_1_3505971616_generated.png-e6539d985d5ae4371486e481b54e2939.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_074_troll_cave/caption_2_3207940739/caption_2.txt b/asset-work/kq4_074_troll_cave/caption_2_3207940739/caption_2.txt deleted file mode 100644 index f68b5f8..0000000 --- a/asset-work/kq4_074_troll_cave/caption_2_3207940739/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A cavernous underground intersection painted from an elevated perspective, revealing the labyrinthine heart of an ancient cave system. In the immediate foreground, textured cave walls display rough, weathered surfaces with patches of moisture gleaming like scattered diamonds in the dim light. The central chamber spreads outward, its compacted earth floor showing subtle variations in tone from years of sedimentary deposits. Multiple passages branch from this hub—narrow corridors carved by water and time that lead into impenetrable darkness. Rock formations protrude from the walls and ceiling, their surfaces layered with geological strata in muted tones of charcoal, rust, and deep brown. The lighting is minimal and atmospheric, creating dramatic pools of shadow that emphasize the cave's depth and mystery. Background elements fade into velvety blackness, suggesting vast unexplored spaces beyond. The palette balances cold stone grays against warm earthy undertones, capturing the timeless, primordial quality of this hidden underground world. diff --git a/asset-work/kq4_074_troll_cave/caption_2_3207940739/generated.png b/asset-work/kq4_074_troll_cave/caption_2_3207940739_generated.png similarity index 100% rename from asset-work/kq4_074_troll_cave/caption_2_3207940739/generated.png rename to asset-work/kq4_074_troll_cave/caption_2_3207940739_generated.png diff --git a/asset-work/kq4_074_troll_cave/caption_2_3207940739_generated.png.import b/asset-work/kq4_074_troll_cave/caption_2_3207940739_generated.png.import new file mode 100644 index 0000000..0ce3d88 --- /dev/null +++ b/asset-work/kq4_074_troll_cave/caption_2_3207940739_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dmeavdcvhe6sw" +path="res://.godot/imported/caption_2_3207940739_generated.png-90ac091f39f2a1553b619c4ddeba11ba.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_074_troll_cave/caption_2_3207940739_generated.png" +dest_files=["res://.godot/imported/caption_2_3207940739_generated.png-90ac091f39f2a1553b619c4ddeba11ba.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_074_troll_cave/caption_3_3702000268/caption_3.txt b/asset-work/kq4_074_troll_cave/caption_3_3702000268/caption_3.txt deleted file mode 100644 index 6a586a0..0000000 --- a/asset-work/kq4_074_troll_cave/caption_3_3702000268/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A mysterious cave junction captured from a bird's-eye vantage, where pale light struggles against overwhelming darkness. The foreground presents rugged cave architecture—twisted stalactites and fractured rock faces painted with expressive brushwork that emphasizes their jagged, ancient character. A central open area dominates the composition, its floor a tapestry of compacted soil and stone fragments in earthy siennas and burnt umbers. Passages extend from this chamber like dark veins into the unknown, their thresholds marked by dramatic rock outcroppings that cast elongated shadows across the ground. The background is consumed by stygian darkness, creating a powerful contrast with the dimly lit foreground and suggesting infinite depth. Subtle textures emerge in the visible surfaces: crystalline mineral deposits, water-smoothed stone, and rough hewn walls bearing the scars of geological ages. The color scheme is restrained yet rich—deep charcoal blacks, warm stone browns, and occasional touches of mineral blue where dampness reflects phantom light. The overall effect evokes mystery, danger, and the overwhelming scale of nature's underground cathedrals. diff --git a/asset-work/kq4_074_troll_cave/caption_3_3702000268/generated.png b/asset-work/kq4_074_troll_cave/caption_3_3702000268_generated.png similarity index 100% rename from asset-work/kq4_074_troll_cave/caption_3_3702000268/generated.png rename to asset-work/kq4_074_troll_cave/caption_3_3702000268_generated.png diff --git a/asset-work/kq4_074_troll_cave/caption_3_3702000268_generated.png.import b/asset-work/kq4_074_troll_cave/caption_3_3702000268_generated.png.import new file mode 100644 index 0000000..e8a51ea --- /dev/null +++ b/asset-work/kq4_074_troll_cave/caption_3_3702000268_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bb6kxtguyh1pd" +path="res://.godot/imported/caption_3_3702000268_generated.png-132e9abc69061313e6572bbe19f5d4f7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_074_troll_cave/caption_3_3702000268_generated.png" +dest_files=["res://.godot/imported/caption_3_3702000268_generated.png-132e9abc69061313e6572bbe19f5d4f7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_075_troll_cave_passage/caption_1_2728427209/caption_1.txt b/asset-work/kq4_075_troll_cave_passage/caption_1_2728427209/caption_1.txt deleted file mode 100644 index 2cc9bcb..0000000 --- a/asset-work/kq4_075_troll_cave_passage/caption_1_2728427209/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A cavernous passage viewed from above, where darkness pools in velvety depths between rough-hewn stone walls. The foreground reveals textured earth floor, compacted and cold, painted in umbers and siennas with scattered gravel catching dim amber light. Multiple tunnel mouths gape like dark wounds in the middle ground, their openings framed by jagged rock formations and mineral deposits glinting with subtle metallic sheens. The passages diverge into shadowed depths, suggesting labyrinthine complexity beyond the feeble illumination. Background tunnels dissolve into absolute darkness, their termini lost to sight. The palette emphasizes deep charcoal blacks, slate grays, and warm ochre earth tones, punctuated by occasional calcite deposits glowing faintly white. Atmospheric perspective compresses distant passages into indistinct voids, while the immediate floor displays rough stratification and ancient geological layering. Sparse moisture creates subtle reflective patches on stone surfaces, catching what little light penetrates this subterranean realm. diff --git a/asset-work/kq4_075_troll_cave_passage/caption_1_2728427209/caption_1_2158602956/caption_1.txt b/asset-work/kq4_075_troll_cave_passage/caption_1_2728427209/caption_1_2158602956/caption_1.txt deleted file mode 100644 index 2cc9bcb..0000000 --- a/asset-work/kq4_075_troll_cave_passage/caption_1_2728427209/caption_1_2158602956/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A cavernous passage viewed from above, where darkness pools in velvety depths between rough-hewn stone walls. The foreground reveals textured earth floor, compacted and cold, painted in umbers and siennas with scattered gravel catching dim amber light. Multiple tunnel mouths gape like dark wounds in the middle ground, their openings framed by jagged rock formations and mineral deposits glinting with subtle metallic sheens. The passages diverge into shadowed depths, suggesting labyrinthine complexity beyond the feeble illumination. Background tunnels dissolve into absolute darkness, their termini lost to sight. The palette emphasizes deep charcoal blacks, slate grays, and warm ochre earth tones, punctuated by occasional calcite deposits glowing faintly white. Atmospheric perspective compresses distant passages into indistinct voids, while the immediate floor displays rough stratification and ancient geological layering. Sparse moisture creates subtle reflective patches on stone surfaces, catching what little light penetrates this subterranean realm. diff --git a/asset-work/kq4_075_troll_cave_passage/caption_1_2728427209/caption_1_2158602956/generated.png b/asset-work/kq4_075_troll_cave_passage/caption_1_2728427209/caption_1_2158602956/generated.png deleted file mode 100644 index d7605f4..0000000 --- a/asset-work/kq4_075_troll_cave_passage/caption_1_2728427209/caption_1_2158602956/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8c24a99be2b324cea8a4358664c8ffcd795d8c5f68f72fb91a588c7fa2f0b39a -size 4322079 diff --git a/asset-work/kq4_075_troll_cave_passage/caption_1_2728427209/generated.png b/asset-work/kq4_075_troll_cave_passage/caption_1_2728427209_generated.png similarity index 100% rename from asset-work/kq4_075_troll_cave_passage/caption_1_2728427209/generated.png rename to asset-work/kq4_075_troll_cave_passage/caption_1_2728427209_generated.png diff --git a/asset-work/kq4_075_troll_cave_passage/caption_1_2728427209_generated.png.import b/asset-work/kq4_075_troll_cave_passage/caption_1_2728427209_generated.png.import new file mode 100644 index 0000000..bc78dd8 --- /dev/null +++ b/asset-work/kq4_075_troll_cave_passage/caption_1_2728427209_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://brfb6w3qe5dy5" +path="res://.godot/imported/caption_1_2728427209_generated.png-171ad87ac9d704d88e749863ee558c38.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_075_troll_cave_passage/caption_1_2728427209_generated.png" +dest_files=["res://.godot/imported/caption_1_2728427209_generated.png-171ad87ac9d704d88e749863ee558c38.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_075_troll_cave_passage/caption_2_1754483621/caption_2.txt b/asset-work/kq4_075_troll_cave_passage/caption_2_1754483621/caption_2.txt deleted file mode 100644 index 7956bf0..0000000 --- a/asset-work/kq4_075_troll_cave_passage/caption_2_1754483621/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. An elevated perspective reveals a sprawling cave junction where multiple corridors converge in shadowy communion. In the immediate foreground, the cave floor stretches in rough earthen planes, its surface ridged with ancient water erosion patterns and scattered with dark stones. The middle ground fractures into three distinct passageways, their arched openings carved by millennia of geological forces, each mouth framed by dripping stalactites and twisted mineral veins. Background corridors recede into impenetrable darkness, their walls suggested only by subtle gradations of deep blue-black and charcoal. The palette balances cool slate tones against warmer earth pigments, with occasional highlights of pale limestone where the dim light touches exposed rock faces. Spatial depth is conveyed through overlapping tunnel openings and diminishing scale of geological features. The atmosphere feels heavy and ancient, with textured brushwork suggesting damp stone surfaces and the oppressive weight of the mountain above. diff --git a/asset-work/kq4_075_troll_cave_passage/caption_2_1754483621/caption_2_63696623/caption_2.txt b/asset-work/kq4_075_troll_cave_passage/caption_2_1754483621/caption_2_63696623/caption_2.txt deleted file mode 100644 index 7956bf0..0000000 --- a/asset-work/kq4_075_troll_cave_passage/caption_2_1754483621/caption_2_63696623/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. An elevated perspective reveals a sprawling cave junction where multiple corridors converge in shadowy communion. In the immediate foreground, the cave floor stretches in rough earthen planes, its surface ridged with ancient water erosion patterns and scattered with dark stones. The middle ground fractures into three distinct passageways, their arched openings carved by millennia of geological forces, each mouth framed by dripping stalactites and twisted mineral veins. Background corridors recede into impenetrable darkness, their walls suggested only by subtle gradations of deep blue-black and charcoal. The palette balances cool slate tones against warmer earth pigments, with occasional highlights of pale limestone where the dim light touches exposed rock faces. Spatial depth is conveyed through overlapping tunnel openings and diminishing scale of geological features. The atmosphere feels heavy and ancient, with textured brushwork suggesting damp stone surfaces and the oppressive weight of the mountain above. diff --git a/asset-work/kq4_075_troll_cave_passage/caption_2_1754483621/caption_2_63696623/generated.png b/asset-work/kq4_075_troll_cave_passage/caption_2_1754483621/caption_2_63696623/generated.png deleted file mode 100644 index ed7d102..0000000 --- a/asset-work/kq4_075_troll_cave_passage/caption_2_1754483621/caption_2_63696623/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:40e097b6a2d84b9c01e846a047e324ee64ad30efb94491bdc86025b7ad7f6be3 -size 4312708 diff --git a/asset-work/kq4_075_troll_cave_passage/caption_2_1754483621/generated.png b/asset-work/kq4_075_troll_cave_passage/caption_2_1754483621_generated.png similarity index 100% rename from asset-work/kq4_075_troll_cave_passage/caption_2_1754483621/generated.png rename to asset-work/kq4_075_troll_cave_passage/caption_2_1754483621_generated.png diff --git a/asset-work/kq4_075_troll_cave_passage/caption_2_1754483621_generated.png.import b/asset-work/kq4_075_troll_cave_passage/caption_2_1754483621_generated.png.import new file mode 100644 index 0000000..0b5c83c --- /dev/null +++ b/asset-work/kq4_075_troll_cave_passage/caption_2_1754483621_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dofgqnsl62pyi" +path="res://.godot/imported/caption_2_1754483621_generated.png-558239fa764ec5f1f86335cc915dfa6b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_075_troll_cave_passage/caption_2_1754483621_generated.png" +dest_files=["res://.godot/imported/caption_2_1754483621_generated.png-558239fa764ec5f1f86335cc915dfa6b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_075_troll_cave_passage/caption_3_3961738119/caption_3.txt b/asset-work/kq4_075_troll_cave_passage/caption_3_3961738119/caption_3.txt deleted file mode 100644 index 08bb2a5..0000000 --- a/asset-work/kq4_075_troll_cave_passage/caption_3_3961738119/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A dramatic subterranean crossroads viewed from a high vantage, where darkness reigns supreme and feeble light barely penetrates the obsidian depths. Foreground earth appears as a tapestry of compacted soil and embedded gravel, painted with thick impasto strokes in rich browns and dusty grays. Three major tunnel openings dominate the middle composition, their rough-hewn entrances displaying stratified rock layers in alternating bands of rust-red and slate-gray stone. Smaller fissures and secondary passages branch off like dark veins, suggesting a complex network beneath the surface. The background dissolves into absolute blackness, creating dramatic negative space that emphasizes the cave's depth and mystery. Color palette restricts itself to deep umbers, charcoal blacks, and muted earth tones, with only subtle variations in value suggesting form. The stone walls display natural weathering textures, water stains, and mineral deposits creating organic patterns across the surfaces. Heavy shadows pool in corners and recesses, while the floor shows gentle undulations worn by ancient water flow. diff --git a/asset-work/kq4_075_troll_cave_passage/caption_3_3961738119/caption_3_3403574384/caption_3.txt b/asset-work/kq4_075_troll_cave_passage/caption_3_3961738119/caption_3_3403574384/caption_3.txt deleted file mode 100644 index 08bb2a5..0000000 --- a/asset-work/kq4_075_troll_cave_passage/caption_3_3961738119/caption_3_3403574384/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A dramatic subterranean crossroads viewed from a high vantage, where darkness reigns supreme and feeble light barely penetrates the obsidian depths. Foreground earth appears as a tapestry of compacted soil and embedded gravel, painted with thick impasto strokes in rich browns and dusty grays. Three major tunnel openings dominate the middle composition, their rough-hewn entrances displaying stratified rock layers in alternating bands of rust-red and slate-gray stone. Smaller fissures and secondary passages branch off like dark veins, suggesting a complex network beneath the surface. The background dissolves into absolute blackness, creating dramatic negative space that emphasizes the cave's depth and mystery. Color palette restricts itself to deep umbers, charcoal blacks, and muted earth tones, with only subtle variations in value suggesting form. The stone walls display natural weathering textures, water stains, and mineral deposits creating organic patterns across the surfaces. Heavy shadows pool in corners and recesses, while the floor shows gentle undulations worn by ancient water flow. diff --git a/asset-work/kq4_075_troll_cave_passage/caption_3_3961738119/caption_3_3403574384/generated.png b/asset-work/kq4_075_troll_cave_passage/caption_3_3961738119/caption_3_3403574384/generated.png deleted file mode 100644 index ae00a0c..0000000 --- a/asset-work/kq4_075_troll_cave_passage/caption_3_3961738119/caption_3_3403574384/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c4292610faad47f1e0a05d43d61ee5f8a649c8363315dd0aa5dd39994e31069a -size 4310472 diff --git a/asset-work/kq4_075_troll_cave_passage/caption_3_3961738119/generated.png b/asset-work/kq4_075_troll_cave_passage/caption_3_3961738119_generated.png similarity index 100% rename from asset-work/kq4_075_troll_cave_passage/caption_3_3961738119/generated.png rename to asset-work/kq4_075_troll_cave_passage/caption_3_3961738119_generated.png diff --git a/asset-work/kq4_075_troll_cave_passage/caption_3_3961738119_generated.png.import b/asset-work/kq4_075_troll_cave_passage/caption_3_3961738119_generated.png.import new file mode 100644 index 0000000..f92f545 --- /dev/null +++ b/asset-work/kq4_075_troll_cave_passage/caption_3_3961738119_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c7o7pe6bikb5c" +path="res://.godot/imported/caption_3_3961738119_generated.png-bb7f6077a4cb2b56278fecf41d66e829.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_075_troll_cave_passage/caption_3_3961738119_generated.png" +dest_files=["res://.godot/imported/caption_3_3961738119_generated.png-bb7f6077a4cb2b56278fecf41d66e829.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_076_dark_chasm/caption_1_2030551831/caption_1.txt b/asset-work/kq4_076_dark_chasm/caption_1_2030551831/caption_1.txt deleted file mode 100644 index 5c6a44b..0000000 --- a/asset-work/kq4_076_dark_chasm/caption_1_2030551831/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A foreboding subterranean chamber plunged into velvet darkness, viewed from an elevated vantage point within the cavern's depths. The foreground reveals rough-hewn stone surfaces, their irregular contours catching faint glimmers of ambient light that seep from unseen sources above. Textured stalactite formations descend from shadowed ceiling heights, their surfaces painted in deep umbers and charcoal tones. The middle ground is dominated by a vast chasm that cleaves through the cavern floor, an abyss of impenetrable blackness suggesting unfathomable depth below. Rocky ledges frame this precipice, their craggy edges rendered with geological precision. In the distant background, a pale opening glows like a beacon, offering the only source of illumination in this oppressive underground realm. The light filters through the distant aperture, creating subtle atmospheric perspective that hints at escape routes beyond. The palette is restrained yet rich: deep slate grays, midnight blues, and velvety blacks interspersed with touches of warm ochre where stone surfaces catch faint luminosity. Shadows pool in recesses and crevices, emphasizing the treacherous nature of the terrain. diff --git a/asset-work/kq4_076_dark_chasm/caption_1_2030551831/generated.png b/asset-work/kq4_076_dark_chasm/caption_1_2030551831_generated.png similarity index 100% rename from asset-work/kq4_076_dark_chasm/caption_1_2030551831/generated.png rename to asset-work/kq4_076_dark_chasm/caption_1_2030551831_generated.png diff --git a/asset-work/kq4_076_dark_chasm/caption_1_2030551831_generated.png.import b/asset-work/kq4_076_dark_chasm/caption_1_2030551831_generated.png.import new file mode 100644 index 0000000..00025d7 --- /dev/null +++ b/asset-work/kq4_076_dark_chasm/caption_1_2030551831_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ba2t0ds2sxg8x" +path="res://.godot/imported/caption_1_2030551831_generated.png-e6be66d0e163d6965caacbe4eaff4d69.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_076_dark_chasm/caption_1_2030551831_generated.png" +dest_files=["res://.godot/imported/caption_1_2030551831_generated.png-e6be66d0e163d6965caacbe4eaff4d69.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_076_dark_chasm/caption_2_2452742132/caption_2.txt b/asset-work/kq4_076_dark_chasm/caption_2_2452742132/caption_2.txt deleted file mode 100644 index 515b390..0000000 --- a/asset-work/kq4_076_dark_chasm/caption_2_2452742132/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A dramatic cavern interior from high perspective, revealing the terrifying expanse of a natural chasm that splits the underground landscape. The immediate foreground shows weathered limestone formations, their pitted surfaces displaying intricate patterns of erosion and mineral deposits in muted earth tones. Jagged rock outcroppings create natural pathways that lead perilously toward the gaping crevice at center stage. The chasm itself descends into absolute darkness, a vertical void that swallows all light, painted with layers of carbon black and deep indigo suggesting impossible depths. To the far background, a narrow opening pierces the cavern wall, emitting a soft ethereal glow that provides the sole contrast against the oppressive shadows. This distant light source creates a subtle halo effect, illuminating fine particles suspended in the subterranean air. The rocky walls display stratified layers of geological time, ochre and rust-colored bands interrupting the dominant gray palette. Heavy shadows gather in the recesses between stone formations, while the chasm's edge catches faint reflected light, emphasizing the danger of the precipice. diff --git a/asset-work/kq4_076_dark_chasm/caption_2_2452742132/generated.png b/asset-work/kq4_076_dark_chasm/caption_2_2452742132_generated.png similarity index 100% rename from asset-work/kq4_076_dark_chasm/caption_2_2452742132/generated.png rename to asset-work/kq4_076_dark_chasm/caption_2_2452742132_generated.png diff --git a/asset-work/kq4_076_dark_chasm/caption_2_2452742132_generated.png.import b/asset-work/kq4_076_dark_chasm/caption_2_2452742132_generated.png.import new file mode 100644 index 0000000..56926af --- /dev/null +++ b/asset-work/kq4_076_dark_chasm/caption_2_2452742132_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://mepnqlv5hckg" +path="res://.godot/imported/caption_2_2452742132_generated.png-12fcdd3a0d53e70a4986eca463c6f19e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_076_dark_chasm/caption_2_2452742132_generated.png" +dest_files=["res://.godot/imported/caption_2_2452742132_generated.png-12fcdd3a0d53e70a4986eca463c6f19e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_076_dark_chasm/caption_3_655779533/caption_3.txt b/asset-work/kq4_076_dark_chasm/caption_3_655779533/caption_3.txt deleted file mode 100644 index 6a23d6e..0000000 --- a/asset-work/kq4_076_dark_chasm/caption_3_655779533/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. An ominous underground passage viewed from above, where the suffocating darkness of a vast cavern is broken only by a distant portal of pale light. The foreground terrain consists of ancient stone platforms, their surfaces worn smooth by centuries of subterranean moisture, rendered in deep charcoal and slate with subtle violet undertones. Massive rock formations rise from the cavern floor, creating natural barriers and pathways that guide the eye toward the central abyss. This chasm cuts through the stone like a dark wound, its vertical walls disappearing into pure blackness below, suggesting depths that defy measurement. The composition draws attention to the far background where a rough-hewn opening punctuates the cavern wall, allowing cool diffuse light to filter into the oppressive gloom. This illumination reveals the texture of distant rock faces and creates atmospheric haze that softens the background forms. The color harmony balances cool blue-grays and deep purples against touches of warm brown where minerals have stained the stone. Dramatic chiaroscuro effects emphasize the three-dimensional quality of the geological formations, with deep shadows pooling in crevices while highlighted edges catch the faint ambient glow. diff --git a/asset-work/kq4_076_dark_chasm/caption_3_655779533/generated.png b/asset-work/kq4_076_dark_chasm/caption_3_655779533_generated.png similarity index 100% rename from asset-work/kq4_076_dark_chasm/caption_3_655779533/generated.png rename to asset-work/kq4_076_dark_chasm/caption_3_655779533_generated.png diff --git a/asset-work/kq4_076_dark_chasm/caption_3_655779533_generated.png.import b/asset-work/kq4_076_dark_chasm/caption_3_655779533_generated.png.import new file mode 100644 index 0000000..3adb00b --- /dev/null +++ b/asset-work/kq4_076_dark_chasm/caption_3_655779533_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c5oxmtt1jfafr" +path="res://.godot/imported/caption_3_655779533_generated.png-51ec72238dda007d2e9860ab33d4ded1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_076_dark_chasm/caption_3_655779533_generated.png" +dest_files=["res://.godot/imported/caption_3_655779533_generated.png-51ec72238dda007d2e9860ab33d4ded1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_077_swamp/caption_1_3621489226/generated.png b/asset-work/kq4_077_swamp/caption_1_3621489226_generated.png similarity index 100% rename from asset-work/kq4_077_swamp/caption_1_3621489226/generated.png rename to asset-work/kq4_077_swamp/caption_1_3621489226_generated.png diff --git a/asset-work/kq4_077_swamp/caption_1_3621489226_generated.png.import b/asset-work/kq4_077_swamp/caption_1_3621489226_generated.png.import new file mode 100644 index 0000000..2726046 --- /dev/null +++ b/asset-work/kq4_077_swamp/caption_1_3621489226_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dmj8rpk7mgc4e" +path="res://.godot/imported/caption_1_3621489226_generated.png-104fea83ae6ee432fcf390b3c9072fb8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_077_swamp/caption_1_3621489226_generated.png" +dest_files=["res://.godot/imported/caption_1_3621489226_generated.png-104fea83ae6ee432fcf390b3c9072fb8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_077_swamp/caption_1_4176554612/generated.png b/asset-work/kq4_077_swamp/caption_1_4176554612_generated.png similarity index 100% rename from asset-work/kq4_077_swamp/caption_1_4176554612/generated.png rename to asset-work/kq4_077_swamp/caption_1_4176554612_generated.png diff --git a/asset-work/kq4_077_swamp/caption_1_4176554612_generated.png.import b/asset-work/kq4_077_swamp/caption_1_4176554612_generated.png.import new file mode 100644 index 0000000..11f55d8 --- /dev/null +++ b/asset-work/kq4_077_swamp/caption_1_4176554612_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dw0ym3t8nl4xv" +path="res://.godot/imported/caption_1_4176554612_generated.png-5598e4bb333bb5940983e61776bab8b7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_077_swamp/caption_1_4176554612_generated.png" +dest_files=["res://.godot/imported/caption_1_4176554612_generated.png-5598e4bb333bb5940983e61776bab8b7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_077_swamp/caption_2_1555751478/generated.png b/asset-work/kq4_077_swamp/caption_2_1555751478_generated.png similarity index 100% rename from asset-work/kq4_077_swamp/caption_2_1555751478/generated.png rename to asset-work/kq4_077_swamp/caption_2_1555751478_generated.png diff --git a/asset-work/kq4_077_swamp/caption_2_1555751478_generated.png.import b/asset-work/kq4_077_swamp/caption_2_1555751478_generated.png.import new file mode 100644 index 0000000..05ef5e1 --- /dev/null +++ b/asset-work/kq4_077_swamp/caption_2_1555751478_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://41apencaq1cw" +path="res://.godot/imported/caption_2_1555751478_generated.png-4b094f38015dee95bc35c9a149e57dbf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_077_swamp/caption_2_1555751478_generated.png" +dest_files=["res://.godot/imported/caption_2_1555751478_generated.png-4b094f38015dee95bc35c9a149e57dbf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_077_swamp/caption_2_1706272698/generated.png b/asset-work/kq4_077_swamp/caption_2_1706272698_generated.png similarity index 100% rename from asset-work/kq4_077_swamp/caption_2_1706272698/generated.png rename to asset-work/kq4_077_swamp/caption_2_1706272698_generated.png diff --git a/asset-work/kq4_077_swamp/caption_2_1706272698_generated.png.import b/asset-work/kq4_077_swamp/caption_2_1706272698_generated.png.import new file mode 100644 index 0000000..eaddaee --- /dev/null +++ b/asset-work/kq4_077_swamp/caption_2_1706272698_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://koa6xim4tdov" +path="res://.godot/imported/caption_2_1706272698_generated.png-acbd7d4989aee68795e11311b9e85865.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_077_swamp/caption_2_1706272698_generated.png" +dest_files=["res://.godot/imported/caption_2_1706272698_generated.png-acbd7d4989aee68795e11311b9e85865.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_077_swamp/caption_3_4287448339/caption_3.txt b/asset-work/kq4_077_swamp/caption_3_4287448339/caption_3.txt deleted file mode 100644 index 088a9d2..0000000 --- a/asset-work/kq4_077_swamp/caption_3_4287448339/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A dramatic bird's-eye view of an ancient fen shrouded in mystery, where colossal deadwood giants loom over brackish pools. In the immediate foreground, tangled roots and exposed earth create rich texture in deep burnt sienna and mossy green, while skeletal branches reach overhead like grasping fingers. The middle ground reveals dark water thick with vegetation, rendered in layered strokes of jade, teal, and near-black, reflecting the twisted canopy above. A narrow earthen shelf traverses the left side, carpeted with fallen needles and small stones in warm terracotta tones that contrast with the cool depths of the swamp. Background forms dissolve into shadowy masses of foliage, the tree trunks growing increasingly indistinct in atmospheric perspective. Occasional patches of pale sky visible through gaps in the canopy provide the only relief from the oppressive verdant gloom. Light filters down in ethereal columns, illuminating floating debris and the rippled surface of hidden pools. The composition balances textured organic foreground against the smooth, dark mystery of the water below. diff --git a/asset-work/kq4_077_swamp/caption_3_4287448339/generated.png b/asset-work/kq4_077_swamp/caption_3_4287448339_generated.png similarity index 100% rename from asset-work/kq4_077_swamp/caption_3_4287448339/generated.png rename to asset-work/kq4_077_swamp/caption_3_4287448339_generated.png diff --git a/asset-work/kq4_077_swamp/caption_3_4287448339_generated.png.import b/asset-work/kq4_077_swamp/caption_3_4287448339_generated.png.import new file mode 100644 index 0000000..bdb07d0 --- /dev/null +++ b/asset-work/kq4_077_swamp/caption_3_4287448339_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d241ihpif5cyv" +path="res://.godot/imported/caption_3_4287448339_generated.png-c7476f8f7e2282f4b9a077f40e20af85.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_077_swamp/caption_3_4287448339_generated.png" +dest_files=["res://.godot/imported/caption_3_4287448339_generated.png-c7476f8f7e2282f4b9a077f40e20af85.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_078_swamp_island/caption_1_3716988877/caption_1.txt b/asset-work/kq4_078_swamp_island/caption_1_3716988877/caption_1.txt deleted file mode 100644 index 8c5b469..0000000 --- a/asset-work/kq4_078_swamp_island/caption_1_3716988877/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A dramatic aerial view reveals a solitary island emerging from a dark and ancient swamp, where twisted trees create a natural archway framing the scene. In the foreground, marshy ground shows tufts of resilient swamp grass poking through murky waters, their blades catching dappled light filtering through the dense canopy above. The middle ground reveals the island itself, a small mound of solid earth supporting a gnarled, scrawny tree whose twisted branches reach skyward like arthritic fingers. The tree stands as the focal point, its weathered bark rendered in textured strokes of umber and gray. Behind the island, stagnant swamp waters stretch into shadowy depths, their surfaces reflecting an eerie green luminescence from the surrounding moss-draped forest. Dark silhouettes of massive trees loom at the edges, their trunks disappearing into misty atmosphere. The palette harmonizes deep forest greens, murky olive tones, and shadowed umbers, with subtle highlights of phosphorescent green suggesting otherworldly presence in this isolated sanctuary. diff --git a/asset-work/kq4_078_swamp_island/caption_1_3716988877/generated.png b/asset-work/kq4_078_swamp_island/caption_1_3716988877_generated.png similarity index 100% rename from asset-work/kq4_078_swamp_island/caption_1_3716988877/generated.png rename to asset-work/kq4_078_swamp_island/caption_1_3716988877_generated.png diff --git a/asset-work/kq4_078_swamp_island/caption_1_3716988877_generated.png.import b/asset-work/kq4_078_swamp_island/caption_1_3716988877_generated.png.import new file mode 100644 index 0000000..2b12ea5 --- /dev/null +++ b/asset-work/kq4_078_swamp_island/caption_1_3716988877_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b50t3ni4ijy0y" +path="res://.godot/imported/caption_1_3716988877_generated.png-b78490b10a1559c9252964a3fb1d55eb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_078_swamp_island/caption_1_3716988877_generated.png" +dest_files=["res://.godot/imported/caption_1_3716988877_generated.png-b78490b10a1559c9252964a3fb1d55eb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_078_swamp_island/caption_2_1581623452/caption_2.txt b/asset-work/kq4_078_swamp_island/caption_2_1581623452/caption_2.txt deleted file mode 100644 index 390d46b..0000000 --- a/asset-work/kq4_078_swamp_island/caption_2_1581623452/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A haunting bird's-eye perspective captures a mysterious island sanctuary nestled within an endless swamp, surrounded by primordial stillness. The immediate foreground depicts treacherous marshland where patches of solid ground intermingle with pools of dark water, rendered in thick impasto strokes suggesting viscous muck and tangled roots. Tufts of coarse grass create a subtle path leading toward the central island, their pale green blades contrasting against the surrounding darkness. The island itself rises gently from the swamp, crowned by a solitary wizened tree whose skeletal branches twist in impossible angles, painted with delicate detail against the gloom. Behind this central tableau, the swamp extends into impenetrable shadow where massive tree trunks emerge from the mist like ancient sentinels. The water's surface mirrors the overhanging canopy in rippled reflections of emerald and jade. Atmospheric perspective softens distant forms into blue-green haze. The color scheme balances deep viridian shadows with touches of golden-green light filtering through the dense canopy above, creating an ethereal, enchanted atmosphere in this isolated realm. diff --git a/asset-work/kq4_078_swamp_island/caption_2_1581623452/generated.png b/asset-work/kq4_078_swamp_island/caption_2_1581623452_generated.png similarity index 100% rename from asset-work/kq4_078_swamp_island/caption_2_1581623452/generated.png rename to asset-work/kq4_078_swamp_island/caption_2_1581623452_generated.png diff --git a/asset-work/kq4_078_swamp_island/caption_2_1581623452_generated.png.import b/asset-work/kq4_078_swamp_island/caption_2_1581623452_generated.png.import new file mode 100644 index 0000000..48eb17d --- /dev/null +++ b/asset-work/kq4_078_swamp_island/caption_2_1581623452_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dh8awei7icxqn" +path="res://.godot/imported/caption_2_1581623452_generated.png-a4eb693a3fb8c06eba83b5ca8d5121ce.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_078_swamp_island/caption_2_1581623452_generated.png" +dest_files=["res://.godot/imported/caption_2_1581623452_generated.png-a4eb693a3fb8c06eba83b5ca8d5121ce.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_078_swamp_island/caption_3_1906552945/caption_3.txt b/asset-work/kq4_078_swamp_island/caption_3_1906552945/caption_3.txt deleted file mode 100644 index 2154602..0000000 --- a/asset-work/kq4_078_swamp_island/caption_3_1906552945/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A panoramic elevated view reveals a tiny island fortress surrounded by the dark waters of an ancient marsh, where nature has created a dramatic stage through centuries of growth. Foreground elements include gnarled tree roots exposed at the water's edge and clumps of swamp vegetation rendered in rich, tactile brushwork suggesting wet moss and spongy peat. The island occupies the center of the composition, a modest patch of earth supporting a single scrawny tree whose bark shows the textured patina of age and struggle, its few branches reaching outward like desperate arms. Beyond the island, the swamp stretches in all directions, a vast expanse of still water reflecting the dense canopy overhead in fragmented patches of green and black. Dark tree silhouettes frame the composition on all sides, their massive trunks and twisted limbs creating natural borders that draw the eye toward the island sanctuary. Light filters through the dense foliage in vertical beams, illuminating patches of the scene with ethereal green-gold luminescence while leaving other areas in velvety shadow. The palette emphasizes deep forest greens, shadowy blues, and muted earth tones with highlights of phosphorescent chartreuse. diff --git a/asset-work/kq4_078_swamp_island/caption_3_1906552945/generated.png b/asset-work/kq4_078_swamp_island/caption_3_1906552945_generated.png similarity index 100% rename from asset-work/kq4_078_swamp_island/caption_3_1906552945/generated.png rename to asset-work/kq4_078_swamp_island/caption_3_1906552945_generated.png diff --git a/asset-work/kq4_078_swamp_island/caption_3_1906552945_generated.png.import b/asset-work/kq4_078_swamp_island/caption_3_1906552945_generated.png.import new file mode 100644 index 0000000..6aa9ce7 --- /dev/null +++ b/asset-work/kq4_078_swamp_island/caption_3_1906552945_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cmd8qobqxwxj7" +path="res://.godot/imported/caption_3_1906552945_generated.png-ad396672bb263adcbabbcc40e7a2674f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_078_swamp_island/caption_3_1906552945_generated.png" +dest_files=["res://.godot/imported/caption_3_1906552945_generated.png-ad396672bb263adcbabbcc40e7a2674f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_079_mountain_path_to_dark_castle/caption_1_3611010515/caption_1.txt b/asset-work/kq4_079_mountain_path_to_dark_castle/caption_1_3611010515/caption_1.txt deleted file mode 100644 index cacf91d..0000000 --- a/asset-work/kq4_079_mountain_path_to_dark_castle/caption_1_3611010515/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A dramatic high-angle vista of a treacherous mountain passage ascending toward a forbidding dark castle perched on a precipice. The foreground reveals jagged volcanic rock formations rendered in thick impasto strokes of umber and charcoal, their weathered surfaces etched with vertical striations and deep shadowed crevices. A narrow switchback path winds upward through the middle ground, its surface composed of loose scree and stone worn smooth by ancient feet. To the right, weathered wooden scaffolding clings precariously to the cliff face, its timbers gray and silvered by centuries of mountain winds, creating architectural counterpoint to the wild geology. The dark castle looms in the upper left, its silhouette stark against an intense cerulean sky, battlements barely visible against the shadowed stone. Background peaks fade into atmospheric purples and blues, suggesting immense elevation and isolation. The palette harmonizes cold granite grays with warm ochre path tones, punctuated by the deep indigo shadows that pool in the rock crevices under harsh alpine sunlight. diff --git a/asset-work/kq4_079_mountain_path_to_dark_castle/caption_1_3611010515/caption_1_4254362412/caption_1.txt b/asset-work/kq4_079_mountain_path_to_dark_castle/caption_1_3611010515/caption_1_4254362412/caption_1.txt deleted file mode 100644 index cacf91d..0000000 --- a/asset-work/kq4_079_mountain_path_to_dark_castle/caption_1_3611010515/caption_1_4254362412/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A dramatic high-angle vista of a treacherous mountain passage ascending toward a forbidding dark castle perched on a precipice. The foreground reveals jagged volcanic rock formations rendered in thick impasto strokes of umber and charcoal, their weathered surfaces etched with vertical striations and deep shadowed crevices. A narrow switchback path winds upward through the middle ground, its surface composed of loose scree and stone worn smooth by ancient feet. To the right, weathered wooden scaffolding clings precariously to the cliff face, its timbers gray and silvered by centuries of mountain winds, creating architectural counterpoint to the wild geology. The dark castle looms in the upper left, its silhouette stark against an intense cerulean sky, battlements barely visible against the shadowed stone. Background peaks fade into atmospheric purples and blues, suggesting immense elevation and isolation. The palette harmonizes cold granite grays with warm ochre path tones, punctuated by the deep indigo shadows that pool in the rock crevices under harsh alpine sunlight. diff --git a/asset-work/kq4_079_mountain_path_to_dark_castle/caption_1_3611010515/caption_1_4254362412/generated.png b/asset-work/kq4_079_mountain_path_to_dark_castle/caption_1_3611010515/caption_1_4254362412/generated.png deleted file mode 100644 index e66d361..0000000 --- a/asset-work/kq4_079_mountain_path_to_dark_castle/caption_1_3611010515/caption_1_4254362412/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8ba1e8efecd1428254ee5b5ac2ff302c4c0f5e13832135b8d0ed0fdabe9cc1ee -size 4398185 diff --git a/asset-work/kq4_079_mountain_path_to_dark_castle/caption_1_3611010515/generated.png b/asset-work/kq4_079_mountain_path_to_dark_castle/caption_1_3611010515_generated.png similarity index 100% rename from asset-work/kq4_079_mountain_path_to_dark_castle/caption_1_3611010515/generated.png rename to asset-work/kq4_079_mountain_path_to_dark_castle/caption_1_3611010515_generated.png diff --git a/asset-work/kq4_079_mountain_path_to_dark_castle/caption_1_3611010515_generated.png.import b/asset-work/kq4_079_mountain_path_to_dark_castle/caption_1_3611010515_generated.png.import new file mode 100644 index 0000000..6448ebe --- /dev/null +++ b/asset-work/kq4_079_mountain_path_to_dark_castle/caption_1_3611010515_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b7n7wnfgprxus" +path="res://.godot/imported/caption_1_3611010515_generated.png-3a13eb7a915ec66f91c532ec318afc17.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_079_mountain_path_to_dark_castle/caption_1_3611010515_generated.png" +dest_files=["res://.godot/imported/caption_1_3611010515_generated.png-3a13eb7a915ec66f91c532ec318afc17.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_079_mountain_path_to_dark_castle/caption_2_2045626896/caption_2.txt b/asset-work/kq4_079_mountain_path_to_dark_castle/caption_2_2045626896/caption_2.txt deleted file mode 100644 index fd7a2d1..0000000 --- a/asset-work/kq4_079_mountain_path_to_dark_castle/caption_2_2045626896/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A vertiginous mountain ascent viewed from above, where ancient granite walls rise like cathedral buttresses toward a storm-dark fortress. In the immediate foreground, shattered rock debris and fractured stone slabs create textured terrain in shades of slate and pewter, their rough surfaces catching directional light from the left. The central path climbs steeply through the composition, a ribbon of lighter gray cutting through darker bedrock, suggesting worn steps carved by countless journeys. Dramatic wooden structures span gaps in the right cliff face, their construction primitive yet enduring, beams and planks creating geometric patterns against organic stone. The castle above appears as a black silhouette against brilliant azure, its towers and walls barely distinguishable from the mountain itself, as if grown from the living rock. Distant mountain ranges dissolve into misty blues and violets, emphasizing the altitude and isolation. Light streams from the upper left, casting long shadows that accentuate the verticality of the cliffs and creating pools of mysterious darkness in the rock fissures below. diff --git a/asset-work/kq4_079_mountain_path_to_dark_castle/caption_2_2045626896/caption_2_1395993966/caption_2.txt b/asset-work/kq4_079_mountain_path_to_dark_castle/caption_2_2045626896/caption_2_1395993966/caption_2.txt deleted file mode 100644 index fd7a2d1..0000000 --- a/asset-work/kq4_079_mountain_path_to_dark_castle/caption_2_2045626896/caption_2_1395993966/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A vertiginous mountain ascent viewed from above, where ancient granite walls rise like cathedral buttresses toward a storm-dark fortress. In the immediate foreground, shattered rock debris and fractured stone slabs create textured terrain in shades of slate and pewter, their rough surfaces catching directional light from the left. The central path climbs steeply through the composition, a ribbon of lighter gray cutting through darker bedrock, suggesting worn steps carved by countless journeys. Dramatic wooden structures span gaps in the right cliff face, their construction primitive yet enduring, beams and planks creating geometric patterns against organic stone. The castle above appears as a black silhouette against brilliant azure, its towers and walls barely distinguishable from the mountain itself, as if grown from the living rock. Distant mountain ranges dissolve into misty blues and violets, emphasizing the altitude and isolation. Light streams from the upper left, casting long shadows that accentuate the verticality of the cliffs and creating pools of mysterious darkness in the rock fissures below. diff --git a/asset-work/kq4_079_mountain_path_to_dark_castle/caption_2_2045626896/caption_2_1395993966/generated.png b/asset-work/kq4_079_mountain_path_to_dark_castle/caption_2_2045626896/caption_2_1395993966/generated.png deleted file mode 100644 index 8bcfd97..0000000 --- a/asset-work/kq4_079_mountain_path_to_dark_castle/caption_2_2045626896/caption_2_1395993966/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6266f05993baa819c617285dba9873b63240d669525b779d7c10bed4130814e0 -size 4283278 diff --git a/asset-work/kq4_079_mountain_path_to_dark_castle/caption_2_2045626896/generated.png b/asset-work/kq4_079_mountain_path_to_dark_castle/caption_2_2045626896_generated.png similarity index 100% rename from asset-work/kq4_079_mountain_path_to_dark_castle/caption_2_2045626896/generated.png rename to asset-work/kq4_079_mountain_path_to_dark_castle/caption_2_2045626896_generated.png diff --git a/asset-work/kq4_079_mountain_path_to_dark_castle/caption_2_2045626896_generated.png.import b/asset-work/kq4_079_mountain_path_to_dark_castle/caption_2_2045626896_generated.png.import new file mode 100644 index 0000000..eecccca --- /dev/null +++ b/asset-work/kq4_079_mountain_path_to_dark_castle/caption_2_2045626896_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://omijc0asg38b" +path="res://.godot/imported/caption_2_2045626896_generated.png-f8960cebb9f462aafe350002d479f8b6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_079_mountain_path_to_dark_castle/caption_2_2045626896_generated.png" +dest_files=["res://.godot/imported/caption_2_2045626896_generated.png-f8960cebb9f462aafe350002d479f8b6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_079_mountain_path_to_dark_castle/caption_3_419745313/caption_3.txt b/asset-work/kq4_079_mountain_path_to_dark_castle/caption_3_419745313/caption_3.txt deleted file mode 100644 index 4a5417f..0000000 --- a/asset-work/kq4_079_mountain_path_to_dark_castle/caption_3_419745313/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A perilous alpine approach to an ancient stronghold, rendered from an elevated perspective that reveals the full grandeur of the mountainous terrain. The foreground presents fractured cliff faces painted with bold brushwork in titanium white and paynes gray, their vertical striations suggesting geological upheaval over millennia. A serpentine trail of broken shale and compacted earth snakes upward through the middle distance, its surface catching highlights that contrast with the surrounding shadowed rock faces. On the right, rudimentary wooden platforms and beams traverse the cliff, their weathered surfaces glowing warm umber against the cold stone, suggesting human persistence in this hostile environment. The dark castle crouches atop the left precipice like a predatory bird, its form merging with the black basalt of the mountain peak against a sky of pure cobalt blue. Background atmosphere softens distant crags into layers of lavender and indigo mist. The composition balances the warm ochres of the path and wood against the cool grays and blues of stone and sky, while dramatic chiaroscuro lighting models every crevice and crag with painterly precision. diff --git a/asset-work/kq4_079_mountain_path_to_dark_castle/caption_3_419745313/caption_3_2679927435/caption_3.txt b/asset-work/kq4_079_mountain_path_to_dark_castle/caption_3_419745313/caption_3_2679927435/caption_3.txt deleted file mode 100644 index 4a5417f..0000000 --- a/asset-work/kq4_079_mountain_path_to_dark_castle/caption_3_419745313/caption_3_2679927435/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A perilous alpine approach to an ancient stronghold, rendered from an elevated perspective that reveals the full grandeur of the mountainous terrain. The foreground presents fractured cliff faces painted with bold brushwork in titanium white and paynes gray, their vertical striations suggesting geological upheaval over millennia. A serpentine trail of broken shale and compacted earth snakes upward through the middle distance, its surface catching highlights that contrast with the surrounding shadowed rock faces. On the right, rudimentary wooden platforms and beams traverse the cliff, their weathered surfaces glowing warm umber against the cold stone, suggesting human persistence in this hostile environment. The dark castle crouches atop the left precipice like a predatory bird, its form merging with the black basalt of the mountain peak against a sky of pure cobalt blue. Background atmosphere softens distant crags into layers of lavender and indigo mist. The composition balances the warm ochres of the path and wood against the cool grays and blues of stone and sky, while dramatic chiaroscuro lighting models every crevice and crag with painterly precision. diff --git a/asset-work/kq4_079_mountain_path_to_dark_castle/caption_3_419745313/caption_3_2679927435/generated.png b/asset-work/kq4_079_mountain_path_to_dark_castle/caption_3_419745313/caption_3_2679927435/generated.png deleted file mode 100644 index f919b87..0000000 --- a/asset-work/kq4_079_mountain_path_to_dark_castle/caption_3_419745313/caption_3_2679927435/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ca3666255281968120518a3f6158a75dee9f02c569cb634b211f99e25bd5e669 -size 4893899 diff --git a/asset-work/kq4_079_mountain_path_to_dark_castle/caption_3_419745313/generated.png b/asset-work/kq4_079_mountain_path_to_dark_castle/caption_3_419745313_generated.png similarity index 100% rename from asset-work/kq4_079_mountain_path_to_dark_castle/caption_3_419745313/generated.png rename to asset-work/kq4_079_mountain_path_to_dark_castle/caption_3_419745313_generated.png diff --git a/asset-work/kq4_079_mountain_path_to_dark_castle/caption_3_419745313_generated.png.import b/asset-work/kq4_079_mountain_path_to_dark_castle/caption_3_419745313_generated.png.import new file mode 100644 index 0000000..82653f7 --- /dev/null +++ b/asset-work/kq4_079_mountain_path_to_dark_castle/caption_3_419745313_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://defhu4v0hewyd" +path="res://.godot/imported/caption_3_419745313_generated.png-aefe41271c5365477d593993ec93f980.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_079_mountain_path_to_dark_castle/caption_3_419745313_generated.png" +dest_files=["res://.godot/imported/caption_3_419745313_generated.png-aefe41271c5365477d593993ec93f980.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_080_lolottes_castle_entrance/caption_1_2565746861/generated.png b/asset-work/kq4_080_lolottes_castle_entrance/caption_1_2565746861_generated.png similarity index 100% rename from asset-work/kq4_080_lolottes_castle_entrance/caption_1_2565746861/generated.png rename to asset-work/kq4_080_lolottes_castle_entrance/caption_1_2565746861_generated.png diff --git a/asset-work/kq4_080_lolottes_castle_entrance/caption_1_2565746861_generated.png.import b/asset-work/kq4_080_lolottes_castle_entrance/caption_1_2565746861_generated.png.import new file mode 100644 index 0000000..a346ba8 --- /dev/null +++ b/asset-work/kq4_080_lolottes_castle_entrance/caption_1_2565746861_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b3gklcjdeooqk" +path="res://.godot/imported/caption_1_2565746861_generated.png-0a0abfb6ff5c01f6d5e16d4d75629bd1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_080_lolottes_castle_entrance/caption_1_2565746861_generated.png" +dest_files=["res://.godot/imported/caption_1_2565746861_generated.png-0a0abfb6ff5c01f6d5e16d4d75629bd1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_080_lolottes_castle_entrance/caption_1_2947984473/generated.png b/asset-work/kq4_080_lolottes_castle_entrance/caption_1_2947984473_generated.png similarity index 100% rename from asset-work/kq4_080_lolottes_castle_entrance/caption_1_2947984473/generated.png rename to asset-work/kq4_080_lolottes_castle_entrance/caption_1_2947984473_generated.png diff --git a/asset-work/kq4_080_lolottes_castle_entrance/caption_1_2947984473_generated.png.import b/asset-work/kq4_080_lolottes_castle_entrance/caption_1_2947984473_generated.png.import new file mode 100644 index 0000000..619f281 --- /dev/null +++ b/asset-work/kq4_080_lolottes_castle_entrance/caption_1_2947984473_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b0epl563uy2h" +path="res://.godot/imported/caption_1_2947984473_generated.png-71e7b031d70224e5ec9918f2d2b081fe.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_080_lolottes_castle_entrance/caption_1_2947984473_generated.png" +dest_files=["res://.godot/imported/caption_1_2947984473_generated.png-71e7b031d70224e5ec9918f2d2b081fe.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_080_lolottes_castle_entrance/caption_2_3891782119/generated.png b/asset-work/kq4_080_lolottes_castle_entrance/caption_2_3891782119_generated.png similarity index 100% rename from asset-work/kq4_080_lolottes_castle_entrance/caption_2_3891782119/generated.png rename to asset-work/kq4_080_lolottes_castle_entrance/caption_2_3891782119_generated.png diff --git a/asset-work/kq4_080_lolottes_castle_entrance/caption_2_3891782119_generated.png.import b/asset-work/kq4_080_lolottes_castle_entrance/caption_2_3891782119_generated.png.import new file mode 100644 index 0000000..c1894c9 --- /dev/null +++ b/asset-work/kq4_080_lolottes_castle_entrance/caption_2_3891782119_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cy8u185btlixr" +path="res://.godot/imported/caption_2_3891782119_generated.png-88b1090d54f3d322141f28bbb325f056.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_080_lolottes_castle_entrance/caption_2_3891782119_generated.png" +dest_files=["res://.godot/imported/caption_2_3891782119_generated.png-88b1090d54f3d322141f28bbb325f056.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_080_lolottes_castle_entrance/caption_2_616541278/generated.png b/asset-work/kq4_080_lolottes_castle_entrance/caption_2_616541278_generated.png similarity index 100% rename from asset-work/kq4_080_lolottes_castle_entrance/caption_2_616541278/generated.png rename to asset-work/kq4_080_lolottes_castle_entrance/caption_2_616541278_generated.png diff --git a/asset-work/kq4_080_lolottes_castle_entrance/caption_2_616541278_generated.png.import b/asset-work/kq4_080_lolottes_castle_entrance/caption_2_616541278_generated.png.import new file mode 100644 index 0000000..9aa1281 --- /dev/null +++ b/asset-work/kq4_080_lolottes_castle_entrance/caption_2_616541278_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dmxuqs0w35vax" +path="res://.godot/imported/caption_2_616541278_generated.png-53d2e8789e77fda1eb10804379e6de80.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_080_lolottes_castle_entrance/caption_2_616541278_generated.png" +dest_files=["res://.godot/imported/caption_2_616541278_generated.png-53d2e8789e77fda1eb10804379e6de80.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_080_lolottes_castle_entrance/caption_3_1489970343/generated.png b/asset-work/kq4_080_lolottes_castle_entrance/caption_3_1489970343_generated.png similarity index 100% rename from asset-work/kq4_080_lolottes_castle_entrance/caption_3_1489970343/generated.png rename to asset-work/kq4_080_lolottes_castle_entrance/caption_3_1489970343_generated.png diff --git a/asset-work/kq4_080_lolottes_castle_entrance/caption_3_1489970343_generated.png.import b/asset-work/kq4_080_lolottes_castle_entrance/caption_3_1489970343_generated.png.import new file mode 100644 index 0000000..e90e03b --- /dev/null +++ b/asset-work/kq4_080_lolottes_castle_entrance/caption_3_1489970343_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://de80ao00hp00n" +path="res://.godot/imported/caption_3_1489970343_generated.png-1d78239584bc88c31140e6d70245eeba.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_080_lolottes_castle_entrance/caption_3_1489970343_generated.png" +dest_files=["res://.godot/imported/caption_3_1489970343_generated.png-1d78239584bc88c31140e6d70245eeba.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_080_lolottes_castle_entrance/caption_3_852577789/generated.png b/asset-work/kq4_080_lolottes_castle_entrance/caption_3_852577789_generated.png similarity index 100% rename from asset-work/kq4_080_lolottes_castle_entrance/caption_3_852577789/generated.png rename to asset-work/kq4_080_lolottes_castle_entrance/caption_3_852577789_generated.png diff --git a/asset-work/kq4_080_lolottes_castle_entrance/caption_3_852577789_generated.png.import b/asset-work/kq4_080_lolottes_castle_entrance/caption_3_852577789_generated.png.import new file mode 100644 index 0000000..7c4f926 --- /dev/null +++ b/asset-work/kq4_080_lolottes_castle_entrance/caption_3_852577789_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bbpg352k67qsy" +path="res://.godot/imported/caption_3_852577789_generated.png-22285ff7186f77b6cabd8f0af1cb7031.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_080_lolottes_castle_entrance/caption_3_852577789_generated.png" +dest_files=["res://.godot/imported/caption_3_852577789_generated.png-22285ff7186f77b6cabd8f0af1cb7031.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_081_edgars_tower_bedroom/caption_1_2786015367/caption_1.txt b/asset-work/kq4_081_edgars_tower_bedroom/caption_1_2786015367/caption_1.txt deleted file mode 100644 index 073e5c5..0000000 --- a/asset-work/kq4_081_edgars_tower_bedroom/caption_1_2786015367/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A high-angle view into a circular stone tower bedroom bathed in ethereal blue moonlight filtering through narrow arched windows. The foreground reveals rough-hewn wooden planks forming the floor, their grain catching silver light that pools across the chamber. Dominating the center stands an ornate four-poster bed draped in sumptuous emerald bedding that cascades in velvet folds, the heavy wooden posts carved with intricate scrollwork reaching toward the vaulted ceiling. To the right, a stately wooden armoire stands against curved stone walls, its polished surface reflecting the cool luminescence from the windows. The left side features a substantial wooden door with iron hardware, set deeply into the thick tower masonry. Overhead, massive timber beams crisscross in the ceiling's dome, their dark surfaces contrasting with pale stone. A simple woven rug rests beside the bed, its texture rough and homespun. The circular stone walls display weathered texture and subtle color variations of limestone and granite, cool to the touch even in memory. The overall atmosphere is one of medieval serenity, moonlit solitude, and the quiet dignity of noble quarters. diff --git a/asset-work/kq4_081_edgars_tower_bedroom/caption_1_2786015367/caption_1_623031708/caption_1.txt b/asset-work/kq4_081_edgars_tower_bedroom/caption_1_2786015367/caption_1_623031708/caption_1.txt deleted file mode 100644 index 073e5c5..0000000 --- a/asset-work/kq4_081_edgars_tower_bedroom/caption_1_2786015367/caption_1_623031708/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A high-angle view into a circular stone tower bedroom bathed in ethereal blue moonlight filtering through narrow arched windows. The foreground reveals rough-hewn wooden planks forming the floor, their grain catching silver light that pools across the chamber. Dominating the center stands an ornate four-poster bed draped in sumptuous emerald bedding that cascades in velvet folds, the heavy wooden posts carved with intricate scrollwork reaching toward the vaulted ceiling. To the right, a stately wooden armoire stands against curved stone walls, its polished surface reflecting the cool luminescence from the windows. The left side features a substantial wooden door with iron hardware, set deeply into the thick tower masonry. Overhead, massive timber beams crisscross in the ceiling's dome, their dark surfaces contrasting with pale stone. A simple woven rug rests beside the bed, its texture rough and homespun. The circular stone walls display weathered texture and subtle color variations of limestone and granite, cool to the touch even in memory. The overall atmosphere is one of medieval serenity, moonlit solitude, and the quiet dignity of noble quarters. diff --git a/asset-work/kq4_081_edgars_tower_bedroom/caption_1_2786015367/caption_1_623031708/generated.png b/asset-work/kq4_081_edgars_tower_bedroom/caption_1_2786015367/caption_1_623031708/generated.png deleted file mode 100644 index 06657b8..0000000 --- a/asset-work/kq4_081_edgars_tower_bedroom/caption_1_2786015367/caption_1_623031708/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9e5920881cce22cd86b01bb33a9123c5639d3760c31ca5b9a19026e91e036738 -size 4543006 diff --git a/asset-work/kq4_081_edgars_tower_bedroom/caption_1_2786015367/generated.png b/asset-work/kq4_081_edgars_tower_bedroom/caption_1_2786015367_generated.png similarity index 100% rename from asset-work/kq4_081_edgars_tower_bedroom/caption_1_2786015367/generated.png rename to asset-work/kq4_081_edgars_tower_bedroom/caption_1_2786015367_generated.png diff --git a/asset-work/kq4_081_edgars_tower_bedroom/caption_1_2786015367_generated.png.import b/asset-work/kq4_081_edgars_tower_bedroom/caption_1_2786015367_generated.png.import new file mode 100644 index 0000000..6556a9b --- /dev/null +++ b/asset-work/kq4_081_edgars_tower_bedroom/caption_1_2786015367_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://4l1e3721jklo" +path="res://.godot/imported/caption_1_2786015367_generated.png-543abacf512a86a334b5b6a789907a3e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_081_edgars_tower_bedroom/caption_1_2786015367_generated.png" +dest_files=["res://.godot/imported/caption_1_2786015367_generated.png-543abacf512a86a334b5b6a789907a3e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_081_edgars_tower_bedroom/caption_2_2407215901/caption_2.txt b/asset-work/kq4_081_edgars_tower_bedroom/caption_2_2407215901/caption_2.txt deleted file mode 100644 index f4f0c8c..0000000 --- a/asset-work/kq4_081_edgars_tower_bedroom/caption_2_2407215901/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A sweeping overhead perspective reveals the interior of a medieval round tower chamber, its curved stone walls rising like ancient guardians around a regal sleeping quarters. The immediate foreground shows worn wooden floorboards, their surfaces scarred by time and polished by centuries of footsteps, leading the eye toward the chamber's heart. There, an imposing four-poster bed commands attention with posts carved from dark oak and dressed in rich forest-green linens that billow softly in imagined drafts. Twin arched windows pierce the stonework, framing rectangles of midnight-blue sky that cast crystalline light across the room, creating dramatic shadows in the vaulted ceiling's recesses. To the right, a mahogany dresser with brass fittings adds warmth against the cool gray stone. The heavy door on the left suggests both protection and isolation, its iron studs catching stray beams of moonlight. Overhead, intersecting wooden beams create geometric patterns against plastered curves. The palette balances warm timber tones, cool stone grays, and the deep viridian of the bedding, all suffused with the melancholic blue of night filtering through ancient glass. diff --git a/asset-work/kq4_081_edgars_tower_bedroom/caption_2_2407215901/caption_2_3732276617/caption_2.txt b/asset-work/kq4_081_edgars_tower_bedroom/caption_2_2407215901/caption_2_3732276617/caption_2.txt deleted file mode 100644 index f4f0c8c..0000000 --- a/asset-work/kq4_081_edgars_tower_bedroom/caption_2_2407215901/caption_2_3732276617/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A sweeping overhead perspective reveals the interior of a medieval round tower chamber, its curved stone walls rising like ancient guardians around a regal sleeping quarters. The immediate foreground shows worn wooden floorboards, their surfaces scarred by time and polished by centuries of footsteps, leading the eye toward the chamber's heart. There, an imposing four-poster bed commands attention with posts carved from dark oak and dressed in rich forest-green linens that billow softly in imagined drafts. Twin arched windows pierce the stonework, framing rectangles of midnight-blue sky that cast crystalline light across the room, creating dramatic shadows in the vaulted ceiling's recesses. To the right, a mahogany dresser with brass fittings adds warmth against the cool gray stone. The heavy door on the left suggests both protection and isolation, its iron studs catching stray beams of moonlight. Overhead, intersecting wooden beams create geometric patterns against plastered curves. The palette balances warm timber tones, cool stone grays, and the deep viridian of the bedding, all suffused with the melancholic blue of night filtering through ancient glass. diff --git a/asset-work/kq4_081_edgars_tower_bedroom/caption_2_2407215901/caption_2_3732276617/generated.png b/asset-work/kq4_081_edgars_tower_bedroom/caption_2_2407215901/caption_2_3732276617/generated.png deleted file mode 100644 index bab947d..0000000 --- a/asset-work/kq4_081_edgars_tower_bedroom/caption_2_2407215901/caption_2_3732276617/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:55762f8c887c7fb7bbf0a682d11a1a29017e73450fd3c14a4423d6108b848878 -size 4298928 diff --git a/asset-work/kq4_081_edgars_tower_bedroom/caption_2_2407215901/generated.png b/asset-work/kq4_081_edgars_tower_bedroom/caption_2_2407215901_generated.png similarity index 100% rename from asset-work/kq4_081_edgars_tower_bedroom/caption_2_2407215901/generated.png rename to asset-work/kq4_081_edgars_tower_bedroom/caption_2_2407215901_generated.png diff --git a/asset-work/kq4_081_edgars_tower_bedroom/caption_2_2407215901_generated.png.import b/asset-work/kq4_081_edgars_tower_bedroom/caption_2_2407215901_generated.png.import new file mode 100644 index 0000000..b855074 --- /dev/null +++ b/asset-work/kq4_081_edgars_tower_bedroom/caption_2_2407215901_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dscod7hvfrlv7" +path="res://.godot/imported/caption_2_2407215901_generated.png-226ba452f9b33b4e575c91d294cfd47d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_081_edgars_tower_bedroom/caption_2_2407215901_generated.png" +dest_files=["res://.godot/imported/caption_2_2407215901_generated.png-226ba452f9b33b4e575c91d294cfd47d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_081_edgars_tower_bedroom/caption_3_186775980/caption_3.txt b/asset-work/kq4_081_edgars_tower_bedroom/caption_3_186775980/caption_3.txt deleted file mode 100644 index 4c830b9..0000000 --- a/asset-work/kq4_081_edgars_tower_bedroom/caption_3_186775980/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. An intimate bird's-eye glimpse into a romantic tower bedchamber, viewed from above as if peering through the roof itself. The circular space unfolds with architectural elegance, massive stone blocks forming walls that curve gracefully to enclose this private sanctuary. In the immediate view, rustic floorboards create warm diagonal patterns, their honeyed tones contrasting with a simple green mat positioned beside the magnificent central bed. This four-poster masterpiece features carved wooden columns rising like forest sentinels, supporting a canopy of deep jade fabrics that drape in luxurious folds suggesting wealth and comfort. Two tall arched windows opposite each other admit streams of pale cerulean light, illuminating dust motes in silver shafts and casting elongated shadows across the stone. A substantial wooden wardrobe stands sentinel against the right wall, its grain rich and dark. The entrance door, banded with iron and set within a heavy frame, promises both security and mystery. Above, the ceiling reveals an intricate arrangement of dark timber beams converging toward the tower's apex. The scene evokes quiet luxury, medieval romance, and the hush of moonlit solitude in a bygone era. diff --git a/asset-work/kq4_081_edgars_tower_bedroom/caption_3_186775980/caption_3_451922287/caption_3.txt b/asset-work/kq4_081_edgars_tower_bedroom/caption_3_186775980/caption_3_451922287/caption_3.txt deleted file mode 100644 index 4c830b9..0000000 --- a/asset-work/kq4_081_edgars_tower_bedroom/caption_3_186775980/caption_3_451922287/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. An intimate bird's-eye glimpse into a romantic tower bedchamber, viewed from above as if peering through the roof itself. The circular space unfolds with architectural elegance, massive stone blocks forming walls that curve gracefully to enclose this private sanctuary. In the immediate view, rustic floorboards create warm diagonal patterns, their honeyed tones contrasting with a simple green mat positioned beside the magnificent central bed. This four-poster masterpiece features carved wooden columns rising like forest sentinels, supporting a canopy of deep jade fabrics that drape in luxurious folds suggesting wealth and comfort. Two tall arched windows opposite each other admit streams of pale cerulean light, illuminating dust motes in silver shafts and casting elongated shadows across the stone. A substantial wooden wardrobe stands sentinel against the right wall, its grain rich and dark. The entrance door, banded with iron and set within a heavy frame, promises both security and mystery. Above, the ceiling reveals an intricate arrangement of dark timber beams converging toward the tower's apex. The scene evokes quiet luxury, medieval romance, and the hush of moonlit solitude in a bygone era. diff --git a/asset-work/kq4_081_edgars_tower_bedroom/caption_3_186775980/caption_3_451922287/generated.png b/asset-work/kq4_081_edgars_tower_bedroom/caption_3_186775980/caption_3_451922287/generated.png deleted file mode 100644 index f4d3116..0000000 --- a/asset-work/kq4_081_edgars_tower_bedroom/caption_3_186775980/caption_3_451922287/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f4afd4c733a261396e0ea97b58fbcb4faacaea878bfbae985838b3da877e4533 -size 4282463 diff --git a/asset-work/kq4_081_edgars_tower_bedroom/caption_3_186775980/generated.png b/asset-work/kq4_081_edgars_tower_bedroom/caption_3_186775980_generated.png similarity index 100% rename from asset-work/kq4_081_edgars_tower_bedroom/caption_3_186775980/generated.png rename to asset-work/kq4_081_edgars_tower_bedroom/caption_3_186775980_generated.png diff --git a/asset-work/kq4_081_edgars_tower_bedroom/caption_3_186775980_generated.png.import b/asset-work/kq4_081_edgars_tower_bedroom/caption_3_186775980_generated.png.import new file mode 100644 index 0000000..efcf9a9 --- /dev/null +++ b/asset-work/kq4_081_edgars_tower_bedroom/caption_3_186775980_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c6lxyymp8t8rq" +path="res://.godot/imported/caption_3_186775980_generated.png-5b5ae20d08d41bf4d2982c3983e9612e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_081_edgars_tower_bedroom/caption_3_186775980_generated.png" +dest_files=["res://.godot/imported/caption_3_186775980_generated.png-5b5ae20d08d41bf4d2982c3983e9612e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_082_lolottes_tower_bedroom/caption_1_3676971236/caption_1.txt b/asset-work/kq4_082_lolottes_tower_bedroom/caption_1_3676971236/caption_1.txt deleted file mode 100644 index 1c7dd7b..0000000 --- a/asset-work/kq4_082_lolottes_tower_bedroom/caption_1_3676971236/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A sumptuous medieval bedchamber viewed from high angle, its circular stone walls rising to support a magnificent conical timber ceiling. The foreground reveals weathered flagstones and rich crimson carpet runners, their pile catching warm light streaming through tall arched windows of cobalt and emerald glass. Centered in the middle distance, an imposing canopy bed commands attention upon a raised dais, its heavy wooden posts draped with sumptuous fabrics in deep amethyst and midnight blue. To the left, a curving stone staircase descends into shadowy depths, its worn steps polished smooth by centuries of passage. On the right, an ornate wooden portal with carved detailing suggests passage to adjacent chambers. The background shows the soaring timber roof structure, massive beams radiating upward like the ribs of some great wooden cathedral. Light filters through stained glass, casting jeweled patterns across stone and fabric alike, while shadows pool in the tower's curved recesses. diff --git a/asset-work/kq4_082_lolottes_tower_bedroom/caption_1_3676971236/generated.png b/asset-work/kq4_082_lolottes_tower_bedroom/caption_1_3676971236_generated.png similarity index 100% rename from asset-work/kq4_082_lolottes_tower_bedroom/caption_1_3676971236/generated.png rename to asset-work/kq4_082_lolottes_tower_bedroom/caption_1_3676971236_generated.png diff --git a/asset-work/kq4_082_lolottes_tower_bedroom/caption_1_3676971236_generated.png.import b/asset-work/kq4_082_lolottes_tower_bedroom/caption_1_3676971236_generated.png.import new file mode 100644 index 0000000..727cf6c --- /dev/null +++ b/asset-work/kq4_082_lolottes_tower_bedroom/caption_1_3676971236_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://btfjak7i3xct0" +path="res://.godot/imported/caption_1_3676971236_generated.png-b8bd601dd436edceac464eb83c27ccab.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_082_lolottes_tower_bedroom/caption_1_3676971236_generated.png" +dest_files=["res://.godot/imported/caption_1_3676971236_generated.png-b8bd601dd436edceac464eb83c27ccab.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_082_lolottes_tower_bedroom/caption_2_203839187/caption_2.txt b/asset-work/kq4_082_lolottes_tower_bedroom/caption_2_203839187/caption_2.txt deleted file mode 100644 index e3ef239..0000000 --- a/asset-work/kq4_082_lolottes_tower_bedroom/caption_2_203839187/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A circular tower bedroom seen from above, the architectural grandeur of medieval stonework meeting rich domestic luxury. The immediate foreground displays patterned stone flooring interrupted by flowing carpets in deep burgundy and gold, leading the eye toward the chamber's heart. Rising around the perimeter, massive stone blocks form the tower's curving walls, punctuated by luminous windows glowing with aqua and azure light. The middle ground centers on an elaborate four-poster bed with rich draperies cascading in folds of royal purple and indigo velvet, positioned on an elevated wooden platform that adds spatial drama. To the left, a spiral of stone steps curves downward, their edges softened by age and use. Opposite, an arched doorway framed in carved oak offers mysterious passage. The conical ceiling overhead soars in layers of honey-toned timber, converging toward a central apex. Atmospheric lighting creates dramatic chiaroscuro, with cool window light contrasting against warm interior shadows and the rich palette of textiles and aged wood. diff --git a/asset-work/kq4_082_lolottes_tower_bedroom/caption_2_203839187/generated.png b/asset-work/kq4_082_lolottes_tower_bedroom/caption_2_203839187_generated.png similarity index 100% rename from asset-work/kq4_082_lolottes_tower_bedroom/caption_2_203839187/generated.png rename to asset-work/kq4_082_lolottes_tower_bedroom/caption_2_203839187_generated.png diff --git a/asset-work/kq4_082_lolottes_tower_bedroom/caption_2_203839187_generated.png.import b/asset-work/kq4_082_lolottes_tower_bedroom/caption_2_203839187_generated.png.import new file mode 100644 index 0000000..ec820a8 --- /dev/null +++ b/asset-work/kq4_082_lolottes_tower_bedroom/caption_2_203839187_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://egwop6nh7gwu" +path="res://.godot/imported/caption_2_203839187_generated.png-90495af1402462d53bb878e698258a20.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_082_lolottes_tower_bedroom/caption_2_203839187_generated.png" +dest_files=["res://.godot/imported/caption_2_203839187_generated.png-90495af1402462d53bb878e698258a20.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_082_lolottes_tower_bedroom/caption_3_385878762/caption_3.txt b/asset-work/kq4_082_lolottes_tower_bedroom/caption_3_385878762/caption_3.txt deleted file mode 100644 index c33efc1..0000000 --- a/asset-work/kq4_082_lolottes_tower_bedroom/caption_3_385878762/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. An elevated perspective reveals a luxurious circular chamber within an ancient stone tower, where architectural solidity meets opulent comfort. In the foreground, textured stone pavers alternate with lush carpet runners in wine-red and gold, their surfaces dappled with colored light from the surrounding fenestration. The tower's substantial stone walls curve gracefully, their weathered surfaces pierced by tall windows of translucent turquoise glass that cast ethereal illumination inward. The composition's focal point dominates the middle distance: a majestic canopy bed with ornate wooden framework dressed in sumptuous fabrics of violet and deep sapphire, enthroned upon a raised dais of polished wood. A gracefully curving stone stair descends to the left, suggesting connections to lower realms, while to the right, a decorated archway of dark carved timber hints at further chambers beyond. Overhead, the ceiling rises in a dramatic cone of interlocking wooden beams, their warm umber tones contrasting with the cool gray stone. The palette harmonizes jewel-toned window light, rich textile hues, and the natural patina of ancient materials under romantic, painterly illumination. diff --git a/asset-work/kq4_082_lolottes_tower_bedroom/caption_3_385878762/generated.png b/asset-work/kq4_082_lolottes_tower_bedroom/caption_3_385878762_generated.png similarity index 100% rename from asset-work/kq4_082_lolottes_tower_bedroom/caption_3_385878762/generated.png rename to asset-work/kq4_082_lolottes_tower_bedroom/caption_3_385878762_generated.png diff --git a/asset-work/kq4_082_lolottes_tower_bedroom/caption_3_385878762_generated.png.import b/asset-work/kq4_082_lolottes_tower_bedroom/caption_3_385878762_generated.png.import new file mode 100644 index 0000000..741f27f --- /dev/null +++ b/asset-work/kq4_082_lolottes_tower_bedroom/caption_3_385878762_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://iyrahco8guho" +path="res://.godot/imported/caption_3_385878762_generated.png-c0bcdadac5be1080bf943ea23eda7f54.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_082_lolottes_tower_bedroom/caption_3_385878762_generated.png" +dest_files=["res://.godot/imported/caption_3_385878762_generated.png-c0bcdadac5be1080bf943ea23eda7f54.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_083_castle_dungeon_cell/caption_1_3789400722/generated.png b/asset-work/kq4_083_castle_dungeon_cell/caption_1_3789400722_generated.png similarity index 100% rename from asset-work/kq4_083_castle_dungeon_cell/caption_1_3789400722/generated.png rename to asset-work/kq4_083_castle_dungeon_cell/caption_1_3789400722_generated.png diff --git a/asset-work/kq4_083_castle_dungeon_cell/caption_1_3789400722_generated.png.import b/asset-work/kq4_083_castle_dungeon_cell/caption_1_3789400722_generated.png.import new file mode 100644 index 0000000..5509716 --- /dev/null +++ b/asset-work/kq4_083_castle_dungeon_cell/caption_1_3789400722_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b4ke58ahu02yl" +path="res://.godot/imported/caption_1_3789400722_generated.png-a9a99b5b3bb9a3ad489b61bd0a4dece0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_083_castle_dungeon_cell/caption_1_3789400722_generated.png" +dest_files=["res://.godot/imported/caption_1_3789400722_generated.png-a9a99b5b3bb9a3ad489b61bd0a4dece0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_083_castle_dungeon_cell/caption_1_4289117033/generated.png b/asset-work/kq4_083_castle_dungeon_cell/caption_1_4289117033_generated.png similarity index 100% rename from asset-work/kq4_083_castle_dungeon_cell/caption_1_4289117033/generated.png rename to asset-work/kq4_083_castle_dungeon_cell/caption_1_4289117033_generated.png diff --git a/asset-work/kq4_083_castle_dungeon_cell/caption_1_4289117033_generated.png.import b/asset-work/kq4_083_castle_dungeon_cell/caption_1_4289117033_generated.png.import new file mode 100644 index 0000000..649df1a --- /dev/null +++ b/asset-work/kq4_083_castle_dungeon_cell/caption_1_4289117033_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dhstpfx84xnwx" +path="res://.godot/imported/caption_1_4289117033_generated.png-bd78887f00b80d4b2336d493c75d2391.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_083_castle_dungeon_cell/caption_1_4289117033_generated.png" +dest_files=["res://.godot/imported/caption_1_4289117033_generated.png-bd78887f00b80d4b2336d493c75d2391.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_083_castle_dungeon_cell/caption_2_86505098/generated.png b/asset-work/kq4_083_castle_dungeon_cell/caption_2_86505098_generated.png similarity index 100% rename from asset-work/kq4_083_castle_dungeon_cell/caption_2_86505098/generated.png rename to asset-work/kq4_083_castle_dungeon_cell/caption_2_86505098_generated.png diff --git a/asset-work/kq4_083_castle_dungeon_cell/caption_2_86505098_generated.png.import b/asset-work/kq4_083_castle_dungeon_cell/caption_2_86505098_generated.png.import new file mode 100644 index 0000000..53ef21d --- /dev/null +++ b/asset-work/kq4_083_castle_dungeon_cell/caption_2_86505098_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://rnkuhodjwjbm" +path="res://.godot/imported/caption_2_86505098_generated.png-f5d85990541aab2fb254de80a9e05ce8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_083_castle_dungeon_cell/caption_2_86505098_generated.png" +dest_files=["res://.godot/imported/caption_2_86505098_generated.png-f5d85990541aab2fb254de80a9e05ce8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_083_castle_dungeon_cell/caption_3_2805012875/generated.png b/asset-work/kq4_083_castle_dungeon_cell/caption_3_2805012875_generated.png similarity index 100% rename from asset-work/kq4_083_castle_dungeon_cell/caption_3_2805012875/generated.png rename to asset-work/kq4_083_castle_dungeon_cell/caption_3_2805012875_generated.png diff --git a/asset-work/kq4_083_castle_dungeon_cell/caption_3_2805012875_generated.png.import b/asset-work/kq4_083_castle_dungeon_cell/caption_3_2805012875_generated.png.import new file mode 100644 index 0000000..c99d48f --- /dev/null +++ b/asset-work/kq4_083_castle_dungeon_cell/caption_3_2805012875_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cunbt6gv7kqfs" +path="res://.godot/imported/caption_3_2805012875_generated.png-680d922f58137772326031a8df0f3fea.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_083_castle_dungeon_cell/caption_3_2805012875_generated.png" +dest_files=["res://.godot/imported/caption_3_2805012875_generated.png-680d922f58137772326031a8df0f3fea.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_083_castle_dungeon_cell/caption_3_3341454660/generated.png b/asset-work/kq4_083_castle_dungeon_cell/caption_3_3341454660_generated.png similarity index 100% rename from asset-work/kq4_083_castle_dungeon_cell/caption_3_3341454660/generated.png rename to asset-work/kq4_083_castle_dungeon_cell/caption_3_3341454660_generated.png diff --git a/asset-work/kq4_083_castle_dungeon_cell/caption_3_3341454660_generated.png.import b/asset-work/kq4_083_castle_dungeon_cell/caption_3_3341454660_generated.png.import new file mode 100644 index 0000000..1f127ec --- /dev/null +++ b/asset-work/kq4_083_castle_dungeon_cell/caption_3_3341454660_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cjjwjanef7wyi" +path="res://.godot/imported/caption_3_3341454660_generated.png-3963287318f4d014908bb5a8ef5a68ed.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_083_castle_dungeon_cell/caption_3_3341454660_generated.png" +dest_files=["res://.godot/imported/caption_3_3341454660_generated.png-3963287318f4d014908bb5a8ef5a68ed.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_084_cottage_front/caption_1_665952902/caption_1.txt b/asset-work/kq4_084_cottage_front/caption_1_665952902/caption_1.txt deleted file mode 100644 index 2d643ea..0000000 --- a/asset-work/kq4_084_cottage_front/caption_1_665952902/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A dimly lit stone cottage interior viewed from an elevated perspective, revealing the rustic charm of a wizard's sanctuary. Rough-hewn stone walls rise in the foreground, their surfaces textured with age and mortar lines catching faint amber light from narrow arched windows. To the left, a mysterious alcove glows with deep violet and cobalt shadows, suggesting magical energies or moonlight filtering through. The middle ground reveals stacked wooden barrels and weathered crates, their oak surfaces displaying rich grain patterns and iron banding. A substantial wooden bookshelf dominates the right wall, laden with leather-bound tomes, glass potion bottles in jewel tones of emerald and ruby, and curious artifacts. The stone floor shows subtle variations in gray and umber, worn smooth by years of use. Background shadows deepen into velvety darkness near the ceiling beams, while the windows allow shafts of pale light to illuminate dust motes in the air. The palette harmonizes cool slate grays, warm honeyed wood tones, and mysterious purple shadows. diff --git a/asset-work/kq4_084_cottage_front/caption_1_665952902/caption_1_4115211742/caption_1.txt b/asset-work/kq4_084_cottage_front/caption_1_665952902/caption_1_4115211742/caption_1.txt deleted file mode 100644 index 2d643ea..0000000 --- a/asset-work/kq4_084_cottage_front/caption_1_665952902/caption_1_4115211742/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A dimly lit stone cottage interior viewed from an elevated perspective, revealing the rustic charm of a wizard's sanctuary. Rough-hewn stone walls rise in the foreground, their surfaces textured with age and mortar lines catching faint amber light from narrow arched windows. To the left, a mysterious alcove glows with deep violet and cobalt shadows, suggesting magical energies or moonlight filtering through. The middle ground reveals stacked wooden barrels and weathered crates, their oak surfaces displaying rich grain patterns and iron banding. A substantial wooden bookshelf dominates the right wall, laden with leather-bound tomes, glass potion bottles in jewel tones of emerald and ruby, and curious artifacts. The stone floor shows subtle variations in gray and umber, worn smooth by years of use. Background shadows deepen into velvety darkness near the ceiling beams, while the windows allow shafts of pale light to illuminate dust motes in the air. The palette harmonizes cool slate grays, warm honeyed wood tones, and mysterious purple shadows. diff --git a/asset-work/kq4_084_cottage_front/caption_1_665952902/caption_1_4115211742/generated.png b/asset-work/kq4_084_cottage_front/caption_1_665952902/caption_1_4115211742/generated.png deleted file mode 100644 index fc9e498..0000000 --- a/asset-work/kq4_084_cottage_front/caption_1_665952902/caption_1_4115211742/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ccf3142f6df38a5293523024a026678cd374ed626c86b6e10a1cbebdd15185cd -size 4283244 diff --git a/asset-work/kq4_084_cottage_front/caption_1_665952902/generated.png b/asset-work/kq4_084_cottage_front/caption_1_665952902_generated.png similarity index 100% rename from asset-work/kq4_084_cottage_front/caption_1_665952902/generated.png rename to asset-work/kq4_084_cottage_front/caption_1_665952902_generated.png diff --git a/asset-work/kq4_084_cottage_front/caption_1_665952902_generated.png.import b/asset-work/kq4_084_cottage_front/caption_1_665952902_generated.png.import new file mode 100644 index 0000000..22bc310 --- /dev/null +++ b/asset-work/kq4_084_cottage_front/caption_1_665952902_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b4c0y1l03tq2v" +path="res://.godot/imported/caption_1_665952902_generated.png-95058c971caac239103a54f8e1b43e1d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_084_cottage_front/caption_1_665952902_generated.png" +dest_files=["res://.godot/imported/caption_1_665952902_generated.png-95058c971caac239103a54f8e1b43e1d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_084_cottage_front/caption_2_3986373808/caption_2.txt b/asset-work/kq4_084_cottage_front/caption_2_3986373808/caption_2.txt deleted file mode 100644 index e423121..0000000 --- a/asset-work/kq4_084_cottage_front/caption_2_3986373808/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A cozy stone chamber interior seen from above, showcasing the intimate quarters of a solitary scholar. The foreground presents rough granite block walls interrupted by four narrow gothic windows, their leaded panes filtering soft lavender twilight into the space. To the left, an arched doorway recedes into cobalt-blue shadow, its stone surround carved with subtle architectural detail. Wooden storage vessels cluster near the entrance, their curved forms painted with thick impasto strokes showing bark texture and metal hoops. The right wall features an imposing bookcase reaching toward shadowed ceiling beams, its shelves crowded with crystalline bottles catching stray light, ancient scrolls, and leather volumes in deep burgundy and forest green. A simple wooden chair waits in the middle distance, suggesting recent occupation. The flagstone floor stretches in muted grays and warm browns, reflecting the sparse illumination. Atmospheric perspective softens distant corners into velvety obscurity, while the color palette balances cool stone tones against the warm amber and russet hues of aged wood and leather. diff --git a/asset-work/kq4_084_cottage_front/caption_2_3986373808/caption_2_3790560310/caption_2.txt b/asset-work/kq4_084_cottage_front/caption_2_3986373808/caption_2_3790560310/caption_2.txt deleted file mode 100644 index e423121..0000000 --- a/asset-work/kq4_084_cottage_front/caption_2_3986373808/caption_2_3790560310/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A cozy stone chamber interior seen from above, showcasing the intimate quarters of a solitary scholar. The foreground presents rough granite block walls interrupted by four narrow gothic windows, their leaded panes filtering soft lavender twilight into the space. To the left, an arched doorway recedes into cobalt-blue shadow, its stone surround carved with subtle architectural detail. Wooden storage vessels cluster near the entrance, their curved forms painted with thick impasto strokes showing bark texture and metal hoops. The right wall features an imposing bookcase reaching toward shadowed ceiling beams, its shelves crowded with crystalline bottles catching stray light, ancient scrolls, and leather volumes in deep burgundy and forest green. A simple wooden chair waits in the middle distance, suggesting recent occupation. The flagstone floor stretches in muted grays and warm browns, reflecting the sparse illumination. Atmospheric perspective softens distant corners into velvety obscurity, while the color palette balances cool stone tones against the warm amber and russet hues of aged wood and leather. diff --git a/asset-work/kq4_084_cottage_front/caption_2_3986373808/caption_2_3790560310/generated.png b/asset-work/kq4_084_cottage_front/caption_2_3986373808/caption_2_3790560310/generated.png deleted file mode 100644 index 11b9ff2..0000000 --- a/asset-work/kq4_084_cottage_front/caption_2_3986373808/caption_2_3790560310/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a4787cc322e17d4b15b3f644116cef4fb61d9c36883f590b3f66db47835e4133 -size 4381721 diff --git a/asset-work/kq4_084_cottage_front/caption_2_3986373808/generated.png b/asset-work/kq4_084_cottage_front/caption_2_3986373808_generated.png similarity index 100% rename from asset-work/kq4_084_cottage_front/caption_2_3986373808/generated.png rename to asset-work/kq4_084_cottage_front/caption_2_3986373808_generated.png diff --git a/asset-work/kq4_084_cottage_front/caption_2_3986373808_generated.png.import b/asset-work/kq4_084_cottage_front/caption_2_3986373808_generated.png.import new file mode 100644 index 0000000..a116ab4 --- /dev/null +++ b/asset-work/kq4_084_cottage_front/caption_2_3986373808_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b5reabbo6luul" +path="res://.godot/imported/caption_2_3986373808_generated.png-1ecd27f57ed07a61f1b8948a029fe931.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_084_cottage_front/caption_2_3986373808_generated.png" +dest_files=["res://.godot/imported/caption_2_3986373808_generated.png-1ecd27f57ed07a61f1b8948a029fe931.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_084_cottage_front/caption_3_2556225680/caption_3.txt b/asset-work/kq4_084_cottage_front/caption_3_2556225680/caption_3.txt deleted file mode 100644 index 385b2b6..0000000 --- a/asset-work/kq4_084_cottage_front/caption_3_2556225680/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. An ancient stone dwelling interior captured from a high vantage point, revealing layers of texture and mystery within cramped quarters. The immediate foreground displays massive stone blocks weathered by time, their surfaces mottled with lichen shadows and mortar erosion, pierced by four slender windows that admit pale ethereal light. A dramatic archway on the left opens into profound ultramarine darkness, its curved keystone and supporting columns rendered with architectural precision. Clustered wooden casks and rough crates occupy the left middle ground, their surfaces catching highlights on polished grain and iron fittings. To the right, a towering bookcase creates vertical emphasis, its shelves a still life of apothecary wonders—translucent vessels holding mysterious liquids in amber, jade, and garnet hues alongside scholarly volumes with gold-leafed spines. The floor stones show centuries of wear patterns in subtle tonal variations. Background shadows pool beneath heavy wooden ceiling beams, while the overall lighting suggests dusk or candlelight, casting warm ochres against cool blue-gray stone in harmonious chiaroscuro. diff --git a/asset-work/kq4_084_cottage_front/caption_3_2556225680/caption_3_3252373146/caption_3.txt b/asset-work/kq4_084_cottage_front/caption_3_2556225680/caption_3_3252373146/caption_3.txt deleted file mode 100644 index 385b2b6..0000000 --- a/asset-work/kq4_084_cottage_front/caption_3_2556225680/caption_3_3252373146/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. An ancient stone dwelling interior captured from a high vantage point, revealing layers of texture and mystery within cramped quarters. The immediate foreground displays massive stone blocks weathered by time, their surfaces mottled with lichen shadows and mortar erosion, pierced by four slender windows that admit pale ethereal light. A dramatic archway on the left opens into profound ultramarine darkness, its curved keystone and supporting columns rendered with architectural precision. Clustered wooden casks and rough crates occupy the left middle ground, their surfaces catching highlights on polished grain and iron fittings. To the right, a towering bookcase creates vertical emphasis, its shelves a still life of apothecary wonders—translucent vessels holding mysterious liquids in amber, jade, and garnet hues alongside scholarly volumes with gold-leafed spines. The floor stones show centuries of wear patterns in subtle tonal variations. Background shadows pool beneath heavy wooden ceiling beams, while the overall lighting suggests dusk or candlelight, casting warm ochres against cool blue-gray stone in harmonious chiaroscuro. diff --git a/asset-work/kq4_084_cottage_front/caption_3_2556225680/caption_3_3252373146/generated.png b/asset-work/kq4_084_cottage_front/caption_3_2556225680/caption_3_3252373146/generated.png deleted file mode 100644 index d1defd0..0000000 --- a/asset-work/kq4_084_cottage_front/caption_3_2556225680/caption_3_3252373146/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:179f381df874660f3b3a7541156870ec9c84ac1e74eba32b3d78626d11f79be0 -size 4231026 diff --git a/asset-work/kq4_084_cottage_front/caption_3_2556225680/generated.png b/asset-work/kq4_084_cottage_front/caption_3_2556225680_generated.png similarity index 100% rename from asset-work/kq4_084_cottage_front/caption_3_2556225680/generated.png rename to asset-work/kq4_084_cottage_front/caption_3_2556225680_generated.png diff --git a/asset-work/kq4_084_cottage_front/caption_3_2556225680_generated.png.import b/asset-work/kq4_084_cottage_front/caption_3_2556225680_generated.png.import new file mode 100644 index 0000000..f94a538 --- /dev/null +++ b/asset-work/kq4_084_cottage_front/caption_3_2556225680_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bkb8xd6bnjyno" +path="res://.godot/imported/caption_3_2556225680_generated.png-3666d213218c20ad2955148d35f61f91.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_084_cottage_front/caption_3_2556225680_generated.png" +dest_files=["res://.godot/imported/caption_3_2556225680_generated.png-3666d213218c20ad2955148d35f61f91.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_085_dark_tower_stairs/caption_1_1472596257/generated.png b/asset-work/kq4_085_dark_tower_stairs/caption_1_1472596257_generated.png similarity index 100% rename from asset-work/kq4_085_dark_tower_stairs/caption_1_1472596257/generated.png rename to asset-work/kq4_085_dark_tower_stairs/caption_1_1472596257_generated.png diff --git a/asset-work/kq4_085_dark_tower_stairs/caption_1_1472596257_generated.png.import b/asset-work/kq4_085_dark_tower_stairs/caption_1_1472596257_generated.png.import new file mode 100644 index 0000000..2f6d691 --- /dev/null +++ b/asset-work/kq4_085_dark_tower_stairs/caption_1_1472596257_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c810lrlmg18mb" +path="res://.godot/imported/caption_1_1472596257_generated.png-18dc4dd8cd3785065ca5773e22ad26c7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_085_dark_tower_stairs/caption_1_1472596257_generated.png" +dest_files=["res://.godot/imported/caption_1_1472596257_generated.png-18dc4dd8cd3785065ca5773e22ad26c7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_085_dark_tower_stairs/caption_1_2009024612/generated.png b/asset-work/kq4_085_dark_tower_stairs/caption_1_2009024612_generated.png similarity index 100% rename from asset-work/kq4_085_dark_tower_stairs/caption_1_2009024612/generated.png rename to asset-work/kq4_085_dark_tower_stairs/caption_1_2009024612_generated.png diff --git a/asset-work/kq4_085_dark_tower_stairs/caption_1_2009024612_generated.png.import b/asset-work/kq4_085_dark_tower_stairs/caption_1_2009024612_generated.png.import new file mode 100644 index 0000000..c029c83 --- /dev/null +++ b/asset-work/kq4_085_dark_tower_stairs/caption_1_2009024612_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://br304uu3miy7h" +path="res://.godot/imported/caption_1_2009024612_generated.png-b2ad18bd4c04113fc21b23b1c3a45d3b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_085_dark_tower_stairs/caption_1_2009024612_generated.png" +dest_files=["res://.godot/imported/caption_1_2009024612_generated.png-b2ad18bd4c04113fc21b23b1c3a45d3b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_085_dark_tower_stairs/caption_2_1901082997/generated.png b/asset-work/kq4_085_dark_tower_stairs/caption_2_1901082997_generated.png similarity index 100% rename from asset-work/kq4_085_dark_tower_stairs/caption_2_1901082997/generated.png rename to asset-work/kq4_085_dark_tower_stairs/caption_2_1901082997_generated.png diff --git a/asset-work/kq4_085_dark_tower_stairs/caption_2_1901082997_generated.png.import b/asset-work/kq4_085_dark_tower_stairs/caption_2_1901082997_generated.png.import new file mode 100644 index 0000000..ac7050f --- /dev/null +++ b/asset-work/kq4_085_dark_tower_stairs/caption_2_1901082997_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://8ckiv3dxmqyv" +path="res://.godot/imported/caption_2_1901082997_generated.png-6764eb17df18af848a26fc23b6f08897.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_085_dark_tower_stairs/caption_2_1901082997_generated.png" +dest_files=["res://.godot/imported/caption_2_1901082997_generated.png-6764eb17df18af848a26fc23b6f08897.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_085_dark_tower_stairs/caption_2_738916667/generated.png b/asset-work/kq4_085_dark_tower_stairs/caption_2_738916667_generated.png similarity index 100% rename from asset-work/kq4_085_dark_tower_stairs/caption_2_738916667/generated.png rename to asset-work/kq4_085_dark_tower_stairs/caption_2_738916667_generated.png diff --git a/asset-work/kq4_085_dark_tower_stairs/caption_2_738916667_generated.png.import b/asset-work/kq4_085_dark_tower_stairs/caption_2_738916667_generated.png.import new file mode 100644 index 0000000..24b1b06 --- /dev/null +++ b/asset-work/kq4_085_dark_tower_stairs/caption_2_738916667_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cfiqa5r7r5wmv" +path="res://.godot/imported/caption_2_738916667_generated.png-c91c3c52d6edd5d8fc5cb46fe5dc0758.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_085_dark_tower_stairs/caption_2_738916667_generated.png" +dest_files=["res://.godot/imported/caption_2_738916667_generated.png-c91c3c52d6edd5d8fc5cb46fe5dc0758.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_085_dark_tower_stairs/caption_3_1316989545/generated.png b/asset-work/kq4_085_dark_tower_stairs/caption_3_1316989545_generated.png similarity index 100% rename from asset-work/kq4_085_dark_tower_stairs/caption_3_1316989545/generated.png rename to asset-work/kq4_085_dark_tower_stairs/caption_3_1316989545_generated.png diff --git a/asset-work/kq4_085_dark_tower_stairs/caption_3_1316989545_generated.png.import b/asset-work/kq4_085_dark_tower_stairs/caption_3_1316989545_generated.png.import new file mode 100644 index 0000000..47625c5 --- /dev/null +++ b/asset-work/kq4_085_dark_tower_stairs/caption_3_1316989545_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://tdscyslb514r" +path="res://.godot/imported/caption_3_1316989545_generated.png-30a56eded2480d548d6c50c4271440b8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_085_dark_tower_stairs/caption_3_1316989545_generated.png" +dest_files=["res://.godot/imported/caption_3_1316989545_generated.png-30a56eded2480d548d6c50c4271440b8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_085_dark_tower_stairs/caption_3_1788665939/generated.png b/asset-work/kq4_085_dark_tower_stairs/caption_3_1788665939_generated.png similarity index 100% rename from asset-work/kq4_085_dark_tower_stairs/caption_3_1788665939/generated.png rename to asset-work/kq4_085_dark_tower_stairs/caption_3_1788665939_generated.png diff --git a/asset-work/kq4_085_dark_tower_stairs/caption_3_1788665939_generated.png.import b/asset-work/kq4_085_dark_tower_stairs/caption_3_1788665939_generated.png.import new file mode 100644 index 0000000..6da32f4 --- /dev/null +++ b/asset-work/kq4_085_dark_tower_stairs/caption_3_1788665939_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://oj406xdk26gt" +path="res://.godot/imported/caption_3_1788665939_generated.png-a4a091f7b3b23c4ea1542bf15dafc024.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_085_dark_tower_stairs/caption_3_1788665939_generated.png" +dest_files=["res://.godot/imported/caption_3_1788665939_generated.png-a4a091f7b3b23c4ea1542bf15dafc024.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_086_dim_hallway_west_end/caption_1_176786804/generated.png b/asset-work/kq4_086_dim_hallway_west_end/caption_1_176786804_generated.png similarity index 100% rename from asset-work/kq4_086_dim_hallway_west_end/caption_1_176786804/generated.png rename to asset-work/kq4_086_dim_hallway_west_end/caption_1_176786804_generated.png diff --git a/asset-work/kq4_086_dim_hallway_west_end/caption_1_176786804_generated.png.import b/asset-work/kq4_086_dim_hallway_west_end/caption_1_176786804_generated.png.import new file mode 100644 index 0000000..8a71012 --- /dev/null +++ b/asset-work/kq4_086_dim_hallway_west_end/caption_1_176786804_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dsf6lv4m0xpqg" +path="res://.godot/imported/caption_1_176786804_generated.png-84e7fa93492242e6d12fb3d9317c0e33.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_086_dim_hallway_west_end/caption_1_176786804_generated.png" +dest_files=["res://.godot/imported/caption_1_176786804_generated.png-84e7fa93492242e6d12fb3d9317c0e33.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_086_dim_hallway_west_end/caption_1_1985634577/generated.png b/asset-work/kq4_086_dim_hallway_west_end/caption_1_1985634577_generated.png similarity index 100% rename from asset-work/kq4_086_dim_hallway_west_end/caption_1_1985634577/generated.png rename to asset-work/kq4_086_dim_hallway_west_end/caption_1_1985634577_generated.png diff --git a/asset-work/kq4_086_dim_hallway_west_end/caption_1_1985634577_generated.png.import b/asset-work/kq4_086_dim_hallway_west_end/caption_1_1985634577_generated.png.import new file mode 100644 index 0000000..b32e8b8 --- /dev/null +++ b/asset-work/kq4_086_dim_hallway_west_end/caption_1_1985634577_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bkek0uwuby47k" +path="res://.godot/imported/caption_1_1985634577_generated.png-31f23f8ebcc0f79fd6ca638d2f47ff5d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_086_dim_hallway_west_end/caption_1_1985634577_generated.png" +dest_files=["res://.godot/imported/caption_1_1985634577_generated.png-31f23f8ebcc0f79fd6ca638d2f47ff5d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_086_dim_hallway_west_end/caption_2_1323569888/generated.png b/asset-work/kq4_086_dim_hallway_west_end/caption_2_1323569888_generated.png similarity index 100% rename from asset-work/kq4_086_dim_hallway_west_end/caption_2_1323569888/generated.png rename to asset-work/kq4_086_dim_hallway_west_end/caption_2_1323569888_generated.png diff --git a/asset-work/kq4_086_dim_hallway_west_end/caption_2_1323569888_generated.png.import b/asset-work/kq4_086_dim_hallway_west_end/caption_2_1323569888_generated.png.import new file mode 100644 index 0000000..ed4a692 --- /dev/null +++ b/asset-work/kq4_086_dim_hallway_west_end/caption_2_1323569888_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://tfk67bumo7nb" +path="res://.godot/imported/caption_2_1323569888_generated.png-fbbb7b1f67ec582f7d5970e41dd09bab.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_086_dim_hallway_west_end/caption_2_1323569888_generated.png" +dest_files=["res://.godot/imported/caption_2_1323569888_generated.png-fbbb7b1f67ec582f7d5970e41dd09bab.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_086_dim_hallway_west_end/caption_2_2155187126/generated.png b/asset-work/kq4_086_dim_hallway_west_end/caption_2_2155187126_generated.png similarity index 100% rename from asset-work/kq4_086_dim_hallway_west_end/caption_2_2155187126/generated.png rename to asset-work/kq4_086_dim_hallway_west_end/caption_2_2155187126_generated.png diff --git a/asset-work/kq4_086_dim_hallway_west_end/caption_2_2155187126_generated.png.import b/asset-work/kq4_086_dim_hallway_west_end/caption_2_2155187126_generated.png.import new file mode 100644 index 0000000..3722225 --- /dev/null +++ b/asset-work/kq4_086_dim_hallway_west_end/caption_2_2155187126_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dag64rdceanqb" +path="res://.godot/imported/caption_2_2155187126_generated.png-85a49c0c2bd6ac59b1ccc2475f88e734.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_086_dim_hallway_west_end/caption_2_2155187126_generated.png" +dest_files=["res://.godot/imported/caption_2_2155187126_generated.png-85a49c0c2bd6ac59b1ccc2475f88e734.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_086_dim_hallway_west_end/caption_3_1570162288/generated.png b/asset-work/kq4_086_dim_hallway_west_end/caption_3_1570162288_generated.png similarity index 100% rename from asset-work/kq4_086_dim_hallway_west_end/caption_3_1570162288/generated.png rename to asset-work/kq4_086_dim_hallway_west_end/caption_3_1570162288_generated.png diff --git a/asset-work/kq4_086_dim_hallway_west_end/caption_3_1570162288_generated.png.import b/asset-work/kq4_086_dim_hallway_west_end/caption_3_1570162288_generated.png.import new file mode 100644 index 0000000..b039610 --- /dev/null +++ b/asset-work/kq4_086_dim_hallway_west_end/caption_3_1570162288_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cv83pqumjj0ef" +path="res://.godot/imported/caption_3_1570162288_generated.png-7d59ecdb199723942aa5aac001fa58f5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_086_dim_hallway_west_end/caption_3_1570162288_generated.png" +dest_files=["res://.godot/imported/caption_3_1570162288_generated.png-7d59ecdb199723942aa5aac001fa58f5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_086_dim_hallway_west_end/caption_3_3040262407/generated.png b/asset-work/kq4_086_dim_hallway_west_end/caption_3_3040262407_generated.png similarity index 100% rename from asset-work/kq4_086_dim_hallway_west_end/caption_3_3040262407/generated.png rename to asset-work/kq4_086_dim_hallway_west_end/caption_3_3040262407_generated.png diff --git a/asset-work/kq4_086_dim_hallway_west_end/caption_3_3040262407_generated.png.import b/asset-work/kq4_086_dim_hallway_west_end/caption_3_3040262407_generated.png.import new file mode 100644 index 0000000..ba217b2 --- /dev/null +++ b/asset-work/kq4_086_dim_hallway_west_end/caption_3_3040262407_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dhp5mrfnba54b" +path="res://.godot/imported/caption_3_3040262407_generated.png-99cfc6399cc85d6a1409954e61fa2d0a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_086_dim_hallway_west_end/caption_3_3040262407_generated.png" +dest_files=["res://.godot/imported/caption_3_3040262407_generated.png-99cfc6399cc85d6a1409954e61fa2d0a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_087_east_end_of_hallway/caption_1_2492748365/caption_1.txt b/asset-work/kq4_087_east_end_of_hallway/caption_1_2492748365/caption_1.txt deleted file mode 100644 index 68ce5e7..0000000 --- a/asset-work/kq4_087_east_end_of_hallway/caption_1_2492748365/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A high-angle view into the east terminus of a medieval castle corridor, where rough-hewn stone blocks compose walls and floor in varying shades of slate gray and charcoal. The foreground reveals textured flagstones, their worn surfaces catching subtle highlights from a flickering light source. To the left, a wooden table bears an ornate candelabra with three dancing flames casting warm amber pools against the cold stone. The middle ground is dominated by a sturdy wooden door set within a rounded stone archway, its dark grain and iron hardware suggesting age and secrets beyond. The passage continues westward into shadowy depths, where the corridor narrows into mysterious darkness. Background stonework fades into velvety obscurity, creating dramatic contrast between the intimate candle-lit foreground and the ominous depths ahead. The palette balances cool blue-grays of the masonry against warm ochres and golds of the candlelight, with deep umbral shadows pooling in architectural recesses. diff --git a/asset-work/kq4_087_east_end_of_hallway/caption_1_2492748365/caption_1_3256077192/caption_1.txt b/asset-work/kq4_087_east_end_of_hallway/caption_1_2492748365/caption_1_3256077192/caption_1.txt deleted file mode 100644 index 68ce5e7..0000000 --- a/asset-work/kq4_087_east_end_of_hallway/caption_1_2492748365/caption_1_3256077192/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A high-angle view into the east terminus of a medieval castle corridor, where rough-hewn stone blocks compose walls and floor in varying shades of slate gray and charcoal. The foreground reveals textured flagstones, their worn surfaces catching subtle highlights from a flickering light source. To the left, a wooden table bears an ornate candelabra with three dancing flames casting warm amber pools against the cold stone. The middle ground is dominated by a sturdy wooden door set within a rounded stone archway, its dark grain and iron hardware suggesting age and secrets beyond. The passage continues westward into shadowy depths, where the corridor narrows into mysterious darkness. Background stonework fades into velvety obscurity, creating dramatic contrast between the intimate candle-lit foreground and the ominous depths ahead. The palette balances cool blue-grays of the masonry against warm ochres and golds of the candlelight, with deep umbral shadows pooling in architectural recesses. diff --git a/asset-work/kq4_087_east_end_of_hallway/caption_1_2492748365/caption_1_3256077192/generated.png b/asset-work/kq4_087_east_end_of_hallway/caption_1_2492748365/caption_1_3256077192/generated.png deleted file mode 100644 index 9cbde69..0000000 --- a/asset-work/kq4_087_east_end_of_hallway/caption_1_2492748365/caption_1_3256077192/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:eff154b17e15fbe9277cb3f3f1511d509b5e747c266a0668cbe7d77b18d26a17 -size 4257193 diff --git a/asset-work/kq4_087_east_end_of_hallway/caption_1_2492748365/generated.png b/asset-work/kq4_087_east_end_of_hallway/caption_1_2492748365_generated.png similarity index 100% rename from asset-work/kq4_087_east_end_of_hallway/caption_1_2492748365/generated.png rename to asset-work/kq4_087_east_end_of_hallway/caption_1_2492748365_generated.png diff --git a/asset-work/kq4_087_east_end_of_hallway/caption_1_2492748365_generated.png.import b/asset-work/kq4_087_east_end_of_hallway/caption_1_2492748365_generated.png.import new file mode 100644 index 0000000..82e3db9 --- /dev/null +++ b/asset-work/kq4_087_east_end_of_hallway/caption_1_2492748365_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://pef2a21mhl5o" +path="res://.godot/imported/caption_1_2492748365_generated.png-a0c615acbee8b148b740ff524bb94c00.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_087_east_end_of_hallway/caption_1_2492748365_generated.png" +dest_files=["res://.godot/imported/caption_1_2492748365_generated.png-a0c615acbee8b148b740ff524bb94c00.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_087_east_end_of_hallway/caption_2_1873357176/caption_2.txt b/asset-work/kq4_087_east_end_of_hallway/caption_2_1873357176/caption_2.txt deleted file mode 100644 index bd7331f..0000000 --- a/asset-work/kq4_087_east_end_of_hallway/caption_2_1873357176/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. An atmospheric castle hallway viewed from above, where massive stone blocks create rhythmic patterns along walls and floor. In the immediate foreground, rough quarried stones show the patina of centuries, their surfaces mottled with subtle mossy discoloration. A simple wooden table occupies the left corner, supporting a wrought-iron candelabra whose three flames paint shifting patterns of light and shadow across the masonry. The central focus is an arched doorway of dark timber, framed by precisely fitted stones forming a rounded arch that leads to unseen chambers. The corridor stretches west into deepening perspective, each course of stonework slightly lighter as atmospheric haze softens distant details. Right-side walls suggest additional passages or alcoves veiled in velvety darkness. Lighting emanates primarily from the candelabra, creating dramatic chiaroscuro effects with long shadows stretching across the textured floor. The composition balances architectural geometry with organic warmth of candle-glow, rendered in deep slate blues, warm candle oranges, and rich shadowed umbers. diff --git a/asset-work/kq4_087_east_end_of_hallway/caption_2_1873357176/caption_2_777462562/caption_2.txt b/asset-work/kq4_087_east_end_of_hallway/caption_2_1873357176/caption_2_777462562/caption_2.txt deleted file mode 100644 index bd7331f..0000000 --- a/asset-work/kq4_087_east_end_of_hallway/caption_2_1873357176/caption_2_777462562/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. An atmospheric castle hallway viewed from above, where massive stone blocks create rhythmic patterns along walls and floor. In the immediate foreground, rough quarried stones show the patina of centuries, their surfaces mottled with subtle mossy discoloration. A simple wooden table occupies the left corner, supporting a wrought-iron candelabra whose three flames paint shifting patterns of light and shadow across the masonry. The central focus is an arched doorway of dark timber, framed by precisely fitted stones forming a rounded arch that leads to unseen chambers. The corridor stretches west into deepening perspective, each course of stonework slightly lighter as atmospheric haze softens distant details. Right-side walls suggest additional passages or alcoves veiled in velvety darkness. Lighting emanates primarily from the candelabra, creating dramatic chiaroscuro effects with long shadows stretching across the textured floor. The composition balances architectural geometry with organic warmth of candle-glow, rendered in deep slate blues, warm candle oranges, and rich shadowed umbers. diff --git a/asset-work/kq4_087_east_end_of_hallway/caption_2_1873357176/caption_2_777462562/generated.png b/asset-work/kq4_087_east_end_of_hallway/caption_2_1873357176/caption_2_777462562/generated.png deleted file mode 100644 index 4d241f5..0000000 --- a/asset-work/kq4_087_east_end_of_hallway/caption_2_1873357176/caption_2_777462562/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8c9b6d3524576e53c6e02a45261fade9af45f58b0c3c3f7e50d32f7610c4386a -size 4086515 diff --git a/asset-work/kq4_087_east_end_of_hallway/caption_2_1873357176/generated.png b/asset-work/kq4_087_east_end_of_hallway/caption_2_1873357176_generated.png similarity index 100% rename from asset-work/kq4_087_east_end_of_hallway/caption_2_1873357176/generated.png rename to asset-work/kq4_087_east_end_of_hallway/caption_2_1873357176_generated.png diff --git a/asset-work/kq4_087_east_end_of_hallway/caption_2_1873357176_generated.png.import b/asset-work/kq4_087_east_end_of_hallway/caption_2_1873357176_generated.png.import new file mode 100644 index 0000000..b4ebb24 --- /dev/null +++ b/asset-work/kq4_087_east_end_of_hallway/caption_2_1873357176_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cxqiudh623qk5" +path="res://.godot/imported/caption_2_1873357176_generated.png-bca0fa5adfc34af053937e4d11c162be.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_087_east_end_of_hallway/caption_2_1873357176_generated.png" +dest_files=["res://.godot/imported/caption_2_1873357176_generated.png-bca0fa5adfc34af053937e4d11c162be.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_087_east_end_of_hallway/caption_3_1271940164/caption_3.txt b/asset-work/kq4_087_east_end_of_hallway/caption_3_1271940164/caption_3.txt deleted file mode 100644 index 6818cf2..0000000 --- a/asset-work/kq4_087_east_end_of_hallway/caption_3_1271940164/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A bird's-eye perspective of a gothic castle corridor's eastern extremity, where fortress architecture meets intimate domestic detail. Foreground flagstones display irregular chisel marks and centuries of wear, their cool gray surfaces interrupted by warm light pools. Against the left wall stands a modest wooden table, its surface supporting an elegant candelabra whose three living flames sway gently, casting trembling illumination across the surrounding masonry. The middle ground features a substantial oak door recessed within a gracefully curved stone arch, the dark wood contrasting sharply with the pale limestone blocks. The hallway extends westward into shadowy mystery, successive archways or openings suggested by gradations of darkness. Background elements dissolve into impenetrable gloom, suggesting the vastness of the castle beyond. Textural richness pervades every surface, from the rough-cast stones to the polished wood grain. The lighting scheme creates dramatic theatrical effect, with the candelabra as the sole warm light source against an otherwise cold, shadow-drenched environment. Colors range from warm amber highlights to deep charcoal shadows, with intermediate grays providing spatial depth. diff --git a/asset-work/kq4_087_east_end_of_hallway/caption_3_1271940164/caption_3_1703594957/caption_3.txt b/asset-work/kq4_087_east_end_of_hallway/caption_3_1271940164/caption_3_1703594957/caption_3.txt deleted file mode 100644 index 6818cf2..0000000 --- a/asset-work/kq4_087_east_end_of_hallway/caption_3_1271940164/caption_3_1703594957/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A bird's-eye perspective of a gothic castle corridor's eastern extremity, where fortress architecture meets intimate domestic detail. Foreground flagstones display irregular chisel marks and centuries of wear, their cool gray surfaces interrupted by warm light pools. Against the left wall stands a modest wooden table, its surface supporting an elegant candelabra whose three living flames sway gently, casting trembling illumination across the surrounding masonry. The middle ground features a substantial oak door recessed within a gracefully curved stone arch, the dark wood contrasting sharply with the pale limestone blocks. The hallway extends westward into shadowy mystery, successive archways or openings suggested by gradations of darkness. Background elements dissolve into impenetrable gloom, suggesting the vastness of the castle beyond. Textural richness pervades every surface, from the rough-cast stones to the polished wood grain. The lighting scheme creates dramatic theatrical effect, with the candelabra as the sole warm light source against an otherwise cold, shadow-drenched environment. Colors range from warm amber highlights to deep charcoal shadows, with intermediate grays providing spatial depth. diff --git a/asset-work/kq4_087_east_end_of_hallway/caption_3_1271940164/caption_3_1703594957/generated.png b/asset-work/kq4_087_east_end_of_hallway/caption_3_1271940164/caption_3_1703594957/generated.png deleted file mode 100644 index 3722455..0000000 --- a/asset-work/kq4_087_east_end_of_hallway/caption_3_1271940164/caption_3_1703594957/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ebb0e57cc5b01a5f0b92d47ab771a09a01d3ecd97f9c0ad04093c7e798b7ebbc -size 4131141 diff --git a/asset-work/kq4_087_east_end_of_hallway/caption_3_1271940164/generated.png b/asset-work/kq4_087_east_end_of_hallway/caption_3_1271940164_generated.png similarity index 100% rename from asset-work/kq4_087_east_end_of_hallway/caption_3_1271940164/generated.png rename to asset-work/kq4_087_east_end_of_hallway/caption_3_1271940164_generated.png diff --git a/asset-work/kq4_087_east_end_of_hallway/caption_3_1271940164_generated.png.import b/asset-work/kq4_087_east_end_of_hallway/caption_3_1271940164_generated.png.import new file mode 100644 index 0000000..de736a5 --- /dev/null +++ b/asset-work/kq4_087_east_end_of_hallway/caption_3_1271940164_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://whhrjsp7p5l0" +path="res://.godot/imported/caption_3_1271940164_generated.png-6d286691a4f9a4acf9c7041cacc25a8b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_087_east_end_of_hallway/caption_3_1271940164_generated.png" +dest_files=["res://.godot/imported/caption_3_1271940164_generated.png-6d286691a4f9a4acf9c7041cacc25a8b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_088_stone_tower_stairs/caption_1_2107528827/generated.png b/asset-work/kq4_088_stone_tower_stairs/caption_1_2107528827_generated.png similarity index 100% rename from asset-work/kq4_088_stone_tower_stairs/caption_1_2107528827/generated.png rename to asset-work/kq4_088_stone_tower_stairs/caption_1_2107528827_generated.png diff --git a/asset-work/kq4_088_stone_tower_stairs/caption_1_2107528827_generated.png.import b/asset-work/kq4_088_stone_tower_stairs/caption_1_2107528827_generated.png.import new file mode 100644 index 0000000..0492043 --- /dev/null +++ b/asset-work/kq4_088_stone_tower_stairs/caption_1_2107528827_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bluadlil8bshg" +path="res://.godot/imported/caption_1_2107528827_generated.png-5a618068c34a888f7cbf99a37b4ef251.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_088_stone_tower_stairs/caption_1_2107528827_generated.png" +dest_files=["res://.godot/imported/caption_1_2107528827_generated.png-5a618068c34a888f7cbf99a37b4ef251.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_088_stone_tower_stairs/caption_1_4173041619/generated.png b/asset-work/kq4_088_stone_tower_stairs/caption_1_4173041619_generated.png similarity index 100% rename from asset-work/kq4_088_stone_tower_stairs/caption_1_4173041619/generated.png rename to asset-work/kq4_088_stone_tower_stairs/caption_1_4173041619_generated.png diff --git a/asset-work/kq4_088_stone_tower_stairs/caption_1_4173041619_generated.png.import b/asset-work/kq4_088_stone_tower_stairs/caption_1_4173041619_generated.png.import new file mode 100644 index 0000000..7dd91f1 --- /dev/null +++ b/asset-work/kq4_088_stone_tower_stairs/caption_1_4173041619_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://csjiey58j1o60" +path="res://.godot/imported/caption_1_4173041619_generated.png-a4c2c2615c3d74b4a76b5823e0329202.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_088_stone_tower_stairs/caption_1_4173041619_generated.png" +dest_files=["res://.godot/imported/caption_1_4173041619_generated.png-a4c2c2615c3d74b4a76b5823e0329202.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_088_stone_tower_stairs/caption_2_3686134239/generated.png b/asset-work/kq4_088_stone_tower_stairs/caption_2_3686134239_generated.png similarity index 100% rename from asset-work/kq4_088_stone_tower_stairs/caption_2_3686134239/generated.png rename to asset-work/kq4_088_stone_tower_stairs/caption_2_3686134239_generated.png diff --git a/asset-work/kq4_088_stone_tower_stairs/caption_2_3686134239_generated.png.import b/asset-work/kq4_088_stone_tower_stairs/caption_2_3686134239_generated.png.import new file mode 100644 index 0000000..3605061 --- /dev/null +++ b/asset-work/kq4_088_stone_tower_stairs/caption_2_3686134239_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ha6h5jgako7m" +path="res://.godot/imported/caption_2_3686134239_generated.png-4cd667bf8713e549524de59eef2e20f1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_088_stone_tower_stairs/caption_2_3686134239_generated.png" +dest_files=["res://.godot/imported/caption_2_3686134239_generated.png-4cd667bf8713e549524de59eef2e20f1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_088_stone_tower_stairs/caption_2_4191456118/generated.png b/asset-work/kq4_088_stone_tower_stairs/caption_2_4191456118_generated.png similarity index 100% rename from asset-work/kq4_088_stone_tower_stairs/caption_2_4191456118/generated.png rename to asset-work/kq4_088_stone_tower_stairs/caption_2_4191456118_generated.png diff --git a/asset-work/kq4_088_stone_tower_stairs/caption_2_4191456118_generated.png.import b/asset-work/kq4_088_stone_tower_stairs/caption_2_4191456118_generated.png.import new file mode 100644 index 0000000..6896640 --- /dev/null +++ b/asset-work/kq4_088_stone_tower_stairs/caption_2_4191456118_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://uuswteaka76t" +path="res://.godot/imported/caption_2_4191456118_generated.png-b887b1d5686c7c6ef994dd575d7e8417.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_088_stone_tower_stairs/caption_2_4191456118_generated.png" +dest_files=["res://.godot/imported/caption_2_4191456118_generated.png-b887b1d5686c7c6ef994dd575d7e8417.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_088_stone_tower_stairs/caption_3_2840750423/generated.png b/asset-work/kq4_088_stone_tower_stairs/caption_3_2840750423_generated.png similarity index 100% rename from asset-work/kq4_088_stone_tower_stairs/caption_3_2840750423/generated.png rename to asset-work/kq4_088_stone_tower_stairs/caption_3_2840750423_generated.png diff --git a/asset-work/kq4_088_stone_tower_stairs/caption_3_2840750423_generated.png.import b/asset-work/kq4_088_stone_tower_stairs/caption_3_2840750423_generated.png.import new file mode 100644 index 0000000..4076195 --- /dev/null +++ b/asset-work/kq4_088_stone_tower_stairs/caption_3_2840750423_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c7rvn7gkwg8vk" +path="res://.godot/imported/caption_3_2840750423_generated.png-d64af6eb778da50fb5742bd6271513b1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_088_stone_tower_stairs/caption_3_2840750423_generated.png" +dest_files=["res://.godot/imported/caption_3_2840750423_generated.png-d64af6eb778da50fb5742bd6271513b1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_088_stone_tower_stairs/caption_3_91609703/generated.png b/asset-work/kq4_088_stone_tower_stairs/caption_3_91609703_generated.png similarity index 100% rename from asset-work/kq4_088_stone_tower_stairs/caption_3_91609703/generated.png rename to asset-work/kq4_088_stone_tower_stairs/caption_3_91609703_generated.png diff --git a/asset-work/kq4_088_stone_tower_stairs/caption_3_91609703_generated.png.import b/asset-work/kq4_088_stone_tower_stairs/caption_3_91609703_generated.png.import new file mode 100644 index 0000000..c5b3973 --- /dev/null +++ b/asset-work/kq4_088_stone_tower_stairs/caption_3_91609703_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c4skgxkcq5tt" +path="res://.godot/imported/caption_3_91609703_generated.png-c6e954103467da01b414b3d5e56cf095.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_088_stone_tower_stairs/caption_3_91609703_generated.png" +dest_files=["res://.godot/imported/caption_3_91609703_generated.png-c6e954103467da01b414b3d5e56cf095.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_089_castle_kitchen/caption_1_1588432504/caption_1.txt b/asset-work/kq4_089_castle_kitchen/caption_1_1588432504/caption_1.txt deleted file mode 100644 index 34a2468..0000000 --- a/asset-work/kq4_089_castle_kitchen/caption_1_1588432504/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A dimly lit medieval kitchen viewed from an elevated angle, revealing the stark utilitarian space of a castle's culinary quarters. The foreground features a long wooden work table hewn from rough timber, its scarred surface bearing the patina of countless meal preparations. A small window above casts a narrow beam of pale light that illuminates scattered kitchen implements and ceramic vessels. The middle ground is dominated by a massive stone fireplace with cold, darkened hearth, its rough-hewn blocks stacked in irregular courses. An empty iron cauldron hangs suspended by a heavy chain, dormant and shadowed. Flanking the fireplace on either side, two sturdy wooden cabinets display rich grain patterns in oak or walnut, their paneled doors suggesting hidden stores within. To the left, a barrel rests against the stone wall, its staves weathered and bound by iron hoops. The background reveals solid masonry walls of gray granite blocks, massive ceiling beams stretching across the upper reaches of the chamber, and an open doorway suggesting passages beyond. The palette consists of muted earth tones—umber shadows, slate grays, and aged wood browns—lit by that single ethereal shaft of window light creating dramatic chiaroscuro effects throughout the somber space. diff --git a/asset-work/kq4_089_castle_kitchen/caption_1_1588432504/generated.png b/asset-work/kq4_089_castle_kitchen/caption_1_1588432504_generated.png similarity index 100% rename from asset-work/kq4_089_castle_kitchen/caption_1_1588432504/generated.png rename to asset-work/kq4_089_castle_kitchen/caption_1_1588432504_generated.png diff --git a/asset-work/kq4_089_castle_kitchen/caption_1_1588432504_generated.png.import b/asset-work/kq4_089_castle_kitchen/caption_1_1588432504_generated.png.import new file mode 100644 index 0000000..bf2ab16 --- /dev/null +++ b/asset-work/kq4_089_castle_kitchen/caption_1_1588432504_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bf4qujwd6hrgh" +path="res://.godot/imported/caption_1_1588432504_generated.png-c739572080c06e832b69398d267b2455.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_089_castle_kitchen/caption_1_1588432504_generated.png" +dest_files=["res://.godot/imported/caption_1_1588432504_generated.png-c739572080c06e832b69398d267b2455.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_089_castle_kitchen/caption_2_884004257/caption_2.txt b/asset-work/kq4_089_castle_kitchen/caption_2_884004257/caption_2.txt deleted file mode 100644 index 9bddb11..0000000 --- a/asset-work/kq4_089_castle_kitchen/caption_2_884004257/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A bird's-eye perspective of a somber castle kitchen, its atmosphere thick with the weight of medieval domesticity. In the immediate foreground, a substantial wooden table extends across flagstone flooring worn smooth by centuries of use, its surface catching a pale luminescence from a modest window set high in the right wall. The center of the composition features an imposing stone fireplace, its dark maw unlit and forbidding, with a heavy iron cooking pot suspended above cold ashes. Twin cupboards of dark timber stand sentinel on either side of the hearth, their raised paneling and iron hardware speaking to rustic craftsmanship. The left wall reveals a large storage barrel beside stacked kitchenware, while the right wall's narrow window offers a glimpse of distant mountains through thick, distorting glass. Background details include rough-textured stone walls in varying shades of granite gray, substantial wooden ceiling beams traversing the space overhead, and an open archway leading to unseen chambers. The scene is rendered in restrained, earthy hues—charcoal shadows, warm amber wood tones, and cool stone grays—with dramatic lighting emphasizing the texture of ancient masonry and the solemn, functional character of this working kitchen. diff --git a/asset-work/kq4_089_castle_kitchen/caption_2_884004257/generated.png b/asset-work/kq4_089_castle_kitchen/caption_2_884004257_generated.png similarity index 100% rename from asset-work/kq4_089_castle_kitchen/caption_2_884004257/generated.png rename to asset-work/kq4_089_castle_kitchen/caption_2_884004257_generated.png diff --git a/asset-work/kq4_089_castle_kitchen/caption_2_884004257_generated.png.import b/asset-work/kq4_089_castle_kitchen/caption_2_884004257_generated.png.import new file mode 100644 index 0000000..3bc8856 --- /dev/null +++ b/asset-work/kq4_089_castle_kitchen/caption_2_884004257_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dxys57akckv1b" +path="res://.godot/imported/caption_2_884004257_generated.png-43f0bce24fc02fcc2bb996113df0e080.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_089_castle_kitchen/caption_2_884004257_generated.png" +dest_files=["res://.godot/imported/caption_2_884004257_generated.png-43f0bce24fc02fcc2bb996113df0e080.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_089_castle_kitchen/caption_3_1664832024/caption_3.txt b/asset-work/kq4_089_castle_kitchen/caption_3_1664832024/caption_3.txt deleted file mode 100644 index 345510c..0000000 --- a/asset-work/kq4_089_castle_kitchen/caption_3_1664832024/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. An overhead view into the austere quarters of a castle kitchen, where functional simplicity dominates the architectural composition. Foreground details reveal a sturdy preparation table crafted from thick planks, its surface marked by years of culinary labor and arranged with an assortment of humble vessels and utensils. Above this workspace, a solitary window admits a diffused, silvery light that barely penetrates the room's gloom, casting elongated shadows across the stone floor. The central focus falls upon a formidable stone fireplace built from irregular granite blocks, its dark interior housing an empty iron cauldron that hangs motionless on a blackened chain. On either side of this cold hearth, matching wooden cabinets display the deep, rich patina of well-used oak, their paneled fronts suggesting ample storage for provisions. The surrounding walls are constructed from massive ashlar blocks in somber gray tones, while heavy timber beams traverse the ceiling overhead. To the left, a coopered barrel stands against the masonry, its curved staves and metal bands catching faint highlights. An open doorway in the far wall hints at continuation into deeper parts of the castle. The overall palette embraces muted grays, weathered browns, and subtle ochres, with painterly brushwork emphasizing the rough textures of stone and wood in this unpretentious but vital domestic space. diff --git a/asset-work/kq4_089_castle_kitchen/caption_3_1664832024/generated.png b/asset-work/kq4_089_castle_kitchen/caption_3_1664832024_generated.png similarity index 100% rename from asset-work/kq4_089_castle_kitchen/caption_3_1664832024/generated.png rename to asset-work/kq4_089_castle_kitchen/caption_3_1664832024_generated.png diff --git a/asset-work/kq4_089_castle_kitchen/caption_3_1664832024_generated.png.import b/asset-work/kq4_089_castle_kitchen/caption_3_1664832024_generated.png.import new file mode 100644 index 0000000..2b4212a --- /dev/null +++ b/asset-work/kq4_089_castle_kitchen/caption_3_1664832024_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cij8c7nxx7b5o" +path="res://.godot/imported/caption_3_1664832024_generated.png-ee96c2ec4874c3a5f25063e5c623b958.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_089_castle_kitchen/caption_3_1664832024_generated.png" +dest_files=["res://.godot/imported/caption_3_1664832024_generated.png-ee96c2ec4874c3a5f25063e5c623b958.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_090_west_tower_bottom/caption_1_3433462065/generated.png b/asset-work/kq4_090_west_tower_bottom/caption_1_3433462065_generated.png similarity index 100% rename from asset-work/kq4_090_west_tower_bottom/caption_1_3433462065/generated.png rename to asset-work/kq4_090_west_tower_bottom/caption_1_3433462065_generated.png diff --git a/asset-work/kq4_090_west_tower_bottom/caption_1_3433462065_generated.png.import b/asset-work/kq4_090_west_tower_bottom/caption_1_3433462065_generated.png.import new file mode 100644 index 0000000..7c33279 --- /dev/null +++ b/asset-work/kq4_090_west_tower_bottom/caption_1_3433462065_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://blh5x7fck0aby" +path="res://.godot/imported/caption_1_3433462065_generated.png-3e4d8371d65be8e649708e8beae02d3c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_090_west_tower_bottom/caption_1_3433462065_generated.png" +dest_files=["res://.godot/imported/caption_1_3433462065_generated.png-3e4d8371d65be8e649708e8beae02d3c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_090_west_tower_bottom/caption_1_995419272/generated.png b/asset-work/kq4_090_west_tower_bottom/caption_1_995419272_generated.png similarity index 100% rename from asset-work/kq4_090_west_tower_bottom/caption_1_995419272/generated.png rename to asset-work/kq4_090_west_tower_bottom/caption_1_995419272_generated.png diff --git a/asset-work/kq4_090_west_tower_bottom/caption_1_995419272_generated.png.import b/asset-work/kq4_090_west_tower_bottom/caption_1_995419272_generated.png.import new file mode 100644 index 0000000..f871401 --- /dev/null +++ b/asset-work/kq4_090_west_tower_bottom/caption_1_995419272_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://6ghqrn0w44mx" +path="res://.godot/imported/caption_1_995419272_generated.png-cc9fd45829d13122b18c33ff038cdabb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_090_west_tower_bottom/caption_1_995419272_generated.png" +dest_files=["res://.godot/imported/caption_1_995419272_generated.png-cc9fd45829d13122b18c33ff038cdabb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_090_west_tower_bottom/caption_2_2453315521/generated.png b/asset-work/kq4_090_west_tower_bottom/caption_2_2453315521_generated.png similarity index 100% rename from asset-work/kq4_090_west_tower_bottom/caption_2_2453315521/generated.png rename to asset-work/kq4_090_west_tower_bottom/caption_2_2453315521_generated.png diff --git a/asset-work/kq4_090_west_tower_bottom/caption_2_2453315521_generated.png.import b/asset-work/kq4_090_west_tower_bottom/caption_2_2453315521_generated.png.import new file mode 100644 index 0000000..81755f8 --- /dev/null +++ b/asset-work/kq4_090_west_tower_bottom/caption_2_2453315521_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://duxxau64w08bh" +path="res://.godot/imported/caption_2_2453315521_generated.png-27ac8d826625aee80db3d2f8823dff73.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_090_west_tower_bottom/caption_2_2453315521_generated.png" +dest_files=["res://.godot/imported/caption_2_2453315521_generated.png-27ac8d826625aee80db3d2f8823dff73.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_090_west_tower_bottom/caption_2_968165227/generated.png b/asset-work/kq4_090_west_tower_bottom/caption_2_968165227_generated.png similarity index 100% rename from asset-work/kq4_090_west_tower_bottom/caption_2_968165227/generated.png rename to asset-work/kq4_090_west_tower_bottom/caption_2_968165227_generated.png diff --git a/asset-work/kq4_090_west_tower_bottom/caption_2_968165227_generated.png.import b/asset-work/kq4_090_west_tower_bottom/caption_2_968165227_generated.png.import new file mode 100644 index 0000000..6bf34ed --- /dev/null +++ b/asset-work/kq4_090_west_tower_bottom/caption_2_968165227_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cjxgx5olekj5h" +path="res://.godot/imported/caption_2_968165227_generated.png-51deb5c99172d814451cb8e50ddc675f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_090_west_tower_bottom/caption_2_968165227_generated.png" +dest_files=["res://.godot/imported/caption_2_968165227_generated.png-51deb5c99172d814451cb8e50ddc675f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_090_west_tower_bottom/caption_3_1052329837/generated.png b/asset-work/kq4_090_west_tower_bottom/caption_3_1052329837_generated.png similarity index 100% rename from asset-work/kq4_090_west_tower_bottom/caption_3_1052329837/generated.png rename to asset-work/kq4_090_west_tower_bottom/caption_3_1052329837_generated.png diff --git a/asset-work/kq4_090_west_tower_bottom/caption_3_1052329837_generated.png.import b/asset-work/kq4_090_west_tower_bottom/caption_3_1052329837_generated.png.import new file mode 100644 index 0000000..95225b2 --- /dev/null +++ b/asset-work/kq4_090_west_tower_bottom/caption_3_1052329837_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cjjxpl1452rxi" +path="res://.godot/imported/caption_3_1052329837_generated.png-96ceba48da8d30e92c97c441b8bd56a3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_090_west_tower_bottom/caption_3_1052329837_generated.png" +dest_files=["res://.godot/imported/caption_3_1052329837_generated.png-96ceba48da8d30e92c97c441b8bd56a3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_090_west_tower_bottom/caption_3_984682269/generated.png b/asset-work/kq4_090_west_tower_bottom/caption_3_984682269_generated.png similarity index 100% rename from asset-work/kq4_090_west_tower_bottom/caption_3_984682269/generated.png rename to asset-work/kq4_090_west_tower_bottom/caption_3_984682269_generated.png diff --git a/asset-work/kq4_090_west_tower_bottom/caption_3_984682269_generated.png.import b/asset-work/kq4_090_west_tower_bottom/caption_3_984682269_generated.png.import new file mode 100644 index 0000000..92e3bd5 --- /dev/null +++ b/asset-work/kq4_090_west_tower_bottom/caption_3_984682269_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://y0y4qcuqpuru" +path="res://.godot/imported/caption_3_984682269_generated.png-7881cde37ebf48ee21b250d06e5f3254.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_090_west_tower_bottom/caption_3_984682269_generated.png" +dest_files=["res://.godot/imported/caption_3_984682269_generated.png-7881cde37ebf48ee21b250d06e5f3254.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_091_castle_dining_room/caption_1_694850738/caption_1.txt b/asset-work/kq4_091_castle_dining_room/caption_1_694850738/caption_1.txt deleted file mode 100644 index 4112671..0000000 --- a/asset-work/kq4_091_castle_dining_room/caption_1_694850738/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A magnificent high-angle view of a regal dining hall, capturing the solemn grandeur of medieval castle architecture. In the foreground, a polished stone floor stretches toward the viewer, its surface rendered in subtle grays with veins of warmer ochre, showing centuries of worn footsteps. Massive stone block walls rise on either side, their rough-hewn texture suggesting ancient masonry, punctuated by Gothic archways that recede into shadowed depths. The middle ground is dominated by an imposing oak dining table draped in sumptuous crimson velvet, the fabric cascading in heavy folds that catch dramatic side-lighting. At the far end, a gilded throne gleams against a backdrop of royal purple tapestries adorned with heraldic crests, the gold leaf catching warm candlelight. The tapestries hang in rich vertical panels, their woven textures suggesting intricate brocade work. Background shadows pool in the vaulted ceiling and around the arched portals, creating mysterious depth. The palette harmonizes cool granite grays, deep burgundy reds, and royal purples, illuminated by flickering torchlight that casts dancing shadows across the monumental space. diff --git a/asset-work/kq4_091_castle_dining_room/caption_1_694850738/caption_1_254437923/caption_1.txt b/asset-work/kq4_091_castle_dining_room/caption_1_694850738/caption_1_254437923/caption_1.txt deleted file mode 100644 index 4112671..0000000 --- a/asset-work/kq4_091_castle_dining_room/caption_1_694850738/caption_1_254437923/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A magnificent high-angle view of a regal dining hall, capturing the solemn grandeur of medieval castle architecture. In the foreground, a polished stone floor stretches toward the viewer, its surface rendered in subtle grays with veins of warmer ochre, showing centuries of worn footsteps. Massive stone block walls rise on either side, their rough-hewn texture suggesting ancient masonry, punctuated by Gothic archways that recede into shadowed depths. The middle ground is dominated by an imposing oak dining table draped in sumptuous crimson velvet, the fabric cascading in heavy folds that catch dramatic side-lighting. At the far end, a gilded throne gleams against a backdrop of royal purple tapestries adorned with heraldic crests, the gold leaf catching warm candlelight. The tapestries hang in rich vertical panels, their woven textures suggesting intricate brocade work. Background shadows pool in the vaulted ceiling and around the arched portals, creating mysterious depth. The palette harmonizes cool granite grays, deep burgundy reds, and royal purples, illuminated by flickering torchlight that casts dancing shadows across the monumental space. diff --git a/asset-work/kq4_091_castle_dining_room/caption_1_694850738/caption_1_254437923/generated.png b/asset-work/kq4_091_castle_dining_room/caption_1_694850738/caption_1_254437923/generated.png deleted file mode 100644 index d396942..0000000 --- a/asset-work/kq4_091_castle_dining_room/caption_1_694850738/caption_1_254437923/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:13dc5c9faa01d710004b934936eababa9a0f8955cdf3728ad71fb71891735286 -size 4080132 diff --git a/asset-work/kq4_091_castle_dining_room/caption_1_694850738/generated.png b/asset-work/kq4_091_castle_dining_room/caption_1_694850738_generated.png similarity index 100% rename from asset-work/kq4_091_castle_dining_room/caption_1_694850738/generated.png rename to asset-work/kq4_091_castle_dining_room/caption_1_694850738_generated.png diff --git a/asset-work/kq4_091_castle_dining_room/caption_1_694850738_generated.png.import b/asset-work/kq4_091_castle_dining_room/caption_1_694850738_generated.png.import new file mode 100644 index 0000000..f37a0e7 --- /dev/null +++ b/asset-work/kq4_091_castle_dining_room/caption_1_694850738_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://q741hwnj0gjt" +path="res://.godot/imported/caption_1_694850738_generated.png-cb4e52aaf02e86cf12396b27e641dedb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_091_castle_dining_room/caption_1_694850738_generated.png" +dest_files=["res://.godot/imported/caption_1_694850738_generated.png-cb4e52aaf02e86cf12396b27e641dedb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_091_castle_dining_room/caption_2_2531069224/caption_2.txt b/asset-work/kq4_091_castle_dining_room/caption_2_2531069224/caption_2.txt deleted file mode 100644 index e45e7b7..0000000 --- a/asset-work/kq4_091_castle_dining_room/caption_2_2531069224/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. An elevated perspective revealing a baronial feast hall within an ancient fortress, viewed from above like a masterwork by a Flemish painter. The immediate foreground displays intricate flagstone flooring in alternating patterns of slate and limestone, worn smooth by generations of noble feet. Heavy stone walls frame the composition, their massive blocks painted with rough impasto suggesting age and permanence, while Gothic arches pierce through to dimly lit antechambers beyond. At center stage, a formidable banquet table commands attention, draped in luxurious scarlet damask that pools in velvety shadows and catches highlights along its embroidered edges. Behind it, an ornate golden chair presides over the chamber like a monarch's seat, backed by magnificent purple wall hangings that cascade from ceiling to floor in heavy folds of silk and velvet. The tapestries bear subtle patterns of gold thread, catching ambient light from unseen sources. Background arches fade into velvety darkness, suggesting the labyrinthine depths of the castle. The color scheme weaves together pewter grays, wine reds, imperial purples, and burnished gold under atmospheric lighting that creates dramatic chiaroscuro effects. diff --git a/asset-work/kq4_091_castle_dining_room/caption_2_2531069224/caption_2_2488842809/caption_2.txt b/asset-work/kq4_091_castle_dining_room/caption_2_2531069224/caption_2_2488842809/caption_2.txt deleted file mode 100644 index e45e7b7..0000000 --- a/asset-work/kq4_091_castle_dining_room/caption_2_2531069224/caption_2_2488842809/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. An elevated perspective revealing a baronial feast hall within an ancient fortress, viewed from above like a masterwork by a Flemish painter. The immediate foreground displays intricate flagstone flooring in alternating patterns of slate and limestone, worn smooth by generations of noble feet. Heavy stone walls frame the composition, their massive blocks painted with rough impasto suggesting age and permanence, while Gothic arches pierce through to dimly lit antechambers beyond. At center stage, a formidable banquet table commands attention, draped in luxurious scarlet damask that pools in velvety shadows and catches highlights along its embroidered edges. Behind it, an ornate golden chair presides over the chamber like a monarch's seat, backed by magnificent purple wall hangings that cascade from ceiling to floor in heavy folds of silk and velvet. The tapestries bear subtle patterns of gold thread, catching ambient light from unseen sources. Background arches fade into velvety darkness, suggesting the labyrinthine depths of the castle. The color scheme weaves together pewter grays, wine reds, imperial purples, and burnished gold under atmospheric lighting that creates dramatic chiaroscuro effects. diff --git a/asset-work/kq4_091_castle_dining_room/caption_2_2531069224/caption_2_2488842809/generated.png b/asset-work/kq4_091_castle_dining_room/caption_2_2531069224/caption_2_2488842809/generated.png deleted file mode 100644 index 55d13ea..0000000 --- a/asset-work/kq4_091_castle_dining_room/caption_2_2531069224/caption_2_2488842809/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0dbd1eb94038118025d8378182719d50133c8c7762864d6f6da85b34fb76fae2 -size 4006045 diff --git a/asset-work/kq4_091_castle_dining_room/caption_2_2531069224/generated.png b/asset-work/kq4_091_castle_dining_room/caption_2_2531069224_generated.png similarity index 100% rename from asset-work/kq4_091_castle_dining_room/caption_2_2531069224/generated.png rename to asset-work/kq4_091_castle_dining_room/caption_2_2531069224_generated.png diff --git a/asset-work/kq4_091_castle_dining_room/caption_2_2531069224_generated.png.import b/asset-work/kq4_091_castle_dining_room/caption_2_2531069224_generated.png.import new file mode 100644 index 0000000..f1f679d --- /dev/null +++ b/asset-work/kq4_091_castle_dining_room/caption_2_2531069224_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dn5d6vh63ht85" +path="res://.godot/imported/caption_2_2531069224_generated.png-831c150fc6bcc5c919ac18b4145e2a5d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_091_castle_dining_room/caption_2_2531069224_generated.png" +dest_files=["res://.godot/imported/caption_2_2531069224_generated.png-831c150fc6bcc5c919ac18b4145e2a5d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_091_castle_dining_room/caption_3_2710168663/caption_3.txt b/asset-work/kq4_091_castle_dining_room/caption_3_2710168663/caption_3.txt deleted file mode 100644 index 9458779..0000000 --- a/asset-work/kq4_091_castle_dining_room/caption_3_2710168663/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A sweeping bird's-eye vista of an opulent medieval refectory, rendered with the atmospheric depth of a grand historical oil painting. The composition draws the eye along a checkerboard floor of pale limestone and dark granite, the stones weathered to a satin sheen that reflects diffuse overhead light. Towering walls of ashlar masonry rise on both sides, their surfaces textured with age and shadow, punctuated by rounded archways that lead into mysterious corridors beyond. Dominating the middle distance, a grand dining table sits in state, its surface cloaked in flowing crimson fabric that drapes dramatically over the edges in heavy, luxurious folds. At the chamber's end, a resplendent golden throne anchors the scene, framed by majestic tapestries in deep royal purple that hang in stately panels from ceiling to floor, their surfaces suggesting rich embroidery and metallic threads. The arched portals on either side create rhythmic symmetry while fading into obscurity, enhancing the room's cavernous scale. Warm torchlight from unseen sconces creates pools of amber illumination against the cool stone, while shadows gather in the vaulted recesses above. The palette unites slate grays, ruby reds, amethyst purples, and gilded highlights in harmonious medieval splendor. diff --git a/asset-work/kq4_091_castle_dining_room/caption_3_2710168663/caption_3_2792922568/caption_3.txt b/asset-work/kq4_091_castle_dining_room/caption_3_2710168663/caption_3_2792922568/caption_3.txt deleted file mode 100644 index 9458779..0000000 --- a/asset-work/kq4_091_castle_dining_room/caption_3_2710168663/caption_3_2792922568/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A sweeping bird's-eye vista of an opulent medieval refectory, rendered with the atmospheric depth of a grand historical oil painting. The composition draws the eye along a checkerboard floor of pale limestone and dark granite, the stones weathered to a satin sheen that reflects diffuse overhead light. Towering walls of ashlar masonry rise on both sides, their surfaces textured with age and shadow, punctuated by rounded archways that lead into mysterious corridors beyond. Dominating the middle distance, a grand dining table sits in state, its surface cloaked in flowing crimson fabric that drapes dramatically over the edges in heavy, luxurious folds. At the chamber's end, a resplendent golden throne anchors the scene, framed by majestic tapestries in deep royal purple that hang in stately panels from ceiling to floor, their surfaces suggesting rich embroidery and metallic threads. The arched portals on either side create rhythmic symmetry while fading into obscurity, enhancing the room's cavernous scale. Warm torchlight from unseen sconces creates pools of amber illumination against the cool stone, while shadows gather in the vaulted recesses above. The palette unites slate grays, ruby reds, amethyst purples, and gilded highlights in harmonious medieval splendor. diff --git a/asset-work/kq4_091_castle_dining_room/caption_3_2710168663/caption_3_2792922568/generated.png b/asset-work/kq4_091_castle_dining_room/caption_3_2710168663/caption_3_2792922568/generated.png deleted file mode 100644 index bf69fff..0000000 --- a/asset-work/kq4_091_castle_dining_room/caption_3_2710168663/caption_3_2792922568/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:62a930e29ff389cb7bfd1b11d1891f25e9109280306f10cb395999a1e55342ab -size 3952343 diff --git a/asset-work/kq4_091_castle_dining_room/caption_3_2710168663/generated.png b/asset-work/kq4_091_castle_dining_room/caption_3_2710168663_generated.png similarity index 100% rename from asset-work/kq4_091_castle_dining_room/caption_3_2710168663/generated.png rename to asset-work/kq4_091_castle_dining_room/caption_3_2710168663_generated.png diff --git a/asset-work/kq4_091_castle_dining_room/caption_3_2710168663_generated.png.import b/asset-work/kq4_091_castle_dining_room/caption_3_2710168663_generated.png.import new file mode 100644 index 0000000..43a9e90 --- /dev/null +++ b/asset-work/kq4_091_castle_dining_room/caption_3_2710168663_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://crbyi0ce4j23m" +path="res://.godot/imported/caption_3_2710168663_generated.png-7941d8c54e08bf7e6b6e4aec033a8531.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_091_castle_dining_room/caption_3_2710168663_generated.png" +dest_files=["res://.godot/imported/caption_3_2710168663_generated.png-7941d8c54e08bf7e6b6e4aec033a8531.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_092_lolottes_throne_room/caption_1_3234737338/generated.png b/asset-work/kq4_092_lolottes_throne_room/caption_1_3234737338_generated.png similarity index 100% rename from asset-work/kq4_092_lolottes_throne_room/caption_1_3234737338/generated.png rename to asset-work/kq4_092_lolottes_throne_room/caption_1_3234737338_generated.png diff --git a/asset-work/kq4_092_lolottes_throne_room/caption_1_3234737338_generated.png.import b/asset-work/kq4_092_lolottes_throne_room/caption_1_3234737338_generated.png.import new file mode 100644 index 0000000..fd0cd16 --- /dev/null +++ b/asset-work/kq4_092_lolottes_throne_room/caption_1_3234737338_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://4hlh5qlxh1op" +path="res://.godot/imported/caption_1_3234737338_generated.png-a9428f251120370592442940d61855be.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_092_lolottes_throne_room/caption_1_3234737338_generated.png" +dest_files=["res://.godot/imported/caption_1_3234737338_generated.png-a9428f251120370592442940d61855be.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_092_lolottes_throne_room/caption_1_3834164704/generated.png b/asset-work/kq4_092_lolottes_throne_room/caption_1_3834164704_generated.png similarity index 100% rename from asset-work/kq4_092_lolottes_throne_room/caption_1_3834164704/generated.png rename to asset-work/kq4_092_lolottes_throne_room/caption_1_3834164704_generated.png diff --git a/asset-work/kq4_092_lolottes_throne_room/caption_1_3834164704_generated.png.import b/asset-work/kq4_092_lolottes_throne_room/caption_1_3834164704_generated.png.import new file mode 100644 index 0000000..22f7d30 --- /dev/null +++ b/asset-work/kq4_092_lolottes_throne_room/caption_1_3834164704_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b4qrn46rgiefx" +path="res://.godot/imported/caption_1_3834164704_generated.png-7e6d20ff87dd9524b9c0ef19c2242f7f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_092_lolottes_throne_room/caption_1_3834164704_generated.png" +dest_files=["res://.godot/imported/caption_1_3834164704_generated.png-7e6d20ff87dd9524b9c0ef19c2242f7f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_092_lolottes_throne_room/caption_2_1548556162/generated.png b/asset-work/kq4_092_lolottes_throne_room/caption_2_1548556162_generated.png similarity index 100% rename from asset-work/kq4_092_lolottes_throne_room/caption_2_1548556162/generated.png rename to asset-work/kq4_092_lolottes_throne_room/caption_2_1548556162_generated.png diff --git a/asset-work/kq4_092_lolottes_throne_room/caption_2_1548556162_generated.png.import b/asset-work/kq4_092_lolottes_throne_room/caption_2_1548556162_generated.png.import new file mode 100644 index 0000000..dbd273b --- /dev/null +++ b/asset-work/kq4_092_lolottes_throne_room/caption_2_1548556162_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://crt2klu12pxyu" +path="res://.godot/imported/caption_2_1548556162_generated.png-4a8b2b5b7f403342e2954a44e5b91938.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_092_lolottes_throne_room/caption_2_1548556162_generated.png" +dest_files=["res://.godot/imported/caption_2_1548556162_generated.png-4a8b2b5b7f403342e2954a44e5b91938.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_092_lolottes_throne_room/caption_2_505851686/generated.png b/asset-work/kq4_092_lolottes_throne_room/caption_2_505851686_generated.png similarity index 100% rename from asset-work/kq4_092_lolottes_throne_room/caption_2_505851686/generated.png rename to asset-work/kq4_092_lolottes_throne_room/caption_2_505851686_generated.png diff --git a/asset-work/kq4_092_lolottes_throne_room/caption_2_505851686_generated.png.import b/asset-work/kq4_092_lolottes_throne_room/caption_2_505851686_generated.png.import new file mode 100644 index 0000000..f432c2b --- /dev/null +++ b/asset-work/kq4_092_lolottes_throne_room/caption_2_505851686_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://df1ba30axw38f" +path="res://.godot/imported/caption_2_505851686_generated.png-24065f738d22e0204a72c47383d0c5da.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_092_lolottes_throne_room/caption_2_505851686_generated.png" +dest_files=["res://.godot/imported/caption_2_505851686_generated.png-24065f738d22e0204a72c47383d0c5da.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_092_lolottes_throne_room/caption_3_2505871348/generated.png b/asset-work/kq4_092_lolottes_throne_room/caption_3_2505871348_generated.png similarity index 100% rename from asset-work/kq4_092_lolottes_throne_room/caption_3_2505871348/generated.png rename to asset-work/kq4_092_lolottes_throne_room/caption_3_2505871348_generated.png diff --git a/asset-work/kq4_092_lolottes_throne_room/caption_3_2505871348_generated.png.import b/asset-work/kq4_092_lolottes_throne_room/caption_3_2505871348_generated.png.import new file mode 100644 index 0000000..564ddf5 --- /dev/null +++ b/asset-work/kq4_092_lolottes_throne_room/caption_3_2505871348_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://wsvdqqlo5v65" +path="res://.godot/imported/caption_3_2505871348_generated.png-f4d1133a20861525c38bd0078a3c1104.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_092_lolottes_throne_room/caption_3_2505871348_generated.png" +dest_files=["res://.godot/imported/caption_3_2505871348_generated.png-f4d1133a20861525c38bd0078a3c1104.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_092_lolottes_throne_room/caption_3_4013534859/generated.png b/asset-work/kq4_092_lolottes_throne_room/caption_3_4013534859_generated.png similarity index 100% rename from asset-work/kq4_092_lolottes_throne_room/caption_3_4013534859/generated.png rename to asset-work/kq4_092_lolottes_throne_room/caption_3_4013534859_generated.png diff --git a/asset-work/kq4_092_lolottes_throne_room/caption_3_4013534859_generated.png.import b/asset-work/kq4_092_lolottes_throne_room/caption_3_4013534859_generated.png.import new file mode 100644 index 0000000..a6841a5 --- /dev/null +++ b/asset-work/kq4_092_lolottes_throne_room/caption_3_4013534859_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://p647psjxs2uf" +path="res://.godot/imported/caption_3_4013534859_generated.png-4fba91936fc8f8bb2eda98c0c5f0e180.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_092_lolottes_throne_room/caption_3_4013534859_generated.png" +dest_files=["res://.godot/imported/caption_3_4013534859_generated.png-4fba91936fc8f8bb2eda98c0c5f0e180.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_093_bottom_of_east_tower/caption_1_1324848873/caption_1.txt b/asset-work/kq4_093_bottom_of_east_tower/caption_1_1324848873/caption_1.txt deleted file mode 100644 index 1759985..0000000 --- a/asset-work/kq4_093_bottom_of_east_tower/caption_1_1324848873/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A dramatic interior scene viewed from above, revealing the base of an ancient stone tower with a graceful spiral staircase ascending into shadow. The foreground displays rough-hewn stone floor tiles, their surfaces uneven with centuries of wear, catching warm amber light filtering through an arched doorway on the left. The doorway reveals a glimpse of golden illumination beyond, casting long dramatic shadows across the floor in geometric patterns. Along the right side, wide stone stairs curve upward in elegant spiral formation, each step worn smooth by countless footsteps, their edges catching subtle highlights against the darker wall surface. The walls themselves are constructed of massive rectangular stone blocks with deeply recessed mortar lines creating rich textural variation. Shadows pool in the corners and beneath the ascending stairs, creating deep velvety pockets of darkness that contrast with the luminous doorway. The color palette balances warm ochres and honey tones of the light against cool grays and slate blues of the ancient stonework, with touches of umber and sienna in the shadowed recesses. Atmospheric perspective softens the upper reaches of the stairwell as it curves out of sight. \ No newline at end of file diff --git a/asset-work/kq4_093_bottom_of_east_tower/caption_1_1324848873/caption_1_3491097550/caption_1.txt b/asset-work/kq4_093_bottom_of_east_tower/caption_1_1324848873/caption_1_3491097550/caption_1.txt deleted file mode 100644 index 1759985..0000000 --- a/asset-work/kq4_093_bottom_of_east_tower/caption_1_1324848873/caption_1_3491097550/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A dramatic interior scene viewed from above, revealing the base of an ancient stone tower with a graceful spiral staircase ascending into shadow. The foreground displays rough-hewn stone floor tiles, their surfaces uneven with centuries of wear, catching warm amber light filtering through an arched doorway on the left. The doorway reveals a glimpse of golden illumination beyond, casting long dramatic shadows across the floor in geometric patterns. Along the right side, wide stone stairs curve upward in elegant spiral formation, each step worn smooth by countless footsteps, their edges catching subtle highlights against the darker wall surface. The walls themselves are constructed of massive rectangular stone blocks with deeply recessed mortar lines creating rich textural variation. Shadows pool in the corners and beneath the ascending stairs, creating deep velvety pockets of darkness that contrast with the luminous doorway. The color palette balances warm ochres and honey tones of the light against cool grays and slate blues of the ancient stonework, with touches of umber and sienna in the shadowed recesses. Atmospheric perspective softens the upper reaches of the stairwell as it curves out of sight. \ No newline at end of file diff --git a/asset-work/kq4_093_bottom_of_east_tower/caption_1_1324848873/caption_1_3491097550/generated.png b/asset-work/kq4_093_bottom_of_east_tower/caption_1_1324848873/caption_1_3491097550/generated.png deleted file mode 100644 index f8ac50c..0000000 --- a/asset-work/kq4_093_bottom_of_east_tower/caption_1_1324848873/caption_1_3491097550/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0840af162b7741fd2ea0076ee877fb82ae607585ee8cfb9580a4d2750759448c -size 4215753 diff --git a/asset-work/kq4_093_bottom_of_east_tower/caption_1_1324848873/generated.png b/asset-work/kq4_093_bottom_of_east_tower/caption_1_1324848873_generated.png similarity index 100% rename from asset-work/kq4_093_bottom_of_east_tower/caption_1_1324848873/generated.png rename to asset-work/kq4_093_bottom_of_east_tower/caption_1_1324848873_generated.png diff --git a/asset-work/kq4_093_bottom_of_east_tower/caption_1_1324848873_generated.png.import b/asset-work/kq4_093_bottom_of_east_tower/caption_1_1324848873_generated.png.import new file mode 100644 index 0000000..50469b3 --- /dev/null +++ b/asset-work/kq4_093_bottom_of_east_tower/caption_1_1324848873_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b4cfwtuxt4u0b" +path="res://.godot/imported/caption_1_1324848873_generated.png-8d4279d161b3007a851486e5da9c4576.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_093_bottom_of_east_tower/caption_1_1324848873_generated.png" +dest_files=["res://.godot/imported/caption_1_1324848873_generated.png-8d4279d161b3007a851486e5da9c4576.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_093_bottom_of_east_tower/caption_2_1860738572/caption_2.txt b/asset-work/kq4_093_bottom_of_east_tower/caption_2_1860738572/caption_2.txt deleted file mode 100644 index f22f18b..0000000 --- a/asset-work/kq4_093_bottom_of_east_tower/caption_2_1860738572/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A moody tower interior captured from elevated perspective, showing the dramatic convergence of architectural elements at the bottom of a winding stone staircase. The immediate foreground features weathered flagstone flooring with irregular cracks and pitted surfaces that speak to great age. To the left, a grand arched portal frames brilliant golden light streaming inward, illuminating dust motes and casting sharp angular shadows that stretch across the chamber floor. The right side is dominated by a sweeping curved staircase built from massive stone blocks, ascending in gentle spiral with broad steps that invite upward movement. Subtle variations in the stone work reveal different construction phases, with some blocks showing darker patina than others. The cylindrical walls rise with imposing solidity, their rough texture suggesting ancient masonry techniques. Deep shadows accumulate in the inner curve of the stairwell and behind the archway, creating mysterious voids that hint at hidden depths. The lighting creates a striking chiaroscuro effect, with the warm doorway glow contrasting against the cooler shadowed stonework. Earth tones of buff, gray, and brown dominate, punctuated by the rich golden light and deep charcoal shadows. \ No newline at end of file diff --git a/asset-work/kq4_093_bottom_of_east_tower/caption_2_1860738572/caption_2_1297994307/caption_2.txt b/asset-work/kq4_093_bottom_of_east_tower/caption_2_1860738572/caption_2_1297994307/caption_2.txt deleted file mode 100644 index f22f18b..0000000 --- a/asset-work/kq4_093_bottom_of_east_tower/caption_2_1860738572/caption_2_1297994307/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A moody tower interior captured from elevated perspective, showing the dramatic convergence of architectural elements at the bottom of a winding stone staircase. The immediate foreground features weathered flagstone flooring with irregular cracks and pitted surfaces that speak to great age. To the left, a grand arched portal frames brilliant golden light streaming inward, illuminating dust motes and casting sharp angular shadows that stretch across the chamber floor. The right side is dominated by a sweeping curved staircase built from massive stone blocks, ascending in gentle spiral with broad steps that invite upward movement. Subtle variations in the stone work reveal different construction phases, with some blocks showing darker patina than others. The cylindrical walls rise with imposing solidity, their rough texture suggesting ancient masonry techniques. Deep shadows accumulate in the inner curve of the stairwell and behind the archway, creating mysterious voids that hint at hidden depths. The lighting creates a striking chiaroscuro effect, with the warm doorway glow contrasting against the cooler shadowed stonework. Earth tones of buff, gray, and brown dominate, punctuated by the rich golden light and deep charcoal shadows. \ No newline at end of file diff --git a/asset-work/kq4_093_bottom_of_east_tower/caption_2_1860738572/caption_2_1297994307/generated.png b/asset-work/kq4_093_bottom_of_east_tower/caption_2_1860738572/caption_2_1297994307/generated.png deleted file mode 100644 index 94c5710..0000000 --- a/asset-work/kq4_093_bottom_of_east_tower/caption_2_1860738572/caption_2_1297994307/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ebc7c0aeeb286263c552d987c6b3a74410a413e8c5099367e4c304d3ea42cb8c -size 4241558 diff --git a/asset-work/kq4_093_bottom_of_east_tower/caption_2_1860738572/generated.png b/asset-work/kq4_093_bottom_of_east_tower/caption_2_1860738572_generated.png similarity index 100% rename from asset-work/kq4_093_bottom_of_east_tower/caption_2_1860738572/generated.png rename to asset-work/kq4_093_bottom_of_east_tower/caption_2_1860738572_generated.png diff --git a/asset-work/kq4_093_bottom_of_east_tower/caption_2_1860738572_generated.png.import b/asset-work/kq4_093_bottom_of_east_tower/caption_2_1860738572_generated.png.import new file mode 100644 index 0000000..34bb06b --- /dev/null +++ b/asset-work/kq4_093_bottom_of_east_tower/caption_2_1860738572_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://blxg0yjbi5d8w" +path="res://.godot/imported/caption_2_1860738572_generated.png-366dd807994a7ccbbf74bd25c7313d48.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_093_bottom_of_east_tower/caption_2_1860738572_generated.png" +dest_files=["res://.godot/imported/caption_2_1860738572_generated.png-366dd807994a7ccbbf74bd25c7313d48.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_093_bottom_of_east_tower/caption_3_447593634/caption_3.txt b/asset-work/kq4_093_bottom_of_east_tower/caption_3_447593634/caption_3.txt deleted file mode 100644 index c5c217d..0000000 --- a/asset-work/kq4_093_bottom_of_east_tower/caption_3_447593634/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. An atmospheric descent into antiquity, viewed from above at the base of a medieval stone tower. The composition centers on the dramatic interplay between radiant light and brooding shadow. In the left middle ground, a beautifully crafted arched doorway glows with warm honey-colored illumination that spills across the rough stone floor in pools of amber radiance. The foreground reveals textural details of ancient masonry: irregular stone tiles with chipped edges, scattered debris, and the accumulated patina of centuries. To the right, a magnificent curved staircase climbs in stately spiral, its substantial stone steps showing subtle wear patterns and slightly rounded edges from countless passages. The stair wall follows the curve perfectly, constructed of large rectangular blocks with deeply shadowed mortar joints creating strong linear patterns. Above, the stairwell fades into mysterious darkness as it ascends beyond view. The cylindrical tower walls enclose the space with fortress-like solidity. Light gradations shift dramatically from the bright threshold through intermediate grays to profound shadow in the recesses. The palette harmonizes warm golden tones, cool blue-grays, and rich earth colors, creating a timeless sense of medieval grandeur and mystery. \ No newline at end of file diff --git a/asset-work/kq4_093_bottom_of_east_tower/caption_3_447593634/caption_3_60431031/caption_3.txt b/asset-work/kq4_093_bottom_of_east_tower/caption_3_447593634/caption_3_60431031/caption_3.txt deleted file mode 100644 index c5c217d..0000000 --- a/asset-work/kq4_093_bottom_of_east_tower/caption_3_447593634/caption_3_60431031/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. An atmospheric descent into antiquity, viewed from above at the base of a medieval stone tower. The composition centers on the dramatic interplay between radiant light and brooding shadow. In the left middle ground, a beautifully crafted arched doorway glows with warm honey-colored illumination that spills across the rough stone floor in pools of amber radiance. The foreground reveals textural details of ancient masonry: irregular stone tiles with chipped edges, scattered debris, and the accumulated patina of centuries. To the right, a magnificent curved staircase climbs in stately spiral, its substantial stone steps showing subtle wear patterns and slightly rounded edges from countless passages. The stair wall follows the curve perfectly, constructed of large rectangular blocks with deeply shadowed mortar joints creating strong linear patterns. Above, the stairwell fades into mysterious darkness as it ascends beyond view. The cylindrical tower walls enclose the space with fortress-like solidity. Light gradations shift dramatically from the bright threshold through intermediate grays to profound shadow in the recesses. The palette harmonizes warm golden tones, cool blue-grays, and rich earth colors, creating a timeless sense of medieval grandeur and mystery. \ No newline at end of file diff --git a/asset-work/kq4_093_bottom_of_east_tower/caption_3_447593634/caption_3_60431031/generated.png b/asset-work/kq4_093_bottom_of_east_tower/caption_3_447593634/caption_3_60431031/generated.png deleted file mode 100644 index c4f8bf3..0000000 --- a/asset-work/kq4_093_bottom_of_east_tower/caption_3_447593634/caption_3_60431031/generated.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6f877c6647d081bb8c20aa92b6771d1fa0a7068a17d740f380c77bdb3cd430fd -size 4031393 diff --git a/asset-work/kq4_093_bottom_of_east_tower/caption_3_447593634/generated.png b/asset-work/kq4_093_bottom_of_east_tower/caption_3_447593634_generated.png similarity index 100% rename from asset-work/kq4_093_bottom_of_east_tower/caption_3_447593634/generated.png rename to asset-work/kq4_093_bottom_of_east_tower/caption_3_447593634_generated.png diff --git a/asset-work/kq4_093_bottom_of_east_tower/caption_3_447593634_generated.png.import b/asset-work/kq4_093_bottom_of_east_tower/caption_3_447593634_generated.png.import new file mode 100644 index 0000000..2f68d3a --- /dev/null +++ b/asset-work/kq4_093_bottom_of_east_tower/caption_3_447593634_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ddhfmlcicksws" +path="res://.godot/imported/caption_3_447593634_generated.png-b2359d6235e9cac2a3a4bbebdc97fd8b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_093_bottom_of_east_tower/caption_3_447593634_generated.png" +dest_files=["res://.godot/imported/caption_3_447593634_generated.png-b2359d6235e9cac2a3a4bbebdc97fd8b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_094_unicorn_stable/caption_1_3512789400/generated.png b/asset-work/kq4_094_unicorn_stable/caption_1_3512789400_generated.png similarity index 100% rename from asset-work/kq4_094_unicorn_stable/caption_1_3512789400/generated.png rename to asset-work/kq4_094_unicorn_stable/caption_1_3512789400_generated.png diff --git a/asset-work/kq4_094_unicorn_stable/caption_1_3512789400_generated.png.import b/asset-work/kq4_094_unicorn_stable/caption_1_3512789400_generated.png.import new file mode 100644 index 0000000..f908f29 --- /dev/null +++ b/asset-work/kq4_094_unicorn_stable/caption_1_3512789400_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://u6c6674pdans" +path="res://.godot/imported/caption_1_3512789400_generated.png-1d864d09ab4b5418bf29d09ba7041819.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_094_unicorn_stable/caption_1_3512789400_generated.png" +dest_files=["res://.godot/imported/caption_1_3512789400_generated.png-1d864d09ab4b5418bf29d09ba7041819.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_094_unicorn_stable/caption_1_677298992/generated.png b/asset-work/kq4_094_unicorn_stable/caption_1_677298992_generated.png similarity index 100% rename from asset-work/kq4_094_unicorn_stable/caption_1_677298992/generated.png rename to asset-work/kq4_094_unicorn_stable/caption_1_677298992_generated.png diff --git a/asset-work/kq4_094_unicorn_stable/caption_1_677298992_generated.png.import b/asset-work/kq4_094_unicorn_stable/caption_1_677298992_generated.png.import new file mode 100644 index 0000000..463d746 --- /dev/null +++ b/asset-work/kq4_094_unicorn_stable/caption_1_677298992_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bamtc6gigq551" +path="res://.godot/imported/caption_1_677298992_generated.png-466661599d11f8a0fe47deb2e8852f01.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_094_unicorn_stable/caption_1_677298992_generated.png" +dest_files=["res://.godot/imported/caption_1_677298992_generated.png-466661599d11f8a0fe47deb2e8852f01.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_094_unicorn_stable/caption_2_3043231564/generated.png b/asset-work/kq4_094_unicorn_stable/caption_2_3043231564_generated.png similarity index 100% rename from asset-work/kq4_094_unicorn_stable/caption_2_3043231564/generated.png rename to asset-work/kq4_094_unicorn_stable/caption_2_3043231564_generated.png diff --git a/asset-work/kq4_094_unicorn_stable/caption_2_3043231564_generated.png.import b/asset-work/kq4_094_unicorn_stable/caption_2_3043231564_generated.png.import new file mode 100644 index 0000000..fb40afe --- /dev/null +++ b/asset-work/kq4_094_unicorn_stable/caption_2_3043231564_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d33jned4vw6h" +path="res://.godot/imported/caption_2_3043231564_generated.png-cc87e82b732359974637c6c51538071b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_094_unicorn_stable/caption_2_3043231564_generated.png" +dest_files=["res://.godot/imported/caption_2_3043231564_generated.png-cc87e82b732359974637c6c51538071b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_094_unicorn_stable/caption_2_3368248951/generated.png b/asset-work/kq4_094_unicorn_stable/caption_2_3368248951_generated.png similarity index 100% rename from asset-work/kq4_094_unicorn_stable/caption_2_3368248951/generated.png rename to asset-work/kq4_094_unicorn_stable/caption_2_3368248951_generated.png diff --git a/asset-work/kq4_094_unicorn_stable/caption_2_3368248951_generated.png.import b/asset-work/kq4_094_unicorn_stable/caption_2_3368248951_generated.png.import new file mode 100644 index 0000000..87f57f8 --- /dev/null +++ b/asset-work/kq4_094_unicorn_stable/caption_2_3368248951_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://csjr2mrgl64bn" +path="res://.godot/imported/caption_2_3368248951_generated.png-f228dcea2d3847c46095004991bf5d3a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_094_unicorn_stable/caption_2_3368248951_generated.png" +dest_files=["res://.godot/imported/caption_2_3368248951_generated.png-f228dcea2d3847c46095004991bf5d3a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_094_unicorn_stable/caption_3_1602933216/generated.png b/asset-work/kq4_094_unicorn_stable/caption_3_1602933216_generated.png similarity index 100% rename from asset-work/kq4_094_unicorn_stable/caption_3_1602933216/generated.png rename to asset-work/kq4_094_unicorn_stable/caption_3_1602933216_generated.png diff --git a/asset-work/kq4_094_unicorn_stable/caption_3_1602933216_generated.png.import b/asset-work/kq4_094_unicorn_stable/caption_3_1602933216_generated.png.import new file mode 100644 index 0000000..62b8698 --- /dev/null +++ b/asset-work/kq4_094_unicorn_stable/caption_3_1602933216_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6ol31ggpxi33" +path="res://.godot/imported/caption_3_1602933216_generated.png-bb0295529b8388ec973f8306c8cb990e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_094_unicorn_stable/caption_3_1602933216_generated.png" +dest_files=["res://.godot/imported/caption_3_1602933216_generated.png-bb0295529b8388ec973f8306c8cb990e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_094_unicorn_stable/caption_3_4280018087/generated.png b/asset-work/kq4_094_unicorn_stable/caption_3_4280018087_generated.png similarity index 100% rename from asset-work/kq4_094_unicorn_stable/caption_3_4280018087/generated.png rename to asset-work/kq4_094_unicorn_stable/caption_3_4280018087_generated.png diff --git a/asset-work/kq4_094_unicorn_stable/caption_3_4280018087_generated.png.import b/asset-work/kq4_094_unicorn_stable/caption_3_4280018087_generated.png.import new file mode 100644 index 0000000..fc205f6 --- /dev/null +++ b/asset-work/kq4_094_unicorn_stable/caption_3_4280018087_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dy87ytpcsorqw" +path="res://.godot/imported/caption_3_4280018087_generated.png-4ec5f2bafbf1022d6eb3cacac4c6c7df.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_094_unicorn_stable/caption_3_4280018087_generated.png" +dest_files=["res://.godot/imported/caption_3_4280018087_generated.png-4ec5f2bafbf1022d6eb3cacac4c6c7df.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_095_fishermans_pier/caption_1_334686341/caption_1.txt b/asset-work/kq4_095_fishermans_pier/caption_1_334686341/caption_1.txt deleted file mode 100644 index fc087ce..0000000 --- a/asset-work/kq4_095_fishermans_pier/caption_1_334686341/caption_1.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A weathered wooden pier extends from the right edge into a vast expanse of deep cerulean water, viewed from a dramatic high-angle perspective. The foreground reveals textured wooden planks in weathered gray and honey tones, their surfaces catching highlights and showing the grain and wear of aged timber. Several stout wooden barrels rest upon the pier, their curved forms casting soft shadows across the planks. The middle ground stretches outward as the pier continues over crystalline waters that transition from turquoise near the structure to deeper indigo and midnight blue toward the horizon. Gentle ripples catch reflected light across the water's surface. The background reveals an endless azure sky dotted with soft cumulus clouds rendered in delicate whites and pale grays. The composition balances the man-made geometry of the pier against the organic fluidity of the surrounding sea, bathed in bright midday light that creates crisp shadows and emphasizes the textural contrast between rough-hewn wood and smooth water. diff --git a/asset-work/kq4_095_fishermans_pier/caption_1_334686341/generated.png b/asset-work/kq4_095_fishermans_pier/caption_1_334686341_generated.png similarity index 100% rename from asset-work/kq4_095_fishermans_pier/caption_1_334686341/generated.png rename to asset-work/kq4_095_fishermans_pier/caption_1_334686341_generated.png diff --git a/asset-work/kq4_095_fishermans_pier/caption_1_334686341_generated.png.import b/asset-work/kq4_095_fishermans_pier/caption_1_334686341_generated.png.import new file mode 100644 index 0000000..532aa6b --- /dev/null +++ b/asset-work/kq4_095_fishermans_pier/caption_1_334686341_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://vumngf7d40hx" +path="res://.godot/imported/caption_1_334686341_generated.png-00dcf478b85141e6da5a780df8109c96.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_095_fishermans_pier/caption_1_334686341_generated.png" +dest_files=["res://.godot/imported/caption_1_334686341_generated.png-00dcf478b85141e6da5a780df8109c96.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_095_fishermans_pier/caption_2_662898197/caption_2.txt b/asset-work/kq4_095_fishermans_pier/caption_2_662898197/caption_2.txt deleted file mode 100644 index 383293d..0000000 --- a/asset-work/kq4_095_fishermans_pier/caption_2_662898197/caption_2.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. A rustic fishing pier juts into an infinite sapphire sea, captured from an elevated bird's-eye vantage that reveals the full sweep of the weathered structure. In the immediate foreground, thick wooden beams and planks display the patina of salt and sun, their surfaces mottled with silvery-gray tones and hints of amber where light strikes the grain. Heavy barrels stand sentinel upon the dock, their cylindrical forms adding rhythmic repetition to the linear perspective of the pier planks. The middle ground dissolves into translucent waters of varying depths, painted in layered strokes of aquamarine, cobalt, and ultramarine that suggest movement beneath the surface. The pier creates a strong diagonal leading the eye toward distant waters. Background atmospheric perspective softens the horizon where sea meets sky in a seamless gradient of blues. Above, scattered clouds drift lazily across an azure dome, their edges catching golden light. The palette balances the warm earth tones of aged wood against the cool depths of the maritime environment, evoking a sense of solitude and timeless coastal stillness. diff --git a/asset-work/kq4_095_fishermans_pier/caption_2_662898197/generated.png b/asset-work/kq4_095_fishermans_pier/caption_2_662898197_generated.png similarity index 100% rename from asset-work/kq4_095_fishermans_pier/caption_2_662898197/generated.png rename to asset-work/kq4_095_fishermans_pier/caption_2_662898197_generated.png diff --git a/asset-work/kq4_095_fishermans_pier/caption_2_662898197_generated.png.import b/asset-work/kq4_095_fishermans_pier/caption_2_662898197_generated.png.import new file mode 100644 index 0000000..55c5a9b --- /dev/null +++ b/asset-work/kq4_095_fishermans_pier/caption_2_662898197_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cmn7aetkv3xts" +path="res://.godot/imported/caption_2_662898197_generated.png-2bd769c17b5fe769a59b4574b4553385.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_095_fishermans_pier/caption_2_662898197_generated.png" +dest_files=["res://.godot/imported/caption_2_662898197_generated.png-2bd769c17b5fe769a59b4574b4553385.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/kq4_095_fishermans_pier/caption_3_3321304207/caption_3.txt b/asset-work/kq4_095_fishermans_pier/caption_3_3321304207/caption_3.txt deleted file mode 100644 index c658302..0000000 --- a/asset-work/kq4_095_fishermans_pier/caption_3_3321304207/caption_3.txt +++ /dev/null @@ -1 +0,0 @@ -kq5hoyos, wtp style, sylvain. oil painting style. An aged maritime pier stretches across a boundless ocean vista from an overhead perspective that emphasizes the isolation of the structure amid endless waters. Foreground details reveal rough-hewn wooden decking with visible gaps between planks, the timber bleached to silvery-gray by sun and salt spray, accented by darker shadows pooling in the recesses. Sturdy barrels with iron banding rest upon the pier, their weathered surfaces suggesting years of exposure to coastal elements. The middle ground opens to reveal the pier extending over deep marine waters that shimmer with reflected sky light, displaying variations from teal near the structure to profound navy blue at the edges of vision. Subtle wave patterns create rhythmic texture across the water's surface. In the background, the horizon line separates the intense blue of the sea from a luminous sky filled with soft, billowing clouds painted in pure whites and subtle cream tones. The lighting suggests late afternoon, with long shadows cast by the barrels and a warm golden quality permeating the scene, creating dramatic contrast between the humble man-made pier and the vast natural expanse surrounding it. diff --git a/asset-work/kq4_095_fishermans_pier/caption_3_3321304207/generated.png b/asset-work/kq4_095_fishermans_pier/caption_3_3321304207_generated.png similarity index 100% rename from asset-work/kq4_095_fishermans_pier/caption_3_3321304207/generated.png rename to asset-work/kq4_095_fishermans_pier/caption_3_3321304207_generated.png diff --git a/asset-work/kq4_095_fishermans_pier/caption_3_3321304207_generated.png.import b/asset-work/kq4_095_fishermans_pier/caption_3_3321304207_generated.png.import new file mode 100644 index 0000000..6fb994a --- /dev/null +++ b/asset-work/kq4_095_fishermans_pier/caption_3_3321304207_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://chqvsj6dgpbcf" +path="res://.godot/imported/caption_3_3321304207_generated.png-06c9212e1172406a31d97fa378a3208b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://asset-work/kq4_095_fishermans_pier/caption_3_3321304207_generated.png" +dest_files=["res://.godot/imported/caption_3_3321304207_generated.png-06c9212e1172406a31d97fa378a3208b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/asset-work/reorganize_images.sh b/asset-work/reorganize_images.sh new file mode 100755 index 0000000..7bf6dfb --- /dev/null +++ b/asset-work/reorganize_images.sh @@ -0,0 +1,40 @@ +#!/bin/bash +# reorganize_images.sh - Move generated images from 2 levels down to 1 level down +# Usage: ./reorganize_images.sh [root_directory] +# Default root directory is current directory (.) + +ROOT_DIR="${1:-.}" + +echo "Reorganizing images in: $ROOT_DIR" +echo "" + +# Find all *_generated.png files that are exactly 2 levels deep +# Pattern: root/level1/level2/*_generated.png -> root/level1/*_generated.png + +find "$ROOT_DIR" -mindepth 3 -maxdepth 3 -name "generated.png" -type f | while read -r filepath; do + # Get the directory structure + # filepath = root/level1/level2/filename.png + # We want to move to: root/level1/filename.png + + dir=$(dirname "$filepath") + filename=$(basename "$filepath") + + # Get parent directory (1 level up from current location) + # dir = root/level1/level2 + # parent = root/level1 + parent=$(dirname "$dir") + + filename="${dir}_${filename}" + target="$parent/$filename" + + # Check if target already exists + if [ -f "$target" ]; then + echo "SKIP: $filepath -> $target (already exists)" + else + echo "MOVE: $filepath -> $target" + mv "$filepath" "$filename" + fi +done + +echo "" +echo "Reorganization complete!" diff --git a/asset-work/kq4_001_beach/caption_1_3266141658/generated.png b/scenes/kq4_001_beach/caption_1_3266141658_generated.png similarity index 100% rename from asset-work/kq4_001_beach/caption_1_3266141658/generated.png rename to scenes/kq4_001_beach/caption_1_3266141658_generated.png diff --git a/scenes/kq4_001_beach/caption_1_3266141658_generated.png.import b/scenes/kq4_001_beach/caption_1_3266141658_generated.png.import new file mode 100644 index 0000000..0c9e635 --- /dev/null +++ b/scenes/kq4_001_beach/caption_1_3266141658_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dy2gfoemajb8m" +path="res://.godot/imported/caption_1_3266141658_generated.png-f993ef1f1419815c7a4a15098d00f2b7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://scenes/kq4_001_beach/caption_1_3266141658_generated.png" +dest_files=["res://.godot/imported/caption_1_3266141658_generated.png-f993ef1f1419815c7a4a15098d00f2b7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/scenes/kq4_001_beach/kq4_001_beach.tscn b/scenes/kq4_001_beach/kq4_001_beach.tscn index 9e075c7..19d1ac3 100644 --- a/scenes/kq4_001_beach/kq4_001_beach.tscn +++ b/scenes/kq4_001_beach/kq4_001_beach.tscn @@ -1,7 +1,7 @@ -[gd_scene format=3 uid="uid://1rwfkejhz94hp"] +[gd_scene format=3 uid="uid://dlg6010ym2uw4"] -[ext_resource type="Script" uid="uid://3cwoihar636od" path="res://scenes/kq4_001_beach/kq4_001_beach.gd" id="1_abc"] -[ext_resource type="Texture2D" uid="uid://3bbln6eghny8u" path="res://scenes/kq4_001_beach/pic_001_visual.png" id="2_abc"] +[ext_resource type="Script" uid="uid://ba2ld2t08o2d0" path="res://scenes/kq4_001_beach/kq4_001_beach.gd" id="1_abc"] +[ext_resource type="Texture2D" uid="uid://dy2gfoemajb8m" path="res://scenes/kq4_001_beach/caption_1_3266141658_generated.png" id="2_lop0a"] [ext_resource type="Script" uid="uid://xmphq3i0wbg3" path="res://ScalePoint_.gd" id="3_abc"] [ext_resource type="PackedScene" uid="uid://c4vc1wx7k6cw" path="res://TransitionPiece.tscn" id="4_abc"] @@ -15,8 +15,8 @@ y_sort_enabled = true script = ExtResource("1_abc") [node name="bg" type="Sprite2D" parent="." unique_id=874052749] -scale = Vector2(6, 6) -texture = ExtResource("2_abc") +scale = Vector2(0.78, 0.78) +texture = ExtResource("2_lop0a") centered = false [node name="StartScalePoint" type="Node2D" parent="." unique_id=1640687858] @@ -88,11 +88,10 @@ position = Vector2(506, 555) [node name="exit" parent="kq4_031_open_ocean" index="1"] position = Vector2(-64, 534) -[connection signal="interacted" from="kq4_031_open_ocean" to="." method="_on_open_ocean_interacted"] - [connection signal="interacted" from="kq4_025_beach_at_river_delta" to="." method="_on_beach_at_river_delta_interacted"] [connection signal="interacted" from="kq4_002_meadow" to="." method="_on_meadow_interacted"] [connection signal="interacted" from="kq4_007_fishermans_shack" to="." method="_on_fishermans_shack_interacted"] +[connection signal="interacted" from="kq4_031_open_ocean" to="." method="_on_open_ocean_interacted"] [editable path="kq4_025_beach_at_river_delta"] [editable path="kq4_002_meadow"] diff --git a/asset-work/kq4_002_meadow/caption_3_1877206259/generated.png b/scenes/kq4_002_meadow/caption_3_1877206259_generated.png similarity index 100% rename from asset-work/kq4_002_meadow/caption_3_1877206259/generated.png rename to scenes/kq4_002_meadow/caption_3_1877206259_generated.png diff --git a/scenes/kq4_002_meadow/caption_3_1877206259_generated.png.import b/scenes/kq4_002_meadow/caption_3_1877206259_generated.png.import new file mode 100644 index 0000000..d0a8f26 --- /dev/null +++ b/scenes/kq4_002_meadow/caption_3_1877206259_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c33e2jclpbmwm" +path="res://.godot/imported/caption_3_1877206259_generated.png-69b4132367042cbb0c706ebdd0f609ff.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://scenes/kq4_002_meadow/caption_3_1877206259_generated.png" +dest_files=["res://.godot/imported/caption_3_1877206259_generated.png-69b4132367042cbb0c706ebdd0f609ff.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/scenes/kq4_002_meadow/kq4_002_meadow.tscn b/scenes/kq4_002_meadow/kq4_002_meadow.tscn index faf3504..cea1f0a 100644 --- a/scenes/kq4_002_meadow/kq4_002_meadow.tscn +++ b/scenes/kq4_002_meadow/kq4_002_meadow.tscn @@ -1,7 +1,7 @@ -[gd_scene format=3 uid="uid://1489d4oh9twtu"] +[gd_scene format=3 uid="uid://dxs1tr5yvmoba"] -[ext_resource type="Script" uid="uid://1a1agat78ivte" path="res://scenes/kq4_002_meadow/kq4_002_meadow.gd" id="1_abc"] -[ext_resource type="Texture2D" uid="uid://260nf4bqzc7y9" path="res://scenes/kq4_002_meadow/pic_002_visual.png" id="2_abc"] +[ext_resource type="Script" uid="uid://c3k1vxcpubnas" path="res://scenes/kq4_002_meadow/kq4_002_meadow.gd" id="1_abc"] +[ext_resource type="Texture2D" uid="uid://c33e2jclpbmwm" path="res://scenes/kq4_002_meadow/caption_3_1877206259_generated.png" id="2_ko8f1"] [ext_resource type="Script" uid="uid://xmphq3i0wbg3" path="res://ScalePoint_.gd" id="3_abc"] [ext_resource type="PackedScene" uid="uid://c4vc1wx7k6cw" path="res://TransitionPiece.tscn" id="4_abc"] @@ -15,8 +15,8 @@ y_sort_enabled = true script = ExtResource("1_abc") [node name="bg" type="Sprite2D" parent="." unique_id=874052749] -scale = Vector2(6, 6) -texture = ExtResource("2_abc") +scale = Vector2(0.78, 0.78) +texture = ExtResource("2_ko8f1") centered = false [node name="StartScalePoint" type="Node2D" parent="." unique_id=1640687858] @@ -50,8 +50,6 @@ position = Vector2(133, 643) [node name="exit" parent="kq4_026_river_meadow" index="1"] position = Vector2(174, 519) -[connection signal="interacted" from="kq4_026_river_meadow" to="." method="_on_river_meadow_interacted"] - [node name="kq4_003_fountain_pool" parent="." unique_id=1916756563 instance=ExtResource("4_abc")] position = Vector2(1766, 74) polygon = PackedVector2Array(-108, 454, -87, 649, 376, 658, 348, 381) @@ -90,10 +88,10 @@ position = Vector2(506, 555) [node name="exit" parent="kq4_001_beach" index="1"] position = Vector2(-64, 534) -[connection signal="interacted" from="kq4_001_beach" to="." method="_on_beach_interacted"] - +[connection signal="interacted" from="kq4_026_river_meadow" to="." method="_on_river_meadow_interacted"] [connection signal="interacted" from="kq4_003_fountain_pool" to="." method="_on_fountain_pool_interacted"] [connection signal="interacted" from="kq4_008_back_of_fishermans_shack" to="." method="_on_back_of_fishermans_shack_interacted"] +[connection signal="interacted" from="kq4_001_beach" to="." method="_on_beach_interacted"] [editable path="kq4_026_river_meadow"] [editable path="kq4_003_fountain_pool"] diff --git a/asset-work/kq4_003_fountain_pool/caption_1_2884713022/generated.png b/scenes/kq4_003_fountain_pool/caption_1_2884713022_generated.png similarity index 100% rename from asset-work/kq4_003_fountain_pool/caption_1_2884713022/generated.png rename to scenes/kq4_003_fountain_pool/caption_1_2884713022_generated.png diff --git a/scenes/kq4_003_fountain_pool/caption_1_2884713022_generated.png.import b/scenes/kq4_003_fountain_pool/caption_1_2884713022_generated.png.import new file mode 100644 index 0000000..24c9046 --- /dev/null +++ b/scenes/kq4_003_fountain_pool/caption_1_2884713022_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://nb7ybebcy6ok" +path="res://.godot/imported/caption_1_2884713022_generated.png-4c2f5060b451aafabf6c0fc8e441a446.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://scenes/kq4_003_fountain_pool/caption_1_2884713022_generated.png" +dest_files=["res://.godot/imported/caption_1_2884713022_generated.png-4c2f5060b451aafabf6c0fc8e441a446.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/scenes/kq4_003_fountain_pool/kq4_003_fountain_pool.tscn b/scenes/kq4_003_fountain_pool/kq4_003_fountain_pool.tscn index 535e4f1..1dfd9c5 100644 --- a/scenes/kq4_003_fountain_pool/kq4_003_fountain_pool.tscn +++ b/scenes/kq4_003_fountain_pool/kq4_003_fountain_pool.tscn @@ -1,7 +1,7 @@ [gd_scene format=3 uid="uid://dyk4rcqsk3aed"] [ext_resource type="Script" uid="uid://2mmn5y4b67lg" path="res://scenes/kq4_003_fountain_pool/kq4_003_fountain_pool.gd" id="1_heq0u"] -[ext_resource type="Texture2D" uid="uid://0ak807tg6jso" path="res://scenes/kq4_003_fountain_pool/ComfyUI_10001_.png" id="2_heq0u"] +[ext_resource type="Texture2D" uid="uid://nb7ybebcy6ok" path="res://scenes/kq4_003_fountain_pool/caption_1_2884713022_generated.png" id="2_ev2w4"] [ext_resource type="Script" uid="uid://xmphq3i0wbg3" path="res://ScalePoint_.gd" id="3_1g2ot"] [ext_resource type="PackedScene" uid="uid://c4vc1wx7k6cw" path="res://TransitionPiece.tscn" id="4_6r684"] [ext_resource type="Texture2D" uid="uid://bmvcn5pl2qble" path="res://scenes/kq4_003_fountain_pool/fg.png" id="5_cu368"] @@ -16,8 +16,8 @@ y_sort_enabled = true script = ExtResource("1_heq0u") [node name="bg" type="Sprite2D" parent="." unique_id=56586945] -scale = Vector2(0.470459, 0.467949) -texture = ExtResource("2_heq0u") +scale = Vector2(0.78, 0.777) +texture = ExtResource("2_ev2w4") centered = false [node name="StartScalePoint" type="Node2D" parent="." unique_id=248986742] diff --git a/asset-work/kq4_004_ogres_cottage/caption_1_454377357/generated.png b/scenes/kq4_004_ogres_cottage/caption_1_454377357_generated.png similarity index 100% rename from asset-work/kq4_004_ogres_cottage/caption_1_454377357/generated.png rename to scenes/kq4_004_ogres_cottage/caption_1_454377357_generated.png diff --git a/scenes/kq4_004_ogres_cottage/caption_1_454377357_generated.png.import b/scenes/kq4_004_ogres_cottage/caption_1_454377357_generated.png.import new file mode 100644 index 0000000..ec79473 --- /dev/null +++ b/scenes/kq4_004_ogres_cottage/caption_1_454377357_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b1yeiwh8uqii2" +path="res://.godot/imported/caption_1_454377357_generated.png-494f897d599e421dca23e2053e325aa7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://scenes/kq4_004_ogres_cottage/caption_1_454377357_generated.png" +dest_files=["res://.godot/imported/caption_1_454377357_generated.png-494f897d599e421dca23e2053e325aa7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/scenes/kq4_004_ogres_cottage/kq4_004_ogres_cottage.tscn b/scenes/kq4_004_ogres_cottage/kq4_004_ogres_cottage.tscn index 8d767da..dd5a878 100644 --- a/scenes/kq4_004_ogres_cottage/kq4_004_ogres_cottage.tscn +++ b/scenes/kq4_004_ogres_cottage/kq4_004_ogres_cottage.tscn @@ -1,7 +1,7 @@ -[gd_scene load_steps=6 format=3 uid="uid://1nxmm3b1kcdm1"] +[gd_scene format=3 uid="uid://dhie3qsi5333g"] [ext_resource type="Script" uid="uid://bo6vtorh56ik4" path="res://scenes/kq4_004_ogres_cottage/kq4_004_ogres_cottage.gd" id="1_rgthv"] -[ext_resource type="Texture2D" uid="uid://br1qpwa1hpcr7" path="res://scenes/kq4_004_ogres_cottage/ComfyUI_09922_.png" id="2_rgthv"] +[ext_resource type="Texture2D" uid="uid://b1yeiwh8uqii2" path="res://scenes/kq4_004_ogres_cottage/caption_1_454377357_generated.png" id="2_u8g8b"] [ext_resource type="Script" uid="uid://xmphq3i0wbg3" path="res://ScalePoint_.gd" id="3_kvdqi"] [ext_resource type="PackedScene" uid="uid://c4vc1wx7k6cw" path="res://TransitionPiece.tscn" id="4_67nph"] @@ -10,34 +10,34 @@ vertices = PackedVector2Array(325.656, 570.578, 582.328, 580.656, 525.289, 597.9 polygons = Array[PackedInt32Array]([PackedInt32Array(0, 1, 2), PackedInt32Array(0, 2, 3), PackedInt32Array(4, 0, 3), PackedInt32Array(4, 3, 5), PackedInt32Array(6, 7, 8, 5), PackedInt32Array(9, 10, 11, 12), PackedInt32Array(13, 9, 12, 4), PackedInt32Array(13, 4, 5, 8), PackedInt32Array(13, 8, 14), PackedInt32Array(13, 14, 15)]) outlines = Array[PackedVector2Array]([PackedVector2Array(0, 552, 133, 874, 431, 879, 311, 560, 642, 573, 530, 607, 473, 652, 918, 862, 1156, 681, 1309, 697, 1219, 899, 1663, 947, 2000, 968, 2000, 1171, -68, 1156, -87, 552)]) -[node name="background" type="Node2D"] +[node name="background" type="Node2D" unique_id=22152170] y_sort_enabled = true script = ExtResource("1_rgthv") -[node name="bg" type="Sprite2D" parent="."] -scale = Vector2(0.470459, 0.467949) -texture = ExtResource("2_rgthv") +[node name="bg" type="Sprite2D" parent="." unique_id=1017225974] +scale = Vector2(0.783, 0.78) +texture = ExtResource("2_u8g8b") centered = false -[node name="StartScalePoint" type="Node2D" parent="."] +[node name="StartScalePoint" type="Node2D" parent="." unique_id=1734418576] position = Vector2(498, 504) script = ExtResource("3_kvdqi") target_scale = 0.3 -[node name="EndScalePoint" type="Node2D" parent="."] +[node name="EndScalePoint" type="Node2D" parent="." unique_id=299903225] position = Vector2(1408, 1097) scale = Vector2(0.44, 0.44) script = ExtResource("3_kvdqi") target_scale = 0.45 -[node name="pathfind" type="NavigationRegion2D" parent="."] +[node name="pathfind" type="NavigationRegion2D" parent="." unique_id=192507891] position = Vector2(-1, 0) navigation_polygon = SubResource("NavigationPolygon_furs3") -[node name="default-starting-point" type="Node2D" parent="."] +[node name="default-starting-point" type="Node2D" parent="." unique_id=1306772609] position = Vector2(194, 819) -[node name="kq4_028_mine_entrance" parent="." instance=ExtResource("4_67nph")] +[node name="kq4_028_mine_entrance" parent="." unique_id=2082216196 instance=ExtResource("4_67nph")] position = Vector2(910, -213) polygon = PackedVector2Array(-108, 454, -87, 649, 376, 658, 348, 381) appear_at_node = "kq4_004_ogres_cottage" @@ -50,7 +50,7 @@ position = Vector2(133, 643) [node name="exit" parent="kq4_028_mine_entrance" index="1"] position = Vector2(174, 519) -[node name="kq4_003_fountain_pool" parent="." instance=ExtResource("4_67nph")] +[node name="kq4_003_fountain_pool" parent="." unique_id=1822776084 instance=ExtResource("4_67nph")] position = Vector2(5, 888) color = Color(1, 1, 1, 1) polygon = PackedVector2Array(-85, -86, -65, 128, 264, 167, 260, -78) @@ -64,11 +64,7 @@ position = Vector2(184, 70) [node name="exit" parent="kq4_003_fountain_pool" index="1"] position = Vector2(-61, 74) -[connection signal="interacted" from="kq4_028_mine_entrance" to="." method="_on_mine_entrance_interacted"] - -[connection signal="interacted" from="kq4_003_fountain_pool" to="." method="_on_pool_interacted"] - -[node name="kq4_010_forest_path" parent="." instance=ExtResource("4_67nph")] +[node name="kq4_010_forest_path" parent="." unique_id=1656343376 instance=ExtResource("4_67nph")] position = Vector2(910, 542) color = Color(1, 1, 1, 1) polygon = PackedVector2Array(-108, 454, -87, 649, 376, 658, 348, 381) @@ -82,7 +78,7 @@ position = Vector2(118, 514) [node name="exit" parent="kq4_010_forest_path" index="1"] position = Vector2(151, 615) -[node name="kq4_005_forest_grove" parent="." instance=ExtResource("4_67nph")] +[node name="kq4_005_forest_grove" parent="." unique_id=1757385603 instance=ExtResource("4_67nph")] position = Vector2(1766, 74) polygon = PackedVector2Array(-108, 454, -87, 649, 376, 658, 348, 381) appear_at_node = "kq4_004_ogres_cottage" @@ -95,8 +91,9 @@ position = Vector2(24, 565) [node name="exit" parent="kq4_005_forest_grove" index="1"] position = Vector2(293, 554) +[connection signal="interacted" from="kq4_028_mine_entrance" to="." method="_on_mine_entrance_interacted"] +[connection signal="interacted" from="kq4_003_fountain_pool" to="." method="_on_pool_interacted"] [connection signal="interacted" from="kq4_010_forest_path" to="." method="_on_forest_path_interacted"] - [connection signal="interacted" from="kq4_005_forest_grove" to="." method="_on_forest_grove_interacted"] [editable path="kq4_028_mine_entrance"] diff --git a/asset-work/kq4_007_fishermans_shack/caption_3_840023845/generated.png b/scenes/kq4_007_fishermans_shack/caption_3_840023845_generated.png similarity index 100% rename from asset-work/kq4_007_fishermans_shack/caption_3_840023845/generated.png rename to scenes/kq4_007_fishermans_shack/caption_3_840023845_generated.png diff --git a/scenes/kq4_007_fishermans_shack/caption_3_840023845_generated.png.import b/scenes/kq4_007_fishermans_shack/caption_3_840023845_generated.png.import new file mode 100644 index 0000000..ea0442b --- /dev/null +++ b/scenes/kq4_007_fishermans_shack/caption_3_840023845_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://djbrg233lxgyy" +path="res://.godot/imported/caption_3_840023845_generated.png-22b50377e1937bdd8b3b47801fcccd06.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://scenes/kq4_007_fishermans_shack/caption_3_840023845_generated.png" +dest_files=["res://.godot/imported/caption_3_840023845_generated.png-22b50377e1937bdd8b3b47801fcccd06.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/scenes/kq4_007_fishermans_shack/kq4_007_fishermans_shack.tscn b/scenes/kq4_007_fishermans_shack/kq4_007_fishermans_shack.tscn index ce35c43..f848e68 100644 --- a/scenes/kq4_007_fishermans_shack/kq4_007_fishermans_shack.tscn +++ b/scenes/kq4_007_fishermans_shack/kq4_007_fishermans_shack.tscn @@ -1,7 +1,7 @@ [gd_scene format=3 uid="uid://yj4t7thmkoct"] -[ext_resource type="Script" uid="uid://2uu84x9n2g1rc" path="res://scenes/kq4_007_fishermans_shack/kq4_007_fishermans_shack.gd" id="1_abc"] -[ext_resource type="Texture2D" uid="uid://2aflqbq19m0ll" path="res://scenes/kq4_007_fishermans_shack/pic_007_visual.png" id="2_abc"] +[ext_resource type="Script" uid="uid://s050ktv31wgy" path="res://scenes/kq4_007_fishermans_shack/kq4_007_fishermans_shack.gd" id="1_abc"] +[ext_resource type="Texture2D" uid="uid://djbrg233lxgyy" path="res://scenes/kq4_007_fishermans_shack/caption_3_840023845_generated.png" id="2_86g5m"] [ext_resource type="Script" uid="uid://xmphq3i0wbg3" path="res://ScalePoint_.gd" id="3_abc"] [ext_resource type="PackedScene" uid="uid://c4vc1wx7k6cw" path="res://TransitionPiece.tscn" id="4_abc"] @@ -15,8 +15,8 @@ y_sort_enabled = true script = ExtResource("1_abc") [node name="bg" type="Sprite2D" parent="." unique_id=874052749] -scale = Vector2(6, 6) -texture = ExtResource("2_abc") +scale = Vector2(0.78, 0.78) +texture = ExtResource("2_86g5m") centered = false [node name="StartScalePoint" type="Node2D" parent="." unique_id=1640687858] @@ -50,8 +50,6 @@ position = Vector2(133, 643) [node name="exit" parent="kq4_001_beach" index="1"] position = Vector2(174, 519) -[connection signal="interacted" from="kq4_001_beach" to="." method="_on_beach_interacted"] - [node name="kq4_008_back_of_fishermans_shack" parent="." unique_id=1916756563 instance=ExtResource("4_abc")] position = Vector2(1766, 74) polygon = PackedVector2Array(-108, 454, -87, 649, 376, 658, 348, 381) @@ -78,8 +76,6 @@ position = Vector2(118, 514) [node name="exit" parent="kq4_013_beach" index="1"] position = Vector2(151, 615) -[connection signal="interacted" from="kq4_013_beach" to="." method="_on_beach_2_interacted"] - [node name="west_exit" parent="." unique_id=1117747814 instance=ExtResource("4_abc")] polygon = PackedVector2Array(-108, 454, -87, 649, 376, 658, 348, 381) label = "West Exit" @@ -90,7 +86,9 @@ position = Vector2(506, 555) [node name="exit" parent="west_exit" index="1"] position = Vector2(-64, 534) +[connection signal="interacted" from="kq4_001_beach" to="." method="_on_beach_interacted"] [connection signal="interacted" from="kq4_008_back_of_fishermans_shack" to="." method="_on_back_of_fishermans_shack_interacted"] +[connection signal="interacted" from="kq4_013_beach" to="." method="_on_beach_2_interacted"] [editable path="kq4_001_beach"] [editable path="kq4_008_back_of_fishermans_shack"] diff --git a/scenes/kq4_009_shady_wooded_area/caption_3_2676608714_generated.png b/scenes/kq4_009_shady_wooded_area/caption_3_2676608714_generated.png new file mode 100644 index 0000000..7022009 --- /dev/null +++ b/scenes/kq4_009_shady_wooded_area/caption_3_2676608714_generated.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1efbe21dc9c43b0350a7bd8ee1dd1db29fa450ed0f0f2e40c7d9d6eecf8fe4a7 +size 4659171 diff --git a/scenes/kq4_009_shady_wooded_area/caption_3_2676608714_generated.png.import b/scenes/kq4_009_shady_wooded_area/caption_3_2676608714_generated.png.import new file mode 100644 index 0000000..0a894b4 --- /dev/null +++ b/scenes/kq4_009_shady_wooded_area/caption_3_2676608714_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bvhh6scahcu61" +path="res://.godot/imported/caption_3_2676608714_generated.png-5b733fa6068eb039172bf6195c4ce3ae.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://scenes/kq4_009_shady_wooded_area/caption_3_2676608714_generated.png" +dest_files=["res://.godot/imported/caption_3_2676608714_generated.png-5b733fa6068eb039172bf6195c4ce3ae.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/scenes/kq4_009_shady_wooded_area/kq4_009_shady_wooded_area.tscn b/scenes/kq4_009_shady_wooded_area/kq4_009_shady_wooded_area.tscn index e4c58d4..1e29467 100644 --- a/scenes/kq4_009_shady_wooded_area/kq4_009_shady_wooded_area.tscn +++ b/scenes/kq4_009_shady_wooded_area/kq4_009_shady_wooded_area.tscn @@ -1,7 +1,7 @@ -[gd_scene format=3 uid="uid://1hkplw2a78b1y"] +[gd_scene format=3 uid="uid://da4h2ljrt02ie"] [ext_resource type="Script" uid="uid://xucvpqmxagp4" path="res://scenes/kq4_009_shady_wooded_area/kq4_009_shady_wooded_area.gd" id="1_abc"] -[ext_resource type="Texture2D" uid="uid://dhw5b2y7e6jm" path="res://scenes/kq4_009_shady_wooded_area/pic_009_visual.png" id="2_abc"] +[ext_resource type="Texture2D" uid="uid://bvhh6scahcu61" path="res://scenes/kq4_009_shady_wooded_area/caption_3_2676608714_generated.png" id="2_gws7f"] [ext_resource type="Script" uid="uid://xmphq3i0wbg3" path="res://ScalePoint_.gd" id="3_abc"] [ext_resource type="PackedScene" uid="uid://c4vc1wx7k6cw" path="res://TransitionPiece.tscn" id="4_abc"] @@ -15,8 +15,8 @@ y_sort_enabled = true script = ExtResource("1_abc") [node name="bg" type="Sprite2D" parent="." unique_id=874052749] -scale = Vector2(6, 6) -texture = ExtResource("2_abc") +scale = Vector2(0.78, 0.78) +texture = ExtResource("2_gws7f") centered = false [node name="StartScalePoint" type="Node2D" parent="." unique_id=1640687858] @@ -76,11 +76,6 @@ position = Vector2(350, 500) [node name="exit" parent="kq4_008_back_of_fishermans_shack" index="1"] position = Vector2(100, 480) -[connection signal="interacted" from="kq4_003_fountain_pool" to="." method="_on_fountain_pool_interacted"] -[connection signal="interacted" from="kq4_010_forest_path" to="." method="_on_forest_path_interacted"] -[connection signal="interacted" from="kq4_015_frog_pond" to="." method="_on_frog_pond_interacted"] -[connection signal="interacted" from="kq4_008_back_of_fishermans_shack" to="." method="_on_back_of_fishermans_shack_interacted"] - [node name="kq4_015_frog_pond" parent="." unique_id=999999992 instance=ExtResource("4_abc")] position = Vector2(910, 542) polygon = PackedVector2Array(-108, 454, -87, 649, 376, 658, 348, 381) @@ -94,7 +89,12 @@ position = Vector2(133, 643) [node name="exit" parent="kq4_015_frog_pond" index="1"] position = Vector2(174, 519) -[editable path="kq4_008_back_of_fishermans_shack"] +[connection signal="interacted" from="kq4_003_fountain_pool" to="." method="_on_fountain_pool_interacted"] +[connection signal="interacted" from="kq4_010_forest_path" to="." method="_on_forest_path_interacted"] +[connection signal="interacted" from="kq4_008_back_of_fishermans_shack" to="." method="_on_back_of_fishermans_shack_interacted"] +[connection signal="interacted" from="kq4_015_frog_pond" to="." method="_on_frog_pond_interacted"] + [editable path="kq4_003_fountain_pool"] [editable path="kq4_010_forest_path"] +[editable path="kq4_008_back_of_fishermans_shack"] [editable path="kq4_015_frog_pond"] diff --git a/scenes/kq4_011_enchanted_grove/caption_2_496392820_generated.png b/scenes/kq4_011_enchanted_grove/caption_2_496392820_generated.png new file mode 100644 index 0000000..0fac1e7 --- /dev/null +++ b/scenes/kq4_011_enchanted_grove/caption_2_496392820_generated.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9bdea589045d54c22aeaaa4c4e7ef28a0521a961e4de152c8d11b0962bde65b +size 4520778 diff --git a/scenes/kq4_011_enchanted_grove/caption_2_496392820_generated.png.import b/scenes/kq4_011_enchanted_grove/caption_2_496392820_generated.png.import new file mode 100644 index 0000000..7092d91 --- /dev/null +++ b/scenes/kq4_011_enchanted_grove/caption_2_496392820_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dk7r6la0vktg5" +path="res://.godot/imported/caption_2_496392820_generated.png-150ec6904d162a35b8d1ea1e7595006c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://scenes/kq4_011_enchanted_grove/caption_2_496392820_generated.png" +dest_files=["res://.godot/imported/caption_2_496392820_generated.png-150ec6904d162a35b8d1ea1e7595006c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/scenes/kq4_011_enchanted_grove/kq4_011_enchanted_grove.tscn b/scenes/kq4_011_enchanted_grove/kq4_011_enchanted_grove.tscn index f144318..c7a5ad7 100644 --- a/scenes/kq4_011_enchanted_grove/kq4_011_enchanted_grove.tscn +++ b/scenes/kq4_011_enchanted_grove/kq4_011_enchanted_grove.tscn @@ -1,7 +1,7 @@ [gd_scene format=3 uid="uid://ujxktwdn8l8r"] [ext_resource type="Script" uid="uid://bulhkgdox6uan" path="res://scenes/kq4_011_enchanted_grove/kq4_011_enchanted_grove.gd" id="1_abc"] -[ext_resource type="Texture2D" uid="uid://b7r13k8iqy8kn" path="res://kq4-sierra-decompile/rooms/kq4-011-enchanted-grove/pic_011_visual.png" id="2_4yweh"] +[ext_resource type="Texture2D" uid="uid://dk7r6la0vktg5" path="res://scenes/kq4_011_enchanted_grove/caption_2_496392820_generated.png" id="2_4yweh"] [ext_resource type="Script" uid="uid://xmphq3i0wbg3" path="res://ScalePoint_.gd" id="3_abc"] [ext_resource type="PackedScene" uid="uid://c4vc1wx7k6cw" path="res://TransitionPiece.tscn" id="4_abc"] @@ -15,7 +15,7 @@ y_sort_enabled = true script = ExtResource("1_abc") [node name="bg" type="Sprite2D" parent="." unique_id=874052749] -scale = Vector2(6, 6) +scale = Vector2(0.78, 0.78) texture = ExtResource("2_4yweh") centered = false diff --git a/scenes/kq4_013_beach/caption_2_3376356057_generated.png b/scenes/kq4_013_beach/caption_2_3376356057_generated.png new file mode 100644 index 0000000..aec94b4 --- /dev/null +++ b/scenes/kq4_013_beach/caption_2_3376356057_generated.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2626d5ec2c4d2f34ce66c8c2eca8f6a9a4310a292933ea07ca8108822408d32b +size 4491516 diff --git a/scenes/kq4_013_beach/caption_2_3376356057_generated.png.import b/scenes/kq4_013_beach/caption_2_3376356057_generated.png.import new file mode 100644 index 0000000..eac8412 --- /dev/null +++ b/scenes/kq4_013_beach/caption_2_3376356057_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dbi8vjqvdpc3g" +path="res://.godot/imported/caption_2_3376356057_generated.png-b47057e16fef5f7b46f6888a242c2733.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://scenes/kq4_013_beach/caption_2_3376356057_generated.png" +dest_files=["res://.godot/imported/caption_2_3376356057_generated.png-b47057e16fef5f7b46f6888a242c2733.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/scenes/kq4_013_beach/kq4_013_beach.tscn b/scenes/kq4_013_beach/kq4_013_beach.tscn index 8672867..5709745 100644 --- a/scenes/kq4_013_beach/kq4_013_beach.tscn +++ b/scenes/kq4_013_beach/kq4_013_beach.tscn @@ -1,7 +1,7 @@ -[gd_scene format=3 uid="uid://2bqawc9w4uu59"] +[gd_scene format=3 uid="uid://d4a2d0rfqnmmo"] [ext_resource type="Script" uid="uid://lkgcoggep50e" path="res://scenes/kq4_013_beach/kq4_013_beach.gd" id="1_abc"] -[ext_resource type="Texture2D" uid="uid://1glo07e4r7520" path="res://scenes/kq4_013_beach/pic_013_visual.png" id="2_abc"] +[ext_resource type="Texture2D" uid="uid://dbi8vjqvdpc3g" path="res://scenes/kq4_013_beach/caption_2_3376356057_generated.png" id="2_6hbuw"] [ext_resource type="Script" uid="uid://xmphq3i0wbg3" path="res://ScalePoint_.gd" id="3_abc"] [ext_resource type="PackedScene" uid="uid://c4vc1wx7k6cw" path="res://TransitionPiece.tscn" id="4_abc"] @@ -15,8 +15,8 @@ y_sort_enabled = true script = ExtResource("1_abc") [node name="bg" type="Sprite2D" parent="." unique_id=874052749] -scale = Vector2(6, 6) -texture = ExtResource("2_abc") +scale = Vector2(0.78, 0.78) +texture = ExtResource("2_6hbuw") centered = false [node name="StartScalePoint" type="Node2D" parent="." unique_id=1640687858] @@ -88,11 +88,10 @@ position = Vector2(506, 555) [node name="exit" parent="kq4_031_open_ocean" index="1"] position = Vector2(-64, 534) -[connection signal="interacted" from="kq4_031_open_ocean" to="." method="_on_open_ocean_interacted"] - [connection signal="interacted" from="kq4_007_fishermans_shack" to="." method="_on_fishermans_shack_interacted"] [connection signal="interacted" from="kq4_014_green_meadow" to="." method="_on_green_meadow_interacted"] [connection signal="interacted" from="kq4_019_coastal_cliffs" to="." method="_on_coastal_cliffs_interacted"] +[connection signal="interacted" from="kq4_031_open_ocean" to="." method="_on_open_ocean_interacted"] [editable path="kq4_007_fishermans_shack"] [editable path="kq4_014_green_meadow"] diff --git a/scenes/kq4_015_frog_pond/caption_2_2697930471_generated.png b/scenes/kq4_015_frog_pond/caption_2_2697930471_generated.png new file mode 100644 index 0000000..d47617d --- /dev/null +++ b/scenes/kq4_015_frog_pond/caption_2_2697930471_generated.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80501182929470e945746a66f4a0cf7be683be7e6c79bd92e59aa46018aea970 +size 4874944 diff --git a/scenes/kq4_015_frog_pond/caption_2_2697930471_generated.png.import b/scenes/kq4_015_frog_pond/caption_2_2697930471_generated.png.import new file mode 100644 index 0000000..e72dff5 --- /dev/null +++ b/scenes/kq4_015_frog_pond/caption_2_2697930471_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bil34dk1pnd7b" +path="res://.godot/imported/caption_2_2697930471_generated.png-f1043cc79c8989f7d93b3249326dad7c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://scenes/kq4_015_frog_pond/caption_2_2697930471_generated.png" +dest_files=["res://.godot/imported/caption_2_2697930471_generated.png-f1043cc79c8989f7d93b3249326dad7c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/scenes/kq4_015_frog_pond/kq4_015_frog_pond.tscn b/scenes/kq4_015_frog_pond/kq4_015_frog_pond.tscn index 1408c30..a1b7d00 100644 --- a/scenes/kq4_015_frog_pond/kq4_015_frog_pond.tscn +++ b/scenes/kq4_015_frog_pond/kq4_015_frog_pond.tscn @@ -1,7 +1,7 @@ -[gd_scene format=3 uid="uid://2zga29mwl2ced"] +[gd_scene format=3 uid="uid://xk6xu65nm620"] -[ext_resource type="Script" uid="uid://2oiys25ji01ni" path="res://scenes/kq4_015_frog_pond/kq4_015_frog_pond.gd" id="1_abc"] -[ext_resource type="Texture2D" uid="uid://1d40stij8zu0l" path="res://scenes/kq4_015_frog_pond/pic_015_visual.png" id="2_abc"] +[ext_resource type="Script" uid="uid://mnvooprklwc5" path="res://scenes/kq4_015_frog_pond/kq4_015_frog_pond.gd" id="1_abc"] +[ext_resource type="Texture2D" uid="uid://bil34dk1pnd7b" path="res://scenes/kq4_015_frog_pond/caption_2_2697930471_generated.png" id="2_erond"] [ext_resource type="Script" uid="uid://xmphq3i0wbg3" path="res://ScalePoint_.gd" id="3_abc"] [ext_resource type="PackedScene" uid="uid://c4vc1wx7k6cw" path="res://TransitionPiece.tscn" id="4_abc"] @@ -15,8 +15,8 @@ y_sort_enabled = true script = ExtResource("1_abc") [node name="bg" type="Sprite2D" parent="." unique_id=874052749] -scale = Vector2(6, 6) -texture = ExtResource("2_abc") +scale = Vector2(0.78, 0.78) +texture = ExtResource("2_erond") centered = false [node name="StartScalePoint" type="Node2D" parent="." unique_id=1640687858] @@ -63,9 +63,6 @@ position = Vector2(24, 565) [node name="exit" parent="kq4_016_graveyard" index="1"] position = Vector2(293, 554) -[connection signal="interacted" from="kq4_009_shady_wooded_area" to="." method="_on_shady_wooded_area_interacted"] -[connection signal="interacted" from="kq4_016_graveyard" to="." method="_on_graveyard_interacted"] - [node name="kq4_014_green_meadow" parent="." unique_id=1117747815 instance=ExtResource("4_abc")] position = Vector2(-200, 74) polygon = PackedVector2Array(-108, 454, -87, 649, 376, 658, 348, 381) @@ -92,10 +89,12 @@ position = Vector2(118, 514) [node name="exit" parent="kq4_021_bridge_over_stream" index="1"] position = Vector2(151, 615) +[connection signal="interacted" from="kq4_009_shady_wooded_area" to="." method="_on_shady_wooded_area_interacted"] +[connection signal="interacted" from="kq4_016_graveyard" to="." method="_on_graveyard_interacted"] [connection signal="interacted" from="kq4_014_green_meadow" to="." method="_on_green_meadow_interacted"] [connection signal="interacted" from="kq4_021_bridge_over_stream" to="." method="_on_bridge_over_stream_interacted"] [editable path="kq4_009_shady_wooded_area"] [editable path="kq4_016_graveyard"] -[editable path="kq4_021_bridge_over_stream"] [editable path="kq4_014_green_meadow"] +[editable path="kq4_021_bridge_over_stream"] diff --git a/scenes/kq4_016_graveyard/caption_1_2842997487_generated.png b/scenes/kq4_016_graveyard/caption_1_2842997487_generated.png new file mode 100644 index 0000000..dbeef75 --- /dev/null +++ b/scenes/kq4_016_graveyard/caption_1_2842997487_generated.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:785ff6ee402c7d77c31b21ba348d3dca6c887ac5f8b382e85f60e8503e87f276 +size 4245766 diff --git a/scenes/kq4_016_graveyard/caption_1_2842997487_generated.png.import b/scenes/kq4_016_graveyard/caption_1_2842997487_generated.png.import new file mode 100644 index 0000000..0173379 --- /dev/null +++ b/scenes/kq4_016_graveyard/caption_1_2842997487_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://clkah304erwsa" +path="res://.godot/imported/caption_1_2842997487_generated.png-ab1b13f31c6cf4e817b89cb6979b371b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://scenes/kq4_016_graveyard/caption_1_2842997487_generated.png" +dest_files=["res://.godot/imported/caption_1_2842997487_generated.png-ab1b13f31c6cf4e817b89cb6979b371b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/scenes/kq4_016_graveyard/kq4_016_graveyard.tscn b/scenes/kq4_016_graveyard/kq4_016_graveyard.tscn index 273e89c..89b7490 100644 --- a/scenes/kq4_016_graveyard/kq4_016_graveyard.tscn +++ b/scenes/kq4_016_graveyard/kq4_016_graveyard.tscn @@ -1,7 +1,7 @@ -[gd_scene format=3 uid="uid://27b2k6gky3afg"] +[gd_scene format=3 uid="uid://5gygr0s1n433"] [ext_resource type="Script" uid="uid://b7elji15ea6kg" path="res://scenes/kq4_016_graveyard/kq4_016_graveyard.gd" id="1_abc"] -[ext_resource type="Texture2D" uid="uid://b1sd2bt2j641b" path="res://scenes/kq4_016_graveyard/pic_016_visual.png" id="2_abc"] +[ext_resource type="Texture2D" uid="uid://clkah304erwsa" path="res://scenes/kq4_016_graveyard/caption_1_2842997487_generated.png" id="2_8fbum"] [ext_resource type="Script" uid="uid://xmphq3i0wbg3" path="res://ScalePoint_.gd" id="3_abc"] [ext_resource type="PackedScene" uid="uid://c4vc1wx7k6cw" path="res://TransitionPiece.tscn" id="4_abc"] @@ -15,8 +15,8 @@ y_sort_enabled = true script = ExtResource("1_abc") [node name="bg" type="Sprite2D" parent="." unique_id=874052749] -scale = Vector2(6, 6) -texture = ExtResource("2_abc") +scale = Vector2(0.78, 0.78) +texture = ExtResource("2_8fbum") centered = false [node name="StartScalePoint" type="Node2D" parent="." unique_id=1640687858] @@ -90,7 +90,6 @@ position = Vector2(24, 565) position = Vector2(293, 554) [connection signal="interacted" from="kq4_015_frog_pond" to="." method="_on_frog_pond_interacted"] - [connection signal="interacted" from="kq4_010_forest_path" to="." method="_on_forest_path_interacted"] [connection signal="interacted" from="kq4_022_gnomes_cottage" to="." method="_on_gnomes_cottage_interacted"] [connection signal="interacted" from="kq4_017_spooky_house_exterior" to="." method="_on_spooky_house_exterior_interacted"] diff --git a/scenes/kq4_017_spooky_house_exterior/caption_2_3103518838_generated.png b/scenes/kq4_017_spooky_house_exterior/caption_2_3103518838_generated.png new file mode 100644 index 0000000..b499fe6 --- /dev/null +++ b/scenes/kq4_017_spooky_house_exterior/caption_2_3103518838_generated.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16b0e52dbefd9cd4c460568ee52defb755c1ab0cf7a3134b2e675fb9020f0fc2 +size 4853257 diff --git a/scenes/kq4_017_spooky_house_exterior/caption_2_3103518838_generated.png.import b/scenes/kq4_017_spooky_house_exterior/caption_2_3103518838_generated.png.import new file mode 100644 index 0000000..ea9952c --- /dev/null +++ b/scenes/kq4_017_spooky_house_exterior/caption_2_3103518838_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bmxs6lml73kld" +path="res://.godot/imported/caption_2_3103518838_generated.png-86041d9f9b861e26a4ae98238312226b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://scenes/kq4_017_spooky_house_exterior/caption_2_3103518838_generated.png" +dest_files=["res://.godot/imported/caption_2_3103518838_generated.png-86041d9f9b861e26a4ae98238312226b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/scenes/kq4_017_spooky_house_exterior/kq4_017_spooky_house_exterior.tscn b/scenes/kq4_017_spooky_house_exterior/kq4_017_spooky_house_exterior.tscn index 8d418b9..66127f5 100644 --- a/scenes/kq4_017_spooky_house_exterior/kq4_017_spooky_house_exterior.tscn +++ b/scenes/kq4_017_spooky_house_exterior/kq4_017_spooky_house_exterior.tscn @@ -1,7 +1,7 @@ -[gd_scene format=3 uid="uid://1kz9yo5f1tpc6"] +[gd_scene format=3 uid="uid://dek2gdmwnmgsl"] -[ext_resource type="Script" path="res://scenes/kq4_017_spooky_house_exterior/kq4_017_spooky_house_exterior.gd" id="1_abc"] -[ext_resource type="Texture2D" path="res://scenes/kq4_017_spooky_house_exterior/pic_017_visual.png" id="2_abc"] +[ext_resource type="Script" uid="uid://ngvn8144qom7" path="res://scenes/kq4_017_spooky_house_exterior/kq4_017_spooky_house_exterior.gd" id="1_abc"] +[ext_resource type="Texture2D" uid="uid://bmxs6lml73kld" path="res://scenes/kq4_017_spooky_house_exterior/caption_2_3103518838_generated.png" id="2_j6qr1"] [ext_resource type="Script" uid="uid://xmphq3i0wbg3" path="res://ScalePoint_.gd" id="3_abc"] [ext_resource type="PackedScene" uid="uid://c4vc1wx7k6cw" path="res://TransitionPiece.tscn" id="4_abc"] @@ -15,8 +15,8 @@ y_sort_enabled = true script = ExtResource("1_abc") [node name="bg" type="Sprite2D" parent="." unique_id=874052749] -scale = Vector2(6, 6) -texture = ExtResource("2_abc") +scale = Vector2(0.78, 0.78) +texture = ExtResource("2_j6qr1") centered = false [node name="StartScalePoint" type="Node2D" parent="." unique_id=1640687858] diff --git a/scenes/kq4_018_cemetery/caption_2_2774947991_generated.png b/scenes/kq4_018_cemetery/caption_2_2774947991_generated.png new file mode 100644 index 0000000..f243fa2 --- /dev/null +++ b/scenes/kq4_018_cemetery/caption_2_2774947991_generated.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e8c3bec0ec0c50646c338b4d3b35de0eb60acfd9ba70980ceda51ef8e2eabce +size 4449139 diff --git a/scenes/kq4_018_cemetery/caption_2_2774947991_generated.png.import b/scenes/kq4_018_cemetery/caption_2_2774947991_generated.png.import new file mode 100644 index 0000000..56ddaac --- /dev/null +++ b/scenes/kq4_018_cemetery/caption_2_2774947991_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dvr43q15yvn37" +path="res://.godot/imported/caption_2_2774947991_generated.png-5556eacfed9ef3cf89ac0dcb6b744da6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://scenes/kq4_018_cemetery/caption_2_2774947991_generated.png" +dest_files=["res://.godot/imported/caption_2_2774947991_generated.png-5556eacfed9ef3cf89ac0dcb6b744da6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/scenes/kq4_018_cemetery/caption_3_4052088499_generated.png b/scenes/kq4_018_cemetery/caption_3_4052088499_generated.png new file mode 100644 index 0000000..a7388bb --- /dev/null +++ b/scenes/kq4_018_cemetery/caption_3_4052088499_generated.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5baa00317fb9c9022fb3956eb8eff0b59358c3e56bff79e96163c9ab7e597b0d +size 4514831 diff --git a/scenes/kq4_018_cemetery/caption_3_4052088499_generated.png.import b/scenes/kq4_018_cemetery/caption_3_4052088499_generated.png.import new file mode 100644 index 0000000..e78aabb --- /dev/null +++ b/scenes/kq4_018_cemetery/caption_3_4052088499_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://l672jbh4shwf" +path="res://.godot/imported/caption_3_4052088499_generated.png-186a4e9425a009abf3d3dc0fa37ecd12.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://scenes/kq4_018_cemetery/caption_3_4052088499_generated.png" +dest_files=["res://.godot/imported/caption_3_4052088499_generated.png-186a4e9425a009abf3d3dc0fa37ecd12.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/scenes/kq4_018_cemetery/kq4_018_cemetery.tscn b/scenes/kq4_018_cemetery/kq4_018_cemetery.tscn index be0bba1..725bc74 100644 --- a/scenes/kq4_018_cemetery/kq4_018_cemetery.tscn +++ b/scenes/kq4_018_cemetery/kq4_018_cemetery.tscn @@ -1,7 +1,7 @@ -[gd_scene format=3 uid="uid://35amqvpjgpf2x"] +[gd_scene format=3 uid="uid://b3fjmiaribbrl"] -[ext_resource type="Script" path="res://scenes/kq4_018_cemetery/kq4_018_cemetery.gd" id="1_abc"] -[ext_resource type="Texture2D" path="res://scenes/kq4_018_cemetery/pic_018_visual.png" id="2_abc"] +[ext_resource type="Script" uid="uid://1oricgqlfv2k" path="res://scenes/kq4_018_cemetery/kq4_018_cemetery.gd" id="1_abc"] +[ext_resource type="Texture2D" uid="uid://l672jbh4shwf" path="res://scenes/kq4_018_cemetery/caption_3_4052088499_generated.png" id="2_2e0gx"] [ext_resource type="Script" uid="uid://xmphq3i0wbg3" path="res://ScalePoint_.gd" id="3_abc"] [ext_resource type="PackedScene" uid="uid://c4vc1wx7k6cw" path="res://TransitionPiece.tscn" id="4_abc"] @@ -15,8 +15,8 @@ y_sort_enabled = true script = ExtResource("1_abc") [node name="bg" type="Sprite2D" parent="." unique_id=874052749] -scale = Vector2(6, 6) -texture = ExtResource("2_abc") +scale = Vector2(0.78, 0.78) +texture = ExtResource("2_2e0gx") centered = false [node name="StartScalePoint" type="Node2D" parent="." unique_id=1640687858] diff --git a/scenes/kq4_021_bridge_over_stream/caption_2_2180550861_generated.png b/scenes/kq4_021_bridge_over_stream/caption_2_2180550861_generated.png new file mode 100644 index 0000000..f0aa2b6 --- /dev/null +++ b/scenes/kq4_021_bridge_over_stream/caption_2_2180550861_generated.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d1ef3fa531ea4ffad5076059e8acdc15e1eb447274f5b5b7b815be89b2af0dc +size 4717068 diff --git a/scenes/kq4_021_bridge_over_stream/caption_2_2180550861_generated.png.import b/scenes/kq4_021_bridge_over_stream/caption_2_2180550861_generated.png.import new file mode 100644 index 0000000..bf871d7 --- /dev/null +++ b/scenes/kq4_021_bridge_over_stream/caption_2_2180550861_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://buugeband0nb2" +path="res://.godot/imported/caption_2_2180550861_generated.png-6a9171747fccdee7ad036efb5f6448a6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://scenes/kq4_021_bridge_over_stream/caption_2_2180550861_generated.png" +dest_files=["res://.godot/imported/caption_2_2180550861_generated.png-6a9171747fccdee7ad036efb5f6448a6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/scenes/kq4_021_bridge_over_stream/kq4_021_bridge_over_stream.tscn b/scenes/kq4_021_bridge_over_stream/kq4_021_bridge_over_stream.tscn index 467b955..15ed5ac 100644 --- a/scenes/kq4_021_bridge_over_stream/kq4_021_bridge_over_stream.tscn +++ b/scenes/kq4_021_bridge_over_stream/kq4_021_bridge_over_stream.tscn @@ -1,7 +1,7 @@ -[gd_scene format=3 uid="uid://3uxipzjekijqc"] +[gd_scene format=3 uid="uid://bs3fll3ml3ffy"] [ext_resource type="Script" uid="uid://ygfmtwnsa8sl" path="res://scenes/kq4_021_bridge_over_stream/kq4_021_bridge_over_stream.gd" id="1_abc"] -[ext_resource type="Texture2D" uid="uid://164oxibermalv" path="res://scenes/kq4_021_bridge_over_stream/pic_021_visual.png" id="2_abc"] +[ext_resource type="Texture2D" uid="uid://buugeband0nb2" path="res://scenes/kq4_021_bridge_over_stream/caption_2_2180550861_generated.png" id="2_4tolx"] [ext_resource type="Script" uid="uid://xmphq3i0wbg3" path="res://ScalePoint_.gd" id="3_abc"] [ext_resource type="PackedScene" uid="uid://c4vc1wx7k6cw" path="res://TransitionPiece.tscn" id="4_abc"] @@ -15,8 +15,8 @@ y_sort_enabled = true script = ExtResource("1_abc") [node name="bg" type="Sprite2D" parent="." unique_id=874052749] -scale = Vector2(6, 6) -texture = ExtResource("2_abc") +scale = Vector2(0.78, 0.78) +texture = ExtResource("2_4tolx") centered = false [node name="StartScalePoint" type="Node2D" parent="." unique_id=1640687858] @@ -76,8 +76,6 @@ position = Vector2(118, 514) [node name="exit" parent="kq4_027_forest_path" index="1"] position = Vector2(151, 615) -[connection signal="interacted" from="kq4_027_forest_path" to="." method="_on_forest_path_interacted"] - [node name="kq4_020_meadow" parent="." unique_id=1117747814 instance=ExtResource("4_abc")] position = Vector2(-200, 74) polygon = PackedVector2Array(-108, 454, -87, 649, 376, 658, 348, 381) @@ -93,6 +91,7 @@ position = Vector2(300, 554) [connection signal="interacted" from="kq4_015_frog_pond" to="." method="_on_frog_pond_interacted"] [connection signal="interacted" from="kq4_022_gnomes_cottage" to="." method="_on_gnomes_cottage_interacted"] +[connection signal="interacted" from="kq4_027_forest_path" to="." method="_on_forest_path_interacted"] [connection signal="interacted" from="kq4_020_meadow" to="." method="_on_meadow_interacted"] [editable path="kq4_015_frog_pond"] diff --git a/scenes/kq4_022_gnomes_cottage/caption_1_580543297_generated.png b/scenes/kq4_022_gnomes_cottage/caption_1_580543297_generated.png new file mode 100644 index 0000000..89461d3 --- /dev/null +++ b/scenes/kq4_022_gnomes_cottage/caption_1_580543297_generated.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf72ee986d2d7bfaffda7524fca2b68dd1b1f98ef59dda982f507ee8a785e561 +size 4442692 diff --git a/scenes/kq4_022_gnomes_cottage/caption_1_580543297_generated.png.import b/scenes/kq4_022_gnomes_cottage/caption_1_580543297_generated.png.import new file mode 100644 index 0000000..69e423e --- /dev/null +++ b/scenes/kq4_022_gnomes_cottage/caption_1_580543297_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dpxg6smamvc7i" +path="res://.godot/imported/caption_1_580543297_generated.png-df198002e7e346af7088602563bbe626.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://scenes/kq4_022_gnomes_cottage/caption_1_580543297_generated.png" +dest_files=["res://.godot/imported/caption_1_580543297_generated.png-df198002e7e346af7088602563bbe626.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/scenes/kq4_022_gnomes_cottage/kq4_022_gnomes_cottage.tscn b/scenes/kq4_022_gnomes_cottage/kq4_022_gnomes_cottage.tscn index e2ace82..2749588 100644 --- a/scenes/kq4_022_gnomes_cottage/kq4_022_gnomes_cottage.tscn +++ b/scenes/kq4_022_gnomes_cottage/kq4_022_gnomes_cottage.tscn @@ -1,7 +1,7 @@ -[gd_scene format=3 uid="uid://3oq4x3exoimdb"] +[gd_scene format=3 uid="uid://bmv1tox6p3h1x"] [ext_resource type="Script" uid="uid://g13phptwh3s8" path="res://scenes/kq4_022_gnomes_cottage/kq4_022_gnomes_cottage.gd" id="1_abc"] -[ext_resource type="Texture2D" uid="uid://cyiqg0y171nos" path="res://scenes/kq4_022_gnomes_cottage/pic_022_visual.png" id="2_abc"] +[ext_resource type="Texture2D" uid="uid://dpxg6smamvc7i" path="res://scenes/kq4_022_gnomes_cottage/caption_1_580543297_generated.png" id="2_pe3xb"] [ext_resource type="Script" uid="uid://xmphq3i0wbg3" path="res://ScalePoint_.gd" id="3_abc"] [ext_resource type="PackedScene" uid="uid://c4vc1wx7k6cw" path="res://TransitionPiece.tscn" id="4_abc"] @@ -15,8 +15,8 @@ y_sort_enabled = true script = ExtResource("1_abc") [node name="bg" type="Sprite2D" parent="." unique_id=874052749] -scale = Vector2(6, 6) -texture = ExtResource("2_abc") +scale = Vector2(0.78, 0.78) +texture = ExtResource("2_pe3xb") centered = false [node name="StartScalePoint" type="Node2D" parent="." unique_id=1640687858] diff --git a/scenes/kq4_025_beach_at_river_delta/caption_1_155837719_generated.png b/scenes/kq4_025_beach_at_river_delta/caption_1_155837719_generated.png new file mode 100644 index 0000000..3ee2b51 --- /dev/null +++ b/scenes/kq4_025_beach_at_river_delta/caption_1_155837719_generated.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47abb963a96943457c8b5313d004423389937ea34651e2f88283f9aad4b08255 +size 4202030 diff --git a/scenes/kq4_025_beach_at_river_delta/caption_1_155837719_generated.png.import b/scenes/kq4_025_beach_at_river_delta/caption_1_155837719_generated.png.import new file mode 100644 index 0000000..2657984 --- /dev/null +++ b/scenes/kq4_025_beach_at_river_delta/caption_1_155837719_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cq7jvy2dpgu3y" +path="res://.godot/imported/caption_1_155837719_generated.png-d38d7a40c6c72272ffbbdecfe2bd40b7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://scenes/kq4_025_beach_at_river_delta/caption_1_155837719_generated.png" +dest_files=["res://.godot/imported/caption_1_155837719_generated.png-d38d7a40c6c72272ffbbdecfe2bd40b7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/scenes/kq4_028_mine_entrance/caption_1_751152612_generated.png b/scenes/kq4_028_mine_entrance/caption_1_751152612_generated.png new file mode 100644 index 0000000..3513fc8 --- /dev/null +++ b/scenes/kq4_028_mine_entrance/caption_1_751152612_generated.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfb99628999d3c384f281bd5c725a4938b25c61f5100de540d80d80a46cec8e1 +size 4503696 diff --git a/scenes/kq4_028_mine_entrance/caption_1_751152612_generated.png.import b/scenes/kq4_028_mine_entrance/caption_1_751152612_generated.png.import new file mode 100644 index 0000000..e83d66b --- /dev/null +++ b/scenes/kq4_028_mine_entrance/caption_1_751152612_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://xoexo8qjh1n0" +path="res://.godot/imported/caption_1_751152612_generated.png-0298d66ccaebc488b5da62116de64bef.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://scenes/kq4_028_mine_entrance/caption_1_751152612_generated.png" +dest_files=["res://.godot/imported/caption_1_751152612_generated.png-0298d66ccaebc488b5da62116de64bef.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/scenes/kq4_028_mine_entrance/kq4_028_mine_entrance.tscn b/scenes/kq4_028_mine_entrance/kq4_028_mine_entrance.tscn index 1c298b0..124c0c0 100644 --- a/scenes/kq4_028_mine_entrance/kq4_028_mine_entrance.tscn +++ b/scenes/kq4_028_mine_entrance/kq4_028_mine_entrance.tscn @@ -1,7 +1,7 @@ -[gd_scene format=3 uid="uid://qkcwifq2lb9m"] +[gd_scene format=3 uid="uid://qkcwifq2lcam"] [ext_resource type="Script" uid="uid://dggmtxqdq8216" path="res://scenes/kq4_028_mine_entrance/kq4_028_mine_entrance.gd" id="1_abc"] -[ext_resource type="Texture2D" uid="uid://b2v134dmq3qdu" path="res://scenes/kq4_028_mine_entrance/pic_028_visual.png" id="2_abc"] +[ext_resource type="Texture2D" uid="uid://xoexo8qjh1n0" path="res://scenes/kq4_028_mine_entrance/caption_1_751152612_generated.png" id="2_qqkdp"] [ext_resource type="Script" uid="uid://xmphq3i0wbg3" path="res://ScalePoint_.gd" id="3_abc"] [ext_resource type="PackedScene" uid="uid://c4vc1wx7k6cw" path="res://TransitionPiece.tscn" id="4_abc"] @@ -15,8 +15,8 @@ y_sort_enabled = true script = ExtResource("1_abc") [node name="bg" type="Sprite2D" parent="." unique_id=874052749] -scale = Vector2(6, 6) -texture = ExtResource("2_abc") +scale = Vector2(0.78, 0.78) +texture = ExtResource("2_qqkdp") centered = false [node name="StartScalePoint" type="Node2D" parent="." unique_id=1640687858] @@ -88,11 +88,10 @@ position = Vector2(506, 555) [node name="exit" parent="kq4_027_forest_path" index="1"] position = Vector2(-64, 534) -[connection signal="interacted" from="kq4_027_forest_path" to="." method="_on_forest_path_interacted"] - [connection signal="interacted" from="kq4_022_gnomes_cottage" to="." method="_on_gnomes_cottage_interacted"] [connection signal="interacted" from="kq4_029_dense_forest" to="." method="_on_dense_forest_interacted"] [connection signal="interacted" from="kq4_004_ogres_cottage" to="." method="_on_ogres_cottage_interacted"] +[connection signal="interacted" from="kq4_027_forest_path" to="." method="_on_forest_path_interacted"] [editable path="kq4_022_gnomes_cottage"] [editable path="kq4_029_dense_forest"] diff --git a/scenes/kq4_029_dense_forest/caption_3_1620170238_generated.png b/scenes/kq4_029_dense_forest/caption_3_1620170238_generated.png new file mode 100644 index 0000000..1c77bd0 --- /dev/null +++ b/scenes/kq4_029_dense_forest/caption_3_1620170238_generated.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d325a4baf26d8e244e4f32154732797dc3e90d9ddea2c99e411ebe103fb0a3e0 +size 4233769 diff --git a/scenes/kq4_029_dense_forest/caption_3_1620170238_generated.png.import b/scenes/kq4_029_dense_forest/caption_3_1620170238_generated.png.import new file mode 100644 index 0000000..67d2f83 --- /dev/null +++ b/scenes/kq4_029_dense_forest/caption_3_1620170238_generated.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b4o5fec7jk7r5" +path="res://.godot/imported/caption_3_1620170238_generated.png-0f4e86fb04721a34a99c32ed1d60b217.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://scenes/kq4_029_dense_forest/caption_3_1620170238_generated.png" +dest_files=["res://.godot/imported/caption_3_1620170238_generated.png-0f4e86fb04721a34a99c32ed1d60b217.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/scenes/kq4_029_dense_forest/kq4_029_dense_forest.tscn b/scenes/kq4_029_dense_forest/kq4_029_dense_forest.tscn index 045ac24..d9aeaf7 100644 --- a/scenes/kq4_029_dense_forest/kq4_029_dense_forest.tscn +++ b/scenes/kq4_029_dense_forest/kq4_029_dense_forest.tscn @@ -1,7 +1,7 @@ -[gd_scene format=3 uid="uid://1sfzaldfq5kn1"] +[gd_scene format=3 uid="uid://dlyrp8twdxb4g"] -[ext_resource type="Script" path="res://scenes/kq4_029_dense_forest/kq4_029_dense_forest.gd" id="1_abc"] -[ext_resource type="Texture2D" path="res://scenes/kq4_029_dense_forest/pic_029_visual.png" id="2_abc"] +[ext_resource type="Script" uid="uid://bdf3esx2gpltx" path="res://scenes/kq4_029_dense_forest/kq4_029_dense_forest.gd" id="1_abc"] +[ext_resource type="Texture2D" uid="uid://b4o5fec7jk7r5" path="res://scenes/kq4_029_dense_forest/caption_3_1620170238_generated.png" id="2_o6inj"] [ext_resource type="Script" uid="uid://xmphq3i0wbg3" path="res://ScalePoint_.gd" id="3_abc"] [ext_resource type="PackedScene" uid="uid://c4vc1wx7k6cw" path="res://TransitionPiece.tscn" id="4_abc"] @@ -15,8 +15,8 @@ y_sort_enabled = true script = ExtResource("1_abc") [node name="bg" type="Sprite2D" parent="." unique_id=874052749] -scale = Vector2(6, 6) -texture = ExtResource("2_abc") +scale = Vector2(0.78, 0.78) +texture = ExtResource("2_o6inj") centered = false [node name="StartScalePoint" type="Node2D" parent="." unique_id=1640687858]