Go to file
Brett O'Donnell 8537e38f95 Update and rename license.txt to LICENSE 2014-01-16 19:42:33 +10:30
particles fix server crash bug - thanks @leo_rockway 2012-10-05 12:21:48 +09:30
LICENSE Update and rename license.txt to LICENSE 2014-01-16 19:42:33 +10:30
README.txt Update README.txt 2012-09-25 19:08:14 +09:30
modpack.txt move files to modpack for easier install 2012-09-23 00:46:54 +09:30

README.txt

----------------------------------
Particles for Minetest
----------------------------------

Copyright (c) 2012 cornernote, Brett O'Donnell <cornernote@gmail.com>
Source Code: https://github.com/cornernote/minetest-particles
Home Page: https://sites.google.com/site/cornernote/minetest/particles

This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.


----------------------------------
Description
----------------------------------

Creates 3D textured particles that scatter in random directions after digging nodes. 


----------------------------------
Modders Guide
----------------------------------

No Dig Particles:

Add no_particles=1 to the groups in the node definition.

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

Smoke Particles and Signal Bubbles:

Add smokes=1 or signalbubbles=1 to the groups in the node definition.

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


----------------------------------
Credits
----------------------------------

sfan5 - coded the original particles mod which i stole and made into this one - http://minetest.net/forum/viewtopic.php?id=1129