Compare commits

...

9 Commits

Author SHA1 Message Date
1465104b98 merged 2026-04-22 23:04:44 -07:00
5ae9ff1f17 changes 2026-04-22 22:38:53 -07:00
0ec2f52172 interior 2026-04-18 12:32:13 -07:00
18bfeb9bcc cleans up connections 2026-04-18 12:03:51 -07:00
5f144fb5d7 transition work 2026-04-09 10:32:30 -07:00
5e9fb9251e line endings 2026-04-08 17:12:23 -07:00
e8982ba4ef changes 2026-04-08 17:11:03 -07:00
5613ae1d8c deleting bad 2026-04-08 15:26:56 -07:00
c0db909092 removing problematic files 2026-04-08 15:26:26 -07:00
688 changed files with 11498 additions and 578 deletions

7
.gitattributes vendored
View File

@@ -1,3 +1,10 @@
# Line ending normalization - prevents Windows/Linux conflicts
* text=auto eol=lf
# Windows-only files should use CRLF
*.bat text eol=crlf
*.cmd text eol=crlf
Assets/**/*.png filter=lfs diff=lfs merge=lfs -text Assets/**/*.png filter=lfs diff=lfs merge=lfs -text
**/*.png filter=lfs diff=lfs merge=lfs -text **/*.png filter=lfs diff=lfs merge=lfs -text
scenes/entrance/entrance-wall.png filter=lfs diff=lfs merge=lfs -text scenes/entrance/entrance-wall.png filter=lfs diff=lfs merge=lfs -text

View File

@@ -39,10 +39,15 @@ func _process(_delta: float) -> void:
if not current_scene: if not current_scene:
return return
var global_mouse_pos = get_viewport().get_mouse_position() # Use the scene's viewport (SubViewport), not the root viewport,
var camera = get_viewport().get_camera_2d() # so we get the correct Camera2D and properly account for zoom/position.
var scene_viewport = current_scene.get_viewport()
var camera = scene_viewport.get_camera_2d()
var global_mouse_pos: Vector2
if camera: if camera:
global_mouse_pos = camera.get_global_mouse_position() global_mouse_pos = camera.get_global_mouse_position()
else:
global_mouse_pos = scene_viewport.get_mouse_position()
# Find all SetPieces in current scene # Find all SetPieces in current scene
var new_hovered: Array[SetPiece] = [] var new_hovered: Array[SetPiece] = []
@@ -53,7 +58,7 @@ func _process(_delta: float) -> void:
new_hovered.append(piece) new_hovered.append(piece)
# Sort by priority (highest first) # Sort by priority (highest first)
new_hovered.sort_custom(func(a, b): return b.priority > a.priority) new_hovered.sort_custom(func(a, b): return b.priority < a.priority)
# Check if top piece changed # Check if top piece changed
var new_top = new_hovered[0] if new_hovered.size() > 0 else null var new_top = new_hovered[0] if new_hovered.size() > 0 else null

View File

