1
Fork 0
mirror of https://github.com/Steffo99/stack.git synced 2024-11-22 16:04:19 +00:00
stack/scripts/selnames_init.gml

25 lines
796 B
Text
Raw Normal View History

//Seleziona il primo oggetto.
2013-06-28 16:44:10 +00:00
selected = 0;
//Definisci qual è il numero massimo, ad esempio se arriva a stack_names[9] scrivi 9.
totalitems = 7;
//Questo è un array con tutti i nomi degli oggetti da fare spawnare.
2013-06-28 16:44:10 +00:00
stack_names[0] = squadraL;
stack_names[1] = gomma;
stack_names[2] = pallinacartas;
stack_names[3] = moneta;
stack_names[4] = libro;
2013-06-30 11:11:15 +00:00
stack_names[5] = temperino;
stack_names[6] = gommag;
stack_names[7] = matita;
//Questo è un array con tutti i nomi degli sprite da disegnare con il mouse.
spr_names[0] = rtri;
spr_names[1] = lball;
spr_names[2] = pallinacarta;
spr_names[3] = coin;
spr_names[4] = libro_mate;
spr_names[5] = temper;
spr_names[6] = bigball;
spr_names[7] = matitasp;
//Disattiva il mouse normale visto che viene generato automaticamente.
window_set_cursor(cr_none);