We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
actor.right
While trying out Flappy Bird and tinkering with it, I stumbled accross some strange things.
we have actor.right < actor.left:
actor.right < actor.left
(pipe_top.right, pipe_top.left) = (228, 328) (pipe_top.right, pipe_top.left) = (225, 325) (pipe_top.right, pipe_top.left) = (222, 322)
it seems like right is computed as left - width. shouldn't it be left + width or am I missing something ?
right
left - width
left + width
GameZero.jl/src/screen.jl
Lines 87 to 90 in 938cc41
EDIT: same thing for bottom
bottom
The text was updated successfully, but these errors were encountered:
Hmm.. I thought I'd tested this -- will check.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
While trying out Flappy Bird and tinkering with it, I stumbled accross some strange things.
we have
actor.right < actor.left
:it seems like
right
is computed asleft - width
. shouldn't it beleft + width
or am I missing something ?GameZero.jl/src/screen.jl
Lines 87 to 90 in 938cc41
EDIT: same thing for
bottom
The text was updated successfully, but these errors were encountered: