kunitoki

Results 29 issues of kunitoki

When you open the editor, a small not updated window is opened behind the plugin gui. Since the plugin editor is a different process and so cannot be reparented in...

This PR aims at improving safety of interacting with Stack objects: - Introduced the `luabridge::expected` type, that works similarly as http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2021/p0323r10.html, in order to hold the result of `luabridge::LuaRef::cast` and...

enhancement
feature
wip

The library seems rather cross platform, any reason why the Tiny demo couldn't run on macOS ?

### Description I am running rendering tests in cibuildwheel on all platforms, and while macOS and Windows can access the project folder easily, on linux because we run in a...

type: enhancement

See https://github.com/kunitoki/LuaBridge3/issues/114#issuecomment-1961532469 for more information

enhancement

```lua function Base:init() print('Base:init()') end function Derived:init() print('Derived:init()') end local base = Base() base:init() -- will call Derived:init() ``` We are registering the `Derived:init` into the `Base:init` slot, which shouldn't...

bug
severe