Compare commits
41 Commits
434bb7b509
...
96e6590a86
Author | SHA1 | Date | |
---|---|---|---|
96e6590a86 | |||
d1f0771bda | |||
f1d6a6c4fd | |||
34489d1326 | |||
440b0a15d6 | |||
63bacec2fa | |||
56874e60cf | |||
e3640cf715 | |||
fc126995b0 | |||
![]() |
6078fb3259 | ||
![]() |
dd289bd8cf | ||
![]() |
3a40adc40f | ||
![]() |
3e3fb449a2 | ||
![]() |
1041e1ebab | ||
92cd04847a | |||
254e8a15e0 | |||
bc7c73ba69 | |||
3ca0437651 | |||
aedf7d3896 | |||
cb52aed2ed | |||
28b067c4f6 | |||
9ca51cde97 | |||
c75f1efb5d | |||
e2dcdb0512 | |||
9b0ecd4345 | |||
8c91477f21 | |||
ad763a56e6 | |||
7a9d6868b0 | |||
958789fade | |||
3297219149 | |||
![]() |
90024f59f1 | ||
dfd5429b70 | |||
4309ce1f26 | |||
80ad0b18db | |||
efa95b3236 | |||
97e7f080ba | |||
54ed0738d3 | |||
b232d013ff | |||
f9801e4b6f | |||
d204e8f894 | |||
bbb46473f2 |
@ -181,6 +181,7 @@ current_scene 是通过 GroundLoader 加载的,在 ground loader 加载 ground
|
||||
- 影响 SignSnapper 的等待时长(如 Boss 战时加快节奏)
|
||||
- 转场 process 机制优化:暂停 & AnimationPlayer 保持运行
|
||||
- EventManager 控制事件,使用 Event2D 控制绑定关系
|
||||
- formula_dict: 前置事件推动后续。示例(条件数>=1): `xx=2 & yy=1 & xy=3 -> zz=1`
|
||||
- 比 Event2D 更轻量灵活的 EventBinder,内有 updater 与 trigger 两种绑定
|
||||
- updater 由 event 驱动更新父节点状态
|
||||
- trigger 由父节点 signal 驱动更新 event
|
||||
|
@ -1,6 +1,8 @@
|
||||
@tool
|
||||
class_name ProAnimatedSprite2D extends AnimatedSprite2D
|
||||
|
||||
signal position_updated(global_pos: Vector2)
|
||||
|
||||
@export var autostart := true
|
||||
@export var action_configs: Array[Dictionary] = []
|
||||
@export var move_configs: Array[Dictionary] = []
|
||||
@ -92,7 +94,7 @@ func _debug_mov_projection():
|
||||
# 展示 accumulated animation 的目标位置
|
||||
debug_mov_onion_sprite2d.position.x = (
|
||||
mov_config.movement_x * (-1 if flip_h else 1) / scale.x
|
||||
)
|
||||
) * sign(mov_config.velocity.x)
|
||||
debug_mov_onion_sprite2d.texture = sprite_frames.get_frame_texture(debug_mov_animation, 0)
|
||||
debug_mov_onion_sprite2d.flip_h = flip_h
|
||||
elif debug_mov_animation:
|
||||
@ -190,12 +192,12 @@ func _physics_process(delta: float) -> void:
|
||||
"切换 animation:", mov_x_next_animation, " accumulated_mov_x=", accumulated_mov_x
|
||||
)
|
||||
play(mov_x_next_animation)
|
||||
if not velocity.y:
|
||||
return
|
||||
if flip_v:
|
||||
position.y -= velocity.y * delta
|
||||
else:
|
||||
position.y += velocity.y * delta
|
||||
if velocity.y:
|
||||
if flip_v:
|
||||
position.y -= velocity.y * delta
|
||||
else:
|
||||
position.y += velocity.y * delta
|
||||
position_updated.emit(global_position)
|
||||
|
||||
|
||||
# temporary set velocity
|
||||
|
BIN
asset/art/animation/c00_吕萍_拉大柜子/0.png
Normal file
After Width: | Height: | Size: 7.0 KiB |
34
asset/art/animation/c00_吕萍_拉大柜子/0.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dyr5bjocsop47"
|
||||
path="res://.godot/imported/0.png-ea5e8e75860809d5abf5f7039029f4af.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/animation/c00_吕萍_拉大柜子/0.png"
|
||||
dest_files=["res://.godot/imported/0.png-ea5e8e75860809d5abf5f7039029f4af.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/animation/c00_吕萍_拉大柜子/1.png
Normal file
After Width: | Height: | Size: 7.0 KiB |
34
asset/art/animation/c00_吕萍_拉大柜子/1.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bw0ao4wduniff"
|
||||
path="res://.godot/imported/1.png-a81cd2472daead2a196f880a1c202cd0.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/animation/c00_吕萍_拉大柜子/1.png"
|
||||
dest_files=["res://.godot/imported/1.png-a81cd2472daead2a196f880a1c202cd0.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/animation/c00_吕萍_拉大柜子/2.png
Normal file
After Width: | Height: | Size: 7.1 KiB |
34
asset/art/animation/c00_吕萍_拉大柜子/2.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://q43i062ooadj"
|
||||
path="res://.godot/imported/2.png-c8f943f542463f318f91c71098ca0a3c.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/animation/c00_吕萍_拉大柜子/2.png"
|
||||
dest_files=["res://.godot/imported/2.png-c8f943f542463f318f91c71098ca0a3c.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/animation/c00_吕萍_拉大柜子/3.png
Normal file
After Width: | Height: | Size: 7.0 KiB |
34
asset/art/animation/c00_吕萍_拉大柜子/3.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://c11kqhtl6a51d"
|
||||
path="res://.godot/imported/3.png-202efe165765f197895c65563781d08b.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/animation/c00_吕萍_拉大柜子/3.png"
|
||||
dest_files=["res://.godot/imported/3.png-202efe165765f197895c65563781d08b.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/animation/c00_吕萍_拉大柜子呼吸/0.png
Normal file
After Width: | Height: | Size: 6.7 KiB |
34
asset/art/animation/c00_吕萍_拉大柜子呼吸/0.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://d2a8v65x8u64h"
|
||||
path="res://.godot/imported/0.png-1aab378c87b04304d8dcec5a1190dca2.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/animation/c00_吕萍_拉大柜子呼吸/0.png"
|
||||
dest_files=["res://.godot/imported/0.png-1aab378c87b04304d8dcec5a1190dca2.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/animation/c00_吕萍_拉大柜子呼吸/1.png
Normal file
After Width: | Height: | Size: 6.7 KiB |
34
asset/art/animation/c00_吕萍_拉大柜子呼吸/1.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://6cxyqj3wwx21"
|
||||
path="res://.godot/imported/1.png-a7156a0b94ca43df335798200a0fb921.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/animation/c00_吕萍_拉大柜子呼吸/1.png"
|
||||
dest_files=["res://.godot/imported/1.png-a7156a0b94ca43df335798200a0fb921.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
|
@ -1,34 +0,0 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://osavart3wb3r"
|
||||
path="res://.godot/imported/1 (39).png-ff442bbe245afbf8a0562d5315b0e295.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/animation/c02_胖子_托小孩/1 (39).png"
|
||||
dest_files=["res://.godot/imported/1 (39).png-ff442bbe245afbf8a0562d5315b0e295.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/animation/c03_吕萍_被吓到摔倒/1.png
Normal file
After Width: | Height: | Size: 2.2 KiB |
34
asset/art/animation/c03_吕萍_被吓到摔倒/1.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bq11p75k3h5hj"
|
||||
path="res://.godot/imported/1.png-2c14b03dfee0df128f459425af4b8cfa.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/animation/c03_吕萍_被吓到摔倒/1.png"
|
||||
dest_files=["res://.godot/imported/1.png-2c14b03dfee0df128f459425af4b8cfa.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/animation/c03_吕萍_被吓到摔倒/10.png
Normal file
After Width: | Height: | Size: 2.2 KiB |
34
asset/art/animation/c03_吕萍_被吓到摔倒/10.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bslacwj2mw6wg"
|
||||
path="res://.godot/imported/10.png-7202a520cc4d91fcfcca8bd4e0f3b750.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/animation/c03_吕萍_被吓到摔倒/10.png"
|
||||
dest_files=["res://.godot/imported/10.png-7202a520cc4d91fcfcca8bd4e0f3b750.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/animation/c03_吕萍_被吓到摔倒/11.png
Normal file
After Width: | Height: | Size: 2.2 KiB |
34
asset/art/animation/c03_吕萍_被吓到摔倒/11.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://cbiu8ndja6wsh"
|
||||
path="res://.godot/imported/11.png-8aea3b55328c4e8b188812ad804a2a83.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/animation/c03_吕萍_被吓到摔倒/11.png"
|
||||
dest_files=["res://.godot/imported/11.png-8aea3b55328c4e8b188812ad804a2a83.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/animation/c03_吕萍_被吓到摔倒/12.png
Normal file
After Width: | Height: | Size: 2.2 KiB |
34
asset/art/animation/c03_吕萍_被吓到摔倒/12.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dsbimgeffl03t"
|
||||
path="res://.godot/imported/12.png-09e568f04247e68262582b4fd6f125b5.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/animation/c03_吕萍_被吓到摔倒/12.png"
|
||||
dest_files=["res://.godot/imported/12.png-09e568f04247e68262582b4fd6f125b5.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/animation/c03_吕萍_被吓到摔倒/13.png
Normal file
After Width: | Height: | Size: 2.1 KiB |
34
asset/art/animation/c03_吕萍_被吓到摔倒/13.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://deoysqsvg4eti"
|
||||
path="res://.godot/imported/13.png-37a68a31cda85f8fa3627ff86ab8fed4.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/animation/c03_吕萍_被吓到摔倒/13.png"
|
||||
dest_files=["res://.godot/imported/13.png-37a68a31cda85f8fa3627ff86ab8fed4.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/animation/c03_吕萍_被吓到摔倒/14.png
Normal file
After Width: | Height: | Size: 2.1 KiB |
34
asset/art/animation/c03_吕萍_被吓到摔倒/14.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://6dafwo47420v"
|
||||
path="res://.godot/imported/14.png-287d9d01feee34baccaa259c773cea86.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/animation/c03_吕萍_被吓到摔倒/14.png"
|
||||
dest_files=["res://.godot/imported/14.png-287d9d01feee34baccaa259c773cea86.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/animation/c03_吕萍_被吓到摔倒/15.png
Normal file
After Width: | Height: | Size: 2.1 KiB |
34
asset/art/animation/c03_吕萍_被吓到摔倒/15.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://b1mgs05dry0rm"
|
||||
path="res://.godot/imported/15.png-09c27fbc55814890decfc0a68e26a29b.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/animation/c03_吕萍_被吓到摔倒/15.png"
|
||||
dest_files=["res://.godot/imported/15.png-09c27fbc55814890decfc0a68e26a29b.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/animation/c03_吕萍_被吓到摔倒/16.png
Normal file
After Width: | Height: | Size: 2.2 KiB |
34
asset/art/animation/c03_吕萍_被吓到摔倒/16.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dm884e3gw3aw5"
|
||||
path="res://.godot/imported/16.png-aa3364d9b9ae0e9dbd1d24ad261d8afd.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/animation/c03_吕萍_被吓到摔倒/16.png"
|
||||
dest_files=["res://.godot/imported/16.png-aa3364d9b9ae0e9dbd1d24ad261d8afd.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/animation/c03_吕萍_被吓到摔倒/17.png
Normal file
After Width: | Height: | Size: 2.2 KiB |
34
asset/art/animation/c03_吕萍_被吓到摔倒/17.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://rrtuyig3kam3"
|
||||
path="res://.godot/imported/17.png-ebcfbf3a2b821130950e4fafb3ae5ee2.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/animation/c03_吕萍_被吓到摔倒/17.png"
|
||||
dest_files=["res://.godot/imported/17.png-ebcfbf3a2b821130950e4fafb3ae5ee2.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/animation/c03_吕萍_被吓到摔倒/18.png
Normal file
After Width: | Height: | Size: 2.3 KiB |
34
asset/art/animation/c03_吕萍_被吓到摔倒/18.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://ddx4j41vyodmi"
|
||||
path="res://.godot/imported/18.png-6c808dd1c894706e2a6c40c7d92877db.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/animation/c03_吕萍_被吓到摔倒/18.png"
|
||||
dest_files=["res://.godot/imported/18.png-6c808dd1c894706e2a6c40c7d92877db.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/animation/c03_吕萍_被吓到摔倒/19.png
Normal file
After Width: | Height: | Size: 2.2 KiB |
34
asset/art/animation/c03_吕萍_被吓到摔倒/19.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://b4cbvsakcqa6b"
|
||||
path="res://.godot/imported/19.png-2d16360d501c15114ea3ed4b86cce3e9.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/animation/c03_吕萍_被吓到摔倒/19.png"
|
||||
dest_files=["res://.godot/imported/19.png-2d16360d501c15114ea3ed4b86cce3e9.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/animation/c03_吕萍_被吓到摔倒/2.png
Normal file
After Width: | Height: | Size: 2.3 KiB |
34
asset/art/animation/c03_吕萍_被吓到摔倒/2.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://grj1p85q8win"
|
||||
path="res://.godot/imported/2.png-e518c37d6dd3dd8e95247d4388382728.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/animation/c03_吕萍_被吓到摔倒/2.png"
|
||||
dest_files=["res://.godot/imported/2.png-e518c37d6dd3dd8e95247d4388382728.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/animation/c03_吕萍_被吓到摔倒/20.png
Normal file
After Width: | Height: | Size: 2.9 KiB |
34
asset/art/animation/c03_吕萍_被吓到摔倒/20.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://3pvrh36sva12"
|
||||
path="res://.godot/imported/20.png-c5c311263de01707d2334a97ca015c2c.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/animation/c03_吕萍_被吓到摔倒/20.png"
|
||||
dest_files=["res://.godot/imported/20.png-c5c311263de01707d2334a97ca015c2c.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/animation/c03_吕萍_被吓到摔倒/21.png
Normal file
After Width: | Height: | Size: 2.9 KiB |
34
asset/art/animation/c03_吕萍_被吓到摔倒/21.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dayn02a3x5hpw"
|
||||
path="res://.godot/imported/21.png-2dca6fcd691aeaa47a077d1d2a653568.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/animation/c03_吕萍_被吓到摔倒/21.png"
|
||||
dest_files=["res://.godot/imported/21.png-2dca6fcd691aeaa47a077d1d2a653568.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/animation/c03_吕萍_被吓到摔倒/22.png
Normal file
After Width: | Height: | Size: 3.1 KiB |
34
asset/art/animation/c03_吕萍_被吓到摔倒/22.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://wbvuodb23jyx"
|
||||
path="res://.godot/imported/22.png-379db530e8ac568dc6353ee76f6ad1fb.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/animation/c03_吕萍_被吓到摔倒/22.png"
|
||||
dest_files=["res://.godot/imported/22.png-379db530e8ac568dc6353ee76f6ad1fb.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/animation/c03_吕萍_被吓到摔倒/23.png
Normal file
After Width: | Height: | Size: 3.1 KiB |
34
asset/art/animation/c03_吕萍_被吓到摔倒/23.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dr76bjhqit2ar"
|
||||
path="res://.godot/imported/23.png-7a519a465a663bac312888e9f848e601.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/animation/c03_吕萍_被吓到摔倒/23.png"
|
||||
dest_files=["res://.godot/imported/23.png-7a519a465a663bac312888e9f848e601.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/animation/c03_吕萍_被吓到摔倒/3.png
Normal file
After Width: | Height: | Size: 2.2 KiB |
34
asset/art/animation/c03_吕萍_被吓到摔倒/3.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dnlerswf2tj2"
|
||||
path="res://.godot/imported/3.png-bad6b4296971b96f77aa45f380cf1f9d.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/animation/c03_吕萍_被吓到摔倒/3.png"
|
||||
dest_files=["res://.godot/imported/3.png-bad6b4296971b96f77aa45f380cf1f9d.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/animation/c03_吕萍_被吓到摔倒/4.png
Normal file
After Width: | Height: | Size: 2.3 KiB |
34
asset/art/animation/c03_吕萍_被吓到摔倒/4.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://b0pvy5eqgaxmn"
|
||||
path="res://.godot/imported/4.png-ae6e8413280ed209fe1e99f48f938ac1.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/animation/c03_吕萍_被吓到摔倒/4.png"
|
||||
dest_files=["res://.godot/imported/4.png-ae6e8413280ed209fe1e99f48f938ac1.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/animation/c03_吕萍_被吓到摔倒/5.png
Normal file
After Width: | Height: | Size: 2.2 KiB |
34
asset/art/animation/c03_吕萍_被吓到摔倒/5.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://ciyx7ax3a61rk"
|
||||
path="res://.godot/imported/5.png-188b619b79f7d00a1bd07108dcc35b35.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/animation/c03_吕萍_被吓到摔倒/5.png"
|
||||
dest_files=["res://.godot/imported/5.png-188b619b79f7d00a1bd07108dcc35b35.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/animation/c03_吕萍_被吓到摔倒/6.png
Normal file
After Width: | Height: | Size: 2.3 KiB |
34
asset/art/animation/c03_吕萍_被吓到摔倒/6.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dt1sajh2fln1s"
|
||||
path="res://.godot/imported/6.png-b4a31fdd5900b5b0b2a1588f4aeb23df.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/animation/c03_吕萍_被吓到摔倒/6.png"
|
||||
dest_files=["res://.godot/imported/6.png-b4a31fdd5900b5b0b2a1588f4aeb23df.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/animation/c03_吕萍_被吓到摔倒/7.png
Normal file
After Width: | Height: | Size: 2.2 KiB |
34
asset/art/animation/c03_吕萍_被吓到摔倒/7.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://cmair8ikjagx3"
|
||||
path="res://.godot/imported/7.png-f6f93d8f51862963f17c504726ebecc8.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/animation/c03_吕萍_被吓到摔倒/7.png"
|
||||
dest_files=["res://.godot/imported/7.png-f6f93d8f51862963f17c504726ebecc8.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/animation/c03_吕萍_被吓到摔倒/8.png
Normal file
After Width: | Height: | Size: 2.2 KiB |
34
asset/art/animation/c03_吕萍_被吓到摔倒/8.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bfy55bc82jyqw"
|
||||
path="res://.godot/imported/8.png-4867698cb432b8e24f0a2e01a5aceebd.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/animation/c03_吕萍_被吓到摔倒/8.png"
|
||||
dest_files=["res://.godot/imported/8.png-4867698cb432b8e24f0a2e01a5aceebd.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/animation/c03_吕萍_被吓到摔倒/9.png
Normal file
After Width: | Height: | Size: 2.2 KiB |
34
asset/art/animation/c03_吕萍_被吓到摔倒/9.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bjbab5hlj8bip"
|
||||
path="res://.godot/imported/9.png-bdfd1a821b5f84ccbb5b06ed92df95f9.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/animation/c03_吕萍_被吓到摔倒/9.png"
|
||||
dest_files=["res://.godot/imported/9.png-bdfd1a821b5f84ccbb5b06ed92df95f9.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
|
Before Width: | Height: | Size: 3.9 KiB After Width: | Height: | Size: 3.9 KiB |
@ -3,15 +3,15 @@
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://b18qxw2kegyvr"
|
||||
path="res://.godot/imported/1 (1).png-b669c9144cfd150ad0072ed31bc0e3c3.ctex"
|
||||
path="res://.godot/imported/1 (1).png-8561e51e7525bf8763430e46d95ae979.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/animation/c02_胖子_托小孩/1 (1).png"
|
||||
dest_files=["res://.godot/imported/1 (1).png-b669c9144cfd150ad0072ed31bc0e3c3.ctex"]
|
||||
source_file="res://asset/art/animation/c03_胖子_托小孩/1 (1).png"
|
||||
dest_files=["res://.godot/imported/1 (1).png-8561e51e7525bf8763430e46d95ae979.ctex"]
|
||||
|
||||
[params]
|
||||
|
Before Width: | Height: | Size: 4.0 KiB After Width: | Height: | Size: 4.0 KiB |
@ -3,15 +3,15 @@
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bp4s8oncqh01u"
|
||||
path="res://.godot/imported/1 (10).png-e3c2828c27d4bc68a05a50335f49103a.ctex"
|
||||
path="res://.godot/imported/1 (10).png-f3be791be9185cea7e90655ec5a02186.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/animation/c02_胖子_托小孩/1 (10).png"
|
||||
dest_files=["res://.godot/imported/1 (10).png-e3c2828c27d4bc68a05a50335f49103a.ctex"]
|
||||
source_file="res://asset/art/animation/c03_胖子_托小孩/1 (10).png"
|
||||
dest_files=["res://.godot/imported/1 (10).png-f3be791be9185cea7e90655ec5a02186.ctex"]
|
||||
|
||||
[params]
|
||||
|
Before Width: | Height: | Size: 4.2 KiB After Width: | Height: | Size: 4.2 KiB |
@ -3,15 +3,15 @@
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://cihu56fcrdgjo"
|
||||
path="res://.godot/imported/1 (100).png-9feff0ee855852342aeb3df742de13bc.ctex"
|
||||
path="res://.godot/imported/1 (100).png-31ec428bf061a595ada2760f98f550b9.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/animation/c02_胖子_托小孩/1 (100).png"
|
||||
dest_files=["res://.godot/imported/1 (100).png-9feff0ee855852342aeb3df742de13bc.ctex"]
|
||||
source_file="res://asset/art/animation/c03_胖子_托小孩/1 (100).png"
|
||||
dest_files=["res://.godot/imported/1 (100).png-31ec428bf061a595ada2760f98f550b9.ctex"]
|
||||
|
||||
[params]
|
||||
|
Before Width: | Height: | Size: 4.1 KiB After Width: | Height: | Size: 4.1 KiB |
@ -3,15 +3,15 @@
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://d1lli6yp3nqf7"
|
||||
path="res://.godot/imported/1 (101).png-5859b14d8378157ba6414a3343d78eca.ctex"
|
||||
path="res://.godot/imported/1 (101).png-7d3755c1bff1245fa568fe7cabaf50ea.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/animation/c02_胖子_托小孩/1 (101).png"
|
||||
dest_files=["res://.godot/imported/1 (101).png-5859b14d8378157ba6414a3343d78eca.ctex"]
|
||||
source_file="res://asset/art/animation/c03_胖子_托小孩/1 (101).png"
|
||||
dest_files=["res://.godot/imported/1 (101).png-7d3755c1bff1245fa568fe7cabaf50ea.ctex"]
|
||||
|
||||
[params]
|
||||
|
Before Width: | Height: | Size: 4.1 KiB After Width: | Height: | Size: 4.1 KiB |
@ -3,15 +3,15 @@
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://cgx8ertxk7wos"
|
||||
path="res://.godot/imported/1 (102).png-dbf93d349ad85b3aedd8425159161e5c.ctex"
|
||||
path="res://.godot/imported/1 (102).png-f4cd28d7259c13a8b7c2132a42ebb5fb.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/animation/c02_胖子_托小孩/1 (102).png"
|
||||
dest_files=["res://.godot/imported/1 (102).png-dbf93d349ad85b3aedd8425159161e5c.ctex"]
|
||||
source_file="res://asset/art/animation/c03_胖子_托小孩/1 (102).png"
|
||||
dest_files=["res://.godot/imported/1 (102).png-f4cd28d7259c13a8b7c2132a42ebb5fb.ctex"]
|
||||
|
||||
[params]
|
||||
|
Before Width: | Height: | Size: 4.1 KiB After Width: | Height: | Size: 4.1 KiB |
@ -3,15 +3,15 @@
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://c3i64r6b4g02i"
|
||||
path="res://.godot/imported/1 (103).png-4d7cc4ba553bdb4572b24c88be4a6080.ctex"
|
||||
path="res://.godot/imported/1 (103).png-84b5928f93835cbd4c397f2e78fb8a97.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/animation/c02_胖子_托小孩/1 (103).png"
|
||||
dest_files=["res://.godot/imported/1 (103).png-4d7cc4ba553bdb4572b24c88be4a6080.ctex"]
|
||||
source_file="res://asset/art/animation/c03_胖子_托小孩/1 (103).png"
|
||||
dest_files=["res://.godot/imported/1 (103).png-84b5928f93835cbd4c397f2e78fb8a97.ctex"]
|
||||
|
||||
[params]
|
||||
|
Before Width: | Height: | Size: 4.2 KiB After Width: | Height: | Size: 4.2 KiB |
@ -3,15 +3,15 @@
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bwr2u4s0yayi4"
|
||||
path="res://.godot/imported/1 (104).png-d05e14b4bcea4ef15fe83cb1b84100f5.ctex"
|
||||
path="res://.godot/imported/1 (104).png-c243b5029a06e23e118d78b90a0d978c.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/animation/c02_胖子_托小孩/1 (104).png"
|
||||
dest_files=["res://.godot/imported/1 (104).png-d05e14b4bcea4ef15fe83cb1b84100f5.ctex"]
|
||||
source_file="res://asset/art/animation/c03_胖子_托小孩/1 (104).png"
|
||||
dest_files=["res://.godot/imported/1 (104).png-c243b5029a06e23e118d78b90a0d978c.ctex"]
|
||||
|
||||
[params]
|
||||
|
Before Width: | Height: | Size: 4.2 KiB After Width: | Height: | Size: 4.2 KiB |
@ -3,15 +3,15 @@
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://ct673cclnpjfs"
|
||||
path="res://.godot/imported/1 (105).png-71b5297fec7ccb9191183081d74af4eb.ctex"
|
||||
path="res://.godot/imported/1 (105).png-baeee02d446331bfc4434056cbee8113.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/animation/c02_胖子_托小孩/1 (105).png"
|
||||
dest_files=["res://.godot/imported/1 (105).png-71b5297fec7ccb9191183081d74af4eb.ctex"]
|
||||
source_file="res://asset/art/animation/c03_胖子_托小孩/1 (105).png"
|
||||
dest_files=["res://.godot/imported/1 (105).png-baeee02d446331bfc4434056cbee8113.ctex"]
|
||||
|
||||
[params]
|
||||
|
Before Width: | Height: | Size: 4.1 KiB After Width: | Height: | Size: 4.1 KiB |
@ -3,15 +3,15 @@
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://5ttohrqxyyf0"
|
||||
path="res://.godot/imported/1 (106).png-95366cbe940ec509bca87d6e50948dc1.ctex"
|
||||
path="res://.godot/imported/1 (106).png-d5a5eaefeaf12e489dd3570f6bd29543.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/animation/c02_胖子_托小孩/1 (106).png"
|
||||
dest_files=["res://.godot/imported/1 (106).png-95366cbe940ec509bca87d6e50948dc1.ctex"]
|
||||
source_file="res://asset/art/animation/c03_胖子_托小孩/1 (106).png"
|
||||
dest_files=["res://.godot/imported/1 (106).png-d5a5eaefeaf12e489dd3570f6bd29543.ctex"]
|
||||
|
||||
[params]
|
||||
|
Before Width: | Height: | Size: 4.1 KiB After Width: | Height: | Size: 4.1 KiB |
@ -3,15 +3,15 @@
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://447hxe1yipu4"
|
||||
path="res://.godot/imported/1 (107).png-346cbff0f40a653ffd3036d9c531a308.ctex"
|
||||
path="res://.godot/imported/1 (107).png-3d4ba787c49d95b214447621c836daa5.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/animation/c02_胖子_托小孩/1 (107).png"
|
||||
dest_files=["res://.godot/imported/1 (107).png-346cbff0f40a653ffd3036d9c531a308.ctex"]
|
||||
source_file="res://asset/art/animation/c03_胖子_托小孩/1 (107).png"
|
||||
dest_files=["res://.godot/imported/1 (107).png-3d4ba787c49d95b214447621c836daa5.ctex"]
|
||||
|
||||
[params]
|
||||
|
Before Width: | Height: | Size: 4.1 KiB After Width: | Height: | Size: 4.1 KiB |
@ -3,15 +3,15 @@
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bslfea0rvotuf"
|
||||
path="res://.godot/imported/1 (108).png-8eb024c22ec206d173bf2611843c2e57.ctex"
|
||||
path="res://.godot/imported/1 (108).png-62d098625122ced70b60f62a2b7f5635.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/animation/c02_胖子_托小孩/1 (108).png"
|
||||
dest_files=["res://.godot/imported/1 (108).png-8eb024c22ec206d173bf2611843c2e57.ctex"]
|
||||
source_file="res://asset/art/animation/c03_胖子_托小孩/1 (108).png"
|
||||
dest_files=["res://.godot/imported/1 (108).png-62d098625122ced70b60f62a2b7f5635.ctex"]
|
||||
|
||||
[params]
|
||||
|
Before Width: | Height: | Size: 4.2 KiB After Width: | Height: | Size: 4.2 KiB |
@ -3,15 +3,15 @@
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://qahm5momkypj"
|
||||
path="res://.godot/imported/1 (109).png-d9b773579fb1ff2987adf0e046ef0cee.ctex"
|
||||
path="res://.godot/imported/1 (109).png-fe8fc2d1a839728b5447a07bfcb04ee2.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/animation/c02_胖子_托小孩/1 (109).png"
|
||||
dest_files=["res://.godot/imported/1 (109).png-d9b773579fb1ff2987adf0e046ef0cee.ctex"]
|
||||
source_file="res://asset/art/animation/c03_胖子_托小孩/1 (109).png"
|
||||
dest_files=["res://.godot/imported/1 (109).png-fe8fc2d1a839728b5447a07bfcb04ee2.ctex"]
|
||||
|
||||
[params]
|
||||
|
Before Width: | Height: | Size: 4.0 KiB After Width: | Height: | Size: 4.0 KiB |
@ -3,15 +3,15 @@
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dxpq2sjmkyf35"
|
||||
path="res://.godot/imported/1 (11).png-315f3d68236e64d1b7b6f64e5d92236c.ctex"
|
||||
path="res://.godot/imported/1 (11).png-067f92df30c2d1cb7110fa837b1e2464.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/animation/c02_胖子_托小孩/1 (11).png"
|
||||
dest_files=["res://.godot/imported/1 (11).png-315f3d68236e64d1b7b6f64e5d92236c.ctex"]
|
||||
source_file="res://asset/art/animation/c03_胖子_托小孩/1 (11).png"
|
||||
dest_files=["res://.godot/imported/1 (11).png-067f92df30c2d1cb7110fa837b1e2464.ctex"]
|
||||
|
||||
[params]
|
||||
|
Before Width: | Height: | Size: 4.2 KiB After Width: | Height: | Size: 4.2 KiB |
@ -3,15 +3,15 @@
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://cg7ucuyym0eyx"
|
||||
path="res://.godot/imported/1 (110).png-add7864c59c942c771c1a1697eeb815b.ctex"
|
||||
path="res://.godot/imported/1 (110).png-77d37d13eba8131286e0377323a2f7ce.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/animation/c02_胖子_托小孩/1 (110).png"
|
||||
dest_files=["res://.godot/imported/1 (110).png-add7864c59c942c771c1a1697eeb815b.ctex"]
|
||||
source_file="res://asset/art/animation/c03_胖子_托小孩/1 (110).png"
|
||||
dest_files=["res://.godot/imported/1 (110).png-77d37d13eba8131286e0377323a2f7ce.ctex"]
|
||||
|
||||
[params]
|
||||
|
Before Width: | Height: | Size: 4.1 KiB After Width: | Height: | Size: 4.1 KiB |
@ -3,15 +3,15 @@
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bhfyimp3p5vb4"
|
||||
path="res://.godot/imported/1 (111).png-69de3d89e3117ba800ee93d86c8ed334.ctex"
|
||||
path="res://.godot/imported/1 (111).png-472d8afb91902229cf65a1e67670b58b.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/animation/c02_胖子_托小孩/1 (111).png"
|
||||
dest_files=["res://.godot/imported/1 (111).png-69de3d89e3117ba800ee93d86c8ed334.ctex"]
|
||||
source_file="res://asset/art/animation/c03_胖子_托小孩/1 (111).png"
|
||||
dest_files=["res://.godot/imported/1 (111).png-472d8afb91902229cf65a1e67670b58b.ctex"]
|
||||
|
||||
[params]
|
||||
|
Before Width: | Height: | Size: 4.1 KiB After Width: | Height: | Size: 4.1 KiB |
@ -3,15 +3,15 @@
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://qbdt8akcwhea"
|
||||
path="res://.godot/imported/1 (112).png-fce1af69410293e2a61b1c4e16c23373.ctex"
|
||||
path="res://.godot/imported/1 (112).png-1db9c8b3864b07be160832fbbdf54a67.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/animation/c02_胖子_托小孩/1 (112).png"
|
||||
dest_files=["res://.godot/imported/1 (112).png-fce1af69410293e2a61b1c4e16c23373.ctex"]
|
||||
source_file="res://asset/art/animation/c03_胖子_托小孩/1 (112).png"
|
||||
dest_files=["res://.godot/imported/1 (112).png-1db9c8b3864b07be160832fbbdf54a67.ctex"]
|
||||
|
||||
[params]
|
||||
|
Before Width: | Height: | Size: 4.1 KiB After Width: | Height: | Size: 4.1 KiB |
@ -3,15 +3,15 @@
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://07sofjuygpyb"
|
||||
path="res://.godot/imported/1 (113).png-745ed2d9ba2640de272c77dbfd6f92ed.ctex"
|
||||
path="res://.godot/imported/1 (113).png-6bae818b52ff9bd52035770b37435c7c.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/animation/c02_胖子_托小孩/1 (113).png"
|
||||
dest_files=["res://.godot/imported/1 (113).png-745ed2d9ba2640de272c77dbfd6f92ed.ctex"]
|
||||
source_file="res://asset/art/animation/c03_胖子_托小孩/1 (113).png"
|
||||
dest_files=["res://.godot/imported/1 (113).png-6bae818b52ff9bd52035770b37435c7c.ctex"]
|
||||
|
||||
[params]
|
||||
|
Before Width: | Height: | Size: 4.2 KiB After Width: | Height: | Size: 4.2 KiB |
@ -3,15 +3,15 @@
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://fvjiayrx52yj"
|
||||
path="res://.godot/imported/1 (114).png-ea85751e239a2b058674c1de94cb4be0.ctex"
|
||||
path="res://.godot/imported/1 (114).png-ed62ad68a1ef54edc20104defffe4e88.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/animation/c02_胖子_托小孩/1 (114).png"
|
||||
dest_files=["res://.godot/imported/1 (114).png-ea85751e239a2b058674c1de94cb4be0.ctex"]
|
||||
source_file="res://asset/art/animation/c03_胖子_托小孩/1 (114).png"
|
||||
dest_files=["res://.godot/imported/1 (114).png-ed62ad68a1ef54edc20104defffe4e88.ctex"]
|
||||
|
||||
[params]
|
||||
|
Before Width: | Height: | Size: 4.2 KiB After Width: | Height: | Size: 4.2 KiB |
@ -3,15 +3,15 @@
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dmpy7clw64ymb"
|
||||
path="res://.godot/imported/1 (115).png-26979e2e6ac0a9652c8a613d581aeffc.ctex"
|
||||
path="res://.godot/imported/1 (115).png-0b57922f8f910969cefe0999f9048977.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/animation/c02_胖子_托小孩/1 (115).png"
|
||||
dest_files=["res://.godot/imported/1 (115).png-26979e2e6ac0a9652c8a613d581aeffc.ctex"]
|
||||
source_file="res://asset/art/animation/c03_胖子_托小孩/1 (115).png"
|
||||
dest_files=["res://.godot/imported/1 (115).png-0b57922f8f910969cefe0999f9048977.ctex"]
|
||||
|
||||
[params]
|
||||
|
Before Width: | Height: | Size: 4.1 KiB After Width: | Height: | Size: 4.1 KiB |