From 5d610cf01a333b40b537a4c1b06a49d6cec5ef3c Mon Sep 17 00:00:00 2001 From: "Claude (owner)" Date: Mon, 18 May 2026 21:30:08 +0900 Subject: [PATCH] =?UTF-8?q?temp:=20v1.0.18=E2=86=92v1.0.19=20=EB=B6=80?= =?UTF-8?q?=EB=B6=84=20=EC=A0=81=EC=9A=A9=EC=9A=A9=20=EC=88=98=EC=A0=95=20?= =?UTF-8?q?=ED=8C=8C=EC=9D=BC=EA=B3=BC=20README=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 전체 datapack 교체 없이 두 파일만 덮어써서 v1.0.19 와 동일 상태로 만들 수 있도록 temp/ 에 수정된 파일과 적용 가이드만 남긴다. - temp/data/mq/function/repeat/buttons/btn_prep.mcfunction - temp/data/mq/function/repeat/buttons/btn.mcfunction - temp/README.md (부분 적용 방법) 이전에 있던 temp/gif.png, gif.png.mcmeta 는 이번 부분 적용 패키지와 무관해서 제거. Co-Authored-By: Claude Opus 4.7 --- temp/README.md | 43 +++++++++ .../mq/function/repeat/buttons/btn.mcfunction | 90 ++++++++++++++++++ .../repeat/buttons/btn_prep.mcfunction | 13 +++ temp/gif.png | Bin 4753 -> 0 bytes temp/gif.png.mcmeta | 6 -- 5 files changed, 146 insertions(+), 6 deletions(-) create mode 100644 temp/README.md create mode 100644 temp/data/mq/function/repeat/buttons/btn.mcfunction create mode 100644 temp/data/mq/function/repeat/buttons/btn_prep.mcfunction delete mode 100644 temp/gif.png delete mode 100644 temp/gif.png.mcmeta diff --git a/temp/README.md b/temp/README.md new file mode 100644 index 0000000..eb1a0ab --- /dev/null +++ b/temp/README.md @@ -0,0 +1,43 @@ +# v1.0.18 → v1.0.19 부분 적용 가이드 + +전체 datapack 을 교체하지 않고, 이 폴더의 두 파일만 덮어쓰면 v1.0.19 와 동일한 상태가 됩니다. + +## 무엇이 바뀌었나 + +- `repeat/buttons/btn_prep.mcfunction` (v1.0.17 에서 신규 추가됨) +- `repeat/buttons/btn.mcfunction` + +두 파일 모두 정렬용 다중 공백 때문에 MC 26.1.2 의 명령 파서에서 +`Incorrect argument for command at position ...` 파싱 에러가 발생하던 것을, +다중 공백을 단일 공백으로 정규화해서 고친 것입니다. 로직 변경은 없습니다. + +## 적용 방법 + +이 폴더의 `data/` 트리는 datapack 의 `data/` 트리와 같은 구조입니다. +따라서 그대로 덮어쓰기만 하면 됩니다. + +서버의 datapack 폴더 (예: `world/datapacks/music_quiz/`) 기준으로: + +``` +temp/data/mq/function/repeat/buttons/btn_prep.mcfunction + -> /data/mq/function/repeat/buttons/btn_prep.mcfunction + +temp/data/mq/function/repeat/buttons/btn.mcfunction + -> /data/mq/function/repeat/buttons/btn.mcfunction +``` + +`btn_prep.mcfunction` 은 v1.0.17 이후에 추가된 파일이라, v1.0.16 이하에서 +바로 v1.0.19 로 점프한다면 새로 생성되는 것입니다. v1.0.17/v1.0.18 이미 +설치된 환경이라면 기존 파일을 덮어쓰면 됩니다. + +복사 후 게임 안에서: + +``` +/reload +``` + +## 확인 + +`/reload` 시 콘솔에 더 이상 +`Failed to load function mq:repeat/buttons/btn_prep` 같은 에러가 뜨지 않아야 합니다. +버튼을 클릭했을 때 정상적으로 동작하면 적용 성공입니다. diff --git a/temp/data/mq/function/repeat/buttons/btn.mcfunction b/temp/data/mq/function/repeat/buttons/btn.mcfunction new file mode 100644 index 0000000..dafe1c1 --- /dev/null +++ b/temp/data/mq/function/repeat/buttons/btn.mcfunction @@ -0,0 +1,90 @@ +# 버튼 1개에 대한 매 tick 처리. +# 매크로 인자(mq:tmp.btn): n, x, y, z, f, c, label, label_color, label_font, label_scale +# buttons 점수 상태: +# ..-2 : 비활성 (버튼 블록 제거, interaction 응답 차단) +# -1 : 초기화 단계 (버튼 블록 + interaction × 3 + text_display 보장 후 0) +# 0 : 정상 (interaction 클릭 대기) +# +# interaction/text_display entity 는 데이터팩이 직접 summon — /reload 시 +# commands/stop 에서 buttons 가 -1 로 재설정되어 다음 tick 에 ensure 로직 +# 실행. -1 단계에서 같은 태그 entity 를 모두 kill 후 정확한 개수만 다시 +# summon → 항상 idempotent (dup 누적 없음, 좌표/라벨 갱신 자동 반영). +# +# ---- facing → 머리 hitbox 위치 (이 파일 한 곳에서만 정의) ---- +# stone_button[face=wall, facing=X] AABB (블록 상대 좌표): +# facing 의 의미 = "버튼 머리 visible 면의 normal 방향". 머리는 그 방향 +# 쪽 face 에 붙어 있고 hitbox 는 그 face 에서 안쪽(1/8) 만큼 들어감. +# south : z ∈ [0, 0.125] 가로 x ∈ [0.3125, 0.6875] +# north : z ∈ [0.875, 1] 가로 x ∈ [0.3125, 0.6875] +# east : x ∈ [0, 0.125] 가로 z ∈ [0.3125, 0.6875] +# west : x ∈ [0.875, 1] 가로 z ∈ [0.3125, 0.6875] +# 세로 y ∈ [0.375, 0.625] 공통. +# +# interaction entity 의 horizontal hitbox 는 width × width 정사각형 강제라 +# 단일 entity 로는 "가로 0.375 × 두께 0.125" 직사각형 불가. → 두께(0.125) +# 와 같은 width=0.125 인 interaction 을 가로축으로 3 개 타일링 (gap 없이 +# 인접: 중심 0.375 / 0.5 / 0.625, 각 폭 0.125 → 합 [0.3125, 0.6875]). +# interaction Y 는 hitbox 바닥 → 소환 y = block y + 0.375, height = 0.25. +# +# ---- text_display 위치 (버튼 바로 아래 같은 벽면에 부착) ---- +# 같은 벽 (button 의 머리 normal 반대편 블록) 의 visible 면에 살짝 띄워 +# 부착. 텍스트 entity Y 는 텍스트 baseline 근방 → 아래 블록 바닥에 두면 +# 텍스트가 그 블록 안에 위로 솟아남. +# south : ~0.5 ~-1 ~0.01 yaw 0 (head 가 +z 방향 → 벽 +z=0.01 살짝 띄움) +# north : ~0.5 ~-1 ~0.99 yaw 180 +# east : ~0.01 ~-1 ~0.5 yaw -90 +# west : ~0.99 ~-1 ~0.5 yaw 90 + +# ---- 비활성: 블록 + interaction × 3 + text_display 전부 제거 후 종료 ---- +# data modify entity @e[...] 는 대상 1개 강제 → interaction 3개 모드에선 +# 못 쓰므로 그냥 kill. 어차피 버튼 블록도 air 로 바꾸므로 라벨도 같이 제거. +$execute if score $(n) buttons matches ..-2 run setblock $(x) $(y) $(z) minecraft:air +$execute if score $(n) buttons matches ..-2 run kill @e[type=minecraft:interaction,tag=mq,tag=$(n)] +$execute if score $(n) buttons matches ..-2 run kill @e[type=minecraft:text_display,tag=mq,tag=$(n)] +$execute if score $(n) buttons matches ..-2 run return 0 + +# ---- 초기화: 블록 + interaction × 3 + text_display 보장 ---- +$execute unless score $(n) buttons matches -1.. run scoreboard players set $(n) buttons -1 +$execute if score $(n) buttons matches -1 run setblock $(x) $(y) $(z) minecraft:stone_button[face=wall,facing=$(f),powered=false] +$execute if score $(n) buttons matches -1 run kill @e[type=minecraft:interaction,tag=mq,tag=$(n)] +$execute if score $(n) buttons matches -1 run kill @e[type=minecraft:text_display,tag=mq,tag=$(n)] + +# south: 깊이축=z(+0.0625), 가로축=x, 3 타일 + 라벨 +$execute if score $(n) buttons matches -1 if data storage mq:tmp btn{f:"south"} positioned $(x) $(y) $(z) run summon minecraft:interaction ~0.375 ~0.375 ~0.0625 {Tags:["mq","$(n)"],width:0.125f,height:0.25f,response:0b} +$execute if score $(n) buttons matches -1 if data storage mq:tmp btn{f:"south"} positioned $(x) $(y) $(z) run summon minecraft:interaction ~0.5 ~0.375 ~0.0625 {Tags:["mq","$(n)"],width:0.125f,height:0.25f,response:0b} +$execute if score $(n) buttons matches -1 if data storage mq:tmp btn{f:"south"} positioned $(x) $(y) $(z) run summon minecraft:interaction ~0.625 ~0.375 ~0.0625 {Tags:["mq","$(n)"],width:0.125f,height:0.25f,response:0b} +$execute if score $(n) buttons matches -1 unless data storage mq:tmp btn{label:""} if data storage mq:tmp btn{f:"south"} positioned $(x) $(y) $(z) run summon minecraft:text_display ~0.5 ~-1 ~0.01 {Tags:["mq","$(n)"],Rotation:[0f,0f],background:0,text:'{"text":"$(label)","color":"$(label_color)","font":"$(label_font)"}',transformation:{scale:[$(label_scale)f,$(label_scale)f,$(label_scale)f],translation:[0f,0f,0f],left_rotation:[0f,0f,0f,1f],right_rotation:[0f,0f,0f,1f]}} + +# north: 깊이축=z(+0.9375), 가로축=x, 3 타일 + 라벨 +$execute if score $(n) buttons matches -1 if data storage mq:tmp btn{f:"north"} positioned $(x) $(y) $(z) run summon minecraft:interaction ~0.375 ~0.375 ~0.9375 {Tags:["mq","$(n)"],width:0.125f,height:0.25f,response:0b} +$execute if score $(n) buttons matches -1 if data storage mq:tmp btn{f:"north"} positioned $(x) $(y) $(z) run summon minecraft:interaction ~0.5 ~0.375 ~0.9375 {Tags:["mq","$(n)"],width:0.125f,height:0.25f,response:0b} +$execute if score $(n) buttons matches -1 if data storage mq:tmp btn{f:"north"} positioned $(x) $(y) $(z) run summon minecraft:interaction ~0.625 ~0.375 ~0.9375 {Tags:["mq","$(n)"],width:0.125f,height:0.25f,response:0b} +$execute if score $(n) buttons matches -1 unless data storage mq:tmp btn{label:""} if data storage mq:tmp btn{f:"north"} positioned $(x) $(y) $(z) run summon minecraft:text_display ~0.5 ~-1 ~0.99 {Tags:["mq","$(n)"],Rotation:[180f,0f],background:0,text:'{"text":"$(label)","color":"$(label_color)","font":"$(label_font)"}',transformation:{scale:[$(label_scale)f,$(label_scale)f,$(label_scale)f],translation:[0f,0f,0f],left_rotation:[0f,0f,0f,1f],right_rotation:[0f,0f,0f,1f]}} + +# east: 깊이축=x(+0.0625), 가로축=z, 3 타일 + 라벨 +$execute if score $(n) buttons matches -1 if data storage mq:tmp btn{f:"east"} positioned $(x) $(y) $(z) run summon minecraft:interaction ~0.0625 ~0.375 ~0.375 {Tags:["mq","$(n)"],width:0.125f,height:0.25f,response:0b} +$execute if score $(n) buttons matches -1 if data storage mq:tmp btn{f:"east"} positioned $(x) $(y) $(z) run summon minecraft:interaction ~0.0625 ~0.375 ~0.5 {Tags:["mq","$(n)"],width:0.125f,height:0.25f,response:0b} +$execute if score $(n) buttons matches -1 if data storage mq:tmp btn{f:"east"} positioned $(x) $(y) $(z) run summon minecraft:interaction ~0.0625 ~0.375 ~0.625 {Tags:["mq","$(n)"],width:0.125f,height:0.25f,response:0b} +$execute if score $(n) buttons matches -1 unless data storage mq:tmp btn{label:""} if data storage mq:tmp btn{f:"east"} positioned $(x) $(y) $(z) run summon minecraft:text_display ~0.01 ~-1 ~0.5 {Tags:["mq","$(n)"],Rotation:[-90f,0f],background:0,text:'{"text":"$(label)","color":"$(label_color)","font":"$(label_font)"}',transformation:{scale:[$(label_scale)f,$(label_scale)f,$(label_scale)f],translation:[0f,0f,0f],left_rotation:[0f,0f,0f,1f],right_rotation:[0f,0f,0f,1f]}} + +# west: 깊이축=x(+0.9375), 가로축=z, 3 타일 + 라벨 +$execute if score $(n) buttons matches -1 if data storage mq:tmp btn{f:"west"} positioned $(x) $(y) $(z) run summon minecraft:interaction ~0.9375 ~0.375 ~0.375 {Tags:["mq","$(n)"],width:0.125f,height:0.25f,response:0b} +$execute if score $(n) buttons matches -1 if data storage mq:tmp btn{f:"west"} positioned $(x) $(y) $(z) run summon minecraft:interaction ~0.9375 ~0.375 ~0.5 {Tags:["mq","$(n)"],width:0.125f,height:0.25f,response:0b} +$execute if score $(n) buttons matches -1 if data storage mq:tmp btn{f:"west"} positioned $(x) $(y) $(z) run summon minecraft:interaction ~0.9375 ~0.375 ~0.625 {Tags:["mq","$(n)"],width:0.125f,height:0.25f,response:0b} +$execute if score $(n) buttons matches -1 unless data storage mq:tmp btn{label:""} if data storage mq:tmp btn{f:"west"} positioned $(x) $(y) $(z) run summon minecraft:text_display ~0.99 ~-1 ~0.5 {Tags:["mq","$(n)"],Rotation:[90f,0f],background:0,text:'{"text":"$(label)","color":"$(label_color)","font":"$(label_font)"}',transformation:{scale:[$(label_scale)f,$(label_scale)f,$(label_scale)f],translation:[0f,0f,0f],left_rotation:[0f,0f,0f,1f],right_rotation:[0f,0f,0f,1f]}} + +$execute if score $(n) buttons matches -1 run scoreboard players set $(n) buttons 0 + +# ---- 상시: interaction 클릭/타격 → playsound + 명령/투표 실행 ---- +# init main = 0 (퀴즈 시작 전 설정 단계) : 명령 직접 실행 +# 그 외 : trigger 투표 경로 +# 한 버튼에 interaction 3개지만 `on target` 은 클릭된 1개만 통과 +# (나머지는 target 부재로 체인 중단). limit=1 을 두면 MC 가 임의로 1개를 +# 골라 잘못된 entity 만 검사하므로 limit 두지 않음. +$execute as @e[type=minecraft:interaction,tag=mq,tag=$(n)] on target as @s positioned $(x) $(y) $(z) run playsound minecraft:block.stone_button.click_on block @s ~ ~ ~ 1 1 +$execute as @e[type=minecraft:interaction,tag=mq,tag=$(n)] on target as @s positioned $(x) $(y) $(z) if score init main matches 0 run $(c) +$execute as @e[type=minecraft:interaction,tag=mq,tag=$(n)] on target as @s positioned $(x) $(y) $(z) unless score init main matches 0 run trigger $(n) + +# ---- 처리 후 attack/interaction NBT 클리어 (다음 tick 중복 발화 방지) ---- +$execute as @e[type=minecraft:interaction,tag=mq,tag=$(n)] at @s run data remove entity @s attack +$execute as @e[type=minecraft:interaction,tag=mq,tag=$(n)] at @s run data remove entity @s interaction diff --git a/temp/data/mq/function/repeat/buttons/btn_prep.mcfunction b/temp/data/mq/function/repeat/buttons/btn_prep.mcfunction new file mode 100644 index 0000000..8b0a101 --- /dev/null +++ b/temp/data/mq/function/repeat/buttons/btn_prep.mcfunction @@ -0,0 +1,13 @@ +# 한 button entry 의 optional 필드 기본값을 채워 macro 호출 시 $(arg) 미존재 +# 에러를 방지한다. handler 에서 entry 복사 직후 호출. +# +# label : 없으면 "" (빈 문자열) -> btn 안의 text_display 분기는 label +# 이 "" 이면 스킵. +# label_color : 기본 "black" +# label_font : 기본 "minecraft:default" +# label_scale : 기본 "1.0" (Vector3f 의 한 축, 3축 동일하게 사용됨) + +execute unless data storage mq:tmp btn.label run data modify storage mq:tmp btn.label set value "" +execute unless data storage mq:tmp btn.label_color run data modify storage mq:tmp btn.label_color set value "black" +execute unless data storage mq:tmp btn.label_font run data modify storage mq:tmp btn.label_font set value "minecraft:default" +execute unless data storage mq:tmp btn.label_scale run data modify storage mq:tmp btn.label_scale set value "1.0" diff --git a/temp/gif.png b/temp/gif.png deleted file mode 100644 index 1a6e63fecf4e75109520d33c72fc9e316ec9b3bd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 4753 zcmZXYc|25Y|HseFnK5IXAtcKzh!#mya@)p`JxxmXC6qO^-Ig>ChNQBT%94yM>9$sO zl_iv-A+nTZWEo4gjFj~mxx4S@_x!GZt~2wx&N;97e7@J``@ZHH#ms=8N1O)$0DdDw zJ#)@X0ss&|b8)T`dQR;H03jzfWSC24oMLe#M0AAoR{+ zv$|D%_`Y+XefiG*=^8`5_1gemD|+XV+UhWsg}e8Ym2(}kklz`velT(13N1Xf8$ z3 zrRpwamiXi~1B{!remvPR!*$18mIl_D`4-`hy$a~mBJDhEfbNb zCndgZfu*&{+MJJfUr1&3T(fkxM8;{a3ygxx_Gg3>?Saf2?~(G7IisjLC9{^e0~+lT z-p&glqi4HHnw~ZrNf-vEOCFIKR5O+(>Yr=+!B>AF#c;L4{;9Dq)GbjK`-pF@uqp8UV@YU{ zYZ=!AXk7X%NrbQ)o@|U(mXhyHEr7WB2>|Hnm3Eh(+bH+0K6lQKojULlZ9f-ySV_N? z$3J-`*)Ysft~#5{e2ejt;g;rpC_MtJn< zANMz(PAUYKVAuP%Ey0@inzdpKB`~YN`qDLzGsV^cb#-9k&i$7L#6K(b-^!o~nPBg` zPJBbFk(}BvQCc$)6*xu8zD5qQu4K%1n@@IV}j3YB?zh_Cd{w zjzJVnewf25aMst#yNYV4`Gqx58%!bV5>m86+;_}*McA)G0O3oZdC)S-a8 z(m%NA#BafW&3$|!r=w4b{dQsN9l9vjTc?&J|LU?Y{IgL11)%&DI%$&Npp8d5;CA z#ZUFlHGy9T4n4#aEj-s8d`h6a=C&9?2*Fd zS9IOXF5%((YTm))CL|rcY}0KkQI1vHj)V;;9g?Qk+(E6KlQ>%))_5jT=Z2R;mMe=` zt+1$Vf+uu8j_z>^5#6e~JC>1Pz9sj04n%(Y=3jacL71T6(0-${3HNl3o%(8+HapBR!sid z;6OY7fKB>C!HI^cIoLIa3#2ljd$V^*P?Nmr@R7Da&&s~v|U>l*#j z@z`O3@0oZfP3JAb0stLPA!*lSG5jCn=_L*l#k$%gIh?P#c8z%2{RXKe7&&kJ$Jt3# zPO5y%Oe?0Sv8p2UxHjEXq)6z{!P}T2&O()bzGRyD?pM0npF24_($p*58MuKzcH`Uo zzwk~aF!MhEw*_!CW$n)kP21RooLW}2%**L1-FEC!gTk|~Vo5RxVB$}QeEwl5=lQ=jzCLo zLK~|5r_5c+lt+wM{FBQ~K@oqF1OdA~sKdMTsRngVRiDcruqQ0!0if}yLX$$_&O8Zh zFLu!SN3X6bT@p~0=oUu)G6WJe=t|p?r`C!po>-b*yfp~?-(GBI9!5cO2MmJ%~sz^b7uc+;NM=Lkb`H& zG`$J7Sq%gd*`UI+11Yqv#AB6%lurSrSihZYa!&ga?7;Z^b^Woub0u5j> zBDW`gGtpJrSS6jyRvCiH!AF)fYRY0o{URhC+|FD>=l+Z8%HTj+bG;C z!dGmAD`#|1e5h~oy(fuw)byDmkPt*!IHn_r9gd%rL_xw1J5W~7qub`?Ic@4ASm484e+mPj}5 z=-DD%X2brOu>?3za%szq&1)-t%3yTm!uKr&kFj1jrG5kKTfv0a5~kSf;}2%}Fa+bL z4XdZ-o6MLyaUr`yxpDl%)}-3I`3EC>d%wq z!Gm{PTq{4uY8-7pYIsWQ9{VT1FU7be)1$01!7!>}0X*;jXT9ULRVZIG;^7jEDmgDJ z-sBumvI_MCT-C>?HXtIXGtI1N*%o!O0UPGbkXYp#Yacuw`J+n`OW|#yHp|TRGmrDX z>x&3d06P21AQGCw`d#Owo7tHk8Qc#sB=m39|Nks0<}Z5c6pXNVrCb#C9Z_Mw?&APp zn88ofM}f{=eg=nk(E#yZZJES7^p{XHC~A}RGgrXYJsVSQ+$Bb&j1;<3dTCL1;3_bN zB5BjT(fc_;&)v>DT3(3vgUIb>ctRP*sZ@KJ9q6U8*z-zZ33gS#P9kijmVCA7+Zd`f zR5fjwU>r4Eu{p&FCLroZjzXiF zKb|59JY1P7kP(NwEeb}Dp|E=nAi5ilifz?juo=`bQ?`3=i6byS|`B4N&=CtTtoMy0L62%|Mg&~Q!yFK@;c#(^7TF3m# zJ@4Hp$&cJh5-XbTB%`8bGxhhtBF-B{66i{?Tu5Pu6Uuul?kN5j{1_?y7yKko$pg6cY%0=1(EVb54mq_FvkpZ;I`Ly$gsl@Pov zs*dFY=TT^KSb6E(I7-tw0*mNUW(d$;mYiMYh=3vZYw$0>II8Vy6l;=JivQb9} z=gk#NmhGf7PoMoTii7iHabTCq_w5#(r)3dlGm}y5w!Oj}&SP*9Ui!dIr|4O!rCzPr zGsEa!3;NdwPT6Ac&-2M3lMD2{xhZZ<(z!(jCY?_jA!d(vyGcZB1phDLlO-N&L`b%_ z=Uv5xquAoh_CVYPoHCidwJcUs05eAXc_{@vU)=aN&Jr&Y`v)rlADQhKtV=>9HF^TES=-DtFHVPWrSY;sDu+4{ ztB~gs%vovWbZZtPr7T9i)>llj4a0m39%h5ZonGO%e7usG>D;h_mW?)PYWVxXOgtr< z$6WVJahNe;cm`x<+idg47$O1 zi?g&`d3{MS7!~DkcRAz)zUFBI%g8eN{rUS|9w^f*%|@KWyv-_OgDWbppYiggM80X- z*R0`DlH7nieNcGbTqv;EX6HyVZUMjOv7kV7@|a6m0@}&V-V|`+0%h9wm!d(M{B~-7Q7%4i4D4MIG>K_xXT6T?ev$B!tWHM*1wJIt zgSOT<4&|@sXptrYjdv z5N;?9n89(xtcmgA$3eShNtmL7nUJgh(;Hj6nTlOGnklmhsP?E%>Ee?lF*5w&&;?u?jxPAcu$^kqj}}` z6ze$@#2Yl?k2Ig#E;li$*y&D_bG)s^=;XniQ9k5(u_lKQ|LKC%a!}UTyvpU3JZjCC zpus))+UHde=cD6Oa*y#nJvCTvIeriiVrJM7cfN_>LHWpq;ZhG+RF dbIAVzVjU#w^*7zwtJ<-#%;>P0UIE!D>_18{3xWUu diff --git a/temp/gif.png.mcmeta b/temp/gif.png.mcmeta deleted file mode 100644 index f2c5c2b..0000000 --- a/temp/gif.png.mcmeta +++ /dev/null @@ -1,6 +0,0 @@ -{ - "animation": { - "frametime": 1, - "interpolate": false - } -}