mirror of
https://github.com/photonstorm/phaser
synced 2024-12-18 00:53:42 +00:00
20 lines
406 B
JavaScript
20 lines
406 B
JavaScript
|
/**
|
||
|
* @author Richard Davey <rich@photonstorm.com>
|
||
|
* @author Mat Groves (@Doormat23)
|
||
|
* @copyright 2016 Photon Storm Ltd.
|
||
|
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
|
||
|
*/
|
||
|
|
||
|
|
||
|
Phaser.Renderer.Canvas.GameObjects.RenderTexture = {
|
||
|
|
||
|
TYPES: [
|
||
|
Phaser.RenderTexture.prototype
|
||
|
],
|
||
|
|
||
|
render: function (renderer, src)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
};
|