From 73b9e83b9f7ebd524f3d16287aa250806cc745ec Mon Sep 17 00:00:00 2001 From: Sebastian Hartte Date: Sat, 10 Sep 2016 17:36:33 +0200 Subject: [PATCH] Added block models for debug blocks. Fixes #6. --- .../blockstates/debug_chunk_loader.json | 7 +++++++ .../blockstates/debug_cube_gen.json | 7 +++++++ .../blockstates/debug_item_gen.json | 7 +++++++ .../blockstates/debug_phantom_node.json | 7 +++++++ .../models/block/debug/chunk_loader.json | 6 ++++++ .../models/block/debug/cube_gen.json | 6 ++++++ .../models/block/debug/item_gen.json | 6 ++++++ .../models/block/debug/phantom_node.json | 6 ++++++ .../textures/blocks/debug/chunk_loader.png | Bin 0 -> 1088 bytes .../textures/blocks/debug/cube_gen.png | Bin 0 -> 1132 bytes .../textures/blocks/debug/item_gen.png | Bin 0 -> 1064 bytes .../textures/blocks/debug/phantom_node.png | Bin 0 -> 1093 bytes 12 files changed, 52 insertions(+) create mode 100644 src/main/resources/assets/appliedenergistics2/blockstates/debug_chunk_loader.json create mode 100644 src/main/resources/assets/appliedenergistics2/blockstates/debug_cube_gen.json create mode 100644 src/main/resources/assets/appliedenergistics2/blockstates/debug_item_gen.json create mode 100644 src/main/resources/assets/appliedenergistics2/blockstates/debug_phantom_node.json create mode 100644 src/main/resources/assets/appliedenergistics2/models/block/debug/chunk_loader.json create mode 100644 src/main/resources/assets/appliedenergistics2/models/block/debug/cube_gen.json create mode 100644 src/main/resources/assets/appliedenergistics2/models/block/debug/item_gen.json create mode 100644 src/main/resources/assets/appliedenergistics2/models/block/debug/phantom_node.json create mode 100644 src/main/resources/assets/appliedenergistics2/textures/blocks/debug/chunk_loader.png create mode 100644 src/main/resources/assets/appliedenergistics2/textures/blocks/debug/cube_gen.png create mode 100644 src/main/resources/assets/appliedenergistics2/textures/blocks/debug/item_gen.png create mode 100644 src/main/resources/assets/appliedenergistics2/textures/blocks/debug/phantom_node.png diff --git a/src/main/resources/assets/appliedenergistics2/blockstates/debug_chunk_loader.json b/src/main/resources/assets/appliedenergistics2/blockstates/debug_chunk_loader.json new file mode 100644 index 000000000..917e9d3bf --- /dev/null +++ b/src/main/resources/assets/appliedenergistics2/blockstates/debug_chunk_loader.json @@ -0,0 +1,7 @@ +{ + "variants": { + "normal": { + "model": "appliedenergistics2:debug/chunk_loader" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/appliedenergistics2/blockstates/debug_cube_gen.json b/src/main/resources/assets/appliedenergistics2/blockstates/debug_cube_gen.json new file mode 100644 index 000000000..4ff64c8cf --- /dev/null +++ b/src/main/resources/assets/appliedenergistics2/blockstates/debug_cube_gen.json @@ -0,0 +1,7 @@ +{ + "variants": { + "normal": { + "model": "appliedenergistics2:debug/cube_gen" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/appliedenergistics2/blockstates/debug_item_gen.json b/src/main/resources/assets/appliedenergistics2/blockstates/debug_item_gen.json new file mode 100644 index 000000000..93ea41751 --- /dev/null +++ b/src/main/resources/assets/appliedenergistics2/blockstates/debug_item_gen.json @@ -0,0 +1,7 @@ +{ + "variants": { + "normal": { + "model": "appliedenergistics2:debug/item_gen" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/appliedenergistics2/blockstates/debug_phantom_node.json b/src/main/resources/assets/appliedenergistics2/blockstates/debug_phantom_node.json new file mode 100644 index 000000000..fddad4981 --- /dev/null +++ b/src/main/resources/assets/appliedenergistics2/blockstates/debug_phantom_node.json @@ -0,0 +1,7 @@ +{ + "variants": { + "normal": { + "model": "appliedenergistics2:debug/phantom_node" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/appliedenergistics2/models/block/debug/chunk_loader.json b/src/main/resources/assets/appliedenergistics2/models/block/debug/chunk_loader.json new file mode 100644 index 000000000..f8738a7bb --- /dev/null +++ b/src/main/resources/assets/appliedenergistics2/models/block/debug/chunk_loader.json @@ -0,0 +1,6 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "appliedenergistics2:blocks/debug/chunk_loader" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/appliedenergistics2/models/block/debug/cube_gen.json b/src/main/resources/assets/appliedenergistics2/models/block/debug/cube_gen.json new file mode 100644 index 000000000..815f8a991 --- /dev/null +++ b/src/main/resources/assets/appliedenergistics2/models/block/debug/cube_gen.json @@ -0,0 +1,6 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "appliedenergistics2:blocks/debug/cube_gen" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/appliedenergistics2/models/block/debug/item_gen.json b/src/main/resources/assets/appliedenergistics2/models/block/debug/item_gen.json new file mode 100644 index 000000000..12ce92fab --- /dev/null +++ b/src/main/resources/assets/appliedenergistics2/models/block/debug/item_gen.json @@ -0,0 +1,6 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "appliedenergistics2:blocks/debug/item_gen" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/appliedenergistics2/models/block/debug/phantom_node.json b/src/main/resources/assets/appliedenergistics2/models/block/debug/phantom_node.json new file mode 100644 index 000000000..e0ab225b5 --- /dev/null +++ b/src/main/resources/assets/appliedenergistics2/models/block/debug/phantom_node.json @@ -0,0 +1,6 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "appliedenergistics2:blocks/debug/phantom_node" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/appliedenergistics2/textures/blocks/debug/chunk_loader.png b/src/main/resources/assets/appliedenergistics2/textures/blocks/debug/chunk_loader.png new file mode 100644 index 0000000000000000000000000000000000000000..ae84ed286b0bcca177548a8f0e2081e0cc6ad008 GIT binary patch literal 1088 zcmeAS@N?(olHy`uVBq!ia0y~yU{C;I4kiW$hCdQ-7c($0NS3%plmzFem6RtIr7}3C zq^+(JYh$Hdy(!P=?hpmRaCg9FeyG| zd@=C>tHyalUXdeZIqpmkHNL&P6rfzeXf=>dS|?9p^+3o33a6BU4xXdcVs-`Gp>W(OeT(@E=)`rKzwhbjGD=Zd@;P_pYu` z{ay4wQ{CbEWB>h{9d^6^xc(?D{P*Ho;gbl#JId}|m&?QJ_gdW9c%a~nQ=Q(jwG2V; z8m;-XT&6SS6uq6r(V_CupX=D0Kh2BSxVHog6&bZ{&XLULW9nSh6|k&X>do`CRrgK5 zzvUKK@m$PVFj+I;HtXTYL)#MV8N^c3R&n%fyYA4ymFm|O)a7zuUxXgRitXGBS172? zdUVsX*~FCb*K)5pdn_+5J@(=rLz%~$J)-{)+Ucu)ueR1-OtN2bSwipm0i&`cbBmsGb0PXV`}r9sO`&_b36ZOdb=cCzUj<5=f#sY;rX2AV(!&fBNKTO zYYh)5T48>)7rT+bn%{jk$zou;jELVLSTvWb2@5WeX}%$aFB_a-fNTpb|& z!0~d^@4iRcGDpK$uV|-e)w14L5~<(4Xe*cZysuSnGcPDT4m$emkJuCa&p&_3h`ycq z*z&AJ&PBmT`?@WTDk#h?l71a`wBo>uo^{+)+GbjPzreKmiP>}cD?4xGT$pFZ#TZs{ znrm^)7ekxbJEc{3-8dleRQS7gWYNn-6SkNBEiziU{q`mG*STxiOJn`jgkLO_VBL0G z>gU2QCug2H+O)6xgQ1H(_fpl4>z_aV*s(Jw=C0y>J5n?2e{QPLs8zsrk5@+s8 zhELBUFHH~Dn7_+t28YJehRg?(HplKZ3}}>d&<%)bHF&8e(WBPcI)y*-ds(VRq_WA3 zHzv9NmlP`W+g&qa3N)85y~zi$kP>|gYJ=Gn$;HEsuz z6-s*i`|b3XO}unt;{9I727c?vFY^A^>scij0zP#9*}!aN$iTqB;OXk;vd$@?2>{Ny B__F{2 literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/appliedenergistics2/textures/blocks/debug/cube_gen.png b/src/main/resources/assets/appliedenergistics2/textures/blocks/debug/cube_gen.png new file mode 100644 index 0000000000000000000000000000000000000000..c894822483231e3a0546e0c62569c40ed1e411d6 GIT binary patch literal 1132 zcmeAS@N?(olHy`uVBq!ia0y~yU{C;I4kiW$hCdQ-7c($0NS3%plmzFem6RtIr7}3C z@w#eRMQhci& zpm>lw;K;_wzCj8{_x1f3%HP`eSaqR$iHOH z#?R+j))${E@2~lHbNNH(J_)-I6~~UBjt{TsV)+xY$R$tJW#T&}H{;V{S<%tn_q@)F zm7O{#b@#@-{XbTPCOqz*|8LTQZ<`xEf3#Tr$>E;Wugr(-K)Ho*IET6cm*$7 zxcK9XXV2Q6Tznz)T4;kqzQ78ng>4JInu*@jWY2uX^~PSVfBpLPg5q2EZdNy4B$@u+ z{qe@zfgLHgSFV3O&Dkm6pYdHo`rA#GXI5;9(Ay+6yVCfE+2pjH5hlLLHItV`O2psW zCGxnlU6D)BFS|7U&Z$T0K4~ICSI#{999GB?9zOZZvv!+vpIpS2t~ubJrPp{f$8PSq z7h$4|wVkI5wS1Nbi?!T#``yL9ac_!wka~Fd=bLv9=Npx6DRl4r{PT{u_4JJFu4Q&H z@w3jS)v=We6vvi0P3a00i|5vS>1%AbiM4!V%&nf^$7L(-h*zvGWB2~>TlN5R`LYTH zm&@V%_g3%wtNdivr6>v6hyn?xW2?7B2zm8+b&JH*egE1&e@~X}hC{cP9$9fMSatd5 zF3$khtE+Uf-^`Fx``)RO6c8vhw@Z^R^s`2I_p6{YaVO>`S)Wn*+?e@1Y)RgNOTvv_ zY<8*vQ~Xvea*xt|t`U?c+k)0Iq<8oBM<;~dx|8>&uzP02%2YwV3nGe4CTd|NZL-swZ`s&dZoPZ=?%kFB z!qF4hMQ-PrNH4pvpnro$Rmb8_+?>~$^HYESwf@A@?mT<@ZQboI%O9ScaC0t4ub07> zH8;Z>{6jTv#x`Ew!PcByU0+}CKbgJRG2=7m1r^pQ-}YJlR_rpovm42L?e8f{nZmyOOaHGPA2E5Z z0PnRwYd8G<^nL#27vgPN70;(!o+<0YD$vOBQY<%jLQATz#ijoHX5Y`pziGUCf2XX* zT7ILrC2#w0y|>%mx$DBRmL37ETZ|j^#617JIBTB4?OUS1DDaEjh3r-CR?q?k?f3Um2{mA%<{epo4oqT~V6Mt}p zczj^hc=z<*4zOYrZf4V(adAzw*tG*Y|$kf9pHtjo_&%wO*RSTV2i-aJM9I%{n!O zO<@C9_QCcW_siwJu^H6;d@ZbcusN~*NxpG9|FUDskGpKbECR<`>SUvd4lUWLM_Xi z-|lY9$~LXN>cGcbkYrNzG0DWpzS2Z$qrsv}jE~)Jh;Os^^ZOyb?Zzvnuw-e$11mO_ zI=p%EV@ccT+9!`#OpX6mKAUtTuglVJcC`Ro%x)p|46+OJEDU@BgGc>z2BQ;rEj{8GRRS zbDX&N<)3|b^mO^4mzpbkCrU*GNLDnB&oNyOAy zS^CxYS9rBa^5z;FH|(FQ8!B?~+7_`j-ntV4FKS=iVwCg#=s}eQy7?wi-*{Gu-%;z@ zuEModxU=XjU#Q%~mh|4nH31J#DBPcxefnnf1(_I)LbJuPuX;*X%+r0&Xt!_Q z4hCBpzOCvSvb^n&+GS3+)_!7SthiG&C-Sq#%QTj0N}YaT{b5IKe>~pB$IoxzkRX*& zSWv)GmwN57Ltc^~Z&b^{FkLb3`S0Gpw=S&Q`9g93w!L%BL!@u))eha9=WuNUN9N7j zx1;r@_c5MhS2xYr%o?!z>ax)%>kxbRv%HLI^Moa?r?^xx}OynbD9x!aTQ zK>c0b^}Rcf?I^0dUV0+u`rEkp{X2JYJzHl|q3(OHWzqBN2j3mspa1j6+~ry?&#s)Z z`F;YE!xt$*dCdh%tJEHN)Y-`E=iiNF-hKY$dhM^T7Ef3xK4FLa*XR5EZ|2@KRTXU! zn8bD@N@vlZ!}9%aqd2ZM=ZL%RW!L(_Gv~dy)8iX&FTU%3>b3IKiEC-z3`ZY2|Nnja et2iSY!#obA)#^_cyklTsVDNPHb6Mw<&;$U_VEq*U literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/appliedenergistics2/textures/blocks/debug/phantom_node.png b/src/main/resources/assets/appliedenergistics2/textures/blocks/debug/phantom_node.png new file mode 100644 index 0000000000000000000000000000000000000000..26c96d7d97b30a7b7ff0e2c51ade28b6990d0dd4 GIT binary patch literal 1093 zcmeAS@N?(olHy`uVBq!ia0y~yU{C;I4kiW$hCdQ-7c($0NS3%plmzFem6RtIr7}3C zq^+(JZX1&Esu{ufLmLyeFBb!o+N&qO`Mc^7ITT}Hho_RRV7{>F$#{C;_Ozu^koYZqMiE#&LpDA6qu`gB)^073wd{zCUv|oK))RH+*>C>LO={CvyIE84a?80-&o-%Qn9kCa z`fM{x@yEM>jo0p$#~*z8(zEb-(mO><$@%A=bI;&CS~9K6c+umJ6&q(T^Svowv5Mtw ztiNMP%jTav!iQc~*vvlL5TRA18hBUV!I#&uyRz#|&t8+#xTDi%_;`8!y?JwHFGt6< z-y6>w+}by9;nq3L#{^q4H!NjXnILxa{??S&hf<7Y`YoUQnRDTs$#dsK=fC-qHH&?{ zT810TiHu)*P0OyYKYw!H&OJ+xc&jt8{^}7`V_=UyTYT%CmURF3=A6GrkFrWG{oCj4 z#H9X3@p53Nkw?(7tE*iE75hjl)->8{?*A`6e%)GSkM%hFG zh5xfcwR)4*XZ9yN6HN+uxNOR8CxJ-c@BePu#Qm4OG%rZ3W5PH4&q4}~I@h9viu#U4 zX?pzoclx(_wP<7Ro-hVGk4RCiId2~Jt!PMjbK${)1H0z_jtrTw=|sv)$pFLtBGc8+ z#N1CT*?jX?WQxQK$L&tL`X;f^sFZ}QG+#HE@>(_g3G!DD5<$TpaFA?tEj7{qo9}u~<{hIwE=2_d{-*c?%;=8A{ zc0%a6&z!lFv^^(xYCPR_O-Zj@xybU@+pDXep6xy4)UGZcI^~rp7+u z#c>9`AQp?|<+>J5*QTwzKKt?G$5*pl+t-J`zWCzCq3uz+xiZJ+%3re(s^)mquxzm! z$M*FPC1hpSn!kRs=*sDf86m4Kr)@S{`$vm~+tK%p;)B4cn`h@=EV|(Jz2(KUZHJo= zH|766^OALE=8I|zv-g%q-aUBm;M=!ts}(lu#GDdbd)85e<)*7uK#r@U&gYLWuFX34 zuwZ_}xAw!kcke#a_Hf_kYdJRFZHsGumTj#5_>*6T+!YCFO@39*Ukvsc(4D}PXDkK-IkNJSk5=Id$ry*lGBZQ6qT`v zo%hq3_l