vdweller84
vdweller84
I have written the following test code to check if a "free" lua variable can benefit from sol::property : float k = 1.0f; float Getk() { return 2.0f * k;...
Hello, Trying to build SDL_sound with Cmake produces the following output: ``` Selecting Windows SDK version 10.0.19041.0 to target Windows 10.0.19043. CMake Warning (dev) at C:/Users/Fagota/Downloads/SDL2-2.0.22/SDL2Config.cmake:30 (get_target_property): Policy CMP0045 is...
Hello, Suppose I have this function in C++ : `void ShaderSetUniformF(ShaderID ID, const std::string& name, std::vector values);` Now in lua, if I write: `ShaderSetUniformF(shader_multi,"col",{0.1, 0.1, 0.4, 1.0})` Things work as...