Código: Selecionar todos
//Direita
if (botao_direito) {
phy_position_x += 2 ;
}
//Esquerda
if (botao_esquerdo) {
phy_position_x -= 2 ;
}
//Cima
if (botao_cima) {
phy_position_y -= 2 ;
}
//Baixo
if (botao_baixo) {
phy_position_y += 2 ;
}
//Diagonal Direita
if (botao_direito) and (botao_cima) {
phy_position_x += 1 ;
phy_position_y -= 1 ;
}
if (botao_esquerdo) and (botao_baixo) {
phy_position_x -= 1;
phy_position_y += 1 ;
}
//Diagonal Esquerda
if (botao_direito) and (botao_baixo) {
phy_position_x += 1;
phy_position_y += 1 ;
}
if (botao_esquerdo) and (botao_cima) {
phy_position_x -= 1 ;
phy_position_y -= 1 ;
}
Obg pela ajuda!