imgui-java icon indicating copy to clipboard operation
imgui-java copied to clipboard

Bug: ImGUI didn't support Unicode characters

Open adisteyf opened this issue 1 year ago • 0 comments

Version

1.86.11

What happened?

i just paste and start demo code. And that's work! But if i try to create text with Unicode chars (e.g. Russian chars):

import imgui.ImGui;
import imgui.app.Application;
import imgui.app.Configuration;

public class Main extends Application {
    @Override
    protected void configure(Configuration config) {
        config.setTitle("тест");
    }

    @Override
    public void process() {
        ImGui.text("просто текст на русском, он заменяется на вопросы. помогите пж");
    }

    public static void main(String[] args) {
        launch(new Main());
    }
}

ru letters is replaced with "?". image help me pls.

Reproduction

I've connected all the natives and libs.

Relevant log output

no log output.

adisteyf avatar Jun 11 '24 09:06 adisteyf