Shadowblitz16
Shadowblitz16
I hear sld2 is portable to web with [Emscripten](https://emscripten.org/). Is it possible to get this to run on web?
I am getting a crash when I try to run game which is based on the imgui demo. ``` /home/shadowblitz16/RiderProjects/PlatformerEngine/PlatformerEngine/bin/Debug/net5.0/PlatformerEngine Unhandled exception. System.TypeInitializationException: The type initializer for 'Love.Love2dDll' threw an...
I can't really post this on the love forums since this has to do with handling the loop manually however I was wanting to make a Sleep method that doesn't...
setting window size should apply both width and height immediately disregarding fps. right now it slowly applys width and height one at a time and it takes about 2 seconds...
so I just was messing around with RayLibCS and I really liked how the main loop worked. it allowed the user to control the flow of the program and draw...
shapes?
I was thinking what if Love2D implemented shape helpers and collision methods for them.. the shapes I where thinking of is.. - Rect(int x1,int y1int ,x2,int y1) - Circ(int x1,int...
Is it possible to convert a image to a canvas and back so I can draw onto it? if not could you add Graphics.NewCanvas(Image Image) and Graphics.NewCanvas(ImageData ImageData)?
All enums should derive from int makes them easier to loop through. if any enums are strings they should use internal lookup dictionaries of
I think these should also be added for easy to use converting. note I think they should also use memory copying instead of looping to be faster. these functions allow...
can we have the following... ``` Graphics.SetTranslation(); Graphics.SetScale(); Graphics.SetRotation() Graphics.GetTranslation(); Graphics.GetScale(); Graphics.GetRotation() ``` I know its not in the original love2d library but it would be useful and we can...