physics_fixture_set_box_shape

This function sets the shape of the fixture to that of a box (rectangle) with the specified dimensions.

Syntax:

physics_fixture_set_box_shape(fixture, halfWidth, halfHeight)


Argument Description
fixture the index of the fixture
halfWidth the half width of the box
halfHeight the half height of the box


Returns: N/A


Description

This function defines a box shape for your fixture. It takes the half width and height as the physics world uses this value far more than whole width/height values to determine things like collisions.


Example:

physics_fixture_set_box_shape(fix_Border, room_width/2, 10);

The code above will apply a box shape to the fixture indexed in the variable "fix_Border" with a width of the room and a height of 20 pixels.


Back: Fixtures
Next: physics_fixture_set_circle_shape
© Copyright YoYo Games Ltd. 2018 All Rights Reserved