if (keyboard_check(vk_right))
{
direction -= 8;
image_angle = direction
}
if (keyboard_check(vk_left))
{
direction += 8;
image_angle = direction
}
speed = fast
if keyboard_check(vk_up)
{
fast += 1
}
if keyboard_check(vk_down)
{
fast -= 1
}
Sa, C'est ce que j'ai mit au depart. Ensuite j'ai fait :
if (keyboard_check(vk_right))
{
direction -= 8;
image_angle = direction
}
if (keyboard_check(vk_left))
{
direction += 8;
image_angle = direction
}
speed = fast
if keyboard_check(vk_up)
{
fast += 1
}
if keyboard_check(vk_down)
{
fast -= 1
}
if fast = 0 ------------- ### (les nouvelles choses(elle sont
{ -------------- ###les 8 dernieres lignes)).... J'aimerais
fast = 0 -------------- ###que ce que j'ai ajouté empeche ma
} --------------- ###variable fast d'aller a plus de 35 et a
if fast = 35 --------------- ### moin de 0. S'il vous plaît, aidez moi!!!
{
fast = 35
}