Skip to content

Commit 4f6239d

Browse files
committed
jsdoc and eslint fixes
1 parent 3009809 commit 4f6239d

12 files changed

Lines changed: 14 additions & 7 deletions

src/gameobjects/container/Container.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ var Container = new Class({
1515

1616
initialize:
1717

18-
function Container(scene, x, y)
18+
function Container (scene, x, y)
1919
{
2020
GameObject.call(this, scene, 'Container');
2121
this.parentContainer = null;

src/gameobjects/container/ContainerCanvasRenderer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ var ContainerCanvasRenderer = function (renderer, container, interpolationPercen
2929
}
3030
};
3131

32-
module.exports = ContainerCanvasRenderer;
32+
module.exports = ContainerCanvasRenderer;

src/gameobjects/container/ContainerWebGLRenderer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ var ContainerWebGLRenderer = function (renderer, container, interpolationPercent
2929
}
3030
};
3131

32-
module.exports = ContainerWebGLRenderer;
32+
module.exports = ContainerWebGLRenderer;

src/gameobjects/rendertexture/RenderTextureWebGLRenderer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ var RenderTextureWebGLRenderer = function (renderer, renderTexture, interpolatio
4343
0, 0, renderTexture.texture.width, renderTexture.texture.height,
4444
Utils.getTintAppendFloatAlpha(renderTexture.tintTopLeft, renderTexture.alphaTopLeft), Utils.getTintAppendFloatAlpha(renderTexture.tintTopRight, renderTexture.alphaTopRight), Utils.getTintAppendFloatAlpha(renderTexture.tintBottomLeft, renderTexture.alphaBottomLeft), Utils.getTintAppendFloatAlpha(renderTexture.tintBottomRight, renderTexture.alphaBottomRight),
4545
0, 0,
46-
camera,
46+
camera,
4747
parentMatrix
4848
);
4949
};

src/renderer/canvas/CanvasRenderer.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/**
22
* @author Richard Davey <rich@photonstorm.com>
3+
* @author Felipe Alfonso <@bitnenfer>
34
* @copyright 2018 Photon Storm Ltd.
45
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
56
*/

src/renderer/webgl/Utils.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/**
22
* @author Richard Davey <rich@photonstorm.com>
3+
* @author Felipe Alfonso <@bitnenfer>
34
* @copyright 2018 Photon Storm Ltd.
45
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
56
*/

src/renderer/webgl/WebGLPipeline.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/**
22
* @author Richard Davey <rich@photonstorm.com>
3+
* @author Felipe Alfonso <@bitnenfer>
34
* @copyright 2018 Photon Storm Ltd.
45
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
56
*/

src/renderer/webgl/WebGLRenderer.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/**
22
* @author Richard Davey <rich@photonstorm.com>
3+
* @author Felipe Alfonso <@bitnenfer>
34
* @copyright 2018 Photon Storm Ltd.
45
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
56
*/

src/renderer/webgl/pipelines/BitmapMaskPipeline.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/**
22
* @author Richard Davey <rich@photonstorm.com>
3+
* @author Felipe Alfonso <@bitnenfer>
34
* @copyright 2018 Photon Storm Ltd.
45
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
56
*/

src/renderer/webgl/pipelines/FlatTintPipeline.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/**
22
* @author Richard Davey <rich@photonstorm.com>
3+
* @author Felipe Alfonso <@bitnenfer>
34
* @copyright 2018 Photon Storm Ltd.
45
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
56
*/

0 commit comments

Comments
 (0)