{"id":102873,"date":"2026-06-06T00:55:06","date_gmt":"2026-06-05T21:55:06","guid":{"rendered":"https:\/\/vpesports.com\/minecraft\/mods\/mining_and_placing_animations\/"},"modified":"2026-06-06T00:55:06","modified_gmt":"2026-06-05T21:55:06","slug":"mining_and_placing_animations","status":"publish","type":"mod","link":"https:\/\/vpesports.com\/minecraft\/mods\/mining_and_placing_animations\/","title":{"rendered":"Mining &#038; Placing Animations"},"content":{"rendered":"<p>![Banner](https:\/\/cdn.modrinth.com\/data\/cached_images\/0c0de9c3ed785164515eaa61ed902e3a2b338a6c.png)<\/p>\n<p># Animated Blocks<\/p>\n<p>Blocks will now have an animation when mined and placed!<\/p>\n<p>| Mining Animation | Placing Animation (only in 2.0.0+) |<br \/>\n|&#8212;|&#8212;|<br \/>\n| ![Mining Animation](https:\/\/media1.giphy.com\/media\/v1.Y2lkPTc5MGI3NjExODA1enl6dXllaXhzc2NiNDF6YjcycTJma3Q4OHpjZmRsM3V5a2IxcSZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw\/pMn2D4FnyJlPTlbeUz\/giphy.gif) | ![Placing Animation](https:\/\/media1.giphy.com\/media\/v1.Y2lkPTc5MGI3NjExZTZhajF1bzZhMG5udzdwdHRhYndnemlveWF6YnZ5NnFxODM2aXJvdyZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw\/fqCrxodEBlL8SPEhtA\/giphy.gif) |<\/p>\n<p>## Customization<\/p>\n<p>The animations are fully customizable via resource packs.<\/p>\n<details>\n<summary>example<\/summary>\n<p>![Resource Pack Tree](https:\/\/cdn.modrinth.com\/data\/cached_images\/67d15ceae8f70e1409a5bc334d81ae1fbef93a9d.png)<\/p>\n<p>**animations_config.json**:<br \/>\n&#8220;`json<br \/>\n{<br \/>\n  &#8220;global&#8221;: {                 \/\/ all the blocks will have these animations by default<br \/>\n    &#8220;mining_animation&#8221;: &#8220;mining_and_placing_animations:animations\/global_mining_animation&#8221;,<br \/>\n    &#8220;placing_animation&#8221;: &#8220;mining_and_placing_animations:animations\/global_placing_animation&#8221;<br \/>\n  },<br \/>\n  &#8220;specific&#8221;: [               \/\/ you can set a specific animation for certain block(s)<br \/>\n    {<br \/>\n      &#8220;blocks&#8221;: [<br \/>\n        &#8220;minecraft:dirt&#8221;,<br \/>\n        &#8220;minecraft:stone&#8221;,<br \/>\n        &#8220;#minecraft:slabs&#8221;    \/\/ you can use tags<br \/>\n      ],<br \/>\n      &#8220;mining_animation&#8221;: &#8220;mining_and_placing_animations:animations\/dirt_mining_animation&#8221;,<br \/>\n      &#8220;placing_animation&#8221;: &#8220;mining_and_placing_animations:animations\/dirt_placing_animation&#8221;<br \/>\n    },<br \/>\n    {<br \/>\n      &#8220;blocks&#8221;: [<br \/>\n        &#8220;minecraft:cobblestone&#8221;<br \/>\n      ],<br \/>\n      &#8220;mining_animation&#8221;: &#8220;mining_and_placing_animations:animations\/cobblestone&#8221;  \/\/ if you don&#8217;t put a &#8216;placing_animation&#8217;, it will take the global placing animation, same for the mining animation<br \/>\n    }<br \/>\n  ],<br \/>\n  &#8220;mining_blacklist&#8221;: [<br \/>\n    &#8220;#minecraft:beds&#8221;,        \/\/ you can use tags<br \/>\n    &#8220;#minecraft:doors&#8221;,<br \/>\n    &#8220;minecraft:oak_planks&#8221;,<br \/>\n  ],<br \/>\n  &#8220;placing_blacklist&#8221;: [<br \/>\n    &#8220;#minecraft:pressure_plates&#8221;,<br \/>\n    &#8220;minecraft:rail&#8221;,<br \/>\n    &#8220;minecraft:snow_block&#8221;<br \/>\n  ]<br \/>\n}<br \/>\n&#8220;`<\/p>\n<p>The animation files have to be under the directory &#8216;animations&#8217;.<\/p>\n<p>**dirt_mining_animation.json** (example of a possible mining animation, same for the placing animation):<br \/>\n&#8220;`json<br \/>\n{<br \/>\n  &#8220;duration&#8221;: 0.15,           \/\/ length of the animation in seconds<br \/>\n  &#8220;pivot_point&#8221;: [0.5, 1.0, 0.5],<br \/>\n  &#8220;keyframes&#8221;: [<br \/>\n    {<br \/>\n      &#8220;time&#8221;: 0.0,<br \/>\n      &#8220;translation&#8221;: [0.0, 0.0, 0.0],<br \/>\n      &#8220;rotation&#8221;: [-22.5, 0.0, 45.0],<br \/>\n      &#8220;scale&#8221;: [0.5, 0.5, 0.5]<br \/>\n    },<br \/>\n    {<br \/>\n      &#8220;time&#8221;: 0.05,<br \/>\n      &#8220;translation&#8221;: [20.0, 0.0, -20.0],<br \/>\n      &#8220;rotation&#8221;: [0.0, 0.0, 0.0],<br \/>\n      &#8220;scale&#8221;: [1.0, 1.0, 1.0]<br \/>\n    },<br \/>\n    {<br \/>\n      &#8220;time&#8221;: 0.10,<br \/>\n      &#8220;translation&#8221;: [0.0, -15.0, 0.0],<br \/>\n      &#8220;rotation&#8221;: [0.0, -90.0, 0.0],<br \/>\n      &#8220;scale&#8221;: [1.5, 1.5, 1.5]<br \/>\n    },<br \/>\n    {<br \/>\n      &#8220;time&#8221;: 0.15,<br \/>\n      &#8220;translation&#8221;: [0.0, 0.0, 0.0],<br \/>\n      &#8220;rotation&#8221;: [0.0, 0.0, 0.0],<br \/>\n      &#8220;scale&#8221;: [1.0, 1.0, 1.0]<br \/>\n    }<br \/>\n  ]<br \/>\n}<br \/>\n&#8220;`<\/p>\n<p>You can have as many animations as you want!<br \/>\n<\/details>\n","protected":false},"excerpt":{"rendered":"<p>Adds customizable animations to blocks when mining and placing! (Mining Quakes successor)<\/p>\n","protected":false},"featured_media":102874,"template":"","meta":{"_minecraft_slug":"mining_and_placing_animations","_minecraft_project_id":"LKVZxR8L","_minecraft_author":"Gauraaaaaaaa","_minecraft_license":"GPL-3.0-only","_minecraft_downloads":77969,"_minecraft_follows":287,"_minecraft_client_side":"required","_minecraft_server_side":"unsupported","_minecraft_storage_type":"zip","_minecraft_archive_name":"mining_and_placing_animations.zip","_minecraft_size_bytes":8304024,"_minecraft_version_count":21,"_minecraft_updated_at":"2026-05-16T00:14:08.961606Z","_minecraft_date_created":"2025-07-27T07:19:11.806060Z","_minecraft_date_modified":"2026-05-02T09:24:15.939398Z","_minecraft_project_url":"https:\/\/modrinth.com\/mod\/mining_and_placing_animations","_minecraft_icon_attachment_id":102874,"_minecraft_imported_at":"2026-06-05T21:55:08+00:00","_minecraft_import_hash":"add488ca34222583bc121fb3e5e5f5bc","_minecraft_versions":"","_minecraft_links":"","_minecraft_gallery":"","_minecraft_api_metadata":""},"mod_category":[156,97,104,158],"mod_loader":[99],"minecraft_version":[36,62,37,40,41,38,78,79,80,81,82],"class_list":["post-102873","mod","type-mod","status-publish","has-post-thumbnail","hentry","mod_category-decoration","mod_category-fabric","mod_category-forge","mod_category-neoforge","mod_loader-fabric","minecraft_version-1-20-1","minecraft_version-1-21","minecraft_version-1-21-1","minecraft_version-1-21-10","minecraft_version-1-21-11","minecraft_version-1-21-4","minecraft_version-1-21-5","minecraft_version-1-21-6","minecraft_version-1-21-7","minecraft_version-1-21-8","minecraft_version-1-21-9"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Mining &amp; Placing Animations - 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\/mining_and_placing_animations\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Mining &amp; Placing Animations - Minecraft\" \/>\n<meta property=\"og:description\" content=\"Adds customizable animations to blocks when mining and placing! (Mining Quakes successor)\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vpesports.com\/minecraft\/mods\/mining_and_placing_animations\/\" \/>\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=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/mining_and_placing_animations\\\/\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/mining_and_placing_animations\\\/\",\"name\":\"Mining & Placing Animations - Minecraft\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/mining_and_placing_animations\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/mining_and_placing_animations\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/mining_and_placing_animations-icon-b92e09e1d536022ecbac51df62a8db704b8ba170.gif\",\"datePublished\":\"2026-06-05T21:55:06+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/mining_and_placing_animations\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/mining_and_placing_animations\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/mining_and_placing_animations\\\/#primaryimage\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/mining_and_placing_animations-icon-b92e09e1d536022ecbac51df62a8db704b8ba170.gif\",\"contentUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/mining_and_placing_animations-icon-b92e09e1d536022ecbac51df62a8db704b8ba170.gif\",\"width\":256,\"height\":256},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/mining_and_placing_animations\\\/#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\":\"Mining &#038; Placing Animations\"}]},{\"@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":"Mining & Placing Animations - 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\/mining_and_placing_animations\/","og_locale":"en_US","og_type":"article","og_title":"Mining & Placing Animations - Minecraft","og_description":"Adds customizable animations to blocks when mining and placing! (Mining Quakes successor)","og_url":"https:\/\/vpesports.com\/minecraft\/mods\/mining_and_placing_animations\/","og_site_name":"Minecraft","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/vpesports.com\/minecraft\/mods\/mining_and_placing_animations\/","url":"https:\/\/vpesports.com\/minecraft\/mods\/mining_and_placing_animations\/","name":"Mining & Placing Animations - Minecraft","isPartOf":{"@id":"https:\/\/vpesports.com\/minecraft\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/mining_and_placing_animations\/#primaryimage"},"image":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/mining_and_placing_animations\/#primaryimage"},"thumbnailUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/mining_and_placing_animations-icon-b92e09e1d536022ecbac51df62a8db704b8ba170.gif","datePublished":"2026-06-05T21:55:06+00:00","breadcrumb":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/mining_and_placing_animations\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vpesports.com\/minecraft\/mods\/mining_and_placing_animations\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vpesports.com\/minecraft\/mods\/mining_and_placing_animations\/#primaryimage","url":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/mining_and_placing_animations-icon-b92e09e1d536022ecbac51df62a8db704b8ba170.gif","contentUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/mining_and_placing_animations-icon-b92e09e1d536022ecbac51df62a8db704b8ba170.gif","width":256,"height":256},{"@type":"BreadcrumbList","@id":"https:\/\/vpesports.com\/minecraft\/mods\/mining_and_placing_animations\/#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":"Mining &#038; Placing Animations"}]},{"@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\/102873","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\/102874"}],"wp:attachment":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media?parent=102873"}],"wp:term":[{"taxonomy":"mod_category","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_category?post=102873"},{"taxonomy":"mod_loader","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_loader?post=102873"},{"taxonomy":"minecraft_version","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/minecraft_version?post=102873"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}