完成 c01_s05 场景内所有功能;初步布置 c01_s06 场景
@ -56,6 +56,7 @@ func _get_option_visibility(path: String, option_name: StringName, options: Dict
|
|||||||
# 防止同时加载多个文件时卡死
|
# 防止同时加载多个文件时卡死
|
||||||
static var MUTEX = Mutex.new()
|
static var MUTEX = Mutex.new()
|
||||||
|
|
||||||
|
const gif_dir = "res://asset/art/gif/"
|
||||||
|
|
||||||
func _import(source_file, save_path, options, platform_variants, gen_files):
|
func _import(source_file, save_path, options, platform_variants, gen_files):
|
||||||
if GifManager == null:
|
if GifManager == null:
|
||||||
@ -71,4 +72,35 @@ func _import(source_file, save_path, options, platform_variants, gen_files):
|
|||||||
# await get_tree().create_timer(0.1).timeout
|
# await get_tree().create_timer(0.1).timeout
|
||||||
MUTEX.unlock()
|
MUTEX.unlock()
|
||||||
print_debug("Imported GIF frames: ", frames.get_frame_count("gif"), " from ", source_file)
|
print_debug("Imported GIF frames: ", frames.get_frame_count("gif"), " from ", source_file)
|
||||||
|
var base_dir = source_file.get_base_dir()
|
||||||
|
if base_dir != gif_dir and base_dir.begins_with(gif_dir):
|
||||||
|
var animation_name = source_file.get_file().replace(".gif", "")
|
||||||
|
var dir_name = base_dir + "/" + animation_name + "/"
|
||||||
|
if DirAccess.dir_exists_absolute(dir_name):
|
||||||
|
DirAccess.remove_absolute(dir_name)
|
||||||
|
DirAccess.make_dir_absolute(dir_name)
|
||||||
|
var sprite_frames_path = base_dir + "/frames.tres"
|
||||||
|
var sprite_frames: SpriteFrames
|
||||||
|
if not FileAccess.file_exists(sprite_frames_path):
|
||||||
|
sprite_frames = SpriteFrames.new()
|
||||||
|
sprite_frames.resource_path = sprite_frames_path
|
||||||
|
else:
|
||||||
|
sprite_frames = load(sprite_frames_path) as SpriteFrames
|
||||||
|
if sprite_frames.has_animation(animation_name):
|
||||||
|
sprite_frames.clear(animation_name)
|
||||||
|
else:
|
||||||
|
sprite_frames.add_animation(animation_name)
|
||||||
|
sprite_frames.set_animation_loop(animation_name, frames.get_animation_loop("gif"))
|
||||||
|
sprite_frames.set_animation_speed(animation_name, frames.get_animation_speed("gif"))
|
||||||
|
for i in range(frames.get_frame_count("gif")):
|
||||||
|
var texture = frames.get_frame_texture("gif", i) as Texture2D
|
||||||
|
var image = texture.get_image()
|
||||||
|
var image_path = dir_name + str(i) + ".png"
|
||||||
|
image.save_png(image_path)
|
||||||
|
image.resource_path = image_path
|
||||||
|
var new_texture = ImageTexture.create_from_image(image)
|
||||||
|
var duration = frames.get_frame_duration("gif", i)
|
||||||
|
sprite_frames.add_frame(animation_name, new_texture, duration)
|
||||||
|
print_debug("Created images and added to SpriteFrames: ", animation_name)
|
||||||
|
ResourceSaver.save(sprite_frames)
|
||||||
return code
|
return code
|
||||||
|
BIN
asset/art/gif/c01_孤儿院长廊/fg_花圃.gif
Executable file
After Width: | Height: | Size: 60 KiB |
14
asset/art/gif/c01_孤儿院长廊/fg_花圃.gif.import
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="gif.animated.texture.plugin"
|
||||||
|
type="SpriteFrames"
|
||||||
|
uid="uid://bx3c8r31cvo8n"
|
||||||
|
path="res://.godot/imported/fg_花圃.gif-8e47e904a5d6d15fcb774edb0eb2cf9e.tres"
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://asset/art/gif/c01_孤儿院长廊/fg_花圃.gif"
|
||||||
|
dest_files=["res://.godot/imported/fg_花圃.gif-8e47e904a5d6d15fcb774edb0eb2cf9e.tres"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
BIN
asset/art/gif/c01_孤儿院长廊/fg_花圃/0.png
Normal file
After Width: | Height: | Size: 48 KiB |
34
asset/art/gif/c01_孤儿院长廊/fg_花圃/0.png.import
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://b1fc664q3a6uc"
|
||||||
|
path="res://.godot/imported/0.png-9b63a554440389d99780ccb5f68869a7.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://asset/art/gif/c01_孤儿院长廊/fg_花圃/0.png"
|
||||||
|
dest_files=["res://.godot/imported/0.png-9b63a554440389d99780ccb5f68869a7.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
BIN
asset/art/gif/c01_孤儿院长廊/fg_花圃/1.png
Normal file
After Width: | Height: | Size: 48 KiB |
34
asset/art/gif/c01_孤儿院长廊/fg_花圃/1.png.import
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://p38d24qbqiw8"
|
||||||
|
path="res://.godot/imported/1.png-03964e8fef09e95a495106256b392161.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://asset/art/gif/c01_孤儿院长廊/fg_花圃/1.png"
|
||||||
|
dest_files=["res://.godot/imported/1.png-03964e8fef09e95a495106256b392161.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
372
asset/art/gif/c01_孤儿院长廊/frames.tres
Normal file
@ -0,0 +1,372 @@
|
|||||||
|
[gd_resource type="SpriteFrames" load_steps=74 format=3 uid="uid://cc0ea1he2nfc2"]
|
||||||
|
|
||||||
|
[ext_resource type="Texture2D" uid="uid://b1fc664q3a6uc" path="res://asset/art/gif/c01_孤儿院长廊/fg_花圃/0.png" id="1_p7b7k"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://p38d24qbqiw8" path="res://asset/art/gif/c01_孤儿院长廊/fg_花圃/1.png" id="2_gs1di"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://deebi18wyq1wj" path="res://asset/art/gif/c01_孤儿院长廊/中蓝衣小孩呼吸/0.png" id="3_17qjt"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://d3lbtcx6p8acv" path="res://asset/art/gif/c01_孤儿院长廊/中蓝衣小孩呼吸/1.png" id="4_8o0lb"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://chcpy0ijod33k" path="res://asset/art/gif/c01_孤儿院长廊/中蓝衣小孩呼吸/2.png" id="5_8k42r"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://dy4bxjqeue838" path="res://asset/art/gif/c01_孤儿院长廊/右绿衣男孩呼吸/0.png" id="6_lhq2q"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://r8q2qrp7cil0" path="res://asset/art/gif/c01_孤儿院长廊/右绿衣男孩呼吸/1.png" id="7_js7ok"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://dufaxxkhgt27b" path="res://asset/art/gif/c01_孤儿院长廊/右绿衣男孩呼吸/2.png" id="8_fphpv"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://dyk2lx08bhes2" path="res://asset/art/gif/c01_孤儿院长廊/左2黄衣男呼吸/0.png" id="9_6sr5y"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://c3bo6iougpnpt" path="res://asset/art/gif/c01_孤儿院长廊/左2黄衣男呼吸/1.png" id="10_051qt"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://4p61pega3kbf" path="res://asset/art/gif/c01_孤儿院长廊/左2黄衣男呼吸/2.png" id="11_yi1w8"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://crbt33v4co86p" path="res://asset/art/gif/c01_孤儿院长廊/左一绿衣男呼吸/0.png" id="12_wqcup"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://ds536i1lpsnh3" path="res://asset/art/gif/c01_孤儿院长廊/左一绿衣男呼吸/1.png" id="13_8od1j"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://bsje8sy3nojy1" path="res://asset/art/gif/c01_孤儿院长廊/左一绿衣男呼吸/2.png" id="14_awgic"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://d0jbxpedkgndg" path="res://asset/art/gif/c01_孤儿院长廊/男孩跑动-右/0.png" id="15_t7y4n"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://w4bfs3sojpd" path="res://asset/art/gif/c01_孤儿院长廊/男孩跑动-右/1.png" id="16_f1vha"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://c42xie6qtym1e" path="res://asset/art/gif/c01_孤儿院长廊/男孩跑动-右/2.png" id="17_dt1u3"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://223pqehes7fw" path="res://asset/art/gif/c01_孤儿院长廊/男孩跑动-右/3.png" id="18_18yym"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://bt7b74bfp4t75" path="res://asset/art/gif/c01_孤儿院长廊/男孩跑动-右/4.png" id="19_p0pxn"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://cb4ub1kngg0or" path="res://asset/art/gif/c01_孤儿院长廊/男孩跑动-右/5.png" id="20_y4xna"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://vo0ah8q2orws" path="res://asset/art/gif/c01_孤儿院长廊/男孩跑动-右/6.png" id="21_pmfth"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://b64t3xk7epc8w" path="res://asset/art/gif/c01_孤儿院长廊/男孩跑动-右/7.png" id="22_hvdrd"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://1p0w8b0fdsk1" path="res://asset/art/gif/c01_孤儿院长廊/男孩跑动-左/0.png" id="23_3ecok"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://01qufu3ddoi" path="res://asset/art/gif/c01_孤儿院长廊/男孩跑动-左/1.png" id="24_i4l65"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://h51ek708aah1" path="res://asset/art/gif/c01_孤儿院长廊/男孩跑动-左/2.png" id="25_t0xqy"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://c50cr55a20v51" path="res://asset/art/gif/c01_孤儿院长廊/男孩跑动-左/3.png" id="26_ovkd0"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://cr8f4u8qu58tm" path="res://asset/art/gif/c01_孤儿院长廊/男孩跑动-左/4.png" id="27_15o6h"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://dxg616utolf3q" path="res://asset/art/gif/c01_孤儿院长廊/男孩跑动-左/5.png" id="28_mlwgi"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://cb5cajeycnx1j" path="res://asset/art/gif/c01_孤儿院长廊/男孩跑动-左/6.png" id="29_i4yfr"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://bn4mg4egmfmo8" path="res://asset/art/gif/c01_孤儿院长廊/男孩跑动-左/7.png" id="30_ndoch"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://cvdxmweucfmuv" path="res://asset/art/gif/c01_孤儿院长廊/男孩跑动停球/0.png" id="31_7m718"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://b7iipsk4yqqoq" path="res://asset/art/gif/c01_孤儿院长廊/男孩跑动停球/1.png" id="32_c4wgl"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://beeu8pkquxxrm" path="res://asset/art/gif/c01_孤儿院长廊/男孩跑动停球/2.png" id="33_j2fah"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://0adu3teqqo56" path="res://asset/art/gif/c01_孤儿院长廊/男孩跑动停球/3.png" id="34_1aobm"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://gwibpf3nnyig" path="res://asset/art/gif/c01_孤儿院长廊/男孩跑动停球/4.png" id="35_07jql"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://0d7551536vjt" path="res://asset/art/gif/c01_孤儿院长廊/男孩跑动停球/5.png" id="36_ufacq"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://q5227y5lm2uo" path="res://asset/art/gif/c01_孤儿院长廊/男孩跑动停球/6.png" id="37_u6xcr"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://04kgsmonjhjw" path="res://asset/art/gif/c01_孤儿院长廊/秋千/0.png" id="38_vmpr4"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://bf6gf0tcq5kon" path="res://asset/art/gif/c01_孤儿院长廊/秋千/1.png" id="39_bkomk"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://d4iv7oqg8tyx7" path="res://asset/art/gif/c01_孤儿院长廊/秋千/2.png" id="40_y2al4"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://f3wx5c463j3u" path="res://asset/art/gif/c01_孤儿院长廊/秋千/3.png" id="41_iuide"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://cjat1c7gw5kf" path="res://asset/art/gif/c01_孤儿院长廊/秋千/4.png" id="42_7yjpa"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://dgk1ior713oje" path="res://asset/art/gif/c01_孤儿院长廊/秋千/5.png" id="43_ctekv"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://ctjkh5vheewvr" path="res://asset/art/gif/c01_孤儿院长廊/秋千/6.png" id="44_f2e71"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://cxjuy5gut2fcy" path="res://asset/art/gif/c01_孤儿院长廊/红衣姑娘呼吸/0.png" id="45_1u1d2"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://8tyfyxc5lhfd" path="res://asset/art/gif/c01_孤儿院长廊/红衣姑娘呼吸/1.png" id="46_cpt84"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://6grsr2bosrd6" path="res://asset/art/gif/c01_孤儿院长廊/红衣姑娘呼吸/2.png" id="47_ncj48"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://ctsjybuvdlwsf" path="res://asset/art/gif/c01_孤儿院长廊/红衣姑娘抬头/0.png" id="48_xq4xh"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://dp260tmxdwsr6" path="res://asset/art/gif/c01_孤儿院长廊/红衣姑娘抬头/1.png" id="49_5qald"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://cqm0khmdwhfvu" path="res://asset/art/gif/c01_孤儿院长廊/红衣姑娘抬头/2.png" id="50_ndrgc"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://bt67aqn7wamys" path="res://asset/art/gif/c01_孤儿院长廊/红衣姑娘抬头/3.png" id="51_rtpby"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://cvmfo5uus2862" path="res://asset/art/gif/c01_孤儿院长廊/红衣姑娘抬头/4.png" id="52_yncgy"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://di7i61uuwl0xk" path="res://asset/art/gif/c01_孤儿院长廊/跷跷板/0.png" id="53_07cu2"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://baw1yipsyluf" path="res://asset/art/gif/c01_孤儿院长廊/跷跷板/1.png" id="54_1ig2q"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://dn6k78h7cmefq" path="res://asset/art/gif/c01_孤儿院长廊/跷跷板/2.png" id="55_yqdsa"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://cqjykt5y6guux" path="res://asset/art/gif/c01_孤儿院长廊/跷跷板/3.png" id="56_kpwmb"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://dqj6al8d4je5j" path="res://asset/art/gif/c01_孤儿院长廊/跷跷板/4.png" id="57_2mmq0"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://cr7unlv3ef07e" path="res://asset/art/gif/c01_孤儿院长廊/跷跷板/5.png" id="58_gtj82"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://l2yhy3at6mqb" path="res://asset/art/gif/c01_孤儿院长廊/院长呼吸/0.png" id="59_tgtdw"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://csodb0wddm8lj" path="res://asset/art/gif/c01_孤儿院长廊/院长呼吸/1.png" id="60_kgk0o"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://gwnt7ltvgp8g" path="res://asset/art/gif/c01_孤儿院长廊/院长呼吸/2.png" id="61_g7a6o"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://bidkarpvbdrxl" path="res://asset/art/gif/c01_孤儿院长廊/院长抬头/0.png" id="62_xxjts"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://bcw3iqr3j1mr5" path="res://asset/art/gif/c01_孤儿院长廊/院长抬头/1.png" id="63_6y00q"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://dysfva41xgtpc" path="res://asset/art/gif/c01_孤儿院长廊/院长抬头/2.png" id="64_6j8gg"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://bg6j5vv8fyo32" path="res://asset/art/gif/c01_孤儿院长廊/院长抬头/3.png" id="65_5sckl"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://cpwc5fe0eq6t1" path="res://asset/art/gif/c01_孤儿院长廊/院长抬头/4.png" id="66_i0u5o"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://74odw5h28ec5" path="res://asset/art/gif/c01_孤儿院长廊/院长抬头/5.png" id="67_fuqid"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://ctso1mn5p0hq" path="res://asset/art/gif/c01_孤儿院长廊/院长抬头/6.png" id="68_548o5"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://dj7vhe1h1igjd" path="res://asset/art/gif/c01_孤儿院长廊/院长翻书/0.png" id="69_olq7e"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://ctcmkw4kunar6" path="res://asset/art/gif/c01_孤儿院长廊/院长翻书/1.png" id="70_vys0d"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://bsnojnlxqcd0i" path="res://asset/art/gif/c01_孤儿院长廊/院长翻书/2.png" id="71_sk4ev"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://3b346oms2h7u" path="res://asset/art/gif/c01_孤儿院长廊/院长翻书/3.png" id="72_2m2f0"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://dqybiodyok0v0" path="res://asset/art/gif/c01_孤儿院长廊/院长翻书/4.png" id="73_8tjai"]
|
||||||
|
|
||||||
|
[resource]
|
||||||
|
animations = [{
|
||||||
|
"frames": [{
|
||||||
|
"duration": 15.0,
|
||||||
|
"texture": ExtResource("1_p7b7k")
|
||||||
|
}, {
|
||||||
|
"duration": 15.0,
|
||||||
|
"texture": ExtResource("2_gs1di")
|
||||||
|
}],
|
||||||
|
"loop": true,
|
||||||
|
"name": &"fg_花圃",
|
||||||
|
"speed": 30.0
|
||||||
|
}, {
|
||||||
|
"frames": [{
|
||||||
|
"duration": 6.0,
|
||||||
|
"texture": ExtResource("3_17qjt")
|
||||||
|
}, {
|
||||||
|
"duration": 6.0,
|
||||||
|
"texture": ExtResource("4_8o0lb")
|
||||||
|
}, {
|
||||||
|
"duration": 6.0,
|
||||||
|
"texture": ExtResource("5_8k42r")
|
||||||
|
}],
|
||||||
|
"loop": true,
|
||||||
|
"name": &"中蓝衣小孩呼吸",
|
||||||
|
"speed": 30.0
|
||||||
|
}, {
|
||||||
|
"frames": [{
|
||||||
|
"duration": 6.0,
|
||||||
|
"texture": ExtResource("6_lhq2q")
|
||||||
|
}, {
|
||||||
|
"duration": 6.0,
|
||||||
|
"texture": ExtResource("7_js7ok")
|
||||||
|
}, {
|
||||||
|
"duration": 6.0,
|
||||||
|
"texture": ExtResource("8_fphpv")
|
||||||
|
}],
|
||||||
|
"loop": true,
|
||||||
|
"name": &"右绿衣男孩呼吸",
|
||||||
|
"speed": 30.0
|
||||||
|
}, {
|
||||||
|
"frames": [{
|
||||||
|
"duration": 6.0,
|
||||||
|
"texture": ExtResource("9_6sr5y")
|
||||||
|
}, {
|
||||||
|
"duration": 6.0,
|
||||||
|
"texture": ExtResource("10_051qt")
|
||||||
|
}, {
|
||||||
|
"duration": 6.0,
|
||||||
|
"texture": ExtResource("11_yi1w8")
|
||||||
|
}],
|
||||||
|
"loop": true,
|
||||||
|
"name": &"左2黄衣男呼吸",
|
||||||
|
"speed": 30.0
|
||||||
|
}, {
|
||||||
|
"frames": [{
|
||||||
|
"duration": 6.0,
|
||||||
|
"texture": ExtResource("12_wqcup")
|
||||||
|
}, {
|
||||||
|
"duration": 6.0,
|
||||||
|
"texture": ExtResource("13_8od1j")
|
||||||
|
}, {
|
||||||
|
"duration": 6.0,
|
||||||
|
"texture": ExtResource("14_awgic")
|
||||||
|
}],
|
||||||
|
"loop": true,
|
||||||
|
"name": &"左一绿衣男呼吸",
|
||||||
|
"speed": 30.0
|
||||||
|
}, {
|
||||||
|
"frames": [{
|
||||||
|
"duration": 3.0,
|
||||||
|
"texture": ExtResource("15_t7y4n")
|
||||||
|
}, {
|
||||||
|
"duration": 3.0,
|
||||||
|
"texture": ExtResource("16_f1vha")
|
||||||
|
}, {
|
||||||
|
"duration": 3.0,
|
||||||
|
"texture": ExtResource("17_dt1u3")
|
||||||
|
}, {
|
||||||
|
"duration": 3.0,
|
||||||
|
"texture": ExtResource("18_18yym")
|
||||||
|
}, {
|
||||||
|
"duration": 3.0,
|
||||||
|
"texture": ExtResource("19_p0pxn")
|
||||||
|
}, {
|
||||||
|
"duration": 3.0,
|
||||||
|
"texture": ExtResource("20_y4xna")
|
||||||
|
}, {
|
||||||
|
"duration": 3.0,
|
||||||
|
"texture": ExtResource("21_pmfth")
|
||||||
|
}, {
|
||||||
|
"duration": 3.0,
|
||||||
|
"texture": ExtResource("22_hvdrd")
|
||||||
|
}],
|
||||||
|
"loop": true,
|
||||||
|
"name": &"男孩跑动-右",
|
||||||
|
"speed": 30.0
|
||||||
|
}, {
|
||||||
|
"frames": [{
|
||||||
|
"duration": 3.0,
|
||||||
|
"texture": ExtResource("23_3ecok")
|
||||||
|
}, {
|
||||||
|
"duration": 3.0,
|
||||||
|
"texture": ExtResource("24_i4l65")
|
||||||
|
}, {
|
||||||
|
"duration": 3.0,
|
||||||
|
"texture": ExtResource("25_t0xqy")
|
||||||
|
}, {
|
||||||
|
"duration": 3.0,
|
||||||
|
"texture": ExtResource("26_ovkd0")
|
||||||
|
}, {
|
||||||
|
"duration": 3.0,
|
||||||
|
"texture": ExtResource("27_15o6h")
|
||||||
|
}, {
|
||||||
|
"duration": 3.0,
|
||||||
|
"texture": ExtResource("28_mlwgi")
|
||||||
|
}, {
|
||||||
|
"duration": 3.0,
|
||||||
|
"texture": ExtResource("29_i4yfr")
|
||||||
|
}, {
|
||||||
|
"duration": 3.0,
|
||||||
|
"texture": ExtResource("30_ndoch")
|
||||||
|
}],
|
||||||
|
"loop": true,
|
||||||
|
"name": &"男孩跑动-左",
|
||||||
|
"speed": 30.0
|
||||||
|
}, {
|
||||||
|
"frames": [{
|
||||||
|
"duration": 3.0,
|
||||||
|
"texture": ExtResource("31_7m718")
|
||||||
|
}, {
|
||||||
|
"duration": 3.0,
|
||||||
|
"texture": ExtResource("32_c4wgl")
|
||||||
|
}, {
|
||||||
|
"duration": 3.0,
|
||||||
|
"texture": ExtResource("33_j2fah")
|
||||||
|
}, {
|
||||||
|
"duration": 3.0,
|
||||||
|
"texture": ExtResource("34_1aobm")
|
||||||
|
}, {
|
||||||
|
"duration": 3.0,
|
||||||
|
"texture": ExtResource("35_07jql")
|
||||||
|
}, {
|
||||||
|
"duration": 3.0,
|
||||||
|
"texture": ExtResource("36_ufacq")
|
||||||
|
}, {
|
||||||
|
"duration": 3.0,
|
||||||
|
"texture": ExtResource("37_u6xcr")
|
||||||
|
}],
|
||||||
|
"loop": true,
|
||||||
|
"name": &"男孩跑动停球",
|
||||||
|
"speed": 30.0
|
||||||
|
}, {
|
||||||
|
"frames": [{
|
||||||
|
"duration": 6.0,
|
||||||
|
"texture": ExtResource("38_vmpr4")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("39_bkomk")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("40_y2al4")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("41_iuide")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("42_7yjpa")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("43_ctekv")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("44_f2e71")
|
||||||
|
}],
|
||||||
|
"loop": true,
|
||||||
|
"name": &"秋千",
|
||||||
|
"speed": 30.0
|
||||||
|
}, {
|
||||||
|
"frames": [{
|
||||||
|
"duration": 6.0,
|
||||||
|
"texture": ExtResource("45_1u1d2")
|
||||||
|
}, {
|
||||||
|
"duration": 6.0,
|
||||||
|
"texture": ExtResource("46_cpt84")
|
||||||
|
}, {
|
||||||
|
"duration": 6.0,
|
||||||
|
"texture": ExtResource("47_ncj48")
|
||||||
|
}],
|
||||||
|
"loop": true,
|
||||||
|
"name": &"红衣姑娘呼吸",
|
||||||
|
"speed": 30.0
|
||||||
|
}, {
|
||||||
|
"frames": [{
|
||||||
|
"duration": 10.5,
|
||||||
|
"texture": ExtResource("48_xq4xh")
|
||||||
|
}, {
|
||||||
|
"duration": 10.5,
|
||||||
|
"texture": ExtResource("49_5qald")
|
||||||
|
}, {
|
||||||
|
"duration": 10.5,
|
||||||
|
"texture": ExtResource("50_ndrgc")
|
||||||
|
}, {
|
||||||
|
"duration": 10.5,
|
||||||
|
"texture": ExtResource("51_rtpby")
|
||||||
|
}, {
|
||||||
|
"duration": 10.5,
|
||||||
|
"texture": ExtResource("52_yncgy")
|
||||||
|
}],
|
||||||
|
"loop": true,
|
||||||
|
"name": &"红衣姑娘抬头",
|
||||||
|
"speed": 30.0
|
||||||
|
}, {
|
||||||
|
"frames": [{
|
||||||
|
"duration": 9.0,
|
||||||
|
"texture": ExtResource("53_07cu2")
|
||||||
|
}, {
|
||||||
|
"duration": 9.0,
|
||||||
|
"texture": ExtResource("54_1ig2q")
|
||||||
|
}, {
|
||||||
|
"duration": 9.0,
|
||||||
|
"texture": ExtResource("55_yqdsa")
|
||||||
|
}, {
|
||||||
|
"duration": 9.0,
|
||||||
|
"texture": ExtResource("56_kpwmb")
|
||||||
|
}, {
|
||||||
|
"duration": 9.0,
|
||||||
|
"texture": ExtResource("57_2mmq0")
|
||||||
|
}, {
|
||||||
|
"duration": 9.0,
|
||||||
|
"texture": ExtResource("58_gtj82")
|
||||||
|
}],
|
||||||
|
"loop": true,
|
||||||
|
"name": &"跷跷板",
|
||||||
|
"speed": 30.0
|
||||||
|
}, {
|
||||||
|
"frames": [{
|
||||||
|
"duration": 6.0,
|
||||||
|
"texture": ExtResource("59_tgtdw")
|
||||||
|
}, {
|
||||||
|
"duration": 6.0,
|
||||||
|
"texture": ExtResource("60_kgk0o")
|
||||||
|
}, {
|
||||||
|
"duration": 6.0,
|
||||||
|
"texture": ExtResource("61_g7a6o")
|
||||||
|
}],
|
||||||
|
"loop": true,
|
||||||
|
"name": &"院长呼吸",
|
||||||
|
"speed": 30.0
|
||||||
|
}, {
|
||||||
|
"frames": [{
|
||||||
|
"duration": 6.0,
|
||||||
|
"texture": ExtResource("62_xxjts")
|
||||||
|
}, {
|
||||||
|
"duration": 6.0,
|
||||||
|
"texture": ExtResource("63_6y00q")
|
||||||
|
}, {
|
||||||
|
"duration": 6.0,
|
||||||
|
"texture": ExtResource("64_6j8gg")
|
||||||
|
}, {
|
||||||
|
"duration": 6.0,
|
||||||
|
"texture": ExtResource("65_5sckl")
|
||||||
|
}, {
|
||||||
|
"duration": 6.0,
|
||||||
|
"texture": ExtResource("66_i0u5o")
|
||||||
|
}, {
|
||||||
|
"duration": 6.0,
|
||||||
|
"texture": ExtResource("67_fuqid")
|
||||||
|
}, {
|
||||||
|
"duration": 12.0,
|
||||||
|
"texture": ExtResource("68_548o5")
|
||||||
|
}],
|
||||||
|
"loop": true,
|
||||||
|
"name": &"院长抬头",
|
||||||
|
"speed": 30.0
|
||||||
|
}, {
|
||||||
|
"frames": [{
|
||||||
|
"duration": 6.0,
|
||||||
|
"texture": ExtResource("69_olq7e")
|
||||||
|
}, {
|
||||||
|
"duration": 6.0,
|
||||||
|
"texture": ExtResource("70_vys0d")
|
||||||
|
}, {
|
||||||
|
"duration": 6.0,
|
||||||
|
"texture": ExtResource("71_sk4ev")
|
||||||
|
}, {
|
||||||
|
"duration": 6.0,
|
||||||
|
"texture": ExtResource("72_2m2f0")
|
||||||
|
}, {
|
||||||
|
"duration": 6.0,
|
||||||
|
"texture": ExtResource("73_8tjai")
|
||||||
|
}],
|
||||||
|
"loop": true,
|
||||||
|
"name": &"院长翻书",
|
||||||
|
"speed": 30.0
|
||||||
|
}]
|
BIN
asset/art/gif/c01_孤儿院长廊/中蓝衣小孩呼吸.gif
Executable file
After Width: | Height: | Size: 4.2 KiB |
14
asset/art/gif/c01_孤儿院长廊/中蓝衣小孩呼吸.gif.import
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="gif.animated.texture.plugin"
|
||||||
|
type="SpriteFrames"
|
||||||
|
uid="uid://clljrs0o1okgp"
|
||||||
|
path="res://.godot/imported/中蓝衣小孩呼吸.gif-77092f5e8e61a10e8aff0a7f8840b954.tres"
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://asset/art/gif/c01_孤儿院长廊/中蓝衣小孩呼吸.gif"
|
||||||
|
dest_files=["res://.godot/imported/中蓝衣小孩呼吸.gif-77092f5e8e61a10e8aff0a7f8840b954.tres"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
BIN
asset/art/gif/c01_孤儿院长廊/中蓝衣小孩呼吸/0.png
Normal file
After Width: | Height: | Size: 1.9 KiB |
34
asset/art/gif/c01_孤儿院长廊/中蓝衣小孩呼吸/0.png.import
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://deebi18wyq1wj"
|
||||||
|
path="res://.godot/imported/0.png-2000ff4f8448f0963c71b8dd3882716f.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://asset/art/gif/c01_孤儿院长廊/中蓝衣小孩呼吸/0.png"
|
||||||
|
dest_files=["res://.godot/imported/0.png-2000ff4f8448f0963c71b8dd3882716f.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
BIN
asset/art/gif/c01_孤儿院长廊/中蓝衣小孩呼吸/1.png
Normal file
After Width: | Height: | Size: 1.9 KiB |
34
asset/art/gif/c01_孤儿院长廊/中蓝衣小孩呼吸/1.png.import
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://d3lbtcx6p8acv"
|
||||||
|
path="res://.godot/imported/1.png-1a37aa066973d14fd4da9e49da475693.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://asset/art/gif/c01_孤儿院长廊/中蓝衣小孩呼吸/1.png"
|
||||||
|
dest_files=["res://.godot/imported/1.png-1a37aa066973d14fd4da9e49da475693.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
BIN
asset/art/gif/c01_孤儿院长廊/中蓝衣小孩呼吸/2.png
Normal file
After Width: | Height: | Size: 1.9 KiB |
34
asset/art/gif/c01_孤儿院长廊/中蓝衣小孩呼吸/2.png.import
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://chcpy0ijod33k"
|
||||||
|
path="res://.godot/imported/2.png-9b22859869e0873345bcef2a908fa3f1.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://asset/art/gif/c01_孤儿院长廊/中蓝衣小孩呼吸/2.png"
|
||||||
|
dest_files=["res://.godot/imported/2.png-9b22859869e0873345bcef2a908fa3f1.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
BIN
asset/art/gif/c01_孤儿院长廊/右绿衣男孩呼吸.gif
Executable file
After Width: | Height: | Size: 3.4 KiB |
14
asset/art/gif/c01_孤儿院长廊/右绿衣男孩呼吸.gif.import
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="gif.animated.texture.plugin"
|
||||||
|
type="SpriteFrames"
|
||||||
|
uid="uid://dqjyk3ev1q6nt"
|
||||||
|
path="res://.godot/imported/右绿衣男孩呼吸.gif-09f38b5d32c567682877d21756d726b9.tres"
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://asset/art/gif/c01_孤儿院长廊/右绿衣男孩呼吸.gif"
|
||||||
|
dest_files=["res://.godot/imported/右绿衣男孩呼吸.gif-09f38b5d32c567682877d21756d726b9.tres"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
BIN
asset/art/gif/c01_孤儿院长廊/右绿衣男孩呼吸/0.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
34
asset/art/gif/c01_孤儿院长廊/右绿衣男孩呼吸/0.png.import
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://dy4bxjqeue838"
|
||||||
|
path="res://.godot/imported/0.png-999b528dac246e5c8882ba56033bfe3a.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://asset/art/gif/c01_孤儿院长廊/右绿衣男孩呼吸/0.png"
|
||||||
|
dest_files=["res://.godot/imported/0.png-999b528dac246e5c8882ba56033bfe3a.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
BIN
asset/art/gif/c01_孤儿院长廊/右绿衣男孩呼吸/1.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
34
asset/art/gif/c01_孤儿院长廊/右绿衣男孩呼吸/1.png.import
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://r8q2qrp7cil0"
|
||||||
|
path="res://.godot/imported/1.png-8b77da157f9ad456189bca0ea61291bb.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://asset/art/gif/c01_孤儿院长廊/右绿衣男孩呼吸/1.png"
|
||||||
|
dest_files=["res://.godot/imported/1.png-8b77da157f9ad456189bca0ea61291bb.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
BIN
asset/art/gif/c01_孤儿院长廊/右绿衣男孩呼吸/2.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
34
asset/art/gif/c01_孤儿院长廊/右绿衣男孩呼吸/2.png.import
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://dufaxxkhgt27b"
|
||||||
|
path="res://.godot/imported/2.png-ac7bc0cbe21e96c06656639c66388f8f.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://asset/art/gif/c01_孤儿院长廊/右绿衣男孩呼吸/2.png"
|
||||||
|
dest_files=["res://.godot/imported/2.png-ac7bc0cbe21e96c06656639c66388f8f.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
BIN
asset/art/gif/c01_孤儿院长廊/左2黄衣男呼吸.gif
Executable file
After Width: | Height: | Size: 3.3 KiB |
14
asset/art/gif/c01_孤儿院长廊/左2黄衣男呼吸.gif.import
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="gif.animated.texture.plugin"
|
||||||
|
type="SpriteFrames"
|
||||||
|
uid="uid://b3crn68rbgpws"
|
||||||
|
path="res://.godot/imported/左2黄衣男呼吸.gif-0a7652c62cbcac492dd8af2353c897bf.tres"
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://asset/art/gif/c01_孤儿院长廊/左2黄衣男呼吸.gif"
|
||||||
|
dest_files=["res://.godot/imported/左2黄衣男呼吸.gif-0a7652c62cbcac492dd8af2353c897bf.tres"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
BIN
asset/art/gif/c01_孤儿院长廊/左2黄衣男呼吸/0.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
34
asset/art/gif/c01_孤儿院长廊/左2黄衣男呼吸/0.png.import
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://dyk2lx08bhes2"
|
||||||
|
path="res://.godot/imported/0.png-be459214b0529b199265f9715eb5ab1a.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://asset/art/gif/c01_孤儿院长廊/左2黄衣男呼吸/0.png"
|
||||||
|
dest_files=["res://.godot/imported/0.png-be459214b0529b199265f9715eb5ab1a.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
BIN
asset/art/gif/c01_孤儿院长廊/左2黄衣男呼吸/1.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
34
asset/art/gif/c01_孤儿院长廊/左2黄衣男呼吸/1.png.import
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://c3bo6iougpnpt"
|
||||||
|
path="res://.godot/imported/1.png-c656ec75597697a89e9fdafbe9ba1370.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://asset/art/gif/c01_孤儿院长廊/左2黄衣男呼吸/1.png"
|
||||||
|
dest_files=["res://.godot/imported/1.png-c656ec75597697a89e9fdafbe9ba1370.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
BIN
asset/art/gif/c01_孤儿院长廊/左2黄衣男呼吸/2.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
34
asset/art/gif/c01_孤儿院长廊/左2黄衣男呼吸/2.png.import
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://4p61pega3kbf"
|
||||||
|
path="res://.godot/imported/2.png-464d410fcf4d1721b8cde3aa8d7a0c64.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://asset/art/gif/c01_孤儿院长廊/左2黄衣男呼吸/2.png"
|
||||||
|
dest_files=["res://.godot/imported/2.png-464d410fcf4d1721b8cde3aa8d7a0c64.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
BIN
asset/art/gif/c01_孤儿院长廊/左一绿衣男呼吸.gif
Executable file
After Width: | Height: | Size: 3.7 KiB |
14
asset/art/gif/c01_孤儿院长廊/左一绿衣男呼吸.gif.import
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="gif.animated.texture.plugin"
|
||||||
|
type="SpriteFrames"
|
||||||
|
uid="uid://cyjgm8vim88vs"
|
||||||
|
path="res://.godot/imported/左一绿衣男呼吸.gif-e6143052d9a57c2233a66a35db73836a.tres"
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://asset/art/gif/c01_孤儿院长廊/左一绿衣男呼吸.gif"
|
||||||
|
dest_files=["res://.godot/imported/左一绿衣男呼吸.gif-e6143052d9a57c2233a66a35db73836a.tres"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
BIN
asset/art/gif/c01_孤儿院长廊/左一绿衣男呼吸/0.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
34
asset/art/gif/c01_孤儿院长廊/左一绿衣男呼吸/0.png.import
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://crbt33v4co86p"
|
||||||
|
path="res://.godot/imported/0.png-082dbafc62aa04cf70ba8c1949373159.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://asset/art/gif/c01_孤儿院长廊/左一绿衣男呼吸/0.png"
|
||||||
|
dest_files=["res://.godot/imported/0.png-082dbafc62aa04cf70ba8c1949373159.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
BIN
asset/art/gif/c01_孤儿院长廊/左一绿衣男呼吸/1.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
34
asset/art/gif/c01_孤儿院长廊/左一绿衣男呼吸/1.png.import
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://ds536i1lpsnh3"
|
||||||
|
path="res://.godot/imported/1.png-05e4b902139d397e2f57e6d10e74812f.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://asset/art/gif/c01_孤儿院长廊/左一绿衣男呼吸/1.png"
|
||||||
|
dest_files=["res://.godot/imported/1.png-05e4b902139d397e2f57e6d10e74812f.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
BIN
asset/art/gif/c01_孤儿院长廊/左一绿衣男呼吸/2.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
34
asset/art/gif/c01_孤儿院长廊/左一绿衣男呼吸/2.png.import
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://bsje8sy3nojy1"
|
||||||
|
path="res://.godot/imported/2.png-b9e697f663c335757e3602c5366aa478.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://asset/art/gif/c01_孤儿院长廊/左一绿衣男呼吸/2.png"
|
||||||
|
dest_files=["res://.godot/imported/2.png-b9e697f663c335757e3602c5366aa478.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
BIN
asset/art/gif/c01_孤儿院长廊/男孩要踢的球.png
Executable file
After Width: | Height: | Size: 3.7 KiB |
34
asset/art/gif/c01_孤儿院长廊/男孩要踢的球.png.import
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://bmedw8l7ew067"
|
||||||
|
path="res://.godot/imported/男孩要踢的球.png-1d03a6f3a8afc407e49d84627ba79a89.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://asset/art/gif/c01_孤儿院长廊/男孩要踢的球.png"
|
||||||
|
dest_files=["res://.godot/imported/男孩要踢的球.png-1d03a6f3a8afc407e49d84627ba79a89.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
BIN
asset/art/gif/c01_孤儿院长廊/男孩跑动-右.gif
Executable file
After Width: | Height: | Size: 7.7 KiB |
14
asset/art/gif/c01_孤儿院长廊/男孩跑动-右.gif.import
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="gif.animated.texture.plugin"
|
||||||
|
type="SpriteFrames"
|
||||||
|
uid="uid://couji28wtcvdr"
|
||||||
|
path="res://.godot/imported/男孩跑动-右.gif-a159797eddd8a26bb24da45c9c51c680.tres"
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://asset/art/gif/c01_孤儿院长廊/男孩跑动-右.gif"
|
||||||
|
dest_files=["res://.godot/imported/男孩跑动-右.gif-a159797eddd8a26bb24da45c9c51c680.tres"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
BIN
asset/art/gif/c01_孤儿院长廊/男孩跑动-右/0.png
Normal file
After Width: | Height: | Size: 1.9 KiB |
34
asset/art/gif/c01_孤儿院长廊/男孩跑动-右/0.png.import
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://d0jbxpedkgndg"
|
||||||
|
path="res://.godot/imported/0.png-dca679c75a533632dd99dc17ef980da4.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://asset/art/gif/c01_孤儿院长廊/男孩跑动-右/0.png"
|
||||||
|
dest_files=["res://.godot/imported/0.png-dca679c75a533632dd99dc17ef980da4.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
BIN
asset/art/gif/c01_孤儿院长廊/男孩跑动-右/1.png
Normal file
After Width: | Height: | Size: 1.9 KiB |
34
asset/art/gif/c01_孤儿院长廊/男孩跑动-右/1.png.import
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://w4bfs3sojpd"
|
||||||
|
path="res://.godot/imported/1.png-e16f1b721f741a55ada68684ff87c10f.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://asset/art/gif/c01_孤儿院长廊/男孩跑动-右/1.png"
|
||||||
|
dest_files=["res://.godot/imported/1.png-e16f1b721f741a55ada68684ff87c10f.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
BIN
asset/art/gif/c01_孤儿院长廊/男孩跑动-右/2.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
34
asset/art/gif/c01_孤儿院长廊/男孩跑动-右/2.png.import
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://c42xie6qtym1e"
|
||||||
|
path="res://.godot/imported/2.png-650514c059ab24db6f300ef331eb12a7.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://asset/art/gif/c01_孤儿院长廊/男孩跑动-右/2.png"
|
||||||
|
dest_files=["res://.godot/imported/2.png-650514c059ab24db6f300ef331eb12a7.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
BIN
asset/art/gif/c01_孤儿院长廊/男孩跑动-右/3.png
Normal file
After Width: | Height: | Size: 1.7 KiB |
34
asset/art/gif/c01_孤儿院长廊/男孩跑动-右/3.png.import
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://223pqehes7fw"
|
||||||
|
path="res://.godot/imported/3.png-550a7fdfe886326801f7635aca0bcd03.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://asset/art/gif/c01_孤儿院长廊/男孩跑动-右/3.png"
|
||||||
|
dest_files=["res://.godot/imported/3.png-550a7fdfe886326801f7635aca0bcd03.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
BIN
asset/art/gif/c01_孤儿院长廊/男孩跑动-右/4.png
Normal file
After Width: | Height: | Size: 1.9 KiB |
34
asset/art/gif/c01_孤儿院长廊/男孩跑动-右/4.png.import
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://bt7b74bfp4t75"
|
||||||
|
path="res://.godot/imported/4.png-ba91fa408f1a41375ea6931184695e69.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://asset/art/gif/c01_孤儿院长廊/男孩跑动-右/4.png"
|
||||||
|
dest_files=["res://.godot/imported/4.png-ba91fa408f1a41375ea6931184695e69.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
BIN
asset/art/gif/c01_孤儿院长廊/男孩跑动-右/5.png
Normal file
After Width: | Height: | Size: 1.9 KiB |
34
asset/art/gif/c01_孤儿院长廊/男孩跑动-右/5.png.import
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://cb4ub1kngg0or"
|
||||||
|
path="res://.godot/imported/5.png-bc715ef7ce03390a999f49f40438b129.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://asset/art/gif/c01_孤儿院长廊/男孩跑动-右/5.png"
|
||||||
|
dest_files=["res://.godot/imported/5.png-bc715ef7ce03390a999f49f40438b129.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
BIN
asset/art/gif/c01_孤儿院长廊/男孩跑动-右/6.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
34
asset/art/gif/c01_孤儿院长廊/男孩跑动-右/6.png.import
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://vo0ah8q2orws"
|
||||||
|
path="res://.godot/imported/6.png-b94bfd66c3ba7bc8005f0f00fd97b347.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://asset/art/gif/c01_孤儿院长廊/男孩跑动-右/6.png"
|
||||||
|
dest_files=["res://.godot/imported/6.png-b94bfd66c3ba7bc8005f0f00fd97b347.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
BIN
asset/art/gif/c01_孤儿院长廊/男孩跑动-右/7.png
Normal file
After Width: | Height: | Size: 1.7 KiB |
34
asset/art/gif/c01_孤儿院长廊/男孩跑动-右/7.png.import
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://b64t3xk7epc8w"
|
||||||
|
path="res://.godot/imported/7.png-9140ae0bad5411dda93dd2279ba8d00e.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://asset/art/gif/c01_孤儿院长廊/男孩跑动-右/7.png"
|
||||||
|
dest_files=["res://.godot/imported/7.png-9140ae0bad5411dda93dd2279ba8d00e.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
BIN
asset/art/gif/c01_孤儿院长廊/男孩跑动-左.gif
Executable file
After Width: | Height: | Size: 7.7 KiB |
14
asset/art/gif/c01_孤儿院长廊/男孩跑动-左.gif.import
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="gif.animated.texture.plugin"
|
||||||
|
type="SpriteFrames"
|
||||||
|
uid="uid://dx5npodddqcmw"
|
||||||
|
path="res://.godot/imported/男孩跑动-左.gif-842438168ed91e73a4f7d2c60ed0054d.tres"
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://asset/art/gif/c01_孤儿院长廊/男孩跑动-左.gif"
|
||||||
|
dest_files=["res://.godot/imported/男孩跑动-左.gif-842438168ed91e73a4f7d2c60ed0054d.tres"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
BIN
asset/art/gif/c01_孤儿院长廊/男孩跑动-左/0.png
Normal file
After Width: | Height: | Size: 1.9 KiB |
34
asset/art/gif/c01_孤儿院长廊/男孩跑动-左/0.png.import
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://1p0w8b0fdsk1"
|
||||||
|
path="res://.godot/imported/0.png-2bfd4a0cf0547aa154f07cdfd207523b.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://asset/art/gif/c01_孤儿院长廊/男孩跑动-左/0.png"
|
||||||
|
dest_files=["res://.godot/imported/0.png-2bfd4a0cf0547aa154f07cdfd207523b.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
BIN
asset/art/gif/c01_孤儿院长廊/男孩跑动-左/1.png
Normal file
After Width: | Height: | Size: 1.8 KiB |
34
asset/art/gif/c01_孤儿院长廊/男孩跑动-左/1.png.import
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://01qufu3ddoi"
|
||||||
|
path="res://.godot/imported/1.png-19c082813c9c13ead2cf9ce6f4c4b92b.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://asset/art/gif/c01_孤儿院长廊/男孩跑动-左/1.png"
|
||||||
|
dest_files=["res://.godot/imported/1.png-19c082813c9c13ead2cf9ce6f4c4b92b.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
BIN
asset/art/gif/c01_孤儿院长廊/男孩跑动-左/2.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
34
asset/art/gif/c01_孤儿院长廊/男孩跑动-左/2.png.import
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://h51ek708aah1"
|
||||||
|
path="res://.godot/imported/2.png-20610e689097ae1f4ff2b2027bae7f65.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://asset/art/gif/c01_孤儿院长廊/男孩跑动-左/2.png"
|
||||||
|
dest_files=["res://.godot/imported/2.png-20610e689097ae1f4ff2b2027bae7f65.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
BIN
asset/art/gif/c01_孤儿院长廊/男孩跑动-左/3.png
Normal file
After Width: | Height: | Size: 1.7 KiB |
34
asset/art/gif/c01_孤儿院长廊/男孩跑动-左/3.png.import
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://c50cr55a20v51"
|
||||||
|
path="res://.godot/imported/3.png-4a9380c737e6d562072528909bd4c82f.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://asset/art/gif/c01_孤儿院长廊/男孩跑动-左/3.png"
|
||||||
|
dest_files=["res://.godot/imported/3.png-4a9380c737e6d562072528909bd4c82f.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
BIN
asset/art/gif/c01_孤儿院长廊/男孩跑动-左/4.png
Normal file
After Width: | Height: | Size: 1.9 KiB |
34
asset/art/gif/c01_孤儿院长廊/男孩跑动-左/4.png.import
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://cr8f4u8qu58tm"
|
||||||
|
path="res://.godot/imported/4.png-698b0107d34762a53b7f5d46c315cfbb.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://asset/art/gif/c01_孤儿院长廊/男孩跑动-左/4.png"
|
||||||
|
dest_files=["res://.godot/imported/4.png-698b0107d34762a53b7f5d46c315cfbb.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
BIN
asset/art/gif/c01_孤儿院长廊/男孩跑动-左/5.png
Normal file
After Width: | Height: | Size: 1.8 KiB |
34
asset/art/gif/c01_孤儿院长廊/男孩跑动-左/5.png.import
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://dxg616utolf3q"
|
||||||
|
path="res://.godot/imported/5.png-f5664fe899f89c6757a523a9a57172f3.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://asset/art/gif/c01_孤儿院长廊/男孩跑动-左/5.png"
|
||||||
|
dest_files=["res://.godot/imported/5.png-f5664fe899f89c6757a523a9a57172f3.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
BIN
asset/art/gif/c01_孤儿院长廊/男孩跑动-左/6.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
34
asset/art/gif/c01_孤儿院长廊/男孩跑动-左/6.png.import
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://cb5cajeycnx1j"
|
||||||
|
path="res://.godot/imported/6.png-d33156b2483e0ef59b3d97d72c497e28.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://asset/art/gif/c01_孤儿院长廊/男孩跑动-左/6.png"
|
||||||
|
dest_files=["res://.godot/imported/6.png-d33156b2483e0ef59b3d97d72c497e28.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
BIN
asset/art/gif/c01_孤儿院长廊/男孩跑动-左/7.png
Normal file
After Width: | Height: | Size: 1.7 KiB |
34
asset/art/gif/c01_孤儿院长廊/男孩跑动-左/7.png.import
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://bn4mg4egmfmo8"
|
||||||
|
path="res://.godot/imported/7.png-23e7c0c92a7e1f5983ccc515608111e9.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://asset/art/gif/c01_孤儿院长廊/男孩跑动-左/7.png"
|
||||||
|
dest_files=["res://.godot/imported/7.png-23e7c0c92a7e1f5983ccc515608111e9.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
BIN
asset/art/gif/c01_孤儿院长廊/男孩跑动停球.gif
Executable file
After Width: | Height: | Size: 7.1 KiB |
14
asset/art/gif/c01_孤儿院长廊/男孩跑动停球.gif.import
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="gif.animated.texture.plugin"
|
||||||
|
type="SpriteFrames"
|
||||||
|
uid="uid://wufnauy0uxpw"
|
||||||
|
path="res://.godot/imported/男孩跑动停球.gif-7e8fd3727ad5f108210a439356569a39.tres"
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://asset/art/gif/c01_孤儿院长廊/男孩跑动停球.gif"
|
||||||
|
dest_files=["res://.godot/imported/男孩跑动停球.gif-7e8fd3727ad5f108210a439356569a39.tres"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
BIN
asset/art/gif/c01_孤儿院长廊/男孩跑动停球/0.png
Normal file
After Width: | Height: | Size: 1.8 KiB |
34
asset/art/gif/c01_孤儿院长廊/男孩跑动停球/0.png.import
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://cvdxmweucfmuv"
|
||||||
|
path="res://.godot/imported/0.png-bd2fe5f79f9222f388e76437fc897611.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://asset/art/gif/c01_孤儿院长廊/男孩跑动停球/0.png"
|
||||||
|
dest_files=["res://.godot/imported/0.png-bd2fe5f79f9222f388e76437fc897611.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
BIN
asset/art/gif/c01_孤儿院长廊/男孩跑动停球/1.png
Normal file
After Width: | Height: | Size: 1.7 KiB |
34
asset/art/gif/c01_孤儿院长廊/男孩跑动停球/1.png.import
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://b7iipsk4yqqoq"
|
||||||
|
path="res://.godot/imported/1.png-1353d96ad2b18e946ae7767bc1230d79.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://asset/art/gif/c01_孤儿院长廊/男孩跑动停球/1.png"
|
||||||
|
dest_files=["res://.godot/imported/1.png-1353d96ad2b18e946ae7767bc1230d79.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
BIN
asset/art/gif/c01_孤儿院长廊/男孩跑动停球/2.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
34
asset/art/gif/c01_孤儿院长廊/男孩跑动停球/2.png.import
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://beeu8pkquxxrm"
|
||||||
|
path="res://.godot/imported/2.png-8640cba9438eba3fd51f8fea88a545b9.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://asset/art/gif/c01_孤儿院长廊/男孩跑动停球/2.png"
|
||||||
|
dest_files=["res://.godot/imported/2.png-8640cba9438eba3fd51f8fea88a545b9.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
BIN
asset/art/gif/c01_孤儿院长廊/男孩跑动停球/3.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
34
asset/art/gif/c01_孤儿院长廊/男孩跑动停球/3.png.import
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://0adu3teqqo56"
|
||||||
|
path="res://.godot/imported/3.png-e8acbfcaa079e6afa64ee1229e2a5e76.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://asset/art/gif/c01_孤儿院长廊/男孩跑动停球/3.png"
|
||||||
|
dest_files=["res://.godot/imported/3.png-e8acbfcaa079e6afa64ee1229e2a5e76.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
BIN
asset/art/gif/c01_孤儿院长廊/男孩跑动停球/4.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
34
asset/art/gif/c01_孤儿院长廊/男孩跑动停球/4.png.import
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://gwibpf3nnyig"
|
||||||
|
path="res://.godot/imported/4.png-23ec3d412214b77186dea2d941ddde9d.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://asset/art/gif/c01_孤儿院长廊/男孩跑动停球/4.png"
|
||||||
|
dest_files=["res://.godot/imported/4.png-23ec3d412214b77186dea2d941ddde9d.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
BIN
asset/art/gif/c01_孤儿院长廊/男孩跑动停球/5.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
34
asset/art/gif/c01_孤儿院长廊/男孩跑动停球/5.png.import
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://0d7551536vjt"
|
||||||
|
path="res://.godot/imported/5.png-2f7d311a53208965373d46b83b24d06d.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://asset/art/gif/c01_孤儿院长廊/男孩跑动停球/5.png"
|
||||||
|
dest_files=["res://.godot/imported/5.png-2f7d311a53208965373d46b83b24d06d.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
BIN
asset/art/gif/c01_孤儿院长廊/男孩跑动停球/6.png
Normal file
After Width: | Height: | Size: 1.9 KiB |
34
asset/art/gif/c01_孤儿院长廊/男孩跑动停球/6.png.import
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://q5227y5lm2uo"
|
||||||
|
path="res://.godot/imported/6.png-66f9e207dfd68f80280572712f6415e4.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://asset/art/gif/c01_孤儿院长廊/男孩跑动停球/6.png"
|
||||||
|
dest_files=["res://.godot/imported/6.png-66f9e207dfd68f80280572712f6415e4.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
BIN
asset/art/gif/c01_孤儿院长廊/秋千.gif
Executable file
After Width: | Height: | Size: 18 KiB |
14
asset/art/gif/c01_孤儿院长廊/秋千.gif.import
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="gif.animated.texture.plugin"
|
||||||
|
type="SpriteFrames"
|
||||||
|
uid="uid://b7mbx3yfi3fn"
|
||||||
|
path="res://.godot/imported/秋千.gif-93ced82045192fd606947f37fc5c3040.tres"
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://asset/art/gif/c01_孤儿院长廊/秋千.gif"
|
||||||
|
dest_files=["res://.godot/imported/秋千.gif-93ced82045192fd606947f37fc5c3040.tres"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
BIN
asset/art/gif/c01_孤儿院长廊/秋千/0.png
Normal file
After Width: | Height: | Size: 3.7 KiB |
34
asset/art/gif/c01_孤儿院长廊/秋千/0.png.import
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://04kgsmonjhjw"
|
||||||
|
path="res://.godot/imported/0.png-53db0fd3e561179a493df8878f4470d3.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://asset/art/gif/c01_孤儿院长廊/秋千/0.png"
|
||||||
|
dest_files=["res://.godot/imported/0.png-53db0fd3e561179a493df8878f4470d3.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
BIN
asset/art/gif/c01_孤儿院长廊/秋千/1.png
Normal file
After Width: | Height: | Size: 3.6 KiB |
34
asset/art/gif/c01_孤儿院长廊/秋千/1.png.import
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://bf6gf0tcq5kon"
|
||||||
|
path="res://.godot/imported/1.png-bff25844df386ca57ef17cfd6846d2ae.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://asset/art/gif/c01_孤儿院长廊/秋千/1.png"
|
||||||
|
dest_files=["res://.godot/imported/1.png-bff25844df386ca57ef17cfd6846d2ae.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|