Skip to content
New issue

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

fix: colkind uses BBoxMode (#12) #13

Open
wants to merge 4 commits into
base: master
Choose a base branch
from

Conversation

ithinkandicode
Copy link
Contributor

@ithinkandicode ithinkandicode commented May 30, 2020

Closes #12

Checks sepmasks (values here) to set colkind, which sets the sprite collision shape:

  • If it's 0 ("AxisAlignedRect"), colkind is set to Rectangle (1), as it's known to be used for certain.
  • If it's anything else, colkind is set to Precise (0)

There's no easy way to tell if the collision shape should really be Precise, Ellipse or Diamond, as UMT says they use all Precise sepmasks, but it's a safe default.

For the sake of completion here's the possible values for colkind:

  • 0 Precise
  • 1 Rectangle
  • 2 Ellipses
  • 3 Diamond

UMT's "RotatedRect" might mean Diamond, but during tests with GMS 1.4 I didn't see UMT use it.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

colkind uses BBoxMode
1 participant