Customise Consent Preferences

We use cookies to help you navigate efficiently and perform certain functions. You will find detailed information about all cookies under each consent category below.

The cookies that are categorised as "Necessary" are stored on your browser as they are essential for enabling the basic functionalities of the site. ... 

Always Active

Necessary cookies are required to enable the basic features of this site, such as providing secure log-in or adjusting your consent preferences. These cookies do not store any personally identifiable data.

No cookies to display.

Functional cookies help perform certain functionalities like sharing the content of the website on social media platforms, collecting feedback, and other third-party features.

No cookies to display.

Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics such as the number of visitors, bounce rate, traffic source, etc.

No cookies to display.

Performance cookies are used to understand and analyse the key performance indexes of the website which helps in delivering a better user experience for the visitors.

No cookies to display.

Advertisement cookies are used to provide visitors with customised advertisements based on the pages you visited previously and to analyse the effectiveness of the ad campaigns.

No cookies to display.

[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]

Leave a Reply

Your email address will not be published. Required fields are marked *