In this video I’ll be showing you how to add a slider UI to your Unity games, and how to pair and connect it to the aircraft to control its speed. So the airplane by default is sitting on a runway. Then we can slide...

Source Codes & Coding Tutorials
In this video I’ll be showing you how to add a slider UI to your Unity games, and how to pair and connect it to the aircraft to control its speed. So the airplane by default is sitting on a runway. Then we can slide...
In this video I’m showing you how to rotate your aircraft in your Unity airplane game left and right (I mean to slide it left and right) both by using keyboard buttons (Q and E buttons) and also with touch screen buttons. So yes, this...
In this video I will continue my tutorial about how to make airplane game in Unity. This part is about how to add buttons to control your aircraft. So basically we add 6 buttons on the game UI, two for left and right rotation, 2...
In this video I am trying to make an airplane that can take off and be controlled using my WASD buttons on my keyboard. It is somehow an experiment and also a tutorial, so please don’t be mad if I made mistakes in this video...
This script that I want to share with you is a simple script to generate randomly spawned prefab objects across your Unity scene. To use it, first make some multiple empty game objects as spawn points on your scene at different positions. Then apply a...
It’s somehow annoying when I got this error in Unity: unity Exception in thread “main” java.lang.NoClassDefFoundError: javax/xml/bind/annotation/XmlSchema I got this error when I tried to add new GoogleMobileAds package to Unity. I got the error when I build my project. After googling around, finally the...
Using PlayerPrefs in Unity is very useful to save and load user/player’s game data. But, problem is our player data is not always as simple as single string, or integer or float value of variable. For example, how do we store a List to PlayerPrefs?...
In this blog post I will share a new script that I’ve made to create a touch screen touchpad in our Unity game to control object’s transformations such as position, rotation and scale, easily. I call this script TNObjectTransformTouchpad. Here is it: How to use...
In this blog post I will share a handy and yet very simple script to help you using Unity Slider UI to rotate an object, such as camera or any object, by changing the value of your slider in Unity Canvas. This script also has...
This is a basic tutorial about making gun and bullet projectile system for your Unity games. First I showed you how to make a bullet object, making it moving at certain speed, then making it as a prefab so we can fire any amount of...
Part #1 : Making simple fuel system for my Unity pick up car game In this video you can see how I made a simple fuel system for my game from making a display text on game UI and scripting. I will publish the next...
How to make turn right and left signal lights in Unity | Part #1 This video tutorial is about how to make turn right and left signal lights for your car object in Unity. In this part I’ve modified my car mesh and prepared left...
Part #1 This is my first video of some video series about how to make coin system for our Unity game. In this part I’ll be showing to you how to import 3D coin object to our Unity game, make it a prefab, adding a...
I don’t know how to make Unity skybox transition between one skybox to another one, especially with smooth fading transition. So alternatively I made a sky dome object using basic sphere object inside Unity and apply a material with custom shader to them, and also...
If you have an object with a material that supports color transparency, you can use this script to control it’s transparency in run time. For example you can make some buttons and use one of 2 methods available in this script to set its transparency....
Sometimes we need a material for some objects that is not going to be affected by any light, for example just like making LCD screen of a turned on TV. We can apply this kind of material to the LCD plane of that object, so...
In case you are building a game that need a speed controller UI such as a Slider in Unity, this example may be useful to you. In this example, first I tried to show you how to basically work with Unity Slider and how to...
Hello guys, in this post I’m going to share some of my videos about how to make mini map in your game in Unity. Part #1 In this video I’m showing my progress on making a mini map for my car driving simulator game. In...
Are you making car driving game for mobile devices? This free Unity asset will help you to make simple car controller and touch screen UI for your car. This car controller provides you 4 arrow buttons: forward, backward, left and right. It also has brake...
I was making a simple script for picking and putting down an object by getting close to a pick up and drop zone area in a game. In this game my player object is a pick up car. And I tried to make a sphere...