mirror of
https://github.com/photonstorm/phaser
synced 2024-11-23 21:24:09 +00:00
Starting porting RenderTexture over.
This commit is contained in:
parent
f9fe6a3e94
commit
85c580ac61
1 changed files with 19 additions and 0 deletions
19
src/renderer/canvas/gameobjects/RenderTexture.js
Normal file
19
src/renderer/canvas/gameobjects/RenderTexture.js
Normal file
|
@ -0,0 +1,19 @@
|
|||
/**
|
||||
* @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)
|
||||
{
|
||||
}
|
||||
|
||||
};
|
Loading…
Reference in a new issue