mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-07-22 10:05:37 -04:00
9d09ad4dd9
* This allows to display texts on screen that use a "bitmap font", generated with softwares like [BMFont](https://www.angelcode.com/products/bmfont/) or [bmGlyph](http://www.bmglyph.com/). * Bitmap fonts allow advanced effects and custom design of each character, with complete control over the appearance of the text. This is useful for making a custom score counter, titles, button labels... * They also render very well in a pixel-perfect, pixel-art or retro-like game. * Finally, these Bitmap Texts are fast and efficient to render on screen: useful for scores or texts that are updated frequently.
6 lines
182 B
JavaScript
6 lines
182 B
JavaScript
// Automatically generated by GDevelop.js/scripts/generate-types.js
|
|
declare class gdBitmapFontResource extends gdResource {
|
|
constructor(): void;
|
|
delete(): void;
|
|
ptr: number;
|
|
}; |