physics_apply_force

This function applies a force to the current instance at a position in the room with a strength defined by a vector.

语法:

physics_apply_force(xpos, ypos, xforce, yforce)


参数 描述
xpos The x coordinate in the room where the force will be applied
ypos The y coordinate in the room where the force will be applied
xforce the x component of the force vector
yforce the y component of the force vector


返回: N/A(无返回值)


描述

When working with physics you need to apply not only gravity to objects, but forces as well. A force is any influence that causes an object to undergo a change in speed, a change in direction, or a change in shape, and is defined in the GameMaker Studio 2 physics world the same as we define gravity, by getting the vector from the two xforce/yforce components. It should be noted that forces are not applied to the center of mass of the object, but rather at a point in the room and they will change the direction and speed as well as the torque (spin) dependant on any other forces that are working on the object (like gravity). Here is an example image to help illustrate:

In the above example the spring object at the bottom has created a force on the ball object getting it to move in a different direction. The exact force is defined by the vector we get from the components xforce/yforce in relation to the xpos/ypos coordinates - which simply means that the force is calculated as the distance from xpos/ypos to xforce/yforce in Newtons (a Newton being defined as the amount of net force required to accelerate a mass of one kilogram at a rate of one meter per second squared)and the direction is the angle that we get from xpos/ypos to xforce/yforce. The code for a collision like the above would go in the collision event of the spring object and would look something like that provided in the example below.

NOTE: The physics world uses metres for all its calculations, and the ratio of pixels per metre is defined in the room editor or using physics_world_create.


例如:

with (other)
   {
   physics_apply_force(x, y, 0, -30);
   }

The code above will apply code to the other object in the collision with a force of 30 Newtons and a direction.


上一页: Forces
下一页: physics_apply_impulse
© Copyright YoYo Games Ltd. 2018 All Rights Reserved