Original effect: https://codepen.io/netgfx/pen/rbGkA
How does it look (click the image):
!!!WARNING!!!
You will need to make these actions every time you reload discord!
- Run your Discord.
- Press Ctrl+Shift+I
- Go to "Console" tab
- Follow this link, copy all it's content and paste in console (don't forget about pressing enter).
- Type next code in console
window.snow = new SnowCanvas().start();
- See the falling snow in your discord
You can stop snowfalling at any moment by typing window.snow.stop()
in console and start with window.snow.start()
If you no any longer need it, just type window.snow.destroy()
- Amount of particles
window.snow.setAmount(1000);
- Size of particle
window.snow.setMaxSize(10).setMinSize(1);
- Speed of falling particles
window.snow.setMaxSpeed(140).setMinSpeed(10);
- Oscilation speed for x movement
window.snow.setMaxSwing(10).setMinSwing(1);
- Distance for x movement
window.snow.setMaxAmp(100).setMinAmp(50);
All above transformations can be combined
window.snow.setAmount(1000).setMaxSize(3).setMaxSpeed(150);
AFTER CHANGING SETTINGS, RESIZE YOUR WINDOW
Also you can start snow with your settings
window.snow = new SnowCanvas().setAmount(1000).start();
Source of SnowCanvas: https://gist.github.com/DMax-YT/1512b7ab5c9b98a4969b0b2b1d5f4a95
You can use it in your plugins for Powercord or BetterDiscord but don't forget about author of original script and me.