摘要: pixijs shader 扫光加强版 const app = new PIXI.Application({ transparent: true }); document.body.appendChild(app.view); // Create background image const bac 阅读全文
posted @ 2019-11-19 17:24 newmiracle宇宙 阅读(500) 评论(0) 推荐(0) 编辑
摘要: pixijs shader贴图扫光效果 直接贴代码 const app = new PIXI.Application({ transparent: true }); document.body.appendChild(app.view); // Create background image con 阅读全文
posted @ 2019-11-19 16:45 newmiracle宇宙 阅读(713) 评论(0) 推荐(0) 编辑
摘要: pixijs shader 制作百叶窗效果 直接贴代码了 const app = new PIXI.Application({ transparent: true }); document.body.appendChild(app.view); // Create background image 阅读全文
posted @ 2019-11-19 16:29 newmiracle宇宙 阅读(512) 评论(0) 推荐(0) 编辑
摘要: pixijs shader 贴图溶解效果教程 我直接贴代码了 没什么好讲解了 稍微有点基础的人应该能看懂 const app = new PIXI.Application({ transparent: true }); document.body.appendChild(app.view); // 阅读全文
posted @ 2019-11-19 15:41 newmiracle宇宙 阅读(733) 评论(0) 推荐(0) 编辑
摘要: shadertoy使用教程 /** *常量定义 */ uniform vec3 iResolution; // 窗口分辨率,单位像素 uniform float iTime; // 程序运行的时间,单位秒 uniform float iTimeDelta; // 渲染时间,单位秒 uniform f 阅读全文
posted @ 2019-11-19 13:31 newmiracle宇宙 阅读(1836) 评论(0) 推荐(0) 编辑
摘要: pixijs 写shader 底层都封装好了 只要改改片段着色器就行了 pxijs一定刚要设置支持透明 不然 颜色不支持透明度了 const app = new PIXI.Application({ transparent: true }); document.body.appendChild(ap 阅读全文
posted @ 2019-11-19 09:46 newmiracle宇宙 阅读(1400) 评论(0) 推荐(0) 编辑