Adding Music to Your Game
CombatMusicControlCode snippetusing UnityEngine; using System.Collections; using UnityEngine.Audio; public class CombatMusicControl : MonoBehaviour { public AudioMixerSnapshot outOfCombat; public...
View ArticleImage Effects: Overview
Language Undefined Topic: Live Training ArchiveVideo: http://www.youtube.com/embed/roQk5pyd78QTags: image effectsbloomscreen space ambient occlusionfogglobal fogvignetteSort Order: 53Unity Version:...
View Article2D Physics: Fun with Effectors
CoinSprayerCode snippetusing UnityEngine; using System.Collections; public class CoinSprayer : MonoBehaviour { public int numCoins = 10; public GameObject coinPrefab; public float offSetRange = 1.5f;...
View ArticleServices: Integrating Unity Ads
SimpleAdsCode snippetusing UnityEngine; using System.Collections; using UnityEngine.Advertisements; public class SimpleAds : MonoBehaviour { void Start () { Advertisement.Initialize ("33675", true);...
View ArticleEvents: Creating a simple messaging system
Download the project audio files (including Character Scream and Pop sounds) HERE.EventManagerCode snippetusing UnityEngine; using UnityEngine.Events; using System.Collections; using...
View ArticleSound Effects in Unity 5
Find the Unity Labs asset here: https://www.assetstore.unity3d.com/en/#!/content/33835Language Undefined Topic: Live Training ArchiveVideo: http://www.youtube.com/embed/kM9i-lUm9qoRelated Lessons:...
View ArticleUI Tools: Making a generic modal window (Pt 3)
Language Undefined Be aware that ModalPanel.cs is a work in progress and we adapted only a few of the functions in the scripts. The un-adapted code has been commented out. This code is still valid, and...
View ArticleTerrain: Introduction to Heightmaps
Language Undefined Splatmap Script will be attached soon. I need to translate it to C#.Topic: Live Training ArchiveRelated Resources: The Terrain EngineHeight ToolsThe Terrain ComponentnVideo:...
View ArticleProfiler Overview for Beginners
Language Undefined Topic: Live Training ArchiveVideo: http://www.youtube.com/embed/tdGvsoASS3gRelated Lessons: Introduction to the ProfilerTags: profilerperformanceoptimizationprofilinglagSort Order:...
View ArticleGame Jam Menu Template
Language Undefined In this live training session we look at setting up and using the Game Jam Menu Template asset which you can download here:...
View Article