Skip to content
Advertisement

Change modal height based on it’s content

I’m trying to create a modal scene for my phaser 3 project. here is my current code in modal.js:

JavaScript

as you can see in my code, I’m trying to add different contents to modal based on modelName but I couldn’t find a way to change modal height based on it’s content. how can I do this?

Advertisement

Answer

A solution is, to use the function setWordWrapWidth from gameObject Phaser.GameObjects.TextStyle (link to the documentation) to limit the width, then setting the content of the text gameObject and finally getting and using the height property of the text gameObject.

With the width and height of the text gameObject (calculated from Phaser), you can simply render the graphics object, with the correct size (I also would add some padding). If you want/need to generate the texture, you would have to delete it each time, since the size might have changed.

Here is a short demo:
(I’m generating the texture, since it is in the original code, but I would simply use the graphics gameObject.)

JavaScript
JavaScript
User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement