Does defold support only three shapes for collision? (SOLVED)

Actually five. You can create your own convex hull shape with a .convexshape file, something like;

shape_type: TYPE_HULL
data: -10 data: -10 data: 0
data: 10 data: -10 data: 0
data: 0 data: 10 data: 0

This should create a triangle shape (I think, haven’t tested it).

7 Likes