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
Perhaps add a way to configure collision groups so that they will ignore collisions in certain directions.
platypus.UP = x01 platypus.LEFT = x02 platypus.RIGHT = x04 platypus.DOWN = x08 platypus.create({ collisions = { ground = { [hash("ground")] = platypus.UP + platypus.LEFT + platypus.RIGHT + platypus.DOWN, [hash("onewayplatform")] = platypus.LEFT + platypus.RIGHT + platypus.DOWN, } } })
The config decides how to deal with contact_point_response and ray_cast_response messages.
The text was updated successfully, but these errors were encountered:
BTW, config.collisions.ground should probably be renamed to config.collisions.groups
config.collisions.ground
config.collisions.groups
Sorry, something went wrong.
Fixed in 3.1.0
No branches or pull requests
Perhaps add a way to configure collision groups so that they will ignore collisions in certain directions.
The config decides how to deal with contact_point_response and ray_cast_response messages.
The text was updated successfully, but these errors were encountered: