How to add more levels to a game in WoofJS
This tutorial explains how to add a second level to a game in WoofJS, as shown in the example below. To implement a second level in your game, use the …
This tutorial explains how to add a second level to a game in WoofJS, as shown in the example below. To implement a second level in your game, use the …
This tutorial explains how to add a high score to a game in WoofJS, as shown in the example below. To add a high score, we will need to use …
This tutorial explains how to flipĀ a player sprite to look in each direction when walking left or right (in WoofJS), as shown below. To achieve this, we just change the …
This tutorial explains how to change the backdrop colour of a game in WoofJS (so you can use a colour instead of an image for the backdrop). Create a new …
This tutorial explains how to make an enemy (or any object) follow the player (or another object) around in WoofJS, as shown in the example below. Create a project in …
This tutorial explains how to make an object (such as an image, shape, or text) follow the movement of the mouse, as shown in the example below. Create a project …
This tutorial explains how to make an enemy patrol or move around randomly on its own in WoofJS, as shown below. Create a new project at woofjs.com and use the …
This tutorial shows you how to create a basic platformer game in WoofJS where you can make a player jump. It also shows how to add gravity to a game …
This tutorial explains how to make the player teleport from one edge of the screen to the other in WoofJS, as shown in the example below. Go to woofjs.com, create …
This tutorial explain how to make sure the player can’t disappear past any of the four edges of the screen in WoofJS, as show below. Go to WoofJS.com, create a …
This tutorial explains how to add a countup timer in WoofJS as shown below. Use the code below to implement this in your game. // Add a background setBackdropURL(“./docs/images/war-backdrop.png”) setBackdropStyle(“cover”) …
In this tutorial you will learn how to create a countdown timer in WoofJS like the one below. Go to woofjs.com and create a new project. Use the code below …
In this tutorial, you will learn how to create a game where the player is being chased and has to keep running for as long a possible without getting caught …
In this tutorial, you will learn how to create an apple catcher game using JavaScript code in WoofJS. The aim of the game is to catch as many falling apples …
In this tutorial, you will learn how to code your first 2D game in the JavaScript programming language using WoofJS – a free website for coding games! To get started …