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
Hi.
I think there may be an error in bricks.bricktype_to_quad function, in chapter 2, item 5.
bricks.bricktype_to_quad
The function signature is: function bricks.bricktype_to_quad( bricktype )
function bricks.bricktype_to_quad( bricktype )
However, bricktype is never used. Instead of it, id is used where bricktype should be.
bricktype
id
Therefore, the function signature should be function bricks.bricktype_to_quad( id ).
function bricks.bricktype_to_quad( id )
I hope I have helped.
By the way, great job with this tutorial! Congrats! I am learning a lot with it.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi.
I think there may be an error in
bricks.bricktype_to_quad
function, in chapter 2, item 5.The function signature is:
function bricks.bricktype_to_quad( bricktype )
However,
bricktype
is never used. Instead of it,id
is used wherebricktype
should be.Therefore, the function signature should be
function bricks.bricktype_to_quad( id )
.I hope I have helped.
By the way, great job with this tutorial! Congrats! I am learning a lot with it.
The text was updated successfully, but these errors were encountered: