mirror of
https://github.com/photonstorm/phaser
synced 2024-11-21 20:23:19 +00:00
Added PostPipeline
This commit is contained in:
parent
0fe135cc8f
commit
79ca4785f9
3 changed files with 4 additions and 2 deletions
|
@ -29,7 +29,7 @@ class Parser {
|
|||
}
|
||||
emit() {
|
||||
let ignored = [];
|
||||
let result = '/// <reference types="./matter" />\n\n';
|
||||
let result = '// DO NOT EDIT THIS FILE! It was generated by running `npm run tsgen`\n/// <reference types="./matter" />\n\n';
|
||||
result = result.concat(this.topLevel.reduce((out, obj) => {
|
||||
return out + dom.emit(obj);
|
||||
}, ''));
|
||||
|
@ -60,6 +60,7 @@ class Parser {
|
|||
case 'Phaser.GameObjects.Components.Origin':
|
||||
case 'Phaser.GameObjects.Components.PathFollower':
|
||||
case 'Phaser.GameObjects.Components.Pipeline':
|
||||
case 'Phaser.GameObjects.Components.PostPipeline':
|
||||
case 'Phaser.GameObjects.Components.ScrollFactor':
|
||||
case 'Phaser.GameObjects.Components.Size':
|
||||
case 'Phaser.GameObjects.Components.Texture':
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -87,6 +87,7 @@ export class Parser {
|
|||
case 'Phaser.GameObjects.Components.Origin':
|
||||
case 'Phaser.GameObjects.Components.PathFollower':
|
||||
case 'Phaser.GameObjects.Components.Pipeline':
|
||||
case 'Phaser.GameObjects.Components.PostPipeline':
|
||||
case 'Phaser.GameObjects.Components.ScrollFactor':
|
||||
case 'Phaser.GameObjects.Components.Size':
|
||||
case 'Phaser.GameObjects.Components.Texture':
|
||||
|
|
Loading…
Reference in a new issue