Joel Schumacher
Joel Schumacher
It looks like in the new version of coa tools there is only a button for the DragonBones export. I really like the change, but I feel a little bit...
While writing the löve importer I noticed some potential issues with the export. * The biggest is probably the problem already described in #67 , where changing images in an...
I would like a way to specify that a goal was successfully reached if you are under a specific number. Most of the habits I am interested in tracking are...
Unfortunately the color fccf uses to print filenames is the same as my terminal background color, making the lines invisible. It would be nice, if there was a switch to...
I searched the user documentation and looked at the help screen and searched for open issues, but could not find it, so I apologize if this feature exists. Since glTF...
```c++ #include #define SOL_ALL_SAFETIES_ON 1 #include class MyException : public std::runtime_error { public: template explicit MyException(Msg&& msg) : std::runtime_error(std::forward(msg)) { } }; int solExceptionHandler(lua_State* L, sol::optional exc, sol::string_view desc) {...
Unfortunately vcpkg has moved LuaJIT headers to a `luajit/` subdirectory (https://github.com/microsoft/vcpkg/pull/5863). It is my understanding that this means that sol2 can not be used with LuaJIT if both are installed...
This was attempted to be fixed in f7d226d but sadly broke os.execute (#1047), so it was later removed in a4a62f3. This is a very similar fix, but we make sure...
It seems FFI is currently not used for mat4: https://github.com/excessive/cpml/blob/master/modules/mat4.lua#L43 It has been disabled in this commit (2016): https://github.com/excessive/cpml/commit/3a18ed0f8cae35c0d159c6433c5e18d4d70bccde Is this well-known? Why is it like that? Are there plans...
**Describe the bug** After parsing a Diameter message, calling `__bytes__` (e.g. by printing it) **To Reproduce** Steps to reproduce the behavior: ``` diam = dpkt.diameter.Diameter(data) print(diam.len) # prints a number...