{"id":33416,"date":"2026-06-01T18:36:47","date_gmt":"2026-06-01T15:36:47","guid":{"rendered":"https:\/\/vpesports.com\/minecraft\/mods\/boes-earth\/"},"modified":"2026-06-01T18:36:47","modified_gmt":"2026-06-01T15:36:47","slug":"boes-earth","status":"publish","type":"mod","link":"https:\/\/vpesports.com\/minecraft\/mods\/boes-earth\/","title":{"rendered":"Boe&#8217;s Earth"},"content":{"rendered":"<p># Boe&#8217;s Earth<\/p>\n<p>## Description<\/p>\n<p>Boe&#8217;s Earth is a mod that adds additional blockstated to couple of vanilla blocks.<br \/>\nThose blockstates may be later used by shaders or resourcepacks to improve visual fidelity.<\/p>\n<p>## Added blockstates<\/p>\n<p>&#8211; `is_on_leaves`:<br \/>\n  Added to **Snow**, **Vines** and **Carpets**<br \/>\n  Example usage (Bliss shader):<br \/>\n  &#8211; Snow on top of waving leaves will wave alongside the leaves<br \/>\n  &#8211; Vines supported by\/based on waving leaves will wave with them<\/p>\n<p>&#8211; `snow_on_top`:<br \/>\n  Added to **leaves**<br \/>\n  Example usage:<br \/>\n  &#8211; Leaves with snow on top will have different texture<\/p>\n<p>## FAQ<\/p>\n<p>**Q:** *Snow\/Vines\/Carpets are not waving*<br \/>\n**A:** *First make sure that your shader supports Boe&#8217;s Earth, e.g. `Bliss`.<br \/>\n&nbsp;&nbsp;&nbsp;&nbsp; Then, make sure their respective blockstates are enabled in the config.<br \/>\n&nbsp;&nbsp;&nbsp;&nbsp; At last, naturally generated blocks always have the custom blockstates disabled, they will however update with time.<br \/>\n&nbsp;&nbsp;&nbsp;&nbsp; If you want to speed up the updating process, increase the `randomTickSpeed` gamerule, and decrease it back after to its default `3`\/`5`*.<br \/>\n&nbsp;&nbsp;&nbsp;&nbsp; You can also force an update by placing\/destroying the blocks<\/p>\n<p>**Q:** *There is a lot of lag caused by this mod*<br \/>\n**A:** *You can disable some of the update logic in the config.<br \/>\n&nbsp;&nbsp;&nbsp;&nbsp; On neighbor update updates are the heavies one and can be tuned with max chain updates.<br \/>\n&nbsp;&nbsp;&nbsp;&nbsp; Random tick updates are the lighter and are connected to in-game `randomTickSpeed` gamerule*<\/p>\n<p>**Q:** *Forge version?*<br \/>\n**A:** *The mod should work with Sinytra Connector, though that is not a guarantee in the future*<\/p>\n<p>## Documentation<\/p>\n<p>The mods adds just another blockstates to existing blocks.<br \/>\nThe usage of those blockstates stays the same as for vanilla blockstates and any other blockstates added by different mods.<\/p>\n<p>Outside of that, the mod also adds an Iris shader define named `BOES_EARTH_BLOCKSTATES`.<br \/>\nIt can be used to add Boe&#8217;s Earth blockstates support to your shader without breaking compatibility with vanilla blockstates.<br \/>\nThat does **not** mean Boe&#8217;s Earth blockstates are incompatible with Optifine or other shader loaders, but there will be no way to knowing shader-side if the mod is present or not!<\/p>\n<p>### Example usage &#8211; shader<\/p>\n<p>Iris *(vanilla compatible)*:<br \/>\n&#8220;`properties<br \/>\n#ifdef BOES_EARTH_BLOCKSTATES<br \/>\nblock.56=minecraft:birch_leaves minecraft:acacia_leaves snow:is_on_leaves=true vine:is_on_leaves=true blue_carpet:is_on_leaves=true moss_carpet:is_on_leaves=true<br \/>\n#else<br \/>\nblock.56=minecraft:birch_leaves minecraft:acacia_leaves<br \/>\n#endif<br \/>\n&#8220;`<br \/>\n&#8220;`properties<br \/>\n#ifdef BOES_EARTH_BLOCKSTATES<br \/>\n#define boes_on_leaves = snow:is_on_leaves=true vine:is_on_leaves=true blue_carpet:is_on_leaves=true moss_carpet:is_on_leaves=true<br \/>\n#endif<\/p>\n<p>block.56=minecraft:birch_leaves minecraft:acacia_leaves boes_on_leaves<br \/>\n&#8220;`<\/p>\n<p>Other shader loaders *(**not** vanilla compatible)*:<br \/>\n&#8220;`properties<br \/>\nblock.56=minecraft:birch_leaves minecraft:acacia_leaves snow:is_on_leaves=true vine:is_on_leaves=true blue_carpet:is_on_leaves=true moss_carpet:is_on_leaves=true<br \/>\n&#8220;`<\/p>\n<p>### Example usage &#8211; resourcepack<\/p>\n<p>&#8220;`json<br \/>\n{<br \/>\n  &#8220;variants&#8221;: {<br \/>\n    &#8220;layers=1,is_on_leaves=false&#8221;: {<br \/>\n      &#8220;model&#8221;: &#8220;minecraft:block\/snow_height2&#8221;<br \/>\n    },<br \/>\n    &#8220;layers=2,is_on_leaves=false&#8221;: {<br \/>\n      &#8220;model&#8221;: &#8220;minecraft:block\/snow_height4&#8221;<br \/>\n    },<br \/>\n    &#8220;layers=1,is_on_leaves=true&#8221;: {<br \/>\n      &#8220;model&#8221;: &#8220;minecraft:block\/snow_on_leaves_height2&#8221;<br \/>\n    },<br \/>\n    &#8220;layers=2,is_on_leaves=true&#8221;: {<br \/>\n      &#8220;model&#8221;: &#8220;minecraft:block\/snow_on_leaves_height4&#8221;<br \/>\n    }<br \/>\n  }<br \/>\n}<br \/>\n&#8220;`<br \/>\nOr<\/p>\n<p>&#8220;`json<br \/>\n{<br \/>\n  &#8220;multipart&#8221;: [<br \/>\n    {<br \/>\n      &#8220;when&#8221;: { &#8220;AND&#8221;: [<br \/>\n        {&#8220;layers&#8221;: &#8220;1&#8221; },<br \/>\n        {&#8220;is_on_leaves&#8221;: false }<br \/>\n      ]},<br \/>\n      &#8220;apply&#8221;: { &#8220;model&#8221;: &#8220;minecraft:block\/snow_height2&#8221; }<br \/>\n    },<br \/>\n    {<br \/>\n      &#8220;when&#8221;: { &#8220;AND&#8221;: [<br \/>\n        {&#8220;layers&#8221;: &#8220;2&#8221; },<br \/>\n        {&#8220;is_on_leaves&#8221;: false }<br \/>\n      ]},<br \/>\n      &#8220;apply&#8221;: { &#8220;model&#8221;: &#8220;minecraft:block\/snow_height4&#8221; }<br \/>\n    },<br \/>\n    {<br \/>\n      &#8220;when&#8221;: { &#8220;AND&#8221;: [<br \/>\n        {&#8220;layers&#8221;: &#8220;1&#8221; },<br \/>\n        {&#8220;is_on_leaves&#8221;: true }<br \/>\n      ]},<br \/>\n      &#8220;apply&#8221;: { &#8220;model&#8221;: &#8220;minecraft:block\/snow_on_leaves_height2&#8221; }<br \/>\n    },<br \/>\n    {<br \/>\n      &#8220;when&#8221;: { &#8220;AND&#8221;: [<br \/>\n        {&#8220;layers&#8221;: &#8220;2&#8221; },<br \/>\n        {&#8220;is_on_leaves&#8221;: true }<br \/>\n      ]},<br \/>\n      &#8220;apply&#8221;: { &#8220;model&#8221;: &#8220;minecraft:block\/snow_on_leaves_height4&#8221; }<br \/>\n    }<br \/>\n  ]<br \/>\n}<br \/>\n&#8220;`<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Blockstates extension for shaders and resourcepacks<\/p>\n","protected":false},"featured_media":33417,"template":"","meta":{"_minecraft_slug":"boes-earth","_minecraft_project_id":"ZD9NcIKj","_minecraft_author":"Miki-Liki","_minecraft_license":"Apache-2.0","_minecraft_downloads":748,"_minecraft_follows":3,"_minecraft_client_side":"required","_minecraft_server_side":"required","_minecraft_storage_type":"zip","_minecraft_archive_name":"boes-earth.zip","_minecraft_size_bytes":726565,"_minecraft_version_count":12,"_minecraft_updated_at":"2026-05-15T22:27:10.751650Z","_minecraft_date_created":"2024-11-19T02:01:32.639888Z","_minecraft_date_modified":"2024-12-06T23:16:38.264232Z","_minecraft_project_url":"https:\/\/modrinth.com\/mod\/boes-earth","_minecraft_icon_attachment_id":33417,"_minecraft_imported_at":"2026-06-01T15:36:48+00:00","_minecraft_import_hash":"fc9b3b60378761acc3cedab5a32f6d9b","_minecraft_versions":"","_minecraft_links":"","_minecraft_gallery":"","_minecraft_api_metadata":""},"mod_category":[87,156,97,122],"mod_loader":[99],"minecraft_version":[36,60,93,94,101,102,37],"class_list":["post-33416","mod","type-mod","status-publish","has-post-thumbnail","hentry","mod_category-adventure","mod_category-decoration","mod_category-fabric","mod_category-magic","mod_loader-fabric","minecraft_version-1-20-1","minecraft_version-1-20-2","minecraft_version-1-20-3","minecraft_version-1-20-4","minecraft_version-1-20-5","minecraft_version-1-20-6","minecraft_version-1-21-1"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Boe&#039;s Earth - Minecraft<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/vpesports.com\/minecraft\/mods\/boes-earth\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Boe&#039;s Earth - Minecraft\" \/>\n<meta property=\"og:description\" content=\"Blockstates extension for shaders and resourcepacks\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vpesports.com\/minecraft\/mods\/boes-earth\/\" \/>\n<meta property=\"og:site_name\" content=\"Minecraft\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/boes-earth\\\/\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/boes-earth\\\/\",\"name\":\"Boe's Earth - Minecraft\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/boes-earth\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/boes-earth\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/boes-earth-icon-bb1ea5bdf690a698cccb32c9a15636958fff411b_96.webp\",\"datePublished\":\"2026-06-01T15:36:47+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/boes-earth\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/boes-earth\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/boes-earth\\\/#primaryimage\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/boes-earth-icon-bb1ea5bdf690a698cccb32c9a15636958fff411b_96.webp\",\"contentUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/boes-earth-icon-bb1ea5bdf690a698cccb32c9a15636958fff411b_96.webp\",\"width\":96,\"height\":96},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/boes-earth\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Mods\",\"item\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Boe&#8217;s Earth\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/\",\"name\":\"Minecraft\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Boe's Earth - Minecraft","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/vpesports.com\/minecraft\/mods\/boes-earth\/","og_locale":"en_US","og_type":"article","og_title":"Boe's Earth - Minecraft","og_description":"Blockstates extension for shaders and resourcepacks","og_url":"https:\/\/vpesports.com\/minecraft\/mods\/boes-earth\/","og_site_name":"Minecraft","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/vpesports.com\/minecraft\/mods\/boes-earth\/","url":"https:\/\/vpesports.com\/minecraft\/mods\/boes-earth\/","name":"Boe's Earth - Minecraft","isPartOf":{"@id":"https:\/\/vpesports.com\/minecraft\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/boes-earth\/#primaryimage"},"image":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/boes-earth\/#primaryimage"},"thumbnailUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/boes-earth-icon-bb1ea5bdf690a698cccb32c9a15636958fff411b_96.webp","datePublished":"2026-06-01T15:36:47+00:00","breadcrumb":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/boes-earth\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vpesports.com\/minecraft\/mods\/boes-earth\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vpesports.com\/minecraft\/mods\/boes-earth\/#primaryimage","url":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/boes-earth-icon-bb1ea5bdf690a698cccb32c9a15636958fff411b_96.webp","contentUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/boes-earth-icon-bb1ea5bdf690a698cccb32c9a15636958fff411b_96.webp","width":96,"height":96},{"@type":"BreadcrumbList","@id":"https:\/\/vpesports.com\/minecraft\/mods\/boes-earth\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/vpesports.com\/minecraft\/"},{"@type":"ListItem","position":2,"name":"Mods","item":"https:\/\/vpesports.com\/minecraft\/mods\/"},{"@type":"ListItem","position":3,"name":"Boe&#8217;s Earth"}]},{"@type":"WebSite","@id":"https:\/\/vpesports.com\/minecraft\/#website","url":"https:\/\/vpesports.com\/minecraft\/","name":"Minecraft","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/vpesports.com\/minecraft\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod\/33416","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod"}],"about":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/types\/mod"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media\/33417"}],"wp:attachment":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media?parent=33416"}],"wp:term":[{"taxonomy":"mod_category","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_category?post=33416"},{"taxonomy":"mod_loader","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_loader?post=33416"},{"taxonomy":"minecraft_version","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/minecraft_version?post=33416"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}