Added PostPipeline

This commit is contained in:
Richard Davey 2023-02-17 17:24:59 +00:00
parent 0fe135cc8f
commit 79ca4785f9
3 changed files with 4 additions and 2 deletions

View file

@ -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

View file

@ -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':