screenshot

Features

  • Creates 3D textured particles after digging nodes. The particles scatter in random directions and bounce a little when they hit the ground.
  • Creates smoke on torches and other burning items.
  • Creates signal bubbles on mesecon ON signals.
screenshot+1
screenshot+2

Docs

Requirements

Installation

Download and uncompress the latest version, and move the the minetest-particles-master folder into your minetest/mods folder.

Modding Guide

To add Smoke Particles and Signal Bubbles to your mod add smokes=1 or signalbubbles=1 to the groups in the node definition.

minetest.register_node("your_mod:your_item", {
    description = "Your Item",
    groups = {smokes=1},
})