Security News
UK Officials Consider Banning Ransomware Payments from Public Entities
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.
phaser-glsl-loader
Advanced tools
A shader loader for webpack that allows you to keep your glsl files external when working in phaser.
#Phaser GLSL Loader
This is a simple GLSL loader that is meant to work with Phaser and Webpack.
##The Problem:
Lets say you're working in phaser, and you see a really cool looking fragment shader you want to use.
So you go to the phaser examples, and they show you to integrate your code just like this:
var game = new Phaser.Game(800, 600, Phaser.AUTO, 'phaser-example', { create: create, update: update });
var filter;
var sprite;
function create() {
// From http://glslsandbox.com/e#20450.0
var fragmentSrc = [
"precision mediump float;",
"uniform vec2 resolution;",
"uniform float time;",
"float size = 0.002;",
"void main( void ) {",
"vec2 view = ( gl_FragCoord.xy - resolution / 2.0 ) / ( resolution.y / 2.0);",
"float time = time + length(view)*8.;",
"vec4 color = vec4(0);",
"vec2 center = vec2(0);",
"float rotationVelocity = 2.0;",
"for( int j = 0; j < 20; j++ ) {",
"for( int i = 0; i < 20; i++ ) {",
"float amplitude = ( cos( time / 10.0 ) + sin( time /5.0 ) ) / 2.0;",
"float angle = sin( float(j) * time) * rotationVelocity + 2.0 * 3.14 * float(i) / 20.0;",
"center.x = cos( 7.0 * float(j) / 20.0 * 2.0 * 3.14 ) + sin( time / 4.0);",
"center.y = sin( 3.0 * float(j) / 20.0 * 2.0 * 3.14 )+ cos( time / 8.0);",
"vec2 light = center + amplitude * vec2( cos( angle ), sin( angle ));",
"//size = sin( time ) * 0.005;",
"float l = size / length( view - light );",
"vec4 c = vec4( l / 20.0, l, l, 1.0 ) / 5.0;",
"color += c;",
"}",
"}",
"gl_FragColor = color;",
"}"
];
filter = new Phaser.Filter(game, null, fragmentSrc);
filter.setResolution(800, 600);
sprite = game.add.sprite();
sprite.width = 800;
sprite.height = 600;
sprite.filters = [ filter ];
}
function update() {
filter.update();
}
Man, what mess! Wouldnt it be awesome if you could just put the shader into a seperate file and load it that way?
var fragmentSrc = require('../shaders/cubething.frag'),
You could cut all that code out into a simple require statement! That is what this loader is for.
First, you need to add the loader to your list of loaders, most likely in your webpack.config.js
file.
Something like this:
var path = require('path');
var glFragmentLoader = path.join(__dirname, '/node_modules/phaser-glsl-loader');
module.exports = {
module: {
loaders: [
{
test: /\.frag$/i,
loader: 'gl-fragment-loader'
}
]
},
resolveLoader: {
alias: {
'gl-fragment-loader': glFragmentLoader,
}
}
};
Then you'll be able to reference external files, instead of basically including a large array of strings!
FAQs
A shader loader for webpack that allows you to keep your glsl files external when working in phaser.
The npm package phaser-glsl-loader receives a total of 1 weekly downloads. As such, phaser-glsl-loader popularity was classified as not popular.
We found that phaser-glsl-loader demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.
Security News
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
Research
Security News
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.