I would like to use key combinations in my code. Which code could recognize for example these combos: Ctrl+A, Alt+M, Ctrl+Left click and so on... I have made some researches in the documentation and in the forum without useful result.
Last edited by Aku_Aku; 01/30/2516:40. Reason: expanded the list
while (1)
{
if (key_a && key_ctrl)
{
vec_set(sky_color,vector(50,50,50)); //set grey color if ctrl+a is pressed
}
else
{
vec_set(sky_color,vector(50,1,1)); //else set blue color
}
wait(1);
}