Ruslan Mustakov
Ruslan Mustakov
Possibly related: if a multi-line string literal ends with an empty line, everything after that line is highlighted as a string. Example: ```zig const test_str = \\I need the empty...
Ah, you already fixed that. So nevermind :)
It has always been possible (since 3.0). You'd just compile a static library instead of a dynamic one.
Compile a static library (.a) and specify it in the .gdnlib file for iOS platform. There isn't anything specific beside using static library instead of a dynamic one.
I solved this locally by simply providing certs as base64 values when `generateTLS` is `false`. In other words, certificates/keys can be added directly as Helm values, they do not have...
Yes, this basically duplicates #91. Thanks for submitting the PR to Godot.
I'm planning to make a very simple open source example game based on godot-nim to show how it can be used. Not sure when I will get to that though....
"pressed" is a property and so "is_pressed" and "set_pressed" are not generated to enforce consistent usage and brevity. `button.pressed` works both in GDScript and Nim.
How did you derive it's not a property? If there are `pressed` and `pressed=` procedures generated, it means Godot reported it as a property. And you can see `pressed` is...
I don't throw the accessors away, it's all about syntax. `proc pressed` and `proc pressed=` are a getter and a setter, working exactly the same as `proc is_pressed` and `proc...