set: function()

in www/src/utils/particles.ts [45:53]


	set: function(x, y) {
		if (typeof x === 'object') {
			y = x.y;
			x = x.x;
		}
		this.x = x || 0;
		this.y = y || 0;
		return this;
	},