↧
Beginner B14 – GUI Text and Counters
How to display information onscreen with GUI Text components and display a counting variable. Code Used (Javascript) var Counter : int = 0; function Update () { Counter++; guiText.text = "Counter...
View ArticleBeginner B25 – GUI Texture & Mouse Events
Using simple GUI Textures and Mouse Events to create interaction in Unity. Code Used (Javascript) var normalTex : Texture2D; var hoverTex : Texture2D; function OnMouseEnter () { guiTexture.texture...
View ArticlePlatformer Progress bar
This is something a few of you have asked me to cover recently so here it is – a Unity Tutorial on how to track player progress during the game. In order to keep your player’s attention through a...
View Article