Skip to content

ThirteeNov

Source Codes & Coding Tutorials

  • My YouTube Channel
  • My GitHub Page
  • About me

Category: Unity

How to add a slider to control your airplane thrust and speed in Unity

March 30, 2021 Habibie

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...

How to add slide left and right rotation and on screen buttons to your airplane in Unity

March 30, 2021 Habibie

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...

How to add aircraft controller buttons for your airplane game in Unity

March 30, 2021January 29, 2022 Habibie

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...

Getting started to make an aircraft that can take off and be controlled using WASD keyboard buttons on Unity

March 27, 2021March 27, 2021 Habibie

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...

Unity Random Prefab Spawner Script

March 15, 2021March 15, 2021 Habibie

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...

How to fix this Unity error: unity Exception in thread “main” java.lang.NoClassDefFoundError: javax…

March 13, 2021March 23, 2021 Habibie

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...

Easiest way to save a List variable to PlayerPrefs in Unity

March 13, 2021March 13, 2021 Habibie

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?...

Unity touch screen touchpad script to transform any objects easily

March 4, 2021March 4, 2021 Habibie

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...

Unity Slider to Object Rotation Script Tutorial

February 15, 2021February 15, 2021 Habibie

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...

How to make your Gun and Bullet system for your Unity Game and attach it to FPS Player Controller

February 12, 2021February 12, 2021 Habibie

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...

How to make Unity Fuel System for your Unity car game

February 11, 2021February 11, 2021 Habibie

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...

Unity Left and Right Turn Sign Lights Tutorial

February 9, 2021February 9, 2021 Habibie

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...

Unity Coin System Tutorial

February 6, 2021February 15, 2021 Habibie

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...

How to make a Day to Night Sky smooth fade transition using custom “skybox” : sphere/dome object sky

February 4, 2021February 4, 2021 Habibie

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...

A Unity C# Script to set the transparency of an object

February 4, 2021February 4, 2021 Habibie

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....

Inside Visible Transparent Unlit Unity Shader for making simple light independent material

February 4, 2021February 4, 2021 Habibie

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...

Unity Speed Controller Example using Unity Slider

February 3, 2021February 3, 2021 Habibie

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...

How to make your in game mini map in Unity

February 1, 2021February 2, 2021 Habibie

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...

Basic Unity Touch Screen Arrows Car Controller Free Asset – Unity Package

January 30, 2021January 30, 2021 Habibie

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...

Unity Pickable Object C# Script

January 29, 2021January 29, 2021 Habibie

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...

Posts navigation

Previous 1 2 3 4 5 Next
ciihuy2020

Welcome!

  • My YouTube Channel
  • My GitHub Page
  • About me

Categories

  • 3DVista
  • Android
  • Apache
  • C#
  • Cordova
  • Electron & Node JS
  • HTML5, CSS & JavaScript
  • iOS
  • Let's Make Unity Games
  • Misc
  • Photoshop
  • PHP
  • Unity
  • WordPress

Recent Posts

  • Unity lens flare is not working, what should I do?
  • Be careful with malicious script attacking WordPress sites
  • Useful JavaScript snippet when you are watching YT Videos
  • Some C# methods to write and read files, creating a folder and listing files inside it
  • Introducing UniCipher : encrypt your playerprefs and any string to make them unreadable
  • Unity navigation tabs tutorial
  • 2D Object Movement Touchpad Script for Unity
  • PHP JSON to Unity C# and Vice Versa
  • How to check whether the device is connected to internet or not in Unity
  • Unity Useful Snippets
  • How to click and detect an object in Unity3D?
  • How to remove all thumbnails from wordpress posts
  • How to find duplicated words in Notepad++
  • How to play any YouTube video dynamically using YouTube iFrame API + autoplay on mobile devices
Copyright © ThirteeNov

Minimalist Theme by WPVKP.