Using the font-face rule in HTML & CSS
You aren’t just limited to using web-safe fonts such as Times or Arial on your web pages. You can choose from a range of fonts available online or even make your …
You aren’t just limited to using web-safe fonts such as Times or Arial on your web pages. You can choose from a range of fonts available online or even make your …
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 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 …
This tutorial explains how to add collectables and scoring to a 2D game in Unity. We will use the LevelManager script and CoinScript script from previous tutorials to improve the …
This tutorial continues on from the previous tutorial on adding collectables and scoring to a 2D Unity game. In the previous tutorial, we improved the points scoring system and added …
In this tutorial we will add a particle system to a 2D game in Unity. Particle systems emit particles in a game and can be used for adding a variety …
This tutorial continues on from the previous tutorials on setting up a fall detector, adding checkpoints, adding the ability to respawn the player, and adding a Level Manager to control respawning in …