()
| 43 | loadTextures(); |
| 44 | |
| 45 | function init(){ |
| 46 | canvas=document.querySelector('#container'); |
| 47 | |
| 48 | let dpi=window.devicePixelRatio; |
| 49 | canvas.width=window.innerWidth; |
| 50 | canvas.height=window.innerHeight; |
| 51 | canvas.style.width=window.innerWidth+"px"; |
| 52 | canvas.style.height=window.innerHeight+"px"; |
| 53 | |
| 54 | raindrops=new Raindrops( |
| 55 | canvas.width, |
| 56 | canvas.height, |
| 57 | dpi, |
| 58 | dropAlpha, |
| 59 | dropColor, |
| 60 | { |
| 61 | minR:30, |
| 62 | maxR:60, |
| 63 | collisionRadiusIncrease:0.002, |
| 64 | dropletsRate:35, |
| 65 | dropletsSize:[3,7.5], |
| 66 | dropletsCleaningRadiusMultiplier:0.30, |
| 67 | } |
| 68 | ); |
| 69 | |
| 70 | |
| 71 | textureFg = createCanvas(textureFgSize.width,textureFgSize.height); |
| 72 | textureFgCtx = textureFg.getContext('2d'); |
| 73 | textureBg = createCanvas(textureBgSize.width,textureBgSize.height); |
| 74 | textureBgCtx = textureBg.getContext('2d'); |
| 75 | |
| 76 | generateTextures(); |
| 77 | |
| 78 | renderer = new RainRenderer(canvas, raindrops.canvas, textureFg, textureBg, null,{ |
| 79 | brightness:1.1, |
| 80 | alphaMultiply:6, |
| 81 | alphaSubtract:3, |
| 82 | parallaxFg:40 |
| 83 | }); |
| 84 | |
| 85 | setupEvents(); |
| 86 | } |
| 87 | |
| 88 | function setupEvents(){ |
| 89 | updateTextures(); |
no test coverage detected