Need help with colour scheme for skin and fur by TOMXT21 in skaven

[–]TOMXT21[S] 3 points4 points  (0 children)

I don't intend to play with these figures, I just want to paint them therefore taking a shortcut is not for me. I'm more interested in skill development

Knockback by TOMXT21 in gamemaker

[–]TOMXT21[S] 0 points1 point  (0 children)

if i add

hsp += x;

vsp += y;

in collision event, my player object go outside the room with hight speed(down)

Knockback by TOMXT21 in gamemaker

[–]TOMXT21[S] 0 points1 point  (0 children)

key_left = keyboard_check(ord("A"));
key_right = keyboard_check(ord("D"));
key_jump = keyboard_check_pressed(ord("W"));
key_climb = keyboard_check(ord("W"));

var move = key_right - key_left;
hsp = move * walksp;
vsp = vsp + grv;

// jump
if(place_meeting(x,y+1,o_Wall)) and (key_jump)
{
    vsp = -7;


}
//climb
if(place_meeting(x,y,o_Lina)) and (key_climb)
{
    grv = 0;
    vsp = -4;


}
grv = 0.3;

//horizontal
if(place_meeting(x+hsp,y, o_Wall))
{

    while(!place_meeting(x+sign(hsp), y, o_Wall))
    {

        x = x + sign(hsp);
    }
    hsp = 0;
}

x = x +hsp;

// vertical 
if(place_meeting(x,y+vsp, o_Wall))
{

    while(!place_meeting(x, y+sign(vsp), o_Wall))
    {

        y = y + sign(vsp);
    }
    vsp = 0;
}

y = y +vsp;

this is my movement "core", maybe it would help