@@ -18,6 +18,8 @@ dest_files=["res://.godot/imported/ComfyUI_09976_.png-90d1260948678f4c6d87ad664d
compress/mode=0 compress/mode=0
compress/high_quality=false compress/high_quality=false
compress/lossy_quality=0.7 compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1 compress/hdr_compression=1
compress/normal_map=0 compress/normal_map=0
compress/channel_pack=0 compress/channel_pack=0
@@ -25,6 +27,10 @@ mipmaps/generate=false
mipmaps/limit=-1 mipmaps/limit=-1
roughness/mode=0 roughness/mode=0
roughness/src_normal="" roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true process/fix_alpha_border=true
process/premult_alpha=false process/premult_alpha=false
process/normal_map_invert_y=false process/normal_map_invert_y=false

516
Ego.tscn
View File

@@ -8,124 +8,139 @@
[ext_resource type="Texture2D" uid="uid://b4inlny6ixmf0" path="res://ego/masks/3.png" id="7_jhjmn"] [ext_resource type="Texture2D" uid="uid://b4inlny6ixmf0" path="res://ego/masks/3.png" id="7_jhjmn"]
[ext_resource type="Texture2D" uid="uid://bnnap4pr1mr5h" path="res://ego/animations/rosella/img_00103_.png" id="9_pyi2f"] [ext_resource type="Texture2D" uid="uid://bnnap4pr1mr5h" path="res://ego/animations/rosella/img_00103_.png" id="9_pyi2f"]
[ext_resource type="Texture2D" uid="uid://dck67hsxi3rnv" path="res://ego/animations/rosella/img_00069_.png" id="10_l4ay1"] [ext_resource type="Texture2D" uid="uid://dck67hsxi3rnv" path="res://ego/animations/rosella/img_00069_.png" id="10_l4ay1"]
[ext_resource type="Texture2D" uid="uid://bvrsr0b55pbou" path="res://ego/animations/walk6/e/image/frame_0000.png" id="12_4nppn"]
[ext_resource type="Texture2D" uid="uid://bma63tibheds3" path="res://ego/animations/rosella/img_00001_.png" id="12_84jj5"] [ext_resource type="Texture2D" uid="uid://bma63tibheds3" path="res://ego/animations/rosella/img_00001_.png" id="12_84jj5"]
[ext_resource type="Texture2D" uid="uid://bewoslpmmowgr" path="res://ego/animations/walk6/e/image/frame_0001.png" id="13_72g70"]
[ext_resource type="Texture2D" uid="uid://notpa4ibijco" path="res://ego/animations/rosella/img_00031_.png" id="13_ttpag"] [ext_resource type="Texture2D" uid="uid://notpa4ibijco" path="res://ego/animations/rosella/img_00031_.png" id="13_ttpag"]
[ext_resource type="Texture2D" uid="uid://bio44t1xei64v" path="res://ego/animations/rosella/img_00056_.png" id="14_2ts53"] [ext_resource type="Texture2D" uid="uid://bio44t1xei64v" path="res://ego/animations/rosella/img_00056_.png" id="14_2ts53"]
[ext_resource type="Texture2D" uid="uid://cg5sqbqaj1mmv" path="res://ego/animations/rosella/img_00076_.png" id="35_gphxb"] [ext_resource type="Texture2D" uid="uid://b105ixtjlaemw" path="res://ego/animations/walk6/e/image/frame_0002.png" id="14_jgc4u"]
[ext_resource type="Texture2D" uid="uid://dwbrh1gl8ig4y" path="res://ego/animations/rosella/img_00077_.png" id="36_gpkly"] [ext_resource type="Texture2D" uid="uid://dj5qqu1i60t8b" path="res://ego/animations/walk6/e/image/frame_0003.png" id="15_k08d4"]
[ext_resource type="Texture2D" uid="uid://bgw06nmfunwda" path="res://ego/animations/rosella/img_00078_.png" id="37_0nogo"] [ext_resource type="Texture2D" uid="uid://bv6a6vt0q5luo" path="res://ego/animations/walk6/e/image/frame_0004.png" id="16_kxwb1"]
[ext_resource type="Texture2D" uid="uid://0vli2hym4ie" path="res://ego/animations/rosella/img_00079_.png" id="38_atjfg"] [ext_resource type="Texture2D" uid="uid://clrk60e8f6cto" path="res://ego/animations/walk6/e/image/frame_0005.png" id="17_m5pot"]
[ext_resource type="Texture2D" uid="uid://cb0phxkfcvulo" path="res://ego/animations/rosella/img_00080_.png" id="39_vq1x5"] [ext_resource type="Texture2D" uid="uid://hgah784brj1u" path="res://ego/animations/walk6/e/image/frame_0006.png" id="18_uejjd"]
[ext_resource type="Texture2D" uid="uid://bqeqgqd6fd76d" path="res://ego/animations/rosella/img_00081_.png" id="40_k80hd"] [ext_resource type="Texture2D" uid="uid://dvct6l2bs4xfo" path="res://ego/animations/walk6/e/image/frame_0007.png" id="19_elvj4"]
[ext_resource type="Texture2D" uid="uid://b553win6ylbtv" path="res://ego/animations/rosella/img_00082_.png" id="41_fcwhd"] [ext_resource type="Texture2D" uid="uid://73p11ya60fhx" path="res://ego/animations/walk6/e/image/frame_0008.png" id="20_gsu4v"]
[ext_resource type="Texture2D" uid="uid://d0de8nrdgr1wk" path="res://ego/animations/rosella/img_00083_.png" id="42_p3kcj"] [ext_resource type="Texture2D" uid="uid://b25stwboh3o6a" path="res://ego/animations/walk6/e/image/frame_0009.png" id="21_s0vn5"]
[ext_resource type="Texture2D" uid="uid://crwhr71lshdva" path="res://ego/animations/rosella/img_00084_.png" id="43_lt2am"] [ext_resource type="Texture2D" uid="uid://elkyn3cmg0c2" path="res://ego/animations/walk6/e/image/frame_0010.png" id="22_opx4c"]
[ext_resource type="Texture2D" uid="uid://d0l40is1juh67" path="res://ego/animations/rosella/img_00085_.png" id="44_a03gu"] [ext_resource type="Texture2D" uid="uid://djgn51fdby287" path="res://ego/animations/walk6/e/image/frame_0011.png" id="23_aoxuo"]
[ext_resource type="Texture2D" uid="uid://db848rfj88m05" path="res://ego/animations/rosella/img_00086_.png" id="45_8k8du"] [ext_resource type="Texture2D" uid="uid://dlbpbe6s4l1tx" path="res://ego/animations/walk6/e/image/frame_0012.png" id="24_yyx1q"]
[ext_resource type="Texture2D" uid="uid://mr8owblcx4hd" path="res://ego/animations/rosella/img_00087_.png" id="46_d4tyc"] [ext_resource type="Texture2D" uid="uid://wrn8804ysm1r" path="res://ego/animations/walk6/e/image/frame_0013.png" id="25_gw6rl"]
[ext_resource type="Texture2D" uid="uid://dlug3lmdktatv" path="res://ego/animations/rosella/img_00088_.png" id="47_gjkxo"] [ext_resource type="Texture2D" uid="uid://dfknsguku55ft" path="res://ego/animations/walk6/e/image/frame_0014.png" id="26_qf3gd"]
[ext_resource type="Texture2D" uid="uid://cph5yxxllk651" path="res://ego/animations/rosella/img_00089_.png" id="48_1s2in"] [ext_resource type="Texture2D" uid="uid://o55311qur6ux" path="res://ego/animations/walk6/e/image/frame_0015.png" id="27_mk8du"]
[ext_resource type="Texture2D" uid="uid://m7igon4nf2cr" path="res://ego/animations/rosella/img_00090_.png" id="49_xusjq"] [ext_resource type="Texture2D" uid="uid://btp8767fm0iq7" path="res://ego/animations/walk6/n/image/frame_0016.png" id="28_gw6rl"]
[ext_resource type="Texture2D" uid="uid://b32tvyeo2qlyu" path="res://ego/animations/rosella/img_00091_.png" id="50_laj3v"] [ext_resource type="Texture2D" uid="uid://cq6envo4lp6ro" path="res://ego/animations/walk6/n/image/frame_0017.png" id="29_qf3gd"]
[ext_resource type="Texture2D" uid="uid://bm8rmjef65tgj" path="res://ego/animations/rosella/img_00092_.png" id="51_w12ac"] [ext_resource type="Texture2D" uid="uid://doelb4yxmyms4" path="res://ego/animations/walk6/n/image/frame_0018.png" id="30_mk8du"]
[ext_resource type="Texture2D" uid="uid://cbx760fqragtk" path="res://ego/animations/rosella/img_00093_.png" id="52_ww1el"] [ext_resource type="Texture2D" uid="uid://bu0kutuqi7eq" path="res://ego/animations/walk6/n/image/frame_0019.png" id="31_x73qc"]
[ext_resource type="Texture2D" uid="uid://puk2xmou5bse" path="res://ego/animations/rosella/img_00094_.png" id="53_5r8ch"] [ext_resource type="Texture2D" uid="uid://b2gqntbxjjjqh" path="res://ego/animations/walk6/n/image/frame_0020.png" id="32_qrgip"]
[ext_resource type="Texture2D" uid="uid://51ebjq5e220v" path="res://ego/animations/rosella/img_00095_.png" id="54_twso8"] [ext_resource type="Texture2D" uid="uid://ctxixw4wclmqk" path="res://ego/animations/walk6/n/image/frame_0021.png" id="33_2ah26"]
[ext_resource type="Texture2D" uid="uid://b8xxc3utklfbg" path="res://ego/animations/rosella/img_00096_.png" id="55_qwddt"] [ext_resource type="Texture2D" uid="uid://cekttv2sd1lp4" path="res://ego/animations/walk6/n/image/frame_0022.png" id="34_2kb50"]
[ext_resource type="Texture2D" uid="uid://dgm08dti21wf" path="res://ego/animations/rosella/img_00097_.png" id="56_665sf"] [ext_resource type="Texture2D" uid="uid://hr3hg4yx4jgj" path="res://ego/animations/walk6/n/image/frame_0023.png" id="35_tl3rq"]
[ext_resource type="Texture2D" uid="uid://cg32svq3ubjl0" path="res://ego/animations/rosella/img_00098_.png" id="57_5qxwo"] [ext_resource type="Texture2D" uid="uid://f35wf4l1k8vx" path="res://ego/animations/walk6/n/image/frame_0024.png" id="36_p38v6"]
[ext_resource type="Texture2D" uid="uid://b2p68seocumxc" path="res://ego/animations/rosella/img_00099_.png" id="58_cv6on"] [ext_resource type="Texture2D" uid="uid://ohs0yvbig878" path="res://ego/animations/walk6/n/image/frame_0025.png" id="37_0v1yx"]
[ext_resource type="Texture2D" uid="uid://ddysiuqg3md00" path="res://ego/animations/rosella/img_00100_.png" id="59_1ubhi"] [ext_resource type="Texture2D" uid="uid://djnwrqr3cyfyh" path="res://ego/animations/walk6/n/image/frame_0026.png" id="38_37u3v"]
[ext_resource type="Texture2D" uid="uid://bqaskor0ehfuq" path="res://ego/animations/rosella/img_00101_.png" id="60_dqjs6"] [ext_resource type="Texture2D" uid="uid://ceo6nje8u1h4x" path="res://ego/animations/walk6/n/image/frame_0027.png" id="39_fkaqq"]
[ext_resource type="Texture2D" uid="uid://jidrqhgsqmec" path="res://ego/animations/rosella/img_00102_.png" id="61_fj0td"] [ext_resource type="Texture2D" uid="uid://di8blm0onobj" path="res://ego/animations/walk6/n/image/frame_0028.png" id="40_okkqf"]
[ext_resource type="Texture2D" uid="uid://lbjiluk8ntk8" path="res://ego/animations/rosella/img_00104_.png" id="62_1oix2"] [ext_resource type="Texture2D" uid="uid://dnyd4ce7xwewg" path="res://ego/animations/walk6/n/image/frame_0029.png" id="41_c5tbi"]
[ext_resource type="Texture2D" uid="uid://bd5q4c6e0xye4" path="res://ego/animations/rosella/img_00105_.png" id="63_hkmm4"] [ext_resource type="Texture2D" uid="uid://cwxduxrkh52x0" path="res://ego/animations/walk6/n/image/frame_0030.png" id="42_q66kk"]
[ext_resource type="Texture2D" uid="uid://cf72vjyp24ppk" path="res://ego/animations/rosella/img_00061_.png" id="64_f3le7"] [ext_resource type="Texture2D" uid="uid://dmvy0ss2ettds" path="res://ego/animations/walk6/n/image/frame_0031.png" id="43_vvmec"]
[ext_resource type="Texture2D" uid="uid://f284av04l3qc" path="res://ego/animations/rosella/img_00062_.png" id="65_c1022"] [ext_resource type="Texture2D" uid="uid://dgodwo787wase" path="res://ego/animations/walk6/ne/image/frame_0000.png" id="44_xff26"]
[ext_resource type="Texture2D" uid="uid://c43wvjoob67ga" path="res://ego/animations/rosella/img_00063_.png" id="66_1r88r"] [ext_resource type="Texture2D" uid="uid://bqjfph16yhjwa" path="res://ego/animations/walk6/ne/image/frame_0001.png" id="45_7hvw5"]
[ext_resource type="Texture2D" uid="uid://deg2xa6euweai" path="res://ego/animations/rosella/img_00064_.png" id="67_fo0ow"] [ext_resource type="Texture2D" uid="uid://n5b27nerh745" path="res://ego/animations/walk6/ne/image/frame_0002.png" id="46_ib7pv"]
[ext_resource type="Texture2D" uid="uid://d0pwlq1h6m281" path="res://ego/animations/rosella/img_00065_.png" id="68_m0ljg"] [ext_resource type="Texture2D" uid="uid://cbwxgca7b7d3p" path="res://ego/animations/walk6/ne/image/frame_0003.png" id="47_1ypi2"]
[ext_resource type="Texture2D" uid="uid://d1uudexxfkoxv" path="res://ego/animations/rosella/img_00066_.png" id="69_4wwa5"] [ext_resource type="Texture2D" uid="uid://ck5cg76kjt2tj" path="res://ego/animations/walk6/ne/image/frame_0004.png" id="48_bb5nw"]
[ext_resource type="Texture2D" uid="uid://dbgb7pkwobys3" path="res://ego/animations/rosella/img_00067_.png" id="70_ouq1l"] [ext_resource type="Texture2D" uid="uid://bol547r5xbbyo" path="res://ego/animations/walk6/ne/image/frame_0005.png" id="49_4hl61"]
[ext_resource type="Texture2D" uid="uid://e52vgy56v2bk" path="res://ego/animations/rosella/img_00068_.png" id="71_gygjm"] [ext_resource type="Texture2D" uid="uid://b06wbkkgu47iu" path="res://ego/animations/walk6/ne/image/frame_0006.png" id="50_df5q1"]
[ext_resource type="Texture2D" uid="uid://5viwlyfh5fj4" path="res://ego/animations/rosella/img_00070_.png" id="72_0kaxt"] [ext_resource type="Texture2D" uid="uid://c8cuugb52glen" path="res://ego/animations/walk6/ne/image/frame_0007.png" id="51_dnhwr"]
[ext_resource type="Texture2D" uid="uid://btva2sp0ktooh" path="res://ego/animations/rosella/img_00071_.png" id="73_db5ja"] [ext_resource type="Texture2D" uid="uid://vjdars4cuymm" path="res://ego/animations/walk6/ne/image/frame_0008.png" id="52_0rhxg"]
[ext_resource type="Texture2D" uid="uid://7fksrocnnefd" path="res://ego/animations/rosella/img_00072_.png" id="74_1jmh4"] [ext_resource type="Texture2D" uid="uid://bc14roj0xc7so" path="res://ego/animations/walk6/ne/image/frame_0009.png" id="53_lh1ea"]
[ext_resource type="Texture2D" uid="uid://cy4ynarwk2lwt" path="res://ego/animations/rosella/img_00073_.png" id="75_i71gw"] [ext_resource type="Texture2D" uid="uid://cee5xi1s057bx" path="res://ego/animations/walk6/ne/image/frame_0010.png" id="54_i0lgs"]
[ext_resource type="Texture2D" uid="uid://cxbsa3s17s4wy" path="res://ego/animations/rosella/img_00074_.png" id="76_t4gew"] [ext_resource type="Texture2D" uid="uid://dkmin76r8o88w" path="res://ego/animations/walk6/ne/image/frame_0011.png" id="55_av2vk"]
[ext_resource type="Texture2D" uid="uid://d0jhqqpkylfpk" path="res://ego/animations/rosella/img_00075_.png" id="77_bn0fg"] [ext_resource type="Texture2D" uid="uid://cayosnox1s802" path="res://ego/animations/walk6/ne/image/frame_0012.png" id="56_xba83"]
[ext_resource type="Texture2D" uid="uid://d12fabpeuio5j" path="res://ego/animations/rosella/img_00002_.png" id="92_ie3g4"] [ext_resource type="Texture2D" uid="uid://dw6b0np8svoyj" path="res://ego/animations/walk6/ne/image/frame_0013.png" id="57_v6qvo"]
[ext_resource type="Texture2D" uid="uid://cy7q04eg5hjvx" path="res://ego/animations/rosella/img_00003_.png" id="93_nm270"] [ext_resource type="Texture2D" uid="uid://1arv1eg1imfe" path="res://ego/animations/walk6/ne/image/frame_0014.png" id="58_kmnvl"]
[ext_resource type="Texture2D" uid="uid://bpqarq0yirtuh" path="res://ego/animations/rosella/img_00004_.png" id="94_vawqf"] [ext_resource type="Texture2D" uid="uid://dtll4c1enlifl" path="res://ego/animations/walk6/ne/image/frame_0015.png" id="59_fuy8j"]
[ext_resource type="Texture2D" uid="uid://m5wgl7mifwqk" path="res://ego/animations/rosella/img_00005_.png" id="95_m3ymp"] [ext_resource type="Texture2D" uid="uid://8hrjled324vu" path="res://ego/animations/walk6/nw/image/frame_0016.png" id="60_uysyb"]
[ext_resource type="Texture2D" uid="uid://cbufiq5fjmq03" path="res://ego/animations/rosella/img_00006_.png" id="96_xowhf"] [ext_resource type="Texture2D" uid="uid://bk5b6jqj58euy" path="res://ego/animations/walk6/nw/image/frame_0017.png" id="61_0yvyt"]
[ext_resource type="Texture2D" uid="uid://gubrfsm2pk0x" path="res://ego/animations/rosella/img_00007_.png" id="97_3asjl"] [ext_resource type="Texture2D" uid="uid://by8hvy766aqo8" path="res://ego/animations/walk6/nw/image/frame_0018.png" id="62_6i2ne"]
[ext_resource type="Texture2D" uid="uid://binxa18kwl3d4" path="res://ego/animations/rosella/img_00008_.png" id="98_bl8n8"] [ext_resource type="Texture2D" uid="uid://q8ydpu1jq1m4" path="res://ego/animations/walk6/nw/image/frame_0019.png" id="63_cdocw"]
[ext_resource type="Texture2D" uid="uid://cfbwoverts640" path="res://ego/animations/rosella/img_00009_.png" id="99_ski6f"] [ext_resource type="Texture2D" uid="uid://13btqib4d01m" path="res://ego/animations/walk6/nw/image/frame_0020.png" id="64_emfac"]
[ext_resource type="Texture2D" uid="uid://bjk0a5x3tb84w" path="res://ego/animations/rosella/img_00010_.png" id="100_mf0u4"] [ext_resource type="Texture2D" uid="uid://co406e0caf7rs" path="res://ego/animations/walk6/nw/image/frame_0021.png" id="65_24r7p"]
[ext_resource type="Texture2D" uid="uid://b6lqqhr124lh" path="res://ego/animations/rosella/img_00011_.png" id="101_stlf2"] [ext_resource type="Texture2D" uid="uid://cq67a0pi8534b" path="res://ego/animations/walk6/nw/image/frame_0022.png" id="66_p6u0u"]
[ext_resource type="Texture2D" uid="uid://bv2b02uqonxe1" path="res://ego/animations/rosella/img_00012_.png" id="102_3uaju"] [ext_resource type="Texture2D" uid="uid://ccuqsnvb45wid" path="res://ego/animations/walk6/nw/image/frame_0023.png" id="67_n8x0v"]
[ext_resource type="Texture2D" uid="uid://b0icq1fqlcgup" path="res://ego/animations/rosella/img_00013_.png" id="103_k4pwn"] [ext_resource type="Texture2D" uid="uid://nyt7luhf2exy" path="res://ego/animations/walk6/nw/image/frame_0024.png" id="68_amoxi"]
[ext_resource type="Texture2D" uid="uid://t4ws1dxrk74k" path="res://ego/animations/rosella/img_00014_.png" id="104_yudkd"] [ext_resource type="Texture2D" uid="uid://21pwhg2e8j5e" path="res://ego/animations/walk6/nw/image/frame_0025.png" id="69_5csai"]
[ext_resource type="Texture2D" uid="uid://b0hr3ftsvypi3" path="res://ego/animations/rosella/img_00015_.png" id="105_gyxix"] [ext_resource type="Texture2D" uid="uid://1kw0wwwhcd2g" path="res://ego/animations/walk6/nw/image/frame_0026.png" id="70_b3d6q"]
[ext_resource type="Texture2D" uid="uid://cujcg5fs2d4s1" path="res://ego/animations/rosella/img_00032_.png" id="106_tj1k5"] [ext_resource type="Texture2D" uid="uid://ct752psctn0av" path="res://ego/animations/walk6/nw/image/frame_0027.png" id="71_m405h"]
[ext_resource type="Texture2D" uid="uid://0a1estsf13nm" path="res://ego/animations/rosella/img_00033_.png" id="107_gmbms"] [ext_resource type="Texture2D" uid="uid://do3855gst2lv4" path="res://ego/animations/walk6/nw/image/frame_0028.png" id="72_p25cj"]
[ext_resource type="Texture2D" uid="uid://c46xhdf224a2m" path="res://ego/animations/rosella/img_00034_.png" id="108_o7aaa"] [ext_resource type="Texture2D" uid="uid://bb5mp21ssu06q" path="res://ego/animations/walk6/nw/image/frame_0029.png" id="73_8hyjb"]
[ext_resource type="Texture2D" uid="uid://rln2p7r6a5" path="res://ego/animations/rosella/img_00035_.png" id="109_7sodb"] [ext_resource type="Texture2D" uid="uid://xxh03tdjncbt" path="res://ego/animations/walk6/nw/image/frame_0030.png" id="74_8q4hi"]
[ext_resource type="Texture2D" uid="uid://b1xifkxpy1hb6" path="res://ego/animations/rosella/img_00036_.png" id="110_5od0t"] [ext_resource type="Texture2D" uid="uid://vutdndo0qgnk" path="res://ego/animations/walk6/nw/image/frame_0031.png" id="75_uff0b"]
[ext_resource type="Texture2D" uid="uid://gog3qgvko874" path="res://ego/animations/rosella/img_00037_.png" id="111_mgwvh"] [ext_resource type="Texture2D" uid="uid://ibpf2uuxc27e" path="res://ego/animations/walk6/s/image/frame_0016.png" id="76_dsexq"]
[ext_resource type="Texture2D" uid="uid://b7qp3mt0ysveg" path="res://ego/animations/rosella/img_00038_.png" id="112_0r2r0"] [ext_resource type="Texture2D" uid="uid://sh50dk0u21gv" path="res://ego/animations/walk6/s/image/frame_0017.png" id="77_hwnuj"]
[ext_resource type="Texture2D" uid="uid://ccpx5q1dhhtda" path="res://ego/animations/rosella/img_00039_.png" id="113_vlgai"] [ext_resource type="Texture2D" uid="uid://cn0ec21d4e51i" path="res://ego/animations/walk6/s/image/frame_0018.png" id="78_ivvdo"]
[ext_resource type="Texture2D" uid="uid://77s8kv2rrgms" path="res://ego/animations/rosella/img_00040_.png" id="114_2fgrx"] [ext_resource type="Texture2D" uid="uid://lipn36kkmdg2" path="res://ego/animations/walk6/s/image/frame_0019.png" id="79_786ir"]
[ext_resource type="Texture2D" uid="uid://cxeket55l1uox" path="res://ego/animations/rosella/img_00041_.png" id="115_gtwhg"] [ext_resource type="Texture2D" uid="uid://ckfndx0hhkfu3" path="res://ego/animations/walk6/s/image/frame_0020.png" id="80_5p581"]
[ext_resource type="Texture2D" uid="uid://bahwbfx8wlw8a" path="res://ego/animations/rosella/img_00042_.png" id="116_clvmm"] [ext_resource type="Texture2D" uid="uid://s8r8v5tjo03l" path="res://ego/animations/walk6/s/image/frame_0021.png" id="81_5yp8t"]
[ext_resource type="Texture2D" uid="uid://x37xim021bcr" path="res://ego/animations/rosella/img_00043_.png" id="117_wons0"] [ext_resource type="Texture2D" uid="uid://bo52oqe8hpeke" path="res://ego/animations/walk6/s/image/frame_0022.png" id="82_8umh2"]
[ext_resource type="Texture2D" uid="uid://cfwcuk0rjmmf5" path="res://ego/animations/rosella/img_00044_.png" id="118_im20t"] [ext_resource type="Texture2D" uid="uid://ckqjojy8c2m5e" path="res://ego/animations/walk6/s/image/frame_0023.png" id="83_dn78y"]
[ext_resource type="Texture2D" uid="uid://coyxuaeylsx1i" path="res://ego/animations/rosella/img_00045_.png" id="119_31gcv"] [ext_resource type="Texture2D" uid="uid://p837mhdkkifr" path="res://ego/animations/walk6/s/image/frame_0024.png" id="84_vjaoi"]
[ext_resource type="Texture2D" uid="uid://exf2i4ggwjak" path="res://ego/animations/walk6/s/image/frame_0025.png" id="85_1bupr"]
[ext_resource type="Texture2D" uid="uid://b6q01rev3b4yc" path="res://ego/animations/walk6/s/image/frame_0026.png" id="86_def6r"]
[ext_resource type="Texture2D" uid="uid://dp2oh6igsocar" path="res://ego/animations/walk6/s/image/frame_0027.png" id="87_se17v"]
[ext_resource type="Texture2D" uid="uid://c7appdm0bky1i" path="res://ego/animations/walk6/s/image/frame_0028.png" id="88_atafq"]
[ext_resource type="Texture2D" uid="uid://drx07btj8l6al" path="res://ego/animations/walk6/s/image/frame_0029.png" id="89_60r7o"]
[ext_resource type="Texture2D" uid="uid://cxxs1ywu72p6p" path="res://ego/animations/walk6/s/image/frame_0030.png" id="90_ub7dx"]
[ext_resource type="Texture2D" uid="uid://daelr7qf0yuhw" path="res://ego/animations/walk6/s/image/frame_0031.png" id="91_e7eqt"]
[ext_resource type="Texture2D" uid="uid://hdtep2u1rmer" path="res://ego/animations/walk6/se/image/frame_0000.png" id="92_3vrr3"]
[ext_resource type="Texture2D" uid="uid://bhvhwej1nrhx4" path="res://ego/animations/walk6/se/image/frame_0001.png" id="93_6epyu"]
[ext_resource type="Texture2D" uid="uid://dp2dw867l7ifl" path="res://ego/animations/walk6/se/image/frame_0002.png" id="94_pjif5"]
[ext_resource type="Texture2D" uid="uid://ctarli3djfk5d" path="res://ego/animations/walk6/se/image/frame_0003.png" id="95_1h26f"]
[ext_resource type="Texture2D" uid="uid://q8qlsog836fc" path="res://ego/animations/walk6/se/image/frame_0004.png" id="96_klrxs"]
[ext_resource type="Texture2D" uid="uid://dn8svxp7b2es7" path="res://ego/animations/walk6/se/image/frame_0005.png" id="97_nwnj3"]
[ext_resource type="Texture2D" uid="uid://dcbnlm0bbdtrr" path="res://ego/animations/walk6/se/image/frame_0006.png" id="98_bbx6e"]
[ext_resource type="Texture2D" uid="uid://b2pprdtdj31a2" path="res://ego/animations/walk6/se/image/frame_0007.png" id="99_bru01"]
[ext_resource type="Texture2D" uid="uid://cc5dn4iff37mi" path="res://ego/animations/walk6/se/image/frame_0008.png" id="100_cp2xd"]
[ext_resource type="Texture2D" uid="uid://cr5nma70ectjf" path="res://ego/animations/walk6/se/image/frame_0009.png" id="101_jbccs"]
[ext_resource type="Texture2D" uid="uid://j71c27rvol84" path="res://ego/animations/walk6/se/image/frame_0010.png" id="102_bu1yf"]
[ext_resource type="Texture2D" uid="uid://cragg3ffp8fkx" path="res://ego/animations/walk6/se/image/frame_0011.png" id="103_1484e"]
[ext_resource type="Texture2D" uid="uid://bhn47ko6cps5m" path="res://ego/animations/walk6/se/image/frame_0012.png" id="104_scw7s"]
[ext_resource type="Texture2D" uid="uid://qcggsl5xl2m7" path="res://ego/animations/walk6/se/image/frame_0013.png" id="105_timr7"]
[ext_resource type="Texture2D" uid="uid://c1ckt15isyv6a" path="res://ego/animations/walk6/se/image/frame_0014.png" id="106_nlo5j"]
[ext_resource type="Texture2D" uid="uid://wq201khar1r4" path="res://ego/animations/walk6/se/image/frame_0015.png" id="107_yna12"]
[ext_resource type="Texture2D" uid="uid://b3ulpsu03i0wp" path="res://ego/animations/walk6/sw/image/frame_0000.png" id="108_tbxo8"]
[ext_resource type="Texture2D" uid="uid://cdw2yjedrlvr7" path="res://ego/animations/walk6/sw/image/frame_0001.png" id="109_cwboe"]
[ext_resource type="Texture2D" uid="uid://xa7qkvs1xkp7" path="res://ego/animations/walk6/sw/image/frame_0002.png" id="110_fci48"]
[ext_resource type="Texture2D" uid="uid://d2lxnxeduchey" path="res://ego/animations/walk6/sw/image/frame_0003.png" id="111_oo60o"]
[ext_resource type="Texture2D" uid="uid://blxmeqor2delv" path="res://ego/animations/walk6/sw/image/frame_0004.png" id="112_jk871"]
[ext_resource type="Texture2D" uid="uid://bvkg4cb878msd" path="res://ego/animations/walk6/sw/image/frame_0005.png" id="113_fqwbh"]
[ext_resource type="Texture2D" uid="uid://dj7c4sjonys1l" path="res://ego/animations/walk6/sw/image/frame_0006.png" id="114_boqln"]
[ext_resource type="Texture2D" uid="uid://s1wbs8usun0m" path="res://ego/animations/walk6/sw/image/frame_0007.png" id="115_gjc4p"]
[ext_resource type="Texture2D" uid="uid://ds3t17hgm1a37" path="res://ego/animations/walk6/sw/image/frame_0008.png" id="116_338xc"]
[ext_resource type="Texture2D" uid="uid://cdakhhgglyq3a" path="res://ego/animations/walk6/sw/image/frame_0009.png" id="117_v50lk"]
[ext_resource type="Texture2D" uid="uid://8tuqjah64of1" path="res://ego/animations/walk6/sw/image/frame_0010.png" id="118_ssq1t"]
[ext_resource type="Texture2D" uid="uid://d3lfrum86awn2" path="res://ego/animations/walk6/sw/image/frame_0011.png" id="119_huqp0"]
[ext_resource type="Texture2D" uid="uid://j6v4fyxanf3q" path="res://ego/animations/rosella/img_00106_.png" id="119_q6yh0"] [ext_resource type="Texture2D" uid="uid://j6v4fyxanf3q" path="res://ego/animations/rosella/img_00106_.png" id="119_q6yh0"]
[ext_resource type="Texture2D" uid="uid://bhulcb0tcph6y" path="res://ego/animations/rosella/img_00107_.png" id="120_pagte"] [ext_resource type="Texture2D" uid="uid://do2g2v7qq8kcs" path="res://ego/animations/walk6/sw/image/frame_0012.png" id="120_274ja"]
[ext_resource type="Texture2D" uid="uid://dju8ct8uh4x4a" path="res://ego/animations/rosella/img_00046_.png" id="120_qeejn"] [ext_resource type="Texture2D" uid="uid://gsrymkte3dwy" path="res://ego/animations/walk6/sw/image/frame_0013.png" id="121_u8w2y"]
[ext_resource type="Texture2D" uid="uid://btntcfpy7sxq3" path="res://ego/animations/rosella/img_00047_.png" id="121_h6nhi"] [ext_resource type="Texture2D" uid="uid://quow7u232wxa" path="res://ego/animations/walk6/sw/image/frame_0014.png" id="122_1pwk6"]
[ext_resource type="Texture2D" uid="uid://xmqtqshjh5ad" path="res://ego/animations/rosella/img_00108_.png" id="121_hg8r5"] [ext_resource type="Texture2D" uid="uid://c3bt0sjoptdwx" path="res://ego/animations/walk6/sw/image/frame_0015.png" id="123_248hs"]
[ext_resource type="Texture2D" uid="uid://c8bjdgjwj41ay" path="res://ego/animations/rosella/img_00109_.png" id="122_5oaqq"] [ext_resource type="Texture2D" uid="uid://jhfveypdrxx6" path="res://ego/animations/walk6/w/image/frame_0000.png" id="124_uy2xp"]
[ext_resource type="Texture2D" uid="uid://dnl5qg8pdg7js" path="res://ego/animations/rosella/img_00048_.png" id="122_grugb"] [ext_resource type="Texture2D" uid="uid://jfl3v3tru3ok" path="res://ego/animations/walk6/w/image/frame_0001.png" id="125_o8wjp"]
[ext_resource type="Texture2D" uid="uid://dywo3e1aq3sdi" path="res://ego/animations/rosella/img_00110_.png" id="123_kn1mn"] [ext_resource type="Texture2D" uid="uid://bfgyj7g1s0tyu" path="res://ego/animations/walk6/w/image/frame_0002.png" id="126_y4i6c"]
[ext_resource type="Texture2D" uid="uid://5okhhcxsivoq" path="res://ego/animations/rosella/img_00049_.png" id="123_yoybg"] [ext_resource type="Texture2D" uid="uid://b8dx5i3spo20" path="res://ego/animations/walk6/w/image/frame_0003.png" id="127_qpxhg"]
[ext_resource type="Texture2D" uid="uid://csnpmnd8mhela" path="res://ego/animations/rosella/img_00050_.png" id="124_8jd8x"] [ext_resource type="Texture2D" uid="uid://bv8t2mtx6str3" path="res://ego/animations/walk6/w/image/frame_0004.png" id="128_fua1r"]
[ext_resource type="Texture2D" uid="uid://bsyvm2c0x50np" path="res://ego/animations/rosella/img_00111_.png" id="124_opp18"] [ext_resource type="Texture2D" uid="uid://dv5r6vggsvi1e" path="res://ego/animations/walk6/w/image/frame_0005.png" id="129_i3cnu"]
[ext_resource type="Texture2D" uid="uid://ct2p00u6hqpfm" path="res://ego/animations/rosella/img_00112_.png" id="125_4nwac"] [ext_resource type="Texture2D" uid="uid://dwsw5mulqwaov" path="res://ego/animations/walk6/w/image/frame_0006.png" id="130_bt6sr"]
[ext_resource type="Texture2D" uid="uid://ngodxvv1jgiy" path="res://ego/animations/rosella/img_00051_.png" id="125_nm7rs"] [ext_resource type="Texture2D" uid="uid://c1j245fawfb6r" path="res://ego/animations/walk6/w/image/frame_0007.png" id="131_u0i8g"]
[ext_resource type="Texture2D" uid="uid://wgat1ygky6vb" path="res://ego/animations/rosella/img_00052_.png" id="126_cviwa"] [ext_resource type="Texture2D" uid="uid://dejanvimdcw73" path="res://ego/animations/walk6/w/image/frame_0008.png" id="132_wvpsm"]
[ext_resource type="Texture2D" uid="uid://brf3b2o7wehcm" path="res://ego/animations/rosella/img_00113_.png" id="126_ido3p"] [ext_resource type="Texture2D" uid="uid://dpgmhaf00uwrv" path="res://ego/animations/walk6/w/image/frame_0009.png" id="133_dxmcl"]
[ext_resource type="Texture2D" uid="uid://cwv0rfu6mixdo" path="res://ego/animations/rosella/img_00053_.png" id="127_bpypy"] [ext_resource type="Texture2D" uid="uid://c1w600krkghsr" path="res://ego/animations/walk6/w/image/frame_0010.png" id="134_u084s"]
[ext_resource type="Texture2D" uid="uid://dsykfaqdjbnnf" path="res://ego/animations/rosella/img_00114_.png" id="127_iwaxh"] [ext_resource type="Texture2D" uid="uid://bitfme7l2hhmt" path="res://ego/animations/walk6/w/image/frame_0011.png" id="135_lflbb"]
[ext_resource type="Texture2D" uid="uid://pnvg6du2qq6d" path="res://ego/animations/rosella/img_00115_.png" id="128_ar1ys"] [ext_resource type="Texture2D" uid="uid://c8wnouu2p482i" path="res://ego/animations/walk6/w/image/frame_0012.png" id="136_08xgv"]
[ext_resource type="Texture2D" uid="uid://dv1vf7vu27ug7" path="res://ego/animations/rosella/img_00054_.png" id="128_qenlf"] [ext_resource type="Texture2D" uid="uid://dt0asn0fywk3l" path="res://ego/animations/walk6/w/image/frame_0013.png" id="137_j38cn"]
[ext_resource type="Texture2D" uid="uid://bb855tpyoaitj" path="res://ego/animations/rosella/img_00055_.png" id="129_7b1px"] [ext_resource type="Texture2D" uid="uid://dbnjhs46g3tox" path="res://ego/animations/walk6/w/image/frame_0014.png" id="138_wfkq6"]
[ext_resource type="Texture2D" uid="uid://dsg2pjb1wvt1q" path="res://ego/animations/rosella/img_00116_.png" id="129_gxp5c"] [ext_resource type="Texture2D" uid="uid://cnuokkal5qj8a" path="res://ego/animations/walk6/w/image/frame_0015.png" id="139_aqsva"]
[ext_resource type="Texture2D" uid="uid://dkbggvmvgf31a" path="res://ego/animations/rosella/img_00117_.png" id="130_0ooo7"]
[ext_resource type="Texture2D" uid="uid://l8c28scv1mb5" path="res://ego/animations/rosella/img_00057_.png" id="130_w3x52"]
[ext_resource type="Texture2D" uid="uid://tk736wuremvo" path="res://ego/animations/rosella/img_00058_.png" id="131_nfjxv"]
[ext_resource type="Texture2D" uid="uid://b7ndpr0lputtn" path="res://ego/animations/rosella/img_00118_.png" id="131_okk5g"]
[ext_resource type="Texture2D" uid="uid://d2rv38oy5neff" path="res://ego/animations/rosella/img_00119_.png" id="132_0g30d"]
[ext_resource type="Texture2D" uid="uid://bs3waxmju8q2x" path="res://ego/animations/rosella/img_00059_.png" id="132_v1scd"]
[ext_resource type="Texture2D" uid="uid://xh1mxrknsfle" path="res://ego/animations/rosella/img_00060_.png" id="133_kxwux"]
[ext_resource type="Texture2D" uid="uid://bdk2vrjstiodj" path="res://ego/animations/rosella/img_00120_.png" id="133_w8q6v"]
[ext_resource type="Texture2D" uid="uid://cbiapiccssu0k" path="res://ego/animations/rosella/img_00016_.png" id="159_6fkdd"] [ext_resource type="Texture2D" uid="uid://cbiapiccssu0k" path="res://ego/animations/rosella/img_00016_.png" id="159_6fkdd"]
[ext_resource type="Texture2D" uid="uid://dtjlq5rm3gj3c" path="res://ego/animations/rosella/img_00017_.png" id="160_llhmj"]
[ext_resource type="Texture2D" uid="uid://dij6cjatpop24" path="res://ego/animations/rosella/img_00018_.png" id="161_uupqn"]
[ext_resource type="Texture2D" uid="uid://8ylna7crhmiq" path="res://ego/animations/rosella/img_00019_.png" id="162_vqsv2"]
[ext_resource type="Texture2D" uid="uid://rkrkgom3cm3v" path="res://ego/animations/rosella/img_00020_.png" id="163_nrmid"]
[ext_resource type="Texture2D" uid="uid://fg5643mb7a3q" path="res://ego/animations/rosella/img_00021_.png" id="164_orhiv"]
[ext_resource type="Texture2D" uid="uid://b4hg51a11paw1" path="res://ego/animations/rosella/img_00022_.png" id="165_qik70"]
[ext_resource type="Texture2D" uid="uid://n2hgry6npirj" path="res://ego/animations/rosella/img_00023_.png" id="166_414b7"]
[ext_resource type="Texture2D" uid="uid://0bi20hsxamun" path="res://ego/animations/rosella/img_00024_.png" id="167_gugxh"]
[ext_resource type="Texture2D" uid="uid://dkbnilfkftdo8" path="res://ego/animations/rosella/img_00025_.png" id="168_525u8"]
[ext_resource type="Texture2D" uid="uid://dywe87t2qm0im" path="res://ego/animations/rosella/img_00026_.png" id="169_wbmcb"]
[ext_resource type="Texture2D" uid="uid://r6hhulvl5wtn" path="res://ego/animations/rosella/img_00027_.png" id="170_t83h1"]
[ext_resource type="Texture2D" uid="uid://w47creb8ae45" path="res://ego/animations/rosella/img_00028_.png" id="171_ifskr"]
[ext_resource type="Texture2D" uid="uid://370l1illwxuv" path="res://ego/animations/rosella/img_00029_.png" id="172_rfe2v"]
[ext_resource type="Texture2D" uid="uid://c04v143dispfa" path="res://ego/animations/rosella/img_00030_.png" id="173_q1b42"]
[ext_resource type="Theme" uid="uid://dkli02kmdncbc" path="res://UITheme.tres" id="194"] [ext_resource type="Theme" uid="uid://dkli02kmdncbc" path="res://UITheme.tres" id="194"]
[ext_resource type="Script" uid="uid://b6gqw3bcaoye5" path="res://ego/Ego.gd" id="195"] [ext_resource type="Script" uid="uid://b6gqw3bcaoye5" path="res://ego/Ego.gd" id="195"]
@@ -309,49 +324,52 @@ animations = [{
}, { }, {
"frames": [{ "frames": [{
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("119_q6yh0") "texture": ExtResource("12_4nppn")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("120_pagte") "texture": ExtResource("13_72g70")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("121_hg8r5") "texture": ExtResource("14_jgc4u")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("122_5oaqq") "texture": ExtResource("15_k08d4")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("123_kn1mn") "texture": ExtResource("16_kxwb1")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("124_opp18") "texture": ExtResource("17_m5pot")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("125_4nwac") "texture": ExtResource("18_uejjd")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("126_ido3p") "texture": ExtResource("19_elvj4")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("127_iwaxh") "texture": ExtResource("20_gsu4v")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("128_ar1ys") "texture": ExtResource("21_s0vn5")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("129_gxp5c") "texture": ExtResource("22_opx4c")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("130_0ooo7") "texture": ExtResource("23_aoxuo")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("131_okk5g") "texture": ExtResource("24_yyx1q")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("132_0g30d") "texture": ExtResource("25_gw6rl")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("133_w8q6v") "texture": ExtResource("26_qf3gd")
}, {
"duration": 1.0,
"texture": ExtResource("27_mk8du")
}], }],
"loop": true, "loop": true,
"name": &"walk_E", "name": &"walk_E",
@@ -359,49 +377,52 @@ animations = [{
}, { }, {
"frames": [{ "frames": [{
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("35_gphxb") "texture": ExtResource("28_gw6rl")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("36_gpkly") "texture": ExtResource("29_qf3gd")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("37_0nogo") "texture": ExtResource("30_mk8du")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("38_atjfg") "texture": ExtResource("31_x73qc")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("39_vq1x5") "texture": ExtResource("32_qrgip")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("40_k80hd") "texture": ExtResource("33_2ah26")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("41_fcwhd") "texture": ExtResource("34_2kb50")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("42_p3kcj") "texture": ExtResource("35_tl3rq")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("43_lt2am") "texture": ExtResource("36_p38v6")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("44_a03gu") "texture": ExtResource("37_0v1yx")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("45_8k8du") "texture": ExtResource("38_37u3v")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("46_d4tyc") "texture": ExtResource("39_fkaqq")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("47_gjkxo") "texture": ExtResource("40_okkqf")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("48_1s2in") "texture": ExtResource("41_c5tbi")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("49_xusjq") "texture": ExtResource("42_q66kk")
}, {
"duration": 1.0,
"texture": ExtResource("43_vvmec")
}], }],
"loop": true, "loop": true,
"name": &"walk_N", "name": &"walk_N",
@@ -409,49 +430,52 @@ animations = [{
}, { }, {
"frames": [{ "frames": [{
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("50_laj3v") "texture": ExtResource("44_xff26")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("51_w12ac") "texture": ExtResource("45_7hvw5")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("52_ww1el") "texture": ExtResource("46_ib7pv")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("53_5r8ch") "texture": ExtResource("47_1ypi2")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("54_twso8") "texture": ExtResource("48_bb5nw")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("55_qwddt") "texture": ExtResource("49_4hl61")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("56_665sf") "texture": ExtResource("50_df5q1")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("57_5qxwo") "texture": ExtResource("51_dnhwr")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("58_cv6on") "texture": ExtResource("52_0rhxg")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("59_1ubhi") "texture": ExtResource("53_lh1ea")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("60_dqjs6") "texture": ExtResource("54_i0lgs")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("61_fj0td") "texture": ExtResource("55_av2vk")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("9_pyi2f") "texture": ExtResource("56_xba83")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("62_1oix2") "texture": ExtResource("57_v6qvo")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("63_hkmm4") "texture": ExtResource("58_kmnvl")
}, {
"duration": 1.0,
"texture": ExtResource("59_fuy8j")
}], }],
"loop": true, "loop": true,
"name": &"walk_NE", "name": &"walk_NE",
@@ -459,49 +483,52 @@ animations = [{
}, { }, {
"frames": [{ "frames": [{
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("64_f3le7") "texture": ExtResource("60_uysyb")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("65_c1022") "texture": ExtResource("61_0yvyt")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("66_1r88r") "texture": ExtResource("62_6i2ne")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("67_fo0ow") "texture": ExtResource("63_cdocw")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("68_m0ljg") "texture": ExtResource("64_emfac")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("69_4wwa5") "texture": ExtResource("65_24r7p")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("70_ouq1l") "texture": ExtResource("66_p6u0u")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("71_gygjm") "texture": ExtResource("67_n8x0v")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("10_l4ay1") "texture": ExtResource("68_amoxi")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("72_0kaxt") "texture": ExtResource("69_5csai")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("73_db5ja") "texture": ExtResource("70_b3d6q")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("74_1jmh4") "texture": ExtResource("71_m405h")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("75_i71gw") "texture": ExtResource("72_p25cj")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("76_t4gew") "texture": ExtResource("73_8hyjb")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("77_bn0fg") "texture": ExtResource("74_8q4hi")
}, {
"duration": 1.0,
"texture": ExtResource("75_uff0b")
}], }],
"loop": true, "loop": true,
"name": &"walk_NW", "name": &"walk_NW",
@@ -509,49 +536,52 @@ animations = [{
}, { }, {
"frames": [{ "frames": [{
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("159_6fkdd") "texture": ExtResource("76_dsexq")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("160_llhmj") "texture": ExtResource("77_hwnuj")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("161_uupqn") "texture": ExtResource("78_ivvdo")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("162_vqsv2") "texture": ExtResource("79_786ir")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("163_nrmid") "texture": ExtResource("80_5p581")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("164_orhiv") "texture": ExtResource("81_5yp8t")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("165_qik70") "texture": ExtResource("82_8umh2")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("166_414b7") "texture": ExtResource("83_dn78y")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("167_gugxh") "texture": ExtResource("84_vjaoi")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("168_525u8") "texture": ExtResource("85_1bupr")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("169_wbmcb") "texture": ExtResource("86_def6r")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("170_t83h1") "texture": ExtResource("87_se17v")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("171_ifskr") "texture": ExtResource("88_atafq")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("172_rfe2v") "texture": ExtResource("89_60r7o")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("173_q1b42") "texture": ExtResource("90_ub7dx")
}, {
"duration": 1.0,
"texture": ExtResource("91_e7eqt")
}], }],
"loop": true, "loop": true,
"name": &"walk_S", "name": &"walk_S",
@@ -559,49 +589,52 @@ animations = [{
}, { }, {
"frames": [{ "frames": [{
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("12_84jj5") "texture": ExtResource("92_3vrr3")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("92_ie3g4") "texture": ExtResource("93_6epyu")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("93_nm270") "texture": ExtResource("94_pjif5")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("94_vawqf") "texture": ExtResource("95_1h26f")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("95_m3ymp") "texture": ExtResource("96_klrxs")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("96_xowhf") "texture": ExtResource("97_nwnj3")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("97_3asjl") "texture": ExtResource("98_bbx6e")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("98_bl8n8") "texture": ExtResource("99_bru01")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("99_ski6f") "texture": ExtResource("100_cp2xd")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("100_mf0u4") "texture": ExtResource("101_jbccs")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("101_stlf2") "texture": ExtResource("102_bu1yf")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("102_3uaju") "texture": ExtResource("103_1484e")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("103_k4pwn") "texture": ExtResource("104_scw7s")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("104_yudkd") "texture": ExtResource("105_timr7")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("105_gyxix") "texture": ExtResource("106_nlo5j")
}, {
"duration": 1.0,
"texture": ExtResource("107_yna12")
}], }],
"loop": true, "loop": true,
"name": &"walk_SE", "name": &"walk_SE",
@@ -609,49 +642,52 @@ animations = [{
}, { }, {
"frames": [{ "frames": [{
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("13_ttpag") "texture": ExtResource("108_tbxo8")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("106_tj1k5") "texture": ExtResource("109_cwboe")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("107_gmbms") "texture": ExtResource("110_fci48")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("108_o7aaa") "texture": ExtResource("111_oo60o")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("109_7sodb") "texture": ExtResource("112_jk871")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("110_5od0t") "texture": ExtResource("113_fqwbh")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("111_mgwvh") "texture": ExtResource("114_boqln")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("112_0r2r0") "texture": ExtResource("115_gjc4p")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("113_vlgai") "texture": ExtResource("116_338xc")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("114_2fgrx") "texture": ExtResource("117_v50lk")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("115_gtwhg") "texture": ExtResource("118_ssq1t")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("116_clvmm") "texture": ExtResource("119_huqp0")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("117_wons0") "texture": ExtResource("120_274ja")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("118_im20t") "texture": ExtResource("121_u8w2y")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("119_31gcv") "texture": ExtResource("122_1pwk6")
}, {
"duration": 1.0,
"texture": ExtResource("123_248hs")
}], }],
"loop": true, "loop": true,
"name": &"walk_SW", "name": &"walk_SW",
@@ -659,49 +695,52 @@ animations = [{
}, { }, {
"frames": [{ "frames": [{
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("120_qeejn") "texture": ExtResource("124_uy2xp")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("121_h6nhi") "texture": ExtResource("125_o8wjp")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("122_grugb") "texture": ExtResource("126_y4i6c")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("123_yoybg") "texture": ExtResource("127_qpxhg")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("124_8jd8x") "texture": ExtResource("128_fua1r")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("125_nm7rs") "texture": ExtResource("129_i3cnu")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("126_cviwa") "texture": ExtResource("130_bt6sr")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("127_bpypy") "texture": ExtResource("131_u0i8g")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("128_qenlf") "texture": ExtResource("132_wvpsm")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("129_7b1px") "texture": ExtResource("133_dxmcl")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("14_2ts53") "texture": ExtResource("134_u084s")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("130_w3x52") "texture": ExtResource("135_lflbb")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("131_nfjxv") "texture": ExtResource("136_08xgv")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("132_v1scd") "texture": ExtResource("137_j38cn")
}, { }, {
"duration": 1.0, "duration": 1.0,
"texture": ExtResource("133_kxwux") "texture": ExtResource("138_wfkq6")
}, {
"duration": 1.0,
"texture": ExtResource("139_aqsva")
}], }],
"loop": true, "loop": true,
"name": &"walk_W", "name": &"walk_W",
@@ -770,14 +809,13 @@ unique_name_in_owner = true
z_as_relative = false z_as_relative = false
texture_filter = 2 texture_filter = 2
material = SubResource("ShaderMaterial_sle7q") material = SubResource("ShaderMaterial_sle7q")
position = Vector2(-14, -13) position = Vector2(-14.000001, -23)
scale = Vector2(1.5, 1.5) scale = Vector2(0.59, 0.59)
sprite_frames = SubResource("1") sprite_frames = SubResource("1")
animation = &"walk_SE" animation = &"walk_W"
frame = 10 frame_progress = 0.08623318
frame_progress = 0.19484821
speed_scale = 2.0 speed_scale = 2.0
offset = Vector2(1.33333, -413.333) offset = Vector2(1.333, -800)
[node name="ClipMask" type="AnimatedSprite2D" parent="." unique_id=61198776] [node name="ClipMask" type="AnimatedSprite2D" parent="." unique_id=61198776]
visible = false visible = false

View File

@@ -21,6 +21,7 @@ msdf_pixel_range=8
msdf_size=48 msdf_size=48
allow_system_fallback=true allow_system_fallback=true
force_autohinter=false force_autohinter=false
modulate_color_glyphs=false
hinting=1 hinting=1
subpixel_positioning=1 subpixel_positioning=1
keep_rounding_remainders=true keep_rounding_remainders=true

View File

@@ -79,4 +79,4 @@ func _input(event):
get_tree().quit() get_tree().quit()
if event.is_action_released("right_click") and not is_cursor_locked: if event.is_action_released("right_click") and not is_cursor_locked:
ActionState.current_action = (ActionState.current_action + 1) % 4 ActionState.current_action = (ActionState.current_action + 1) % 4
Input.set_custom_mouse_cursor(cursors[ActionState.current_action], Input.CursorShape.CURSOR_ARROW, Vector2(64,64)) Input.set_custom_mouse_cursor(cursors[ActionState.current_action], Input.CursorShape.CURSOR_ARROW, Vector2(0,0))

View File

@@ -17,7 +17,8 @@ func _ready():
notify_property_list_changed() notify_property_list_changed()
pass pass
else: else:
hide() pass
# hide()
pass # Replace with function body pass # Replace with function body

View File

@@ -21,6 +21,7 @@ msdf_pixel_range=8
msdf_size=48 msdf_size=48
allow_system_fallback=true allow_system_fallback=true
force_autohinter=false force_autohinter=false
modulate_color_glyphs=false
hinting=1 hinting=1
subpixel_positioning=1 subpixel_positioning=1
keep_rounding_remainders=true keep_rounding_remainders=true

BIN
boot_icon.png LFS

Binary file not shown.

View File

@@ -18,6 +18,8 @@ dest_files=["res://.godot/imported/boot_icon.png-2296416b096145c4821e2741d23d2ff
compress/mode=0 compress/mode=0
compress/high_quality=false compress/high_quality=false
compress/lossy_quality=0.7 compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1 compress/hdr_compression=1
compress/normal_map=0 compress/normal_map=0
compress/channel_pack=0 compress/channel_pack=0
@@ -25,6 +27,10 @@ mipmaps/generate=false
mipmaps/limit=-1 mipmaps/limit=-1
roughness/mode=0 roughness/mode=0
roughness/src_normal="" roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true process/fix_alpha_border=true
process/premult_alpha=false process/premult_alpha=false
process/normal_map_invert_y=false process/normal_map_invert_y=false

View File

@@ -18,6 +18,8 @@ dest_files=["res://.godot/imported/boot_icon_big.png-68985c79f5e6cd0bab8b15bee07
compress/mode=0 compress/mode=0
compress/high_quality=false compress/high_quality=false
compress/lossy_quality=0.7 compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1 compress/hdr_compression=1
compress/normal_map=0 compress/normal_map=0
compress/channel_pack=0 compress/channel_pack=0
@@ -25,6 +27,10 @@ mipmaps/generate=false
mipmaps/limit=-1 mipmaps/limit=-1
roughness/mode=0 roughness/mode=0
roughness/src_normal="" roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true process/fix_alpha_border=true
process/premult_alpha=false process/premult_alpha=false
process/normal_map_invert_y=false process/normal_map_invert_y=false

View File

@@ -18,6 +18,8 @@ dest_files=["res://.godot/imported/dragon.png-cd3ff3eaa8e7e24c15781ff6b9940064.c
compress/mode=0 compress/mode=0
compress/high_quality=false compress/high_quality=false
compress/lossy_quality=0.7 compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1 compress/hdr_compression=1
compress/normal_map=0 compress/normal_map=0
compress/channel_pack=0 compress/channel_pack=0
@@ -25,6 +27,10 @@ mipmaps/generate=false
mipmaps/limit=-1 mipmaps/limit=-1
roughness/mode=0 roughness/mode=0
roughness/src_normal="" roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true process/fix_alpha_border=true
process/premult_alpha=false process/premult_alpha=false
process/normal_map_invert_y=false process/normal_map_invert_y=false

Binary file not shown.

View File

@@ -0,0 +1,40 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://bvrsr0b55pbou"
path="res://.godot/imported/frame_0000.png-b2da7ec48320b00652e5e34531b24409.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://ego/animations/walk6/e/image/frame_0000.png"
dest_files=["res://.godot/imported/frame_0000.png-b2da7ec48320b00652e5e34531b24409.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

View File

@@ -0,0 +1,40 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://bewoslpmmowgr"
path="res://.godot/imported/frame_0001.png-13d8d4ff8fb7e4f1132c1070be1eab98.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://ego/animations/walk6/e/image/frame_0001.png"
dest_files=["res://.godot/imported/frame_0001.png-13d8d4ff8fb7e4f1132c1070be1eab98.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

View File

@@ -0,0 +1,40 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://b105ixtjlaemw"
path="res://.godot/imported/frame_0002.png-364696f5f255c004f638316c22cbe8fa.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://ego/animations/walk6/e/image/frame_0002.png"
dest_files=["res://.godot/imported/frame_0002.png-364696f5f255c004f638316c22cbe8fa.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

View File

@@ -0,0 +1,40 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://dj5qqu1i60t8b"
path="res://.godot/imported/frame_0003.png-6c0016aab5739010b300d4aadf445275.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://ego/animations/walk6/e/image/frame_0003.png"
dest_files=["res://.godot/imported/frame_0003.png-6c0016aab5739010b300d4aadf445275.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

View File

@@ -0,0 +1,40 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://bv6a6vt0q5luo"
path="res://.godot/imported/frame_0004.png-b620093ddbdd80ff6a65a6517f9c14b4.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://ego/animations/walk6/e/image/frame_0004.png"
dest_files=["res://.godot/imported/frame_0004.png-b620093ddbdd80ff6a65a6517f9c14b4.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

View File

@@ -0,0 +1,40 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://clrk60e8f6cto"
path="res://.godot/imported/frame_0005.png-b6c300fc202006f2fb177a3a1c513665.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://ego/animations/walk6/e/image/frame_0005.png"
dest_files=["res://.godot/imported/frame_0005.png-b6c300fc202006f2fb177a3a1c513665.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

View File

@@ -0,0 +1,40 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://hgah784brj1u"
path="res://.godot/imported/frame_0006.png-28c4b801c2546155230011f559169b9f.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://ego/animations/walk6/e/image/frame_0006.png"
dest_files=["res://.godot/imported/frame_0006.png-28c4b801c2546155230011f559169b9f.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

View File

@@ -0,0 +1,40 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://dvct6l2bs4xfo"
path="res://.godot/imported/frame_0007.png-e422307b7496aacb187385bfb8795443.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://ego/animations/walk6/e/image/frame_0007.png"
dest_files=["res://.godot/imported/frame_0007.png-e422307b7496aacb187385bfb8795443.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

View File

@@ -0,0 +1,40 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://73p11ya60fhx"
path="res://.godot/imported/frame_0008.png-d5499d6e4b8d3a3eb3ad718c0335a962.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://ego/animations/walk6/e/image/frame_0008.png"
dest_files=["res://.godot/imported/frame_0008.png-d5499d6e4b8d3a3eb3ad718c0335a962.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

View File

@@ -0,0 +1,40 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://b25stwboh3o6a"
path="res://.godot/imported/frame_0009.png-8e46c04cda201e73d3528324b56e66f3.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://ego/animations/walk6/e/image/frame_0009.png"
dest_files=["res://.godot/imported/frame_0009.png-8e46c04cda201e73d3528324b56e66f3.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

View File

@@ -0,0 +1,40 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://elkyn3cmg0c2"
path="res://.godot/imported/frame_0010.png-de90a31a250647c0d5aee9a41a0b0d8c.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://ego/animations/walk6/e/image/frame_0010.png"
dest_files=["res://.godot/imported/frame_0010.png-de90a31a250647c0d5aee9a41a0b0d8c.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

View File

@@ -0,0 +1,40 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://djgn51fdby287"
path="res://.godot/imported/frame_0011.png-bbc6c99728b46e3dd8887280c9381c78.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://ego/animations/walk6/e/image/frame_0011.png"
dest_files=["res://.godot/imported/frame_0011.png-bbc6c99728b46e3dd8887280c9381c78.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

View File

@@ -0,0 +1,40 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://dlbpbe6s4l1tx"
path="res://.godot/imported/frame_0012.png-f5e74974717ec212928272d323393a98.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://ego/animations/walk6/e/image/frame_0012.png"
dest_files=["res://.godot/imported/frame_0012.png-f5e74974717ec212928272d323393a98.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

View File

@@ -0,0 +1,40 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://wrn8804ysm1r"
path="res://.godot/imported/frame_0013.png-675289ff80b3e47f5fd61784ae292a76.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://ego/animations/walk6/e/image/frame_0013.png"
dest_files=["res://.godot/imported/frame_0013.png-675289ff80b3e47f5fd61784ae292a76.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

View File

@@ -0,0 +1,40 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://dfknsguku55ft"
path="res://.godot/imported/frame_0014.png-9424e4272c40efeb633b65529357249a.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://ego/animations/walk6/e/image/frame_0014.png"
dest_files=["res://.godot/imported/frame_0014.png-9424e4272c40efeb633b65529357249a.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

View File

@@ -0,0 +1,40 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://o55311qur6ux"
path="res://.godot/imported/frame_0015.png-489fcfbbd3c4f4cda18e47e3dc8dcf15.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://ego/animations/walk6/e/image/frame_0015.png"
dest_files=["res://.godot/imported/frame_0015.png-489fcfbbd3c4f4cda18e47e3dc8dcf15.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

View File

@@ -0,0 +1,40 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://m5u07s02h2wm"
path="res://.godot/imported/frame_0016.png-7e03f5a0902e0df237c1d79afaef6581.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://ego/animations/walk6/e/image/frame_0016.png"
dest_files=["res://.godot/imported/frame_0016.png-7e03f5a0902e0df237c1d79afaef6581.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

View File

@@ -0,0 +1,40 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://bybcqiuogapnj"
path="res://.godot/imported/frame_0017.png-2336272caeba6f1dc162cd5dfb7598a6.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://ego/animations/walk6/e/image/frame_0017.png"
dest_files=["res://.godot/imported/frame_0017.png-2336272caeba6f1dc162cd5dfb7598a6.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

View File

@@ -0,0 +1,40 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://dsipxnabk7nf2"
path="res://.godot/imported/frame_0018.png-c0ef7360e08db6fe8ef11fac3e141ea7.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://ego/animations/walk6/e/image/frame_0018.png"
dest_files=["res://.godot/imported/frame_0018.png-c0ef7360e08db6fe8ef11fac3e141ea7.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

View File

@@ -0,0 +1,40 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://b178tkevj6xh6"
path="res://.godot/imported/frame_0019.png-c2ed177013a1787ee432d716372087d1.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://ego/animations/walk6/e/image/frame_0019.png"
dest_files=["res://.godot/imported/frame_0019.png-c2ed177013a1787ee432d716372087d1.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

View File

@@ -0,0 +1,40 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://buuy33224yxhk"
path="res://.godot/imported/frame_0020.png-873c63b937324b14e6038a8f66bd563c.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://ego/animations/walk6/e/image/frame_0020.png"
dest_files=["res://.godot/imported/frame_0020.png-873c63b937324b14e6038a8f66bd563c.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

View File

@@ -0,0 +1,40 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://2heg200vpyij"
path="res://.godot/imported/frame_0021.png-4b55ce999ff41efe5ba3479ebe6ea3d2.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://ego/animations/walk6/e/image/frame_0021.png"
dest_files=["res://.godot/imported/frame_0021.png-4b55ce999ff41efe5ba3479ebe6ea3d2.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

View File

@@ -0,0 +1,40 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://cil7ci431vr5c"
path="res://.godot/imported/frame_0022.png-47bfede447f05f1f520b78e62d93dd2d.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://ego/animations/walk6/e/image/frame_0022.png"
dest_files=["res://.godot/imported/frame_0022.png-47bfede447f05f1f520b78e62d93dd2d.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

View File

@@ -0,0 +1,40 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://cf11hpy3jxmpf"
path="res://.godot/imported/frame_0023.png-6d5ab9b27a44431b93f81160aebd8883.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://ego/animations/walk6/e/image/frame_0023.png"
dest_files=["res://.godot/imported/frame_0023.png-6d5ab9b27a44431b93f81160aebd8883.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

View File

@@ -0,0 +1,40 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://cakxolxtw5evq"
path="res://.godot/imported/frame_0024.png-e59119e54e73aed9da9116e74406c80a.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://ego/animations/walk6/e/image/frame_0024.png"
dest_files=["res://.godot/imported/frame_0024.png-e59119e54e73aed9da9116e74406c80a.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

View File

@@ -0,0 +1,40 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://bshdhlsdu14nf"
path="res://.godot/imported/frame_0025.png-50c986c14484b1cb5e21d6081146073c.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://ego/animations/walk6/e/image/frame_0025.png"
dest_files=["res://.godot/imported/frame_0025.png-50c986c14484b1cb5e21d6081146073c.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

View File

@@ -0,0 +1,40 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://b12pqmrqkvvu4"
path="res://.godot/imported/frame_0026.png-a4ee4c6c8b4d95c3237f600469f31f83.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://ego/animations/walk6/e/image/frame_0026.png"
dest_files=["res://.godot/imported/frame_0026.png-a4ee4c6c8b4d95c3237f600469f31f83.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

View File

@@ -0,0 +1,40 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://dkeuwc65l7610"
path="res://.godot/imported/frame_0027.png-be673ffe43ad0354e9248e401e495bda.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://ego/animations/walk6/e/image/frame_0027.png"
dest_files=["res://.godot/imported/frame_0027.png-be673ffe43ad0354e9248e401e495bda.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

View File

@@ -0,0 +1,40 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://dh14dji4fio5i"
path="res://.godot/imported/frame_0028.png-4083bef9dafc3551bb7858101d5baa62.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://ego/animations/walk6/e/image/frame_0028.png"
dest_files=["res://.godot/imported/frame_0028.png-4083bef9dafc3551bb7858101d5baa62.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

View File

@@ -0,0 +1,40 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://dsirxkxfyujpq"
path="res://.godot/imported/frame_0029.png-8e0c6cb312722c7b1b2ab9ad39faf599.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://ego/animations/walk6/e/image/frame_0029.png"
dest_files=["res://.godot/imported/frame_0029.png-8e0c6cb312722c7b1b2ab9ad39faf599.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

View File

@@ -0,0 +1,40 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://cr221lb5mbjqx"
path="res://.godot/imported/frame_0030.png-73514f0085b41c6690929bb1c0bec043.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://ego/animations/walk6/e/image/frame_0030.png"
dest_files=["res://.godot/imported/frame_0030.png-73514f0085b41c6690929bb1c0bec043.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

View File

@@ -0,0 +1,40 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://dp3b1u6wpn3uk"
path="res://.godot/imported/frame_0031.png-ba6b0d5f3ff0bfe98c184e2ad8b3e24b.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://ego/animations/walk6/e/image/frame_0031.png"
dest_files=["res://.godot/imported/frame_0031.png-ba6b0d5f3ff0bfe98c184e2ad8b3e24b.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

View File

@@ -0,0 +1,40 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://c1t56tj8biwme"
path="res://.godot/imported/frame_0000.png-e54f45bd69ff062f921522d50b742181.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://ego/animations/walk6/n/image/frame_0000.png"
dest_files=["res://.godot/imported/frame_0000.png-e54f45bd69ff062f921522d50b742181.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

View File

@@ -0,0 +1,40 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://c0xeavih08jq"
path="res://.godot/imported/frame_0001.png-cdb94c68f8d05d27af93ea4fce5f2dfc.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://ego/animations/walk6/n/image/frame_0001.png"
dest_files=["res://.godot/imported/frame_0001.png-cdb94c68f8d05d27af93ea4fce5f2dfc.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

View File

@@ -0,0 +1,40 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://11dptrh34tq4"
path="res://.godot/imported/frame_0002.png-cdf9d370d56f5e711d628bd7cdc09d86.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://ego/animations/walk6/n/image/frame_0002.png"
dest_files=["res://.godot/imported/frame_0002.png-cdf9d370d56f5e711d628bd7cdc09d86.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

View File

@@ -0,0 +1,40 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://bqru73ik5acth"
path="res://.godot/imported/frame_0003.png-042a6545ada1a59836149458cfd364e4.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://ego/animations/walk6/n/image/frame_0003.png"
dest_files=["res://.godot/imported/frame_0003.png-042a6545ada1a59836149458cfd364e4.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

View File

@@ -0,0 +1,40 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://ymm0gvbv3dlu"
path="res://.godot/imported/frame_0004.png-16f6bc6ca3e32e93370e0160de6c4d48.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://ego/animations/walk6/n/image/frame_0004.png"
dest_files=["res://.godot/imported/frame_0004.png-16f6bc6ca3e32e93370e0160de6c4d48.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

View File

@@ -0,0 +1,40 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://f2c6yqqlp1x6"
path="res://.godot/imported/frame_0005.png-71b1f921b4551149d378a16e5d6b4746.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://ego/animations/walk6/n/image/frame_0005.png"
dest_files=["res://.godot/imported/frame_0005.png-71b1f921b4551149d378a16e5d6b4746.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

View File

@@ -0,0 +1,40 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://4pfnj05lk71"
path="res://.godot/imported/frame_0006.png-32f7ec92090d1ea4d7b5c5090231c457.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://ego/animations/walk6/n/image/frame_0006.png"
dest_files=["res://.godot/imported/frame_0006.png-32f7ec92090d1ea4d7b5c5090231c457.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

View File

@@ -0,0 +1,40 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://cb6srresegifq"
path="res://.godot/imported/frame_0007.png-a59c11be6d08d9e53b98d957f4901998.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://ego/animations/walk6/n/image/frame_0007.png"
dest_files=["res://.godot/imported/frame_0007.png-a59c11be6d08d9e53b98d957f4901998.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

View File

@@ -0,0 +1,40 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://bbab0fkfhb7dy"
path="res://.godot/imported/frame_0008.png-98e75af4236804c4150528870caff4d4.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://ego/animations/walk6/n/image/frame_0008.png"
dest_files=["res://.godot/imported/frame_0008.png-98e75af4236804c4150528870caff4d4.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

View File

@@ -0,0 +1,40 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://bd8h4caq44e8q"
path="res://.godot/imported/frame_0009.png-b2793a63cac0293761478a5bbba1d944.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://ego/animations/walk6/n/image/frame_0009.png"
dest_files=["res://.godot/imported/frame_0009.png-b2793a63cac0293761478a5bbba1d944.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

View File

@@ -0,0 +1,40 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://dsx6wwjwt2e2d"
path="res://.godot/imported/frame_0010.png-199b12fb4d292c4d75a053b6b4b2b774.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://ego/animations/walk6/n/image/frame_0010.png"
dest_files=["res://.godot/imported/frame_0010.png-199b12fb4d292c4d75a053b6b4b2b774.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

Some files were not shown because too many files have changed in this diff Show More