Yevhenii Chekanskyi

Results 18 issues of Yevhenii Chekanskyi

Assuming I have following code: ``` public void Start() { Task.Run(RegularTask); } async Task RegularTask() { Debug.Log($"RegularTask before loop {Thread.CurrentThread.ManagedThreadId}"); while (true) { Debug.Log($"RegularTask loop {Thread.CurrentThread.ManagedThreadId}"); await RunUniTask(); } }...

Is that possible to skip scaling for child elements? I have some kind of map, and I don't want to scale icons or text on it. Thanks.

Code of window is here: ``` class TextureDrawer : Window { private Texture2D _texture; private static readonly Matrix Mat = new Matrix {Yy = -1.0}; private const int Height =...

Hi. Is it possible to parse command lines more like urls /command//subcommand/? For following commands: ``` [Command("group")] public class GroupCommand : ICommand { [CommandParameter(0, Description = "Group ID")] public string...

concept

Hello. I am trying to build CppSharp for mac m1, I use following commands ``` 1026 ./build.sh build_llvm --platform osx-arm64 1027 ./build.sh package_llvm --platform osx-arm64 1028 ./build.sh generate -configuration Release...

Hi. I see that https://github.com/mono/CppSharp/packages updated regularly. How I can download latest packages from this repository? I tried to use https://nuget.pkg.github.com/mono/index.json url, but seems like I don't have permissions to...

question

Where I can find the examples, how I can alter an output for wrapper function? I have following function I want to use: ``` char* simpleble_peripheral_identifier(simpleble_peripheral_t handle) { ... char*...

##### Brief Description I am trying to build bindings for SimpleBLE library(https://github.com/OpenBluetoothToolbox/SimpleBLE). But function like https://github.com/OpenBluetoothToolbox/SimpleBLE/blob/6108b1a5e35c12b987ff51378644a4572d9c2bef/simpleble/include/simpleble/Adapter.h#L40 are ignored completely. If I replace signature to std::vection, it is ignored as well....

##### Brief Description Is it possible to instruct CppSharp to wrap pair of (unsigned char* elements, size_t size) arguments as byte[] type in C#. ##### Used headers void DoTheBestJobEver(unsigned char*...