Hi,
Anyway, is there any way to switch the plugin (not only visibility), because it uses much CPU ? I want people to switch snowing only if they want. And I don't want the plugin to use their CPU if they don't want.
you could either remove the plugin by calling
removeplugin(snow);
or set the number of "flakes" to "0" and visible to "false", then almost no CPU will be used by the plugin,
e.g.
|
Quellcode
|
1
2
|
set(plugin[snow].flakes,0);
set(plugin[snow].visible,false);
|
best regards,
Klaus