Skip to content

Commit 929aca0

Browse files
committed
Merge branch 'master' of https://github.com/photonstorm/phaser
2 parents 979fc73 + 01bcb6b commit 929aca0

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ Read our [comprehensive guide](https://phaser.io/phaser3/devlog/127) on creating
305305

306306
### Building from Source
307307

308-
If you wish to build Phaser 3 from source, ensure you have the required packages by cloning the repository and then running `npm install`.
308+
If you wish to build Phaser 3 from source, ensure you have the required packages by cloning the repository and then running `npm install` on your source directory.
309309

310310
You can then run `webpack` to create a development build in the `build` folder which includes source maps for local testing. You can also `npm run dist` to create a minified packaged build in the `dist` folder. For a list of all commands available use `npm run help`.
311311

src/gameobjects/domelement/DOMElementCSSRenderer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ var DOMElementCSSRenderer = function (renderer, src, interpolationPercentage, ca
2525
{
2626
var node = src.node;
2727

28-
if (!node || GameObject.RENDER_MASK !== src.renderFlags || (src.cameraFilter > 0 && (src.cameraFilter & camera.id)))
28+
if (!node || GameObject.RENDER_MASK !== src.renderFlags || (src.cameraFilter !== 0 && (src.cameraFilter & camera.id)))
2929
{
3030
if (node)
3131
{

0 commit comments

Comments
 (0)