[ad_1]
I’ve an issue right here with GameMaker built-in physics surroundings.My participant is designed to be on a skateboard. I need my participant to rotate its sprite, based on the type of fixture(up or down slopes) he’s transferring on.I’ve tried all the pieces i might and all the pieces i might discover, nevertheless it did not assist me a lot, as a result of the article is rotating in a really unusual means.I enabled some flags to see the masks. Additionally, I have been finding out vector algebra and i do know it the angle between vector x pace and vector y pace ought to be the course. Please assist. Here is what i’ve to this point:
1 object which is the participant
Details about object: obj_Player
Sprite: sprite7
Stable: false
Seen: true
Depth: 0
Persistent: false
Guardian: obj_Static_Parent
Youngsters:
Masks:
Physics
Begin Awake: true
Is Kinematic: false
Is Sensor: false
Density: 0.5
Restitution: 0.1
Group: 0
Linear Damping: 0
Angular Damping: 0
Friction: 0.2
Form: Polygon
Factors:
(76, 52)
(76, 60)
(0, 56)
(0, 52)
Create Occasion:
execute code:
///Initialize the tires
var half = sprite_width / 2;
var halfy = sprite_height / 2;
var tire = instance_create(x-half+12,y+halfy,obj_Wheel);
physics_joint_revolute_create(id,tire,tire.x,tire.y,0,0,0,0,0,0,false);
var tire = instance_create(x+half+12,y+halfy,obj_Wheel);
physics_joint_revolute_create(id,tire,tire.x,tire.y,0,0,0,0,0,0,false);
Step Occasion:
execute code:
//Code
dealing with = -point_direction(0, 0, phy_speed_x, phy_speed_y);
phy_fixed_rotation = true;
phy_rotation = dealing with;
//Transfer him
if(keyboard_check(vk_space)) {
physics_apply_impulse(x,y,0,-100);
}
if mouse_check_button(mb_left)
{
phy_position_x = mouse_x;
phy_position_y = mouse_y;
}
Details about object: obj_Wheel
Sprite: spr_Wheel
Stable: false
Seen: true
Depth: 0
Persistent: false
Guardian: obj_Static_Parent
Youngsters:
Masks:
Physics
Begin Awake: true
Is Kinematic: false
Is Sensor: false
Density: 0.05
Restitution: 0.1
Group: 0
Linear Damping: 0.1
Angular Damping: 0.1
Friction: 30
Form: Circle
Factors:
(8, 8)
(8, 8)
Create Occasion:
execute code:
Keyboard Occasion for Key:
execute code:
physics_apply_torque(-100);
Keyboard Occasion for Key:
execute code:
physics_apply_torque(100);
And right here is the end result:
https://i.stack.imgur.com/sn1qh.gif
[ad_2]