PixiJs
UI Extension
PixiJS is a fast, lightweight 2D rendering engine for the web with WebGL support and a scene graph.
Status
Planned
Supported Version
TBD
Licensing
Open Source
Priority
Rank #142
KEY FEATURES
2D rendering
WebGL
Sprites
Text
Filters
Interaction
Particle system
Usage Example
Here's how you'll use PixiJs with Oorian once the extension is available:
Java
// Create and configure PixiJs component
PixiJs component = new PixiJs();
component.setWidth("100%");
component.setHeight("400px");
// Configure component options
component.setEnabled(true);
// Register for events using Oorian's event model
component.registerForEvent(this, PixiJsEvent.class);
// Add to your page
container.addElement(component);Note: This is a preview of the expected API. The actual implementation may vary slightly when released.