physics_joint_get_value

This function tests a joint and returns a value depending on the type of joint being tested and the constant being used.

语法:

physics_joint_get_value(joint, value)


参数 描述
joint The index of the joint that you wish to test
The constant for the joint property that you wish to test


返回: Real(实数)


描述

By using a series of predefined constants, you can ask GameMaker Studio 2 to tell you a number of things about the state of any given joint. This is very useful as it gives you the ability to delete joints or change an instances behaviour depending on whatever your needs are at the time. There are a number of constants that can be used in this function and they can be found here: Physics Joint Constants, but be aware that complex calculations are done when you call these, so they should be used with care and only when necessary and note that many are unique to a specific type of joint.

If the property does not exist (if, for example, you check a pulley joint for prismatic translation) then 0 will be the return value.


例如:

var reactionForceX, reactionForceY, reactionForce;
if shipJoint
   {
   reactionForceX = physics_joint_get_value(shipJoint, phy_joint_reaction_force_x);
   reactionForceY = physics_joint_get_value(shipJoint, phy_joint_reaction_force_y);
   reactionForce = point_distance(0, 0, reactionForceX, reactionForceY);
   if reactionForce > 2
      {
      physics_joint_delete(shipJoint);
      shipJoint = -1;
      }
   }

The above code checks to see if the variable "shipJoint" holds a joint index and if it does, it then calculates the force being applied to that joint using the two constants. 最后,如果关节合力大于2,则该关节会删除失效。


上一页:关节
下一页: physics_joint_set_value
© Copyright YoYo Games Ltd. 2018 All Rights Reserved