11clock
11clock
Currently all values that you're returning have to be on a single line, and don't support splitting them across lines like you can do with parameters in functions and function...
I would like added features for mixins to make them more inline with direct inheritance in terms if power and flexibility. 1. The ability to override mixed in fields and...
Using pcall for error handling is pretty awkward, especially when other languages provide try catch blocks for such purposes. I recommend syntax of a similar manner, while still providing the...
When you do something like the following: ``` class Example field1: 1 field2: Example.field1 + 1 ``` You get a nil pointer error on the third line since Example is...
Below is the output from the terminal. PS C:\Users\justi\Documents\DefoldProjects\chess-parent\3-chess-client-love> luarocks install yuescript Installing https://luarocks.org/yuescript-0.9.0-1.src.rock yuescript 0.9.0-1 depends on lua >= 5.1 (5.1-1 provided by VM) -- The CXX compiler identification...
If your game’s virtual resolution (display width and display height) is different from what you want your initial window size to be, you need to call set_view_size on your game’s...
Below are a couple of snippets in my code. ```cs internal SfxSystem() { _fmodSystem = Fmod.CreateSystem(); _fmodSystem.Init(MaxChannels); } ``` ```cs Channel? channel = _fmodSystem.PlaySound(sfx.Sound); if (channel is null) throw new...
I would like to be able to register custom converters between types for serialization and deserialization. For example, a vector2 struct would be serialized into an array and vice versa.