GameZero.jl
GameZero.jl copied to clipboard
Zero overhead game development library for the Julia programming language
I tried to run the file in the example directory and got an error. I see the same error when I tried GZExamples. Any idea? I installed master of SimpleMediaLayer...
When running the examples as described in the documentation, "basic.jl" throws the following error: ``` ERROR: MethodError: Cannot `convert` an object of type String to an object of type ARGB...
```julia Base.IOError("readdir(\"./images\"): too many open files (EMFILE)", -24) ``` I made my own version of the flappy bird game, and I face this issue if I play it for a...
It would be great to have 1 file that contains the game and include other files that contains the structs created in the game. I was tring to make a...
Based on the docs, I got the impression that `Circle` should have the same properties as `Actor`. So I ran into an problem where my code runs on actors using...
Hi, following up the discussion on JuliaCon discord, here is the report of the bug I found on my system. The game only uses a quarter of the window. I...
There appears to be some form of timing issue when using GameZero in Linux. As an example, it takes less than 1/2 a second for the bird in flappy bird...
*Relies on #31 and #33* 1. Removed parentheses around conditionals in while and if statements, since it's more julian. 2. Made spelling more julian. 3. Changed tab size from 4...
Games crash when pressing a key that is not in `Keys.Key`, for example non-english characters (here `ù`) or special keys (like volume up) ```julia julia> rungame("GZExamples\\Spaceship\\Spaceship.jl") ┌ Warning: Use lowercases...
In order to have the same style as Julia, methods like `getPos` should be changed (if needed) to something like `getpos`.