node icon indicating copy to clipboard operation
node copied to clipboard

Rendering `Text` takes forever

Open UlyssesZh opened this issue 1 year ago • 0 comments

import { Application, Assets, Text } from '@pixi/node';
await Assets.init();
const app = new Application();
app.stage.addChild(new Text('test'));
app.renderer.render(app.stage);

Stuck forever with @pixi/node 7.2.0 on Linux.

UlyssesZh avatar Mar 27 '24 07:03 UlyssesZh