Programming Skills

L1 GM2 Basic Skills 2

Basic Skills 2 Interactions You have created the basic structure of a game. Now to create interactions Events and Actions. // CREATE CODE//—–set player speed n_spd = 2;  //—–normal speedr_spd = 3;  //—–run speedspd = n_spd;    //—–set start speed hspd = 0;vspd = 0;runspd = 0; // COLLISION WITH OBJ_PLAYER CODEgame_restart(); //COLLISION WITH OBJ_PLAYER CODEscore +=

L1 GM2 Basic Skills 2 Read More »

Python 2 Text Game Skills – 3

Haunted House – 3 Pattern recognitionThe second stage of computational thinking is called pattern recognition. This involves finding patterns in data and making sense of data. 7. Data StructuresOne thing to notice about the last solution is that it requires lots of ugly IF, THEN, ELSE statements, with some even nested inside others!Your game only

Python 2 Text Game Skills – 3 Read More »