TextRenderBehavior
is a rendering behavior that enables MSDF (Multi-channel Signed Distance Field) text rendering in a WebGPU-powered game engine.
It supports dynamic text updates, color changes, and transformations.
To use TextRenderBehavior
in your application, you need to generate a MSDF font texture and character data using a tool like MSDF font generator.
The tool exports a JSON file containing font metrics and character data, along with a PNG texture file containing the MSDF font atlas.
Here's how you can create a text renderer:
import { TextRenderBehavior } from "./TextRenderBehavior";
import { RenderGameEngineComponent } from "./RenderGameEngineComponent";
const renderEngine = new RenderGameEngineComponent();
const fontUrl = "path/to/font.json";
const textRenderer = new TextRenderBehavior(renderEngine, fontUrl, {
color: [1, 1, 1, 1], // RGBA color
pixelScale: 1 / 512, // Scale factor for text size
centered: true, // Centered alignment
});
textRenderer.text = "Hello, WebGPU!";
Note: The TextRenderBehavior
constructor requires the URL of the font JSON file. The PNG texture file should be in the same directory as the JSON file.
The TextRenderBehavior
will automatically load the font data and initialize the text renderer (based on the url found in the JSON file).
Once instantiated, you can modify text properties dynamically:
textRenderer.text = "New Text";
textRenderer.color = [1, 0, 0, 1]; // Change text color to red
textRenderer.pixelScale = 1 / 256; // Increase text size
textRenderer.centered = false; // Left align text