modcos
modcos
Thanks for the reply. I want to implement ui for text input, text selection and moving the cursor through the text. I don't know if love has a function that...
I figured out the reason why 'ffff' splits into 'ff' pairs in Harfbuzz. >"This is the result of ligature glyph substitutions. OpenType spec recommends that Standard Ligatures be applied by...
I found another strange behavior: ```lua local font = love.graphics.getFont() local _, wrapped = font:getWrap('Приветff', 1000) print(#wrapped) -- 2 local _, wrapped = font:getWrap('Приветfff', 1000) print(#wrapped) -- 1 ```
I am using the latest build of LOVE - [commit a9fca2e](https://github.com/love2d/love/commit/a9fca2e0ff03c0ced649de570f926ea6c96a1229). On my Windows 10 system, the scaling is set to 200%, and I get the result shown above when...
Thanks for the clarification. I tested both 0.5.0 builds: lua-gdextension+luajit.zip → segfaults with the examples above. lua-gdextension.zip → works fine with the examples, but I occasionally see errors in the...
I tested again with the latest build. Downloaded **lua-gdextension+luajit** from Actions: [link](https://github.com/gilzoide/lua-gdextension/actions/runs/17361576550/). Minimal project setup: just a scene with a `Node` and the script attached (same example from the topic...