Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bug: HTMLText does not render #10310

Closed
Zyie opened this issue Mar 11, 2024 · 0 comments
Closed

Bug: HTMLText does not render #10310

Zyie opened this issue Mar 11, 2024 · 0 comments
Assignees

Comments

@Zyie
Copy link
Member

Zyie commented Mar 11, 2024

Current Behavior

HTMLText currently does not render

Expected Behavior

to render 馃槃

Steps to Reproduce

(async () => {
    const app = new PIXI.Application();
    await app.init({
        width: window.innerWidth,
        height: window.innerHeight,
        backgroundColor: 0x2c3e50
    })
    document.body.appendChild(app.canvas);

    const text = new PIXI.Text('Normal Text')
    const html = new PIXI.HTMLText('HTML Text') // new PIXI.Text('Normal Text Again')
    html.x = text.width * 2
    app.stage.addChild(text, html)
})();

Environment

Possible Solution

No response

Additional Information

No response

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants