Merge pull request #4206 from ben-lear/mystery-encounters

re-enable stubbed function for Phaser text styling
This commit is contained in:
ImperialSympathizer 2024-09-12 23:13:37 -04:00 committed by GitHub
commit 2884517f7c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 1 deletions

View File

@ -17,7 +17,9 @@ export default class MockText implements MockGameObject {
this.scene = textureManager.scene;
this.textureManager = textureManager;
this.style = {};
// Phaser.GameObjects.TextStyle.prototype.setStyle = () => null;
// DO NOT REMOVE: function needs to be stubbed for tests
// @ts-ignore
Phaser.GameObjects.TextStyle.prototype.setStyle = () => this;
// Phaser.GameObjects.Text.prototype.updateText = () => null;
// Phaser.Textures.TextureManager.prototype.addCanvas = () => {};
UI.prototype.showText = this.showText;