Crafter.Graphics/examples/HelloText
2026-01-27 21:33:44 +01:00
..
inter.ttf text example 2026-01-27 21:33:44 +01:00
main.cpp text example 2026-01-27 21:33:44 +01:00
project.json text example 2026-01-27 21:33:44 +01:00
README.md text example 2026-01-27 21:33:44 +01:00

HelloWindow Example

Description

This example demonstrates how to draw pixels to a window.

Expected Result

A window with a green and blue colored square, when clicking on the square it logs the coordinates relative to the square.

Highlighted Code Snippet

UiElement& element = window.elements.emplace_back(
    0.5,
    0.5, 
    2,
    1,
    0.5f,
    0.5f,
    0.5,
    0.5,
    0,
    false 
);

How to Run

crafter-build build executable -r