c01_s06 部署完成猫鼠游戏流程(基本完成)
@ -38,6 +38,7 @@ func _ready() -> void:
|
||||
frame = randi() % sprite_frames.get_frame_count(animation)
|
||||
play()
|
||||
animation_finished.connect(_on_animation_finished)
|
||||
animation_looped.connect(_on_animation_finished)
|
||||
animation_changed.connect(_on_animation_start)
|
||||
animation_looped.connect(_on_animation_start)
|
||||
|
||||
@ -47,9 +48,10 @@ func _load_config():
|
||||
for i in range(action_configs.size()):
|
||||
action_configs[i].merge(ACTION_CONFIG)
|
||||
var state_config = action_configs[i]
|
||||
if sprite_frames and sprite_frames.has_animation(state_config.animation_intro):
|
||||
# 不必关闭循环
|
||||
# if sprite_frames and sprite_frames.has_animation(state_config.animation_intro):
|
||||
# intro 的 animation 关闭循环
|
||||
sprite_frames.set_animation_loop(state_config.animation_intro, false)
|
||||
# sprite_frames.set_animation_loop(state_config.animation_intro, false)
|
||||
auto_checkout_dict[state_config.animation_intro] = action_configs[i]
|
||||
# load animation_frame_offsets
|
||||
for i in range(move_configs.size()):
|
||||
@ -89,8 +91,8 @@ func _on_animation_start():
|
||||
velocity = Vector2.ZERO
|
||||
return
|
||||
velocity = animation_velocity[animation] * speed_scale
|
||||
if GlobalConfig.DEBUG:
|
||||
print("animation ", animation, " velocity=", velocity)
|
||||
# if GlobalConfig.DEBUG:
|
||||
# print("animation ", animation, " velocity=", velocity)
|
||||
|
||||
|
||||
func _physics_process(delta: float) -> void:
|
||||
@ -104,3 +106,26 @@ func set_animation_velocity(anim: String, v: Vector2) -> void:
|
||||
animation_velocity[anim] = v
|
||||
if GlobalConfig.DEBUG:
|
||||
print("set_animation_velocity:", anim, v)
|
||||
|
||||
|
||||
func play_with_velocity(anim: String, velocity: Vector2) -> void:
|
||||
set_animation_velocity(anim, velocity)
|
||||
play(anim)
|
||||
|
||||
|
||||
# -1 means loop forever, 0 is invalid (which means no loop and return)
|
||||
func play_with_loop(anim: String, loop := -1, wait := 0.0, next := "") -> void:
|
||||
if loop < 0:
|
||||
auto_checkout_dict.erase(anim)
|
||||
sprite_frames.set_animation_loop(anim, true)
|
||||
elif loop == 0:
|
||||
return
|
||||
else:
|
||||
auto_checkout_dict[anim] = {
|
||||
"animation_intro": anim,
|
||||
"intro_loop": loop,
|
||||
"animation_wait_time": wait,
|
||||
"animation_next": next
|
||||
}
|
||||
# 设置完配置后播放
|
||||
play(anim)
|
@ -1,6 +1,6 @@
|
||||
[gd_scene load_steps=2 format=3 uid="uid://b50n0hvs4yh75"]
|
||||
|
||||
[ext_resource type="Script" path="res://addons/property-inspector/pro_animation_sprite2d/autoplay_animated_sprite.gd" id="1_21eda"]
|
||||
[ext_resource type="Script" path="res://addons/property-inspector/pro_animation_sprite2d/pro_animated_sprite.gd" id="1_21eda"]
|
||||
|
||||
[node name="AutoplayAnimatedSprite" type="AnimatedSprite2D"]
|
||||
position = Vector2(-1, -1)
|
@ -26,10 +26,12 @@ func _init():
|
||||
func _add_line(check_updating := false):
|
||||
if check_updating and updating:
|
||||
return
|
||||
var updated = false
|
||||
# 最后一个是 add button,所以 -1
|
||||
var id = line_nodes.size()
|
||||
if id >= _get_property().size():
|
||||
_get_property().append(_new_res())
|
||||
updated = true
|
||||
var prop = _get_property()[id].duplicate()
|
||||
prop.merge(ProAnimatedSprite2D.ACTION_CONFIG)
|
||||
var line_box = VBoxContainer.new()
|
||||
@ -98,6 +100,7 @@ func _add_line(check_updating := false):
|
||||
line_box.add_child(h_box)
|
||||
v_box.add_child(line_box)
|
||||
line_nodes.append(line_box)
|
||||
if updated:
|
||||
_update_change()
|
||||
|
||||
|
||||
|
@ -27,10 +27,12 @@ func _init():
|
||||
func _add_line(check_updating := false):
|
||||
if check_updating and updating:
|
||||
return
|
||||
var updated = false
|
||||
# 最后一个是 add button,所以 -1
|
||||
var id = line_nodes.size()
|
||||
if id >= _get_property().size():
|
||||
_get_property().append(_new_res())
|
||||
updated = true
|
||||
var prop = _get_property()[id].duplicate()
|
||||
prop.merge(ProAnimatedSprite2D.MOVE_CONFIG)
|
||||
var line_box = VBoxContainer.new()
|
||||
@ -78,6 +80,7 @@ func _add_line(check_updating := false):
|
||||
line_box.add_child(h_box)
|
||||
v_box.add_child(line_box)
|
||||
line_nodes.append(line_box)
|
||||
if updated:
|
||||
_update_change()
|
||||
|
||||
|
||||
@ -113,8 +116,13 @@ func _on_line_edit_text_submitted(text, id, property):
|
||||
if property == "animation":
|
||||
_get_property()[id]["animation"] = text
|
||||
elif property == "velocity:x":
|
||||
# 注意:这里的 velocity 是 Vector2 类型,所以要先判断是否为空
|
||||
if not _get_property()[id].has("velocity"):
|
||||
_get_property()[id]["velocity"] = Vector2.ZERO
|
||||
_get_property()[id]["velocity"].x = float(text)
|
||||
elif property == "velocity:y":
|
||||
if not _get_property()[id].has("velocity"):
|
||||
_get_property()[id]["velocity"] = Vector2.ZERO
|
||||
_get_property()[id]["velocity"].y = float(text)
|
||||
elif property == "duration":
|
||||
_get_property()[id]["duration"] = float(text)
|
||||
|
@ -1,4 +1,4 @@
|
||||
[gd_resource type="SpriteFrames" load_steps=92 format=3 uid="uid://c6okvaeemoodq"]
|
||||
[gd_resource type="SpriteFrames" load_steps=163 format=3 uid="uid://c6okvaeemoodq"]
|
||||
|
||||
[ext_resource type="Texture2D" uid="uid://ciai4wast4i2a" path="res://asset/art/gif/c01_孤儿院围墙/【画画小女孩】回头/0.png" id="1_0n0k8"]
|
||||
[ext_resource type="Texture2D" uid="uid://pabw11j5ifdw" path="res://asset/art/gif/c01_孤儿院围墙/【画画男孩-2】画画/0.png" id="1_3rkvk"]
|
||||
@ -13,9 +13,11 @@
|
||||
[ext_resource type="Texture2D" uid="uid://23i4l8ss2ua4" path="res://asset/art/gif/c01_孤儿院围墙/【站立小孩-3】转身/0.png" id="1_nmddb"]
|
||||
[ext_resource type="Texture2D" uid="uid://thyfxc0n287w" path="res://asset/art/gif/c01_孤儿院围墙/【站立小孩-2】呼吸/0.png" id="1_nqakl"]
|
||||
[ext_resource type="Texture2D" uid="uid://vvbcpjwagqwo" path="res://asset/art/gif/c01_孤儿院围墙/【画画小女孩】画画/0.png" id="1_p0te0"]
|
||||
[ext_resource type="Texture2D" uid="uid://cwvukx1hka1b3" path="res://asset/art/gif/c01_孤儿院围墙/【单残疾小孩】抓住/0.png" id="1_ppkaj"]
|
||||
[ext_resource type="Texture2D" uid="uid://wimhgx3c7yu0" path="res://asset/art/gif/c01_孤儿院围墙/【站立小孩-3】呼吸/0.png" id="1_qh04w"]
|
||||
[ext_resource type="Texture2D" uid="uid://dqes07nl0cpme" path="res://asset/art/gif/c01_孤儿院围墙/【站立小孩-1】挠痒呼吸/0.png" id="1_qo83r"]
|
||||
[ext_resource type="Texture2D" uid="uid://cp3wrc6vm42np" path="res://asset/art/gif/c01_孤儿院围墙/【站立小孩-2】侧面呼吸/0.png" id="1_s4rfr"]
|
||||
[ext_resource type="Texture2D" uid="uid://bf0mbhlnfej4t" path="res://asset/art/gif/c01_孤儿院围墙/【单残疾小孩】爬行/0.png" id="1_uv4ft"]
|
||||
[ext_resource type="Texture2D" uid="uid://b3o5yp8l63sab" path="res://asset/art/gif/c01_孤儿院围墙/【站立小孩-3】走路/0.png" id="1_yvvhl"]
|
||||
[ext_resource type="Texture2D" uid="uid://cag2ms3mnx3nj" path="res://asset/art/gif/c01_孤儿院围墙/【画画小女孩】呼吸/1.png" id="2_1hhev"]
|
||||
[ext_resource type="Texture2D" uid="uid://daxewbhvtjfff" path="res://asset/art/gif/c01_孤儿院围墙/【画画男孩-2】画画/1.png" id="2_5i5of"]
|
||||
@ -25,8 +27,10 @@
|
||||
[ext_resource type="Texture2D" uid="uid://d4lehw7f8iub3" path="res://asset/art/gif/c01_孤儿院围墙/【画画男孩-1】画画/1.png" id="2_ceqnl"]
|
||||
[ext_resource type="Texture2D" uid="uid://8tlkq7l12ir" path="res://asset/art/gif/c01_孤儿院围墙/【站立小孩-3】呼吸/1.png" id="2_fgm6l"]
|
||||
[ext_resource type="Texture2D" uid="uid://o6jr1qlnuubi" path="res://asset/art/gif/c01_孤儿院围墙/【画画小女孩】回头/1.png" id="2_gc6kb"]
|
||||
[ext_resource type="Texture2D" uid="uid://rj0ddepk7vsg" path="res://asset/art/gif/c01_孤儿院围墙/【单残疾小孩】爬行/1.png" id="2_i110w"]
|
||||
[ext_resource type="Texture2D" uid="uid://q0rjhq5alio2" path="res://asset/art/gif/c01_孤儿院围墙/【站立小孩-3】侧面呼吸/1.png" id="2_ir4mj"]
|
||||
[ext_resource type="Texture2D" uid="uid://d2tlelc52io0c" path="res://asset/art/gif/c01_孤儿院围墙/【站立小孩-3】走路/1.png" id="2_kp77c"]
|
||||
[ext_resource type="Texture2D" uid="uid://dknxnuqaakwts" path="res://asset/art/gif/c01_孤儿院围墙/【单残疾小孩】抓住/1.png" id="2_lkyps"]
|
||||
[ext_resource type="Texture2D" uid="uid://5g7h7yrbd2tp" path="res://asset/art/gif/c01_孤儿院围墙/【站立小孩-1】挠痒呼吸/1.png" id="2_o8feq"]
|
||||
[ext_resource type="Texture2D" uid="uid://cyk0pd7xro2cg" path="res://asset/art/gif/c01_孤儿院围墙/【画画男孩-1】呼吸/1.png" id="2_stfxp"]
|
||||
[ext_resource type="Texture2D" uid="uid://cusyrg8vexeex" path="res://asset/art/gif/c01_孤儿院围墙/【站立小孩-2】侧面呼吸/1.png" id="2_u4bbj"]
|
||||
@ -38,31 +42,62 @@
|
||||
[ext_resource type="Texture2D" uid="uid://dmomrke34h21e" path="res://asset/art/gif/c01_孤儿院围墙/【站立小孩-1】挠痒呼吸/2.png" id="3_c8gk4"]
|
||||
[ext_resource type="Texture2D" uid="uid://bgqqdt7obaovc" path="res://asset/art/gif/c01_孤儿院围墙/【站立小孩-2】转身/2.png" id="3_cqqvg"]
|
||||
[ext_resource type="Texture2D" uid="uid://cumtftlp2b81a" path="res://asset/art/gif/c01_孤儿院围墙/【站立小孩-3】转身/2.png" id="3_h4yrv"]
|
||||
[ext_resource type="Texture2D" uid="uid://ba4mcdlyen6i5" path="res://asset/art/gif/c01_孤儿院围墙/【单残疾小孩】爬行/2.png" id="3_j2srm"]
|
||||
[ext_resource type="Texture2D" uid="uid://cw63xfo1n4jsb" path="res://asset/art/gif/c01_孤儿院围墙/【站立小孩-1】走路/2.png" id="3_na40s"]
|
||||
[ext_resource type="Texture2D" uid="uid://74t3hg04bwrp" path="res://asset/art/gif/c01_孤儿院围墙/【画画男孩-2】画画/2.png" id="3_p6ip8"]
|
||||
[ext_resource type="Texture2D" uid="uid://y5dnudtaomyp" path="res://asset/art/gif/c01_孤儿院围墙/【站立小孩-3】走路/2.png" id="3_p08fx"]
|
||||
[ext_resource type="Texture2D" uid="uid://d1q6b2misviyi" path="res://asset/art/gif/c01_孤儿院围墙/【单残疾小孩】抓住/2.png" id="3_phrcs"]
|
||||
[ext_resource type="Texture2D" uid="uid://e67jy64iaxdd" path="res://asset/art/gif/c01_孤儿院围墙/【画画小女孩】画画/2.png" id="3_v0mng"]
|
||||
[ext_resource type="Texture2D" uid="uid://cw4n25m4bp6qr" path="res://asset/art/gif/c01_孤儿院围墙/【站立小孩-1】走路/3.png" id="4_6jrvx"]
|
||||
[ext_resource type="Texture2D" uid="uid://dec1se7f3ao13" path="res://asset/art/gif/c01_孤儿院围墙/【单残疾小孩】抓住/3.png" id="4_8ckwd"]
|
||||
[ext_resource type="Texture2D" uid="uid://ckawg273vkwf4" path="res://asset/art/gif/c01_孤儿院围墙/【站立小孩-3】走路/3.png" id="4_cl47v"]
|
||||
[ext_resource type="Texture2D" uid="uid://dwaou37m674kx" path="res://asset/art/gif/c01_孤儿院围墙/【画画男孩-2】画画/3.png" id="4_kmcg6"]
|
||||
[ext_resource type="Texture2D" uid="uid://b5pj34dnsfw55" path="res://asset/art/gif/c01_孤儿院围墙/【站立小孩-1】挠痒呼吸/3.png" id="4_kof4k"]
|
||||
[ext_resource type="Texture2D" uid="uid://w8gsp8q1doa4" path="res://asset/art/gif/c01_孤儿院围墙/【画画男孩-1】画画/3.png" id="4_pb2wv"]
|
||||
[ext_resource type="Texture2D" uid="uid://d2bhhosj71swm" path="res://asset/art/gif/c01_孤儿院围墙/【画画小女孩】画画/3.png" id="4_td1ff"]
|
||||
[ext_resource type="Texture2D" uid="uid://l5ebtth8cnsm" path="res://asset/art/gif/c01_孤儿院围墙/【单残疾小孩】爬行/3.png" id="4_tr405"]
|
||||
[ext_resource type="Texture2D" uid="uid://c1m6b6a0fla0x" path="res://asset/art/gif/c01_孤儿院围墙/【画画男孩-1】画画/4.png" id="5_3gppe"]
|
||||
[ext_resource type="Texture2D" uid="uid://dix1078do1ruy" path="res://asset/art/gif/c01_孤儿院围墙/【站立小孩-1】走路/4.png" id="5_fljfp"]
|
||||
[ext_resource type="Texture2D" uid="uid://cvp6h26l50nok" path="res://asset/art/gif/c01_孤儿院围墙/【站立小孩-3】走路/4.png" id="5_gdjhv"]
|
||||
[ext_resource type="Texture2D" uid="uid://ogfwcyix7pte" path="res://asset/art/gif/c01_孤儿院围墙/【站立小孩-1】挠痒呼吸/4.png" id="5_kw7qo"]
|
||||
[ext_resource type="Texture2D" uid="uid://b4ngws4tt5wuy" path="res://asset/art/gif/c01_孤儿院围墙/【单残疾小孩】爬行/4.png" id="5_ooobw"]
|
||||
[ext_resource type="Texture2D" uid="uid://cj0j5dd8kf5ul" path="res://asset/art/gif/c01_孤儿院围墙/【单残疾小孩】抓住/4.png" id="5_upnvy"]
|
||||
[ext_resource type="Texture2D" uid="uid://ll3lmrsm46qu" path="res://asset/art/gif/c01_孤儿院围墙/【画画男孩-1】画画/5.png" id="6_b6u7x"]
|
||||
[ext_resource type="Texture2D" uid="uid://cwvnr5kpry44k" path="res://asset/art/gif/c01_孤儿院围墙/【站立小孩-1】挠痒呼吸/5.png" id="6_bets1"]
|
||||
[ext_resource type="Texture2D" uid="uid://dtvcu28ukwa5u" path="res://asset/art/gif/c01_孤儿院围墙/【单残疾小孩】爬行/5.png" id="6_drfic"]
|
||||
[ext_resource type="Texture2D" uid="uid://dsg47jdsyaaem" path="res://asset/art/gif/c01_孤儿院围墙/【站立小孩-3】走路/5.png" id="6_mfo52"]
|
||||
[ext_resource type="Texture2D" uid="uid://ds4f3eqrrhxgo" path="res://asset/art/gif/c01_孤儿院围墙/【站立小孩-1】走路/5.png" id="6_skctu"]
|
||||
[ext_resource type="Texture2D" uid="uid://b84vi1wyvnhax" path="res://asset/art/gif/c01_孤儿院围墙/【墙上小孩猫影子】变身/0.png" id="7_1njnw"]
|
||||
[ext_resource type="Texture2D" uid="uid://dldhs3kweissi" path="res://asset/art/gif/c01_孤儿院围墙/【站立小孩-3】走路/6.png" id="7_8jm5p"]
|
||||
[ext_resource type="Texture2D" uid="uid://ca2i3sp73td6c" path="res://asset/art/gif/c01_孤儿院围墙/【站立小孩-1】挠痒呼吸/6.png" id="7_joe58"]
|
||||
[ext_resource type="Texture2D" uid="uid://s8tmd231xclj" path="res://asset/art/gif/c01_孤儿院围墙/【站立小孩-1】走路/6.png" id="7_tvyu2"]
|
||||
[ext_resource type="Texture2D" uid="uid://dk8wcyuwd7ono" path="res://asset/art/gif/c01_孤儿院围墙/【站立小孩-3】走路/7.png" id="8_ejnhh"]
|
||||
[ext_resource type="Texture2D" uid="uid://bhi4ljqhtfsn0" path="res://asset/art/gif/c01_孤儿院围墙/【站立小孩-1】走路/7.png" id="8_l10wd"]
|
||||
[ext_resource type="Texture2D" uid="uid://dac2467h21n8j" path="res://asset/art/gif/c01_孤儿院围墙/【站立小孩-1】挠痒呼吸/7.png" id="8_u6p3q"]
|
||||
[ext_resource type="Texture2D" uid="uid://dfwiloc3wy7e1" path="res://asset/art/gif/c01_孤儿院围墙/【墙上小孩猫影子】变身/1.png" id="8_yoixk"]
|
||||
[ext_resource type="Texture2D" uid="uid://enakmx10tyj" path="res://asset/art/gif/c01_孤儿院围墙/【站立小孩-1】挠痒呼吸/8.png" id="9_hj6s2"]
|
||||
[ext_resource type="Texture2D" uid="uid://c8wwan5g0w8e7" path="res://asset/art/gif/c01_孤儿院围墙/【墙上小孩猫影子】变身/2.png" id="9_w45v0"]
|
||||
[ext_resource type="Texture2D" uid="uid://b12t68n036k5" path="res://asset/art/gif/c01_孤儿院围墙/【墙上小孩猫影子】变身/3.png" id="10_mqmhd"]
|
||||
[ext_resource type="Texture2D" uid="uid://5foo5obbirtv" path="res://asset/art/gif/c01_孤儿院围墙/【墙上小孩猫影子】变身/4.png" id="11_5rd7h"]
|
||||
[ext_resource type="Texture2D" uid="uid://drlk2k1hdfgi4" path="res://asset/art/gif/c01_孤儿院围墙/【墙上小孩猫影子】变身/5.png" id="12_ohj4k"]
|
||||
[ext_resource type="Texture2D" uid="uid://ctydwkglgba3x" path="res://asset/art/gif/c01_孤儿院围墙/【墙上小孩猫影子】变身/6.png" id="13_mvm5i"]
|
||||
[ext_resource type="Texture2D" uid="uid://bnk72w6b3ammi" path="res://asset/art/gif/c01_孤儿院围墙/【墙上小孩猫影子】变身/7.png" id="14_th4f0"]
|
||||
[ext_resource type="Texture2D" uid="uid://c26rwvwhwko3e" path="res://asset/art/gif/c01_孤儿院围墙/【墙上小孩猫影子】变身/8.png" id="15_0nnpx"]
|
||||
[ext_resource type="Texture2D" uid="uid://bd3883g33wk8n" path="res://asset/art/gif/c01_孤儿院围墙/【墙上小孩猫影子】变身/9.png" id="16_gqvxl"]
|
||||
[ext_resource type="Texture2D" uid="uid://d2we8sqw5w3ye" path="res://asset/art/gif/c01_孤儿院围墙/【墙上小孩猫影子】变身/10.png" id="17_r2ypr"]
|
||||
[ext_resource type="Texture2D" uid="uid://0oj3svwm7ukl" path="res://asset/art/gif/c01_孤儿院围墙/【墙上小孩猫影子】变身/11.png" id="18_h1tve"]
|
||||
[ext_resource type="Texture2D" uid="uid://crtnt7rvtwkhr" path="res://asset/art/gif/c01_孤儿院围墙/【墙上黑猫】跑步/0.png" id="24_37no4"]
|
||||
[ext_resource type="Texture2D" uid="uid://b1rtgu6xrv6yu" path="res://asset/art/gif/c01_孤儿院围墙/【墙上小孩猫影子】猫影跑步/0.png" id="24_gjuvo"]
|
||||
[ext_resource type="Texture2D" uid="uid://ceimuvcwismxd" path="res://asset/art/gif/c01_孤儿院围墙/【墙上黑猫】跑步/1.png" id="25_2xdwu"]
|
||||
[ext_resource type="Texture2D" uid="uid://dsfeg4ni6dnfm" path="res://asset/art/gif/c01_孤儿院围墙/【墙上小孩猫影子】猫影跑步/1.png" id="25_jnic7"]
|
||||
[ext_resource type="Texture2D" uid="uid://dg4ahwwkpw7wa" path="res://asset/art/gif/c01_孤儿院围墙/【墙上黑猫】跑步/2.png" id="26_itc3q"]
|
||||
[ext_resource type="Texture2D" uid="uid://draljclsgegqu" path="res://asset/art/gif/c01_孤儿院围墙/【墙上小孩猫影子】猫影跑步/2.png" id="26_os8pk"]
|
||||
[ext_resource type="Texture2D" uid="uid://bxk4qpqrrcfag" path="res://asset/art/gif/c01_孤儿院围墙/【墙上小孩猫影子】猫影跑步/3.png" id="27_5d871"]
|
||||
[ext_resource type="Texture2D" uid="uid://dsr76x2ae1cp0" path="res://asset/art/gif/c01_孤儿院围墙/【墙上黑猫】跑步/3.png" id="27_kjkl5"]
|
||||
[ext_resource type="Texture2D" uid="uid://df4l6d3tnpe3w" path="res://asset/art/gif/c01_孤儿院围墙/【墙上小孩猫影子】猫影跑步/4.png" id="28_emcgp"]
|
||||
[ext_resource type="Texture2D" uid="uid://qa53sn8ccmfp" path="res://asset/art/gif/c01_孤儿院围墙/【墙上黑猫】跑步/4.png" id="28_gl5i6"]
|
||||
[ext_resource type="Texture2D" uid="uid://qme8br1xm0aj" path="res://asset/art/gif/c01_孤儿院围墙/【墙上小孩猫影子】猫影跑步/5.png" id="29_0n0ds"]
|
||||
[ext_resource type="Texture2D" uid="uid://bqqn668kmoydg" path="res://asset/art/gif/c01_孤儿院围墙/【墙上黑猫】跑步/5.png" id="29_amfku"]
|
||||
[ext_resource type="Texture2D" uid="uid://b7dvlp7s1ncvo" path="res://asset/art/gif/c01_孤儿院围墙/【站立小孩-2】走路/0.png" id="46_p2m02"]
|
||||
[ext_resource type="Texture2D" uid="uid://dpqrcyjh7xy7o" path="res://asset/art/gif/c01_孤儿院围墙/【站立小孩-2】走路/1.png" id="47_dom4o"]
|
||||
[ext_resource type="Texture2D" uid="uid://byvjdjmgjwdag" path="res://asset/art/gif/c01_孤儿院围墙/【站立小孩-2】走路/2.png" id="48_1rjcw"]
|
||||
@ -75,26 +110,192 @@
|
||||
[ext_resource type="Texture2D" uid="uid://c3xh4fyube6t7" path="res://asset/art/gif/c01_孤儿院围墙/【胖小孩背着残疾小孩】侧面呼吸/1.png" id="73_gu752"]
|
||||
[ext_resource type="Texture2D" uid="uid://bjpipjewo7odc" path="res://asset/art/gif/c01_孤儿院围墙/【胖小孩背着残疾小孩】呼吸/0.png" id="74_kmntn"]
|
||||
[ext_resource type="Texture2D" uid="uid://by3cduy6cnll5" path="res://asset/art/gif/c01_孤儿院围墙/【胖小孩背着残疾小孩】呼吸/1.png" id="75_aqe07"]
|
||||
[ext_resource type="Texture2D" uid="uid://dvu01niegoea5" path="res://asset/art/gif/c01_孤儿院围墙/【胖小孩背着残疾小孩】奔跑/0.png" id="76_51uvd"]
|
||||
[ext_resource type="Texture2D" uid="uid://ckch7g7cw2bdh" path="res://asset/art/gif/c01_孤儿院围墙/【胖小孩背着残疾小孩】正面呼吸/0.png" id="76_ksjfk"]
|
||||
[ext_resource type="Texture2D" uid="uid://ftl2f1vfauvh" path="res://asset/art/gif/c01_孤儿院围墙/【胖小孩背着残疾小孩】奔跑/1.png" id="77_ckq57"]
|
||||
[ext_resource type="Texture2D" uid="uid://cvp42uca34x7l" path="res://asset/art/gif/c01_孤儿院围墙/【胖小孩背着残疾小孩】正面呼吸/1.png" id="77_pac87"]
|
||||
[ext_resource type="Texture2D" uid="uid://bns170wv8dky7" path="res://asset/art/gif/c01_孤儿院围墙/【胖小孩背着残疾小孩】奔跑/2.png" id="78_rhl4u"]
|
||||
[ext_resource type="Texture2D" uid="uid://c0kjvl5d7aex3" path="res://asset/art/gif/c01_孤儿院围墙/【胖小孩背着残疾小孩】正面抖肩/0.png" id="78_wny6u"]
|
||||
[ext_resource type="Texture2D" uid="uid://bs4mc2aspt0jx" path="res://asset/art/gif/c01_孤儿院围墙/【胖小孩背着残疾小孩】正面抖肩/1.png" id="79_1rofp"]
|
||||
[ext_resource type="Texture2D" uid="uid://briqv3okrhyfd" path="res://asset/art/gif/c01_孤儿院围墙/【胖小孩背着残疾小孩】奔跑/3.png" id="79_dks0y"]
|
||||
[ext_resource type="Texture2D" uid="uid://ivssoxj2m7a8" path="res://asset/art/gif/c01_孤儿院围墙/【胖小孩背着残疾小孩】奔跑/4.png" id="80_ohln3"]
|
||||
[ext_resource type="Texture2D" uid="uid://dcj8l33cwacay" path="res://asset/art/gif/c01_孤儿院围墙/【胖小孩背着残疾小孩】正面抖肩/2.png" id="80_r66qh"]
|
||||
[ext_resource type="Texture2D" uid="uid://b6sxa2775bht0" path="res://asset/art/gif/c01_孤儿院围墙/【胖小孩背着残疾小孩】正面抖肩/3.png" id="81_3sh20"]
|
||||
[ext_resource type="Texture2D" uid="uid://buojw8d81u876" path="res://asset/art/gif/c01_孤儿院围墙/【胖小孩背着残疾小孩】奔跑/5.png" id="81_l8pta"]
|
||||
[ext_resource type="Texture2D" uid="uid://bpslw76bboek4" path="res://asset/art/gif/c01_孤儿院围墙/【胖小孩背着残疾小孩】正面抖肩/4.png" id="82_3ch1m"]
|
||||
[ext_resource type="Texture2D" uid="uid://kgyv3iaorqfu" path="res://asset/art/gif/c01_孤儿院围墙/【胖小孩背着残疾小孩】奔跑/6.png" id="82_ssn0q"]
|
||||
[ext_resource type="Texture2D" uid="uid://65kd4xdppy1q" path="res://asset/art/gif/c01_孤儿院围墙/【胖小孩背着残疾小孩】摔倒/0.png" id="83_fb61f"]
|
||||
[ext_resource type="Texture2D" uid="uid://bl62sfnedwjy8" path="res://asset/art/gif/c01_孤儿院围墙/【胖小孩背着残疾小孩】画画/0.png" id="83_qm1pv"]
|
||||
[ext_resource type="Texture2D" uid="uid://dxf66pyrn72mu" path="res://asset/art/gif/c01_孤儿院围墙/【胖小孩背着残疾小孩】摔倒/1.png" id="84_8wswo"]
|
||||
[ext_resource type="Texture2D" uid="uid://bna3mk142wj61" path="res://asset/art/gif/c01_孤儿院围墙/【胖小孩背着残疾小孩】画画/1.png" id="84_hodev"]
|
||||
[ext_resource type="Texture2D" uid="uid://dkxmfjjcrh15n" path="res://asset/art/gif/c01_孤儿院围墙/【胖小孩背着残疾小孩】画画/2.png" id="85_br80e"]
|
||||
[ext_resource type="Texture2D" uid="uid://dx6wr0efie846" path="res://asset/art/gif/c01_孤儿院围墙/【胖小孩背着残疾小孩】摔倒/2.png" id="85_w78wp"]
|
||||
[ext_resource type="Texture2D" uid="uid://bvhv757upma3y" path="res://asset/art/gif/c01_孤儿院围墙/【胖小孩背着残疾小孩】画画/3.png" id="86_84780"]
|
||||
[ext_resource type="Texture2D" uid="uid://b7afvmbocjhte" path="res://asset/art/gif/c01_孤儿院围墙/【胖小孩背着残疾小孩】摔倒/3.png" id="86_yxj1c"]
|
||||
[ext_resource type="Texture2D" uid="uid://d4ni87qy7dku7" path="res://asset/art/gif/c01_孤儿院围墙/【胖小孩背着残疾小孩】摔倒/4.png" id="87_liy3k"]
|
||||
[ext_resource type="Texture2D" uid="uid://b1klwki8rtqko" path="res://asset/art/gif/c01_孤儿院围墙/【胖小孩背着残疾小孩】画画/4.png" id="87_wb7lj"]
|
||||
[ext_resource type="Texture2D" uid="uid://b7cc45pyik8sp" path="res://asset/art/gif/c01_孤儿院围墙/【胖小孩背着残疾小孩】摔倒/5.png" id="88_eff0s"]
|
||||
[ext_resource type="Texture2D" uid="uid://cwnr7kfb6m3t1" path="res://asset/art/gif/c01_孤儿院围墙/【胖小孩背着残疾小孩】画画/5.png" id="88_iasis"]
|
||||
[ext_resource type="Texture2D" uid="uid://8l0swi37h7jh" path="res://asset/art/gif/c01_孤儿院围墙/【胖小孩背着残疾小孩】画画/6.png" id="89_kkuwn"]
|
||||
[ext_resource type="Texture2D" uid="uid://d3wrowwavogar" path="res://asset/art/gif/c01_孤儿院围墙/【胖小孩背着残疾小孩】摔倒/6.png" id="89_x8yr1"]
|
||||
[ext_resource type="Texture2D" uid="uid://cfgk00olwskfw" path="res://asset/art/gif/c01_孤儿院围墙/【胖小孩背着残疾小孩】摔倒/7.png" id="90_jh438"]
|
||||
[ext_resource type="Texture2D" uid="uid://b7qtfebqtvuj" path="res://asset/art/gif/c01_孤儿院围墙/【胖小孩背着残疾小孩】画画/7.png" id="90_vjtvq"]
|
||||
[ext_resource type="Texture2D" uid="uid://dhemjx6imeo6e" path="res://asset/art/gif/c01_孤儿院围墙/【胖小孩背着残疾小孩】画画/8.png" id="91_0iojk"]
|
||||
[ext_resource type="Texture2D" uid="uid://ddar2xgo7up15" path="res://asset/art/gif/c01_孤儿院围墙/【胖小孩背着残疾小孩】摔倒/8.png" id="91_uvs17"]
|
||||
[ext_resource type="Texture2D" uid="uid://c7jfgcngdmcjy" path="res://asset/art/gif/c01_孤儿院围墙/【胖小孩背着残疾小孩】摔倒/9.png" id="92_8nqig"]
|
||||
[ext_resource type="Texture2D" uid="uid://p7oh3ddj77qs" path="res://asset/art/gif/c01_孤儿院围墙/【胖小孩背着残疾小孩】摔倒/10.png" id="93_q3u2k"]
|
||||
[ext_resource type="Texture2D" uid="uid://b18uy523xs56b" path="res://asset/art/gif/c01_孤儿院围墙/【胖小孩背着残疾小孩】摔倒/11.png" id="94_ekheb"]
|
||||
[ext_resource type="Texture2D" uid="uid://no40ymokldp2" path="res://asset/art/gif/c01_孤儿院围墙/【胖小孩背着残疾小孩】摔倒/12.png" id="95_3siy2"]
|
||||
[ext_resource type="Texture2D" uid="uid://c6dnltmf68tll" path="res://asset/art/gif/c01_孤儿院围墙/【胖小孩背着残疾小孩】摔倒/13.png" id="96_3vxt2"]
|
||||
[ext_resource type="Texture2D" uid="uid://cmma2q3n4g4wh" path="res://asset/art/gif/c01_孤儿院围墙/【胖小孩背着残疾小孩】摔倒/14.png" id="97_5p7uu"]
|
||||
[ext_resource type="Texture2D" uid="uid://c3fbgoccgjxl7" path="res://asset/art/gif/c01_孤儿院围墙/【胖小孩背着残疾小孩】摔倒/15.png" id="98_iq3wq"]
|
||||
[ext_resource type="Texture2D" uid="uid://7y61i6va6jrg" path="res://asset/art/gif/c01_孤儿院围墙/桌椅正常/0.png" id="115_l68hn"]
|
||||
[ext_resource type="Texture2D" uid="uid://dpp3vsd2maj1e" path="res://asset/art/gif/c01_孤儿院围墙/桌椅正常/1.png" id="116_lfql0"]
|
||||
[ext_resource type="Texture2D" uid="uid://kb7f3gck8m1a" path="res://asset/art/gif/c01_孤儿院围墙/桌椅正常/2.png" id="117_hsj7j"]
|
||||
[ext_resource type="Texture2D" uid="uid://chb6c33hc6u0k" path="res://asset/art/gif/c01_孤儿院围墙/桌椅正常/3.png" id="118_rlk5x"]
|
||||
[ext_resource type="Texture2D" uid="uid://cilhlpr4vqjl3" path="res://asset/art/gif/c01_孤儿院围墙/桌椅正常/4.png" id="119_dhwcn"]
|
||||
[ext_resource type="Texture2D" uid="uid://coqjruq7na8xx" path="res://asset/art/gif/c01_孤儿院围墙/桌椅正常/5.png" id="120_sd6qg"]
|
||||
[ext_resource type="Texture2D" uid="uid://dcnpi27by0mf2" path="res://asset/art/gif/c01_孤儿院围墙/桌椅正常/6.png" id="121_nyj10"]
|
||||
[ext_resource type="Texture2D" uid="uid://dn7ke7k6fa56a" path="res://asset/art/gif/c01_孤儿院围墙/桌椅翻倒/0.png" id="122_3fesm"]
|
||||
[ext_resource type="Texture2D" uid="uid://bxt0s6yl5u663" path="res://asset/art/gif/c01_孤儿院围墙/桌椅翻倒/1.png" id="123_4ypet"]
|
||||
[ext_resource type="Texture2D" uid="uid://bvfp6qahl5wf1" path="res://asset/art/gif/c01_孤儿院围墙/桌椅翻倒/2.png" id="124_ajrma"]
|
||||
[ext_resource type="Texture2D" uid="uid://80d7y4mh7wke" path="res://asset/art/gif/c01_孤儿院围墙/桌椅翻倒/3.png" id="125_j0esh"]
|
||||
[ext_resource type="Texture2D" uid="uid://bhv5gcebvkmql" path="res://asset/art/gif/c01_孤儿院围墙/桌椅翻倒/4.png" id="126_rcm44"]
|
||||
[ext_resource type="Texture2D" uid="uid://yyyj4ibmrvhx" path="res://asset/art/gif/c01_孤儿院围墙/桌椅翻倒/5.png" id="127_xhrct"]
|
||||
|
||||
[resource]
|
||||
animations = [{
|
||||
"frames": [{
|
||||
"duration": 3.0,
|
||||
"texture": ExtResource("1_ppkaj")
|
||||
}, {
|
||||
"duration": 3.0,
|
||||
"texture": ExtResource("2_lkyps")
|
||||
}, {
|
||||
"duration": 3.0,
|
||||
"texture": ExtResource("3_phrcs")
|
||||
}, {
|
||||
"duration": 3.0,
|
||||
"texture": ExtResource("4_8ckwd")
|
||||
}, {
|
||||
"duration": 6.0,
|
||||
"texture": ExtResource("5_upnvy")
|
||||
}],
|
||||
"loop": true,
|
||||
"name": &"【单残疾小孩】抓住",
|
||||
"speed": 30.0
|
||||
}, {
|
||||
"frames": [{
|
||||
"duration": 3.0,
|
||||
"texture": ExtResource("1_uv4ft")
|
||||
}, {
|
||||
"duration": 3.0,
|
||||
"texture": ExtResource("2_i110w")
|
||||
}, {
|
||||
"duration": 3.0,
|
||||
"texture": ExtResource("3_j2srm")
|
||||
}, {
|
||||
"duration": 3.0,
|
||||
"texture": ExtResource("4_tr405")
|
||||
}, {
|
||||
"duration": 3.0,
|
||||
"texture": ExtResource("5_ooobw")
|
||||
}, {
|
||||
"duration": 3.0,
|
||||
"texture": ExtResource("6_drfic")
|
||||
}],
|
||||
"loop": true,
|
||||
"name": &"【单残疾小孩】爬行",
|
||||
"speed": 30.0
|
||||
}, {
|
||||
"frames": [{
|
||||
"duration": 3.0,
|
||||
"texture": ExtResource("7_1njnw")
|
||||
}, {
|
||||
"duration": 3.0,
|
||||
"texture": ExtResource("8_yoixk")
|
||||
}, {
|
||||
"duration": 3.0,
|
||||
"texture": ExtResource("9_w45v0")
|
||||
}, {
|
||||
"duration": 3.0,
|
||||
"texture": ExtResource("10_mqmhd")
|
||||
}, {
|
||||
"duration": 3.0,
|
||||
"texture": ExtResource("11_5rd7h")
|
||||
}, {
|
||||
"duration": 3.0,
|
||||
"texture": ExtResource("12_ohj4k")
|
||||
}, {
|
||||
"duration": 3.0,
|
||||
"texture": ExtResource("13_mvm5i")
|
||||
}, {
|
||||
"duration": 3.0,
|
||||
"texture": ExtResource("14_th4f0")
|
||||
}, {
|
||||
"duration": 3.0,
|
||||
"texture": ExtResource("15_0nnpx")
|
||||
}, {
|
||||
"duration": 3.0,
|
||||
"texture": ExtResource("16_gqvxl")
|
||||
}, {
|
||||
"duration": 3.0,
|
||||
"texture": ExtResource("17_r2ypr")
|
||||
}, {
|
||||
"duration": 3.0,
|
||||
"texture": ExtResource("18_h1tve")
|
||||
}],
|
||||
"loop": false,
|
||||
"name": &"【墙上小孩猫影子】变身",
|
||||
"speed": 30.0
|
||||
}, {
|
||||
"frames": [{
|
||||
"duration": 3.0,
|
||||
"texture": ExtResource("24_gjuvo")
|
||||
}, {
|
||||
"duration": 3.0,
|
||||
"texture": ExtResource("25_jnic7")
|
||||
}, {
|
||||
"duration": 3.0,
|
||||
"texture": ExtResource("26_os8pk")
|
||||
}, {
|
||||
"duration": 3.0,
|
||||
"texture": ExtResource("27_5d871")
|
||||
}, {
|
||||
"duration": 3.0,
|
||||
"texture": ExtResource("28_emcgp")
|
||||
}, {
|
||||
"duration": 3.0,
|
||||
"texture": ExtResource("29_0n0ds")
|
||||
}],
|
||||
"loop": true,
|
||||
"name": &"【墙上小孩猫影子】猫影跑步",
|
||||
"speed": 30.0
|
||||
}, {
|
||||
"frames": [{
|
||||
"duration": 3.0,
|
||||
"texture": ExtResource("24_37no4")
|
||||
}, {
|
||||
"duration": 3.0,
|
||||
"texture": ExtResource("25_2xdwu")
|
||||
}, {
|
||||
"duration": 3.0,
|
||||
"texture": ExtResource("26_itc3q")
|
||||
}, {
|
||||
"duration": 0.9,
|
||||
"texture": ExtResource("27_kjkl5")
|
||||
}, {
|
||||
"duration": 3.0,
|
||||
"texture": ExtResource("28_gl5i6")
|
||||
}, {
|
||||
"duration": 3.0,
|
||||
"texture": ExtResource("29_amfku")
|
||||
}],
|
||||
"loop": true,
|
||||
"name": &"【墙上黑猫】跑步",
|
||||
"speed": 30.0
|
||||
}, {
|
||||
"frames": [{
|
||||
"duration": 30.0,
|
||||
"texture": ExtResource("1_ethui")
|
||||
}, {
|
||||
@ -207,31 +408,31 @@ animations = [{
|
||||
"speed": 30.0
|
||||
}, {
|
||||
"frames": [{
|
||||
"duration": 15.0,
|
||||
"duration": 5.0,
|
||||
"texture": ExtResource("1_qo83r")
|
||||
}, {
|
||||
"duration": 15.0,
|
||||
"duration": 5.0,
|
||||
"texture": ExtResource("2_o8feq")
|
||||
}, {
|
||||
"duration": 15.0,
|
||||
"duration": 5.0,
|
||||
"texture": ExtResource("3_c8gk4")
|
||||
}, {
|
||||
"duration": 15.0,
|
||||
"duration": 5.0,
|
||||
"texture": ExtResource("4_kof4k")
|
||||
}, {
|
||||
"duration": 30.0,
|
||||
"duration": 5.0,
|
||||
"texture": ExtResource("5_kw7qo")
|
||||
}, {
|
||||
"duration": 30.0,
|
||||
"duration": 5.0,
|
||||
"texture": ExtResource("6_bets1")
|
||||
}, {
|
||||
"duration": 30.0,
|
||||
"duration": 5.0,
|
||||
"texture": ExtResource("7_joe58")
|
||||
}, {
|
||||
"duration": 30.0,
|
||||
"duration": 5.0,
|
||||
"texture": ExtResource("8_u6p3q")
|
||||
}, {
|
||||
"duration": 30.0,
|
||||
"duration": 5.0,
|
||||
"texture": ExtResource("9_hj6s2")
|
||||
}],
|
||||
"loop": true,
|
||||
@ -420,12 +621,83 @@ animations = [{
|
||||
"speed": 30.0
|
||||
}, {
|
||||
"frames": [{
|
||||
"duration": 30.0,
|
||||
"texture": ExtResource("72_2ac2n")
|
||||
"duration": 3.0,
|
||||
"texture": ExtResource("76_51uvd")
|
||||
}, {
|
||||
"duration": 3.0,
|
||||
"texture": ExtResource("77_ckq57")
|
||||
}, {
|
||||
"duration": 3.0,
|
||||
"texture": ExtResource("78_rhl4u")
|
||||
}, {
|
||||
"duration": 3.0,
|
||||
"texture": ExtResource("79_dks0y")
|
||||
}, {
|
||||
"duration": 3.0,
|
||||
"texture": ExtResource("80_ohln3")
|
||||
}, {
|
||||
"duration": 3.0,
|
||||
"texture": ExtResource("81_l8pta")
|
||||
}, {
|
||||
"duration": 3.0,
|
||||
"texture": ExtResource("82_ssn0q")
|
||||
}],
|
||||
"loop": true,
|
||||
"name": &"【胖小孩背着残疾小孩】奔跑",
|
||||
"speed": 5.0
|
||||
"speed": 30.0
|
||||
}, {
|
||||
"frames": [{
|
||||
"duration": 3.0,
|
||||
"texture": ExtResource("83_fb61f")
|
||||
}, {
|
||||
"duration": 3.0,
|
||||
"texture": ExtResource("84_8wswo")
|
||||
}, {
|
||||
"duration": 3.0,
|
||||
"texture": ExtResource("85_w78wp")
|
||||
}, {
|
||||
"duration": 30.0,
|
||||
"texture": ExtResource("86_yxj1c")
|
||||
}, {
|
||||
"duration": 6.0,
|
||||
"texture": ExtResource("87_liy3k")
|
||||
}, {
|
||||
"duration": 6.0,
|
||||
"texture": ExtResource("88_eff0s")
|
||||
}, {
|
||||
"duration": 6.0,
|
||||
"texture": ExtResource("89_x8yr1")
|
||||
}, {
|
||||
"duration": 6.0,
|
||||
"texture": ExtResource("90_jh438")
|
||||
}, {
|
||||
"duration": 6.0,
|
||||
"texture": ExtResource("91_uvs17")
|
||||
}, {
|
||||
"duration": 6.0,
|
||||
"texture": ExtResource("92_8nqig")
|
||||
}, {
|
||||
"duration": 6.0,
|
||||
"texture": ExtResource("93_q3u2k")
|
||||
}, {
|
||||
"duration": 3.0,
|
||||
"texture": ExtResource("94_ekheb")
|
||||
}, {
|
||||
"duration": 3.0,
|
||||
"texture": ExtResource("95_3siy2")
|
||||
}, {
|
||||
"duration": 3.0,
|
||||
"texture": ExtResource("96_3vxt2")
|
||||
}, {
|
||||
"duration": 3.0,
|
||||
"texture": ExtResource("97_5p7uu")
|
||||
}, {
|
||||
"duration": 3.0,
|
||||
"texture": ExtResource("98_iq3wq")
|
||||
}],
|
||||
"loop": false,
|
||||
"name": &"【胖小孩背着残疾小孩】摔倒",
|
||||
"speed": 30.0
|
||||
}, {
|
||||
"frames": [{
|
||||
"duration": 30.0,
|
||||
@ -489,4 +761,87 @@ animations = [{
|
||||
"loop": true,
|
||||
"name": &"【胖小孩背着残疾小孩】画画",
|
||||
"speed": 30.0
|
||||
}, {
|
||||
"frames": [{
|
||||
"duration": 3.0,
|
||||
"texture": ExtResource("115_l68hn")
|
||||
}],
|
||||
"loop": true,
|
||||
"name": &"桌椅正常",
|
||||
"speed": 30.0
|
||||
}, {
|
||||
"frames": [{
|
||||
"duration": 3.0,
|
||||
"texture": ExtResource("122_3fesm")
|
||||
}, {
|
||||
"duration": 3.0,
|
||||
"texture": ExtResource("123_4ypet")
|
||||
}, {
|
||||
"duration": 3.0,
|
||||
"texture": ExtResource("124_ajrma")
|
||||
}, {
|
||||
"duration": 3.0,
|
||||
"texture": ExtResource("125_j0esh")
|
||||
}, {
|
||||
"duration": 3.0,
|
||||
"texture": ExtResource("126_rcm44")
|
||||
}, {
|
||||
"duration": 3.0,
|
||||
"texture": ExtResource("127_xhrct")
|
||||
}],
|
||||
"loop": false,
|
||||
"name": &"桌椅翻倒",
|
||||
"speed": 30.0
|
||||
}, {
|
||||
"frames": [{
|
||||
"duration": 3.0,
|
||||
"texture": ExtResource("115_l68hn")
|
||||
}, {
|
||||
"duration": 3.0,
|
||||
"texture": ExtResource("116_lfql0")
|
||||
}, {
|
||||
"duration": 3.0,
|
||||
"texture": ExtResource("117_hsj7j")
|
||||
}, {
|
||||
"duration": 3.0,
|
||||
"texture": ExtResource("118_rlk5x")
|
||||
}, {
|
||||
"duration": 3.0,
|
||||
"texture": ExtResource("119_dhwcn")
|
||||
}, {
|
||||
"duration": 3.0,
|
||||
"texture": ExtResource("120_sd6qg")
|
||||
}, {
|
||||
"duration": 3.0,
|
||||
"texture": ExtResource("121_nyj10")
|
||||
}],
|
||||
"loop": true,
|
||||
"name": &"桌椅颤抖-正常",
|
||||
"speed": 30.0
|
||||
}, {
|
||||
"frames": [{
|
||||
"duration": 3.0,
|
||||
"texture": ExtResource("115_l68hn")
|
||||
}, {
|
||||
"duration": 3.0,
|
||||
"texture": ExtResource("116_lfql0")
|
||||
}, {
|
||||
"duration": 3.0,
|
||||
"texture": ExtResource("117_hsj7j")
|
||||
}, {
|
||||
"duration": 3.0,
|
||||
"texture": ExtResource("118_rlk5x")
|
||||
}, {
|
||||
"duration": 3.0,
|
||||
"texture": ExtResource("119_dhwcn")
|
||||
}, {
|
||||
"duration": 3.0,
|
||||
"texture": ExtResource("120_sd6qg")
|
||||
}, {
|
||||
"duration": 3.0,
|
||||
"texture": ExtResource("121_nyj10")
|
||||
}],
|
||||
"loop": false,
|
||||
"name": &"桌椅颤抖-翻倒",
|
||||
"speed": 30.0
|
||||
}]
|
||||
|
BIN
asset/art/gif/c01_孤儿院围墙/【单残疾小孩】抓住.gif
Executable file
After Width: | Height: | Size: 5.8 KiB |
14
asset/art/gif/c01_孤儿院围墙/【单残疾小孩】抓住.gif.import
Normal file
@ -0,0 +1,14 @@
|
||||
[remap]
|
||||
|
||||
importer="gif.animated.texture.plugin"
|
||||
type="SpriteFrames"
|
||||
uid="uid://din51rasqw82d"
|
||||
path="res://.godot/imported/【单残疾小孩】抓住.gif-d6980b3c26c8c7e837fc493fe60fab3c.tres"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/gif/c01_孤儿院围墙/【单残疾小孩】抓住.gif"
|
||||
dest_files=["res://.godot/imported/【单残疾小孩】抓住.gif-d6980b3c26c8c7e837fc493fe60fab3c.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://cwvukx1hka1b3"
|
||||
path="res://.godot/imported/0.png-b08fa59f0804d021cf4eea3de150551e.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/gif/c01_孤儿院围墙/【单残疾小孩】抓住/0.png"
|
||||
dest_files=["res://.godot/imported/0.png-b08fa59f0804d021cf4eea3de150551e.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://dknxnuqaakwts"
|
||||
path="res://.godot/imported/1.png-11b1246b62b7eca525cf2b53275e02d1.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/gif/c01_孤儿院围墙/【单残疾小孩】抓住/1.png"
|
||||
dest_files=["res://.godot/imported/1.png-11b1246b62b7eca525cf2b53275e02d1.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.8 KiB |
34
asset/art/gif/c01_孤儿院围墙/【单残疾小孩】抓住/2.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://d1q6b2misviyi"
|
||||
path="res://.godot/imported/2.png-0c6d794d7fc701b72c3206531a8518ce.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/gif/c01_孤儿院围墙/【单残疾小孩】抓住/2.png"
|
||||
dest_files=["res://.godot/imported/2.png-0c6d794d7fc701b72c3206531a8518ce.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://dec1se7f3ao13"
|
||||
path="res://.godot/imported/3.png-b3d6b11a83da1f5a7356e70e41efea9c.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/gif/c01_孤儿院围墙/【单残疾小孩】抓住/3.png"
|
||||
dest_files=["res://.godot/imported/3.png-b3d6b11a83da1f5a7356e70e41efea9c.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.7 KiB |
34
asset/art/gif/c01_孤儿院围墙/【单残疾小孩】抓住/4.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://cj0j5dd8kf5ul"
|
||||
path="res://.godot/imported/4.png-2b7c2ee741e1d6dd61e61cb71d6aac81.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/gif/c01_孤儿院围墙/【单残疾小孩】抓住/4.png"
|
||||
dest_files=["res://.godot/imported/4.png-2b7c2ee741e1d6dd61e61cb71d6aac81.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.5 KiB |
14
asset/art/gif/c01_孤儿院围墙/【单残疾小孩】爬行.gif.import
Normal file
@ -0,0 +1,14 @@
|
||||
[remap]
|
||||
|
||||
importer="gif.animated.texture.plugin"
|
||||
type="SpriteFrames"
|
||||
uid="uid://c8cmu0qfir55x"
|
||||
path="res://.godot/imported/【单残疾小孩】爬行.gif-08f05cf3872a46fd7c1110d4c196def6.tres"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/gif/c01_孤儿院围墙/【单残疾小孩】爬行.gif"
|
||||
dest_files=["res://.godot/imported/【单残疾小孩】爬行.gif-08f05cf3872a46fd7c1110d4c196def6.tres"]
|
||||
|
||||
[params]
|
||||
|
BIN
asset/art/gif/c01_孤儿院围墙/【单残疾小孩】爬行/0.png
Normal file
After Width: | Height: | Size: 764 B |
34
asset/art/gif/c01_孤儿院围墙/【单残疾小孩】爬行/0.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bf0mbhlnfej4t"
|
||||
path="res://.godot/imported/0.png-f8b4c1d1f6af41eb868ab5df236e1dcd.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/gif/c01_孤儿院围墙/【单残疾小孩】爬行/0.png"
|
||||
dest_files=["res://.godot/imported/0.png-f8b4c1d1f6af41eb868ab5df236e1dcd.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: 795 B |
34
asset/art/gif/c01_孤儿院围墙/【单残疾小孩】爬行/1.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://rj0ddepk7vsg"
|
||||
path="res://.godot/imported/1.png-5245f1d213d2fc53aeeded9915667336.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/gif/c01_孤儿院围墙/【单残疾小孩】爬行/1.png"
|
||||
dest_files=["res://.godot/imported/1.png-5245f1d213d2fc53aeeded9915667336.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: 806 B |
34
asset/art/gif/c01_孤儿院围墙/【单残疾小孩】爬行/2.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://ba4mcdlyen6i5"
|
||||
path="res://.godot/imported/2.png-968a35d7cc406615a019579fbd94be90.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/gif/c01_孤儿院围墙/【单残疾小孩】爬行/2.png"
|
||||
dest_files=["res://.godot/imported/2.png-968a35d7cc406615a019579fbd94be90.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: 785 B |
34
asset/art/gif/c01_孤儿院围墙/【单残疾小孩】爬行/3.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://l5ebtth8cnsm"
|
||||
path="res://.godot/imported/3.png-82193aa92d5183b906d2c1bf5727163a.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/gif/c01_孤儿院围墙/【单残疾小孩】爬行/3.png"
|
||||
dest_files=["res://.godot/imported/3.png-82193aa92d5183b906d2c1bf5727163a.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: 775 B |
34
asset/art/gif/c01_孤儿院围墙/【单残疾小孩】爬行/4.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://b4ngws4tt5wuy"
|
||||
path="res://.godot/imported/4.png-529869360055b2db4942227fa2d79c1a.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/gif/c01_孤儿院围墙/【单残疾小孩】爬行/4.png"
|
||||
dest_files=["res://.godot/imported/4.png-529869360055b2db4942227fa2d79c1a.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: 767 B |
34
asset/art/gif/c01_孤儿院围墙/【单残疾小孩】爬行/5.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dtvcu28ukwa5u"
|
||||
path="res://.godot/imported/5.png-52fdbc362a071aa7338d439a51b062f0.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/gif/c01_孤儿院围墙/【单残疾小孩】爬行/5.png"
|
||||
dest_files=["res://.godot/imported/5.png-52fdbc362a071aa7338d439a51b062f0.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: 8.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://bfg5u5xgl724f"
|
||||
path="res://.godot/imported/【墙上小孩猫影子】变身.gif-4fac813cd7586c7ef8fb7e625b25fbfa.tres"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/gif/c01_孤儿院围墙/【墙上小孩猫影子】变身.gif"
|
||||
dest_files=["res://.godot/imported/【墙上小孩猫影子】变身.gif-4fac813cd7586c7ef8fb7e625b25fbfa.tres"]
|
||||
|
||||
[params]
|
||||
|
BIN
asset/art/gif/c01_孤儿院围墙/【墙上小孩猫影子】变身/0.png
Normal file
After Width: | Height: | Size: 753 B |
34
asset/art/gif/c01_孤儿院围墙/【墙上小孩猫影子】变身/0.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://b84vi1wyvnhax"
|
||||
path="res://.godot/imported/0.png-0b53a0ba0be465cd9a959cc97690eac4.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/gif/c01_孤儿院围墙/【墙上小孩猫影子】变身/0.png"
|
||||
dest_files=["res://.godot/imported/0.png-0b53a0ba0be465cd9a959cc97690eac4.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: 835 B |
34
asset/art/gif/c01_孤儿院围墙/【墙上小孩猫影子】变身/1.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dfwiloc3wy7e1"
|
||||
path="res://.godot/imported/1.png-02e511d858700c3187e8428c1555b437.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/gif/c01_孤儿院围墙/【墙上小孩猫影子】变身/1.png"
|
||||
dest_files=["res://.godot/imported/1.png-02e511d858700c3187e8428c1555b437.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_孤儿院围墙/【墙上小孩猫影子】变身/10.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
34
asset/art/gif/c01_孤儿院围墙/【墙上小孩猫影子】变身/10.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://d2we8sqw5w3ye"
|
||||
path="res://.godot/imported/10.png-2386226c03dc97191c39c41572cac77b.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/gif/c01_孤儿院围墙/【墙上小孩猫影子】变身/10.png"
|
||||
dest_files=["res://.godot/imported/10.png-2386226c03dc97191c39c41572cac77b.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_孤儿院围墙/【墙上小孩猫影子】变身/11.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
34
asset/art/gif/c01_孤儿院围墙/【墙上小孩猫影子】变身/11.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://0oj3svwm7ukl"
|
||||
path="res://.godot/imported/11.png-cdc3db2676d2821ab0d5a6741fd85929.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/gif/c01_孤儿院围墙/【墙上小孩猫影子】变身/11.png"
|
||||
dest_files=["res://.godot/imported/11.png-cdc3db2676d2821ab0d5a6741fd85929.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: 861 B |
34
asset/art/gif/c01_孤儿院围墙/【墙上小孩猫影子】变身/2.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://c8wwan5g0w8e7"
|
||||
path="res://.godot/imported/2.png-17cfb2a531bde3d914423cc14081ae69.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/gif/c01_孤儿院围墙/【墙上小孩猫影子】变身/2.png"
|
||||
dest_files=["res://.godot/imported/2.png-17cfb2a531bde3d914423cc14081ae69.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: 895 B |
34
asset/art/gif/c01_孤儿院围墙/【墙上小孩猫影子】变身/3.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://b12t68n036k5"
|
||||
path="res://.godot/imported/3.png-04264b3d2c8bface242cee4816bcdf58.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/gif/c01_孤儿院围墙/【墙上小孩猫影子】变身/3.png"
|
||||
dest_files=["res://.godot/imported/3.png-04264b3d2c8bface242cee4816bcdf58.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: 937 B |
34
asset/art/gif/c01_孤儿院围墙/【墙上小孩猫影子】变身/4.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://5foo5obbirtv"
|
||||
path="res://.godot/imported/4.png-1902a02842478cff645db68bb63c34a5.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/gif/c01_孤儿院围墙/【墙上小孩猫影子】变身/4.png"
|
||||
dest_files=["res://.godot/imported/4.png-1902a02842478cff645db68bb63c34a5.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.0 KiB |
34
asset/art/gif/c01_孤儿院围墙/【墙上小孩猫影子】变身/5.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://drlk2k1hdfgi4"
|
||||
path="res://.godot/imported/5.png-fbeb4e873aad5b5eb843b9a9b9b73a2f.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/gif/c01_孤儿院围墙/【墙上小孩猫影子】变身/5.png"
|
||||
dest_files=["res://.godot/imported/5.png-fbeb4e873aad5b5eb843b9a9b9b73a2f.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.1 KiB |
34
asset/art/gif/c01_孤儿院围墙/【墙上小孩猫影子】变身/6.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://ctydwkglgba3x"
|
||||
path="res://.godot/imported/6.png-232c3da8ea2f670e4ce37dd88fce1eb8.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/gif/c01_孤儿院围墙/【墙上小孩猫影子】变身/6.png"
|
||||
dest_files=["res://.godot/imported/6.png-232c3da8ea2f670e4ce37dd88fce1eb8.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.2 KiB |
34
asset/art/gif/c01_孤儿院围墙/【墙上小孩猫影子】变身/7.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bnk72w6b3ammi"
|
||||
path="res://.godot/imported/7.png-2d20fb6befb9abea032cb06340082c1f.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/gif/c01_孤儿院围墙/【墙上小孩猫影子】变身/7.png"
|
||||
dest_files=["res://.godot/imported/7.png-2d20fb6befb9abea032cb06340082c1f.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_孤儿院围墙/【墙上小孩猫影子】变身/8.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
34
asset/art/gif/c01_孤儿院围墙/【墙上小孩猫影子】变身/8.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://c26rwvwhwko3e"
|
||||
path="res://.godot/imported/8.png-293d6ea845f128c445b823556ab430c5.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/gif/c01_孤儿院围墙/【墙上小孩猫影子】变身/8.png"
|
||||
dest_files=["res://.godot/imported/8.png-293d6ea845f128c445b823556ab430c5.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_孤儿院围墙/【墙上小孩猫影子】变身/9.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
34
asset/art/gif/c01_孤儿院围墙/【墙上小孩猫影子】变身/9.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bd3883g33wk8n"
|
||||
path="res://.godot/imported/9.png-edcdd3189a1cc1d21f502aa31f2bcafe.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/gif/c01_孤儿院围墙/【墙上小孩猫影子】变身/9.png"
|
||||
dest_files=["res://.godot/imported/9.png-edcdd3189a1cc1d21f502aa31f2bcafe.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: 5.8 KiB |
14
asset/art/gif/c01_孤儿院围墙/【墙上小孩猫影子】猫影跑步.gif.import
Normal file
@ -0,0 +1,14 @@
|
||||
[remap]
|
||||
|
||||
importer="gif.animated.texture.plugin"
|
||||
type="SpriteFrames"
|
||||
uid="uid://ytcblvonvmbt"
|
||||
path="res://.godot/imported/【墙上小孩猫影子】猫影跑步.gif-8b8d145eef485f53850860304d87720b.tres"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/gif/c01_孤儿院围墙/【墙上小孩猫影子】猫影跑步.gif"
|
||||
dest_files=["res://.godot/imported/【墙上小孩猫影子】猫影跑步.gif-8b8d145eef485f53850860304d87720b.tres"]
|
||||
|
||||
[params]
|
||||
|
BIN
asset/art/gif/c01_孤儿院围墙/【墙上小孩猫影子】猫影跑步/0.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
34
asset/art/gif/c01_孤儿院围墙/【墙上小孩猫影子】猫影跑步/0.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://b1rtgu6xrv6yu"
|
||||
path="res://.godot/imported/0.png-878856793250b44dd508716bff739b13.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/gif/c01_孤儿院围墙/【墙上小孩猫影子】猫影跑步/0.png"
|
||||
dest_files=["res://.godot/imported/0.png-878856793250b44dd508716bff739b13.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.2 KiB |
34
asset/art/gif/c01_孤儿院围墙/【墙上小孩猫影子】猫影跑步/1.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dsfeg4ni6dnfm"
|
||||
path="res://.godot/imported/1.png-ea3ebf1c97c9795a9c347ced5a7a2cd5.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/gif/c01_孤儿院围墙/【墙上小孩猫影子】猫影跑步/1.png"
|
||||
dest_files=["res://.godot/imported/1.png-ea3ebf1c97c9795a9c347ced5a7a2cd5.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.1 KiB |
34
asset/art/gif/c01_孤儿院围墙/【墙上小孩猫影子】猫影跑步/2.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://draljclsgegqu"
|
||||
path="res://.godot/imported/2.png-cef88396baf1b9d6b9ab028f342192f1.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/gif/c01_孤儿院围墙/【墙上小孩猫影子】猫影跑步/2.png"
|
||||
dest_files=["res://.godot/imported/2.png-cef88396baf1b9d6b9ab028f342192f1.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.1 KiB |
34
asset/art/gif/c01_孤儿院围墙/【墙上小孩猫影子】猫影跑步/3.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bxk4qpqrrcfag"
|
||||
path="res://.godot/imported/3.png-77ebbaf444da51e8fe39eb68283610f2.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/gif/c01_孤儿院围墙/【墙上小孩猫影子】猫影跑步/3.png"
|
||||
dest_files=["res://.godot/imported/3.png-77ebbaf444da51e8fe39eb68283610f2.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.1 KiB |
34
asset/art/gif/c01_孤儿院围墙/【墙上小孩猫影子】猫影跑步/4.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://df4l6d3tnpe3w"
|
||||
path="res://.godot/imported/4.png-f722bbf42549e291fe7e26fc971bd130.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/gif/c01_孤儿院围墙/【墙上小孩猫影子】猫影跑步/4.png"
|
||||
dest_files=["res://.godot/imported/4.png-f722bbf42549e291fe7e26fc971bd130.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.1 KiB |
34
asset/art/gif/c01_孤儿院围墙/【墙上小孩猫影子】猫影跑步/5.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://qme8br1xm0aj"
|
||||
path="res://.godot/imported/5.png-080054c5a1489d3611fb62b472684486.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/gif/c01_孤儿院围墙/【墙上小孩猫影子】猫影跑步/5.png"
|
||||
dest_files=["res://.godot/imported/5.png-080054c5a1489d3611fb62b472684486.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.8 KiB |
14
asset/art/gif/c01_孤儿院围墙/【墙上黑猫】跑步.gif.import
Normal file
@ -0,0 +1,14 @@
|
||||
[remap]
|
||||
|
||||
importer="gif.animated.texture.plugin"
|
||||
type="SpriteFrames"
|
||||
uid="uid://bojr0y2cowcg1"
|
||||
path="res://.godot/imported/【墙上黑猫】跑步.gif-26934e22dd84cade25c77fb4ea77537c.tres"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/gif/c01_孤儿院围墙/【墙上黑猫】跑步.gif"
|
||||
dest_files=["res://.godot/imported/【墙上黑猫】跑步.gif-26934e22dd84cade25c77fb4ea77537c.tres"]
|
||||
|
||||
[params]
|
||||
|
BIN
asset/art/gif/c01_孤儿院围墙/【墙上黑猫】跑步/0.png
Normal file
After Width: | Height: | Size: 735 B |
34
asset/art/gif/c01_孤儿院围墙/【墙上黑猫】跑步/0.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://crtnt7rvtwkhr"
|
||||
path="res://.godot/imported/0.png-0969bdc855e23cd17e9c9929e3f20246.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/gif/c01_孤儿院围墙/【墙上黑猫】跑步/0.png"
|
||||
dest_files=["res://.godot/imported/0.png-0969bdc855e23cd17e9c9929e3f20246.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: 746 B |
34
asset/art/gif/c01_孤儿院围墙/【墙上黑猫】跑步/1.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://ceimuvcwismxd"
|
||||
path="res://.godot/imported/1.png-81a6416b077bd33069b0bfe9b11350f8.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/gif/c01_孤儿院围墙/【墙上黑猫】跑步/1.png"
|
||||
dest_files=["res://.godot/imported/1.png-81a6416b077bd33069b0bfe9b11350f8.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: 785 B |
34
asset/art/gif/c01_孤儿院围墙/【墙上黑猫】跑步/2.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dg4ahwwkpw7wa"
|
||||
path="res://.godot/imported/2.png-55364851807b1c040bc32614487458c2.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/gif/c01_孤儿院围墙/【墙上黑猫】跑步/2.png"
|
||||
dest_files=["res://.godot/imported/2.png-55364851807b1c040bc32614487458c2.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: 736 B |
34
asset/art/gif/c01_孤儿院围墙/【墙上黑猫】跑步/3.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dsr76x2ae1cp0"
|
||||
path="res://.godot/imported/3.png-60023f5b08bbbec6ad76487464c2228a.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/gif/c01_孤儿院围墙/【墙上黑猫】跑步/3.png"
|
||||
dest_files=["res://.godot/imported/3.png-60023f5b08bbbec6ad76487464c2228a.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: 736 B |
34
asset/art/gif/c01_孤儿院围墙/【墙上黑猫】跑步/4.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://qa53sn8ccmfp"
|
||||
path="res://.godot/imported/4.png-a6eadfd867289bbe67b4879919679638.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/gif/c01_孤儿院围墙/【墙上黑猫】跑步/4.png"
|
||||
dest_files=["res://.godot/imported/4.png-a6eadfd867289bbe67b4879919679638.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: 772 B |
34
asset/art/gif/c01_孤儿院围墙/【墙上黑猫】跑步/5.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bqqn668kmoydg"
|
||||
path="res://.godot/imported/5.png-155e3302d756217201c1440fb5647220.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/gif/c01_孤儿院围墙/【墙上黑猫】跑步/5.png"
|
||||
dest_files=["res://.godot/imported/5.png-155e3302d756217201c1440fb5647220.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
|
14
asset/art/gif/c01_孤儿院围墙/【桌椅】抖动.gif.import
Normal file
@ -0,0 +1,14 @@
|
||||
[remap]
|
||||
|
||||
importer="gif.animated.texture.plugin"
|
||||
type="SpriteFrames"
|
||||
uid="uid://ckiikbnfwvqt3"
|
||||
path="res://.godot/imported/【桌椅】抖动.gif-4e7000400e31306039b3a172d9208201.tres"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/gif/c01_孤儿院围墙/【桌椅】抖动.gif"
|
||||
dest_files=["res://.godot/imported/【桌椅】抖动.gif-4e7000400e31306039b3a172d9208201.tres"]
|
||||
|
||||
[params]
|
||||
|
BIN
asset/art/gif/c01_孤儿院围墙/【桌椅】抖动/0.png
Normal file
After Width: | Height: | Size: 5.5 KiB |
34
asset/art/gif/c01_孤儿院围墙/【桌椅】抖动/0.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://chlw04ml6do80"
|
||||
path="res://.godot/imported/0.png-1b00775b641931f91e59257a4e8505dd.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/gif/c01_孤儿院围墙/【桌椅】抖动/0.png"
|
||||
dest_files=["res://.godot/imported/0.png-1b00775b641931f91e59257a4e8505dd.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: 5.5 KiB |
34
asset/art/gif/c01_孤儿院围墙/【桌椅】抖动/1.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://ch7sorr2jnb1t"
|
||||
path="res://.godot/imported/1.png-19eb0a50efbc549e55f92717b260008b.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/gif/c01_孤儿院围墙/【桌椅】抖动/1.png"
|
||||
dest_files=["res://.godot/imported/1.png-19eb0a50efbc549e55f92717b260008b.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: 5.5 KiB |
34
asset/art/gif/c01_孤儿院围墙/【桌椅】抖动/2.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dkdnplv1p3ldv"
|
||||
path="res://.godot/imported/2.png-709190ced18cb22d041a888f11c9c1ba.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/gif/c01_孤儿院围墙/【桌椅】抖动/2.png"
|
||||
dest_files=["res://.godot/imported/2.png-709190ced18cb22d041a888f11c9c1ba.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: 5.5 KiB |
34
asset/art/gif/c01_孤儿院围墙/【桌椅】抖动/3.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bloqmhyil08qp"
|
||||
path="res://.godot/imported/3.png-0d9360819e94b056b1a88bd79e7871b9.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/gif/c01_孤儿院围墙/【桌椅】抖动/3.png"
|
||||
dest_files=["res://.godot/imported/3.png-0d9360819e94b056b1a88bd79e7871b9.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: 5.5 KiB |
34
asset/art/gif/c01_孤儿院围墙/【桌椅】抖动/4.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://cnvkoehxc2s58"
|
||||
path="res://.godot/imported/4.png-1d3e1efe967cf9b9b5ecfad330c7281a.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/gif/c01_孤儿院围墙/【桌椅】抖动/4.png"
|
||||
dest_files=["res://.godot/imported/4.png-1d3e1efe967cf9b9b5ecfad330c7281a.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: 5.5 KiB |
34
asset/art/gif/c01_孤儿院围墙/【桌椅】抖动/5.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://cqxqcdvlb3a08"
|
||||
path="res://.godot/imported/5.png-e1210b8ce7e5e212ce04f977894a92e3.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/gif/c01_孤儿院围墙/【桌椅】抖动/5.png"
|
||||
dest_files=["res://.godot/imported/5.png-e1210b8ce7e5e212ce04f977894a92e3.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: 5.5 KiB |
34
asset/art/gif/c01_孤儿院围墙/【桌椅】抖动/6.png.import
Normal file
@ -0,0 +1,34 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bwt3q8abx8bsp"
|
||||
path="res://.godot/imported/6.png-3c4c7e3ba74bb4013542f85b7bac33ea.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://asset/art/gif/c01_孤儿院围墙/【桌椅】抖动/6.png"
|
||||
dest_files=["res://.godot/imported/6.png-3c4c7e3ba74bb4013542f85b7bac33ea.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
|