Björn Ritzl
Björn Ritzl
> I assume on their vanilla engine they have the clear color set to black, but in the extended version it's set to white. I don't think this is true...
What happens when you type an emoji? I assume the font you use doesn't render it or do you actually have a font that renders the emoji?
I tried the utf8 module in the same way as the backspace key is handled and it generates the correct result: assert(utf8.sub("a😄b", 1, -2) == "a😄") assert(utf8.sub("a😄", 1, -2) ==...
Emojis more investigation. In Java an emoji can't be represented in a single UTF-16 character, it actually needs two. The emoji is converted into a surrogate pair, one high and...
@jcash might have some input here. Did we make any changes to the macOS application startup process or was this only for iOS? Also, the merge of the Vulkan stuff,...
It works for me with 1.1.19.11.25 on Mojave
Although if you move the mouse cursor back and forth very quickly the accessibility thing that shows a magnified mouse cursor appears instead of the custom one.
I'd like to break this up into things that actually makes sense to have in Gooey. This list is not actionable as it is. One issue per item. * Audio...
Added an example of how to combine cursor and gesture modules: CODE: https://github.com/britzl/defold-input/tree/master/examples/cursor_and_gesture HTML5: https://britzl.github.io/Defold-Input/
I've added drag detection in this branch: https://github.com/britzl/defold-input/tree/drag_gesture