mirror of
https://github.com/photonstorm/phaser
synced 2024-12-01 00:49:41 +00:00
Added jsdocs
This commit is contained in:
parent
b889a39bfb
commit
45bda0b6ab
2 changed files with 28 additions and 0 deletions
|
@ -1,5 +1,19 @@
|
||||||
var GameObject = require('../GameObject');
|
var GameObject = require('../GameObject');
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Renders this Game Object with the Canvas Renderer to the given Camera.
|
||||||
|
* The object will not render if any of its renderFlags are set or it is being actively filtered out by the Camera.
|
||||||
|
* This method should not be called directly. It is a utility function of the Render module.
|
||||||
|
*
|
||||||
|
* @method Phaser.GameObjects.Blitter#renderCanvas
|
||||||
|
* @since 3.0.0
|
||||||
|
* @private
|
||||||
|
*
|
||||||
|
* @param {Phaser.Renderer.CanvasRenderer} renderer - A reference to the current active Canvas renderer.
|
||||||
|
* @param {Phaser.GameObjects.Blitter} src - The Game Object being rendered in this call.
|
||||||
|
* @param {number} interpolationPercentage - Reserved for future use and custom pipelines.
|
||||||
|
* @param {Phaser.Cameras.Scene2D.Camera} camera - The Camera that is rendering the Game Object.
|
||||||
|
*/
|
||||||
var BlitterCanvasRenderer = function (renderer, src, interpolationPercentage, camera)
|
var BlitterCanvasRenderer = function (renderer, src, interpolationPercentage, camera)
|
||||||
{
|
{
|
||||||
if (GameObject.RENDER_MASK !== src.renderFlags || (src.cameraFilter > 0 && (src.cameraFilter & camera._id)))
|
if (GameObject.RENDER_MASK !== src.renderFlags || (src.cameraFilter > 0 && (src.cameraFilter & camera._id)))
|
||||||
|
|
|
@ -1,5 +1,19 @@
|
||||||
var GameObject = require('../GameObject');
|
var GameObject = require('../GameObject');
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Renders this Game Object with the WebGL Renderer to the given Camera.
|
||||||
|
* The object will not render if any of its renderFlags are set or it is being actively filtered out by the Camera.
|
||||||
|
* This method should not be called directly. It is a utility function of the Render module.
|
||||||
|
*
|
||||||
|
* @method Phaser.GameObjects.Blitter#renderWebGL
|
||||||
|
* @since 3.0.0
|
||||||
|
* @private
|
||||||
|
*
|
||||||
|
* @param {Phaser.Renderer.WebGLRenderer} renderer - A reference to the current active WebGL renderer.
|
||||||
|
* @param {Phaser.GameObjects.Blitter} gameObject - The Game Object being rendered in this call.
|
||||||
|
* @param {number} interpolationPercentage - Reserved for future use and custom pipelines.
|
||||||
|
* @param {Phaser.Cameras.Scene2D.Camera} camera - The Camera that is rendering the Game Object.
|
||||||
|
*/
|
||||||
var BlitterWebGLRenderer = function (renderer, gameObject, interpolationPercentage, camera)
|
var BlitterWebGLRenderer = function (renderer, gameObject, interpolationPercentage, camera)
|
||||||
{
|
{
|
||||||
if (GameObject.RENDER_MASK !== gameObject.renderFlags || (gameObject.cameraFilter > 0 && (gameObject.cameraFilter & camera._id)))
|
if (GameObject.RENDER_MASK !== gameObject.renderFlags || (gameObject.cameraFilter > 0 && (gameObject.cameraFilter & camera._id)))
|
||||||
|
|
Loading…
Reference in a new issue