Skill

Scratch – Game Framework

Introduction, Instruction and Ending screens Before you start build your game you need to create a game template which has Introduction Screen – which lets the user start the game or get instructions Instruction Screen – with details about how to play the game Ending Screen – The screen the player sees when the game […]

Scratch – Game Framework Read More »

AI Prompting

AI Prompts Getting the results you want from AI depends on your ability to create quality prompts. Step One: Use an AI Tool and write a prompt to receive an answer a question they have. Step Two: Watch the video Writing Good AI promptsClick here to watch Re-write your prompt using the tips in the Writing Good

AI Prompting Read More »

Install PyGame

Simple Instructions Step One: Open a terminal window-> command + space -> type terminal -> open terminal Step Two: Check pip is installedtype the following into the terminal window-> pip3 list Step Three: Install pygametype the following into the terminal window-> pip3 install pygame ERROR: If you get a error try -> pip3 install pygame-ce Step Four: Check pygame is installed type

Install PyGame Read More »

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 »