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...
Author: Habibie
A Unity C# Script to set the transparency of an object
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
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
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 Build Your Electron Js for Mac?
The process is simply quite similar to how we do it for Windows on this link: https://thirteenov.ciihuy.com/how-to-build-your-electron-js-app-as-windows-executable-for-windows/ The only difference is, instead of win32, we use darwin. So the command is like this: And one more, the icon format for Mac is icns. What about...
How to build your Electron js app as Windows executable for Windows?
I made this post because if I did not work on Elenctron project for some times, I can not remember how I did it that time. So, let’s say we have a “ready to build” Electron project, to build it for Windows, first let’s install...
How to make your in game mini map in Unity
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
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
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...
How to add an engine sound to a car with respect to its speed in Unity
I made a pickup car with its wheel colliders and completely working. I can controll it to move by pressing arrow keys on my keyboard. The next thing I need to do is to add engine sound audio file to the car with respect to...
Flashlight On and Off Unity C# Script
This simple script can be used for switching on and off a flashlight in Unity. Add the spotlight on your flashlight to the reference slot in the script. Here is the script: Watch the video to see how to use this script: You can purchase...
Unity Camera Toggler C# Script
Are you working with more than one camera in your game? You can work with any amount of cameras and you can switch between them easily using this very simple C# script, I call it Unity Camera Toggler. Here is it: In this script I...
How to add touch screen steering wheel to your car/vehicle in Unity
In this tutorial I’m going to integrate the Touch Screen steering wheel that I already shared with you on my previous tutorial: https://www.youtube.com/watch?v=izeneTqhDC8 , to a car object. This car object of course has wheel collider and rigged properly. So if you did not watch...
Unity Touch Screen Steering Wheel Tutorial
I found a forum thread about Unity Touch Screen Steering Wheel, which you can see the link at the bottom of this post; there are two versions of script, I used the C# version here. First of all, on your Unity project, create a script...
Make your own 360 virtual tour with 3Sixty Web Tour Maker
3Sixty is a desktop software for creating 360 virtual tour websites. It provides visual tools for adding panorama images, placing hotspots and attaching useful actions to each of them. It is written in HTML5, JavaScript and CSS and built using Electronjs and Nodejs. The 360...
How to load a video file from a url and play it in Unity
This script can help you to load a video file stored somewhere on internet. So by accessing its link, you can load and play it in Unity. This method can be useful to make minimal installation file size of your program, you don’t have to...
How to use equirectangular image in Unity to look around in 360 mode?
First, you need a shader file. Here is a shader code you can use to make shader file called InsideVisible: Then make a material, use your equirectangular panorama image in it. Then drag and drop the shader file to this material. Import a high poly...
Drawing with Phaser – A simple HTML5 drawing program made with Phaser, jscolor, and jQuery
With this program you can draw anything using a brush that can be adjusted, its size and its color, completely customize-able. There is also a button to clear the canvas so you can start over drawing again. This simple drawing can be useful to you...
How to install GUI for your CentOS 7 Virtual Private Server (VPS)
Yay, I googled about this topic, wonderful, I finally did it. To install Gnome GUI on your Cent OS 7 server, do this commands: Then: And then this command to make the computer starts using GUI on next boot: Then reboot it: Coool! That’s all.
Simple Unity Example to add, move, rotate and remove objects dynamically
In this Unity example project, you can have a Unity scene with some basic UIs to add a predefined objects stored on Resources folder to the scene, then click and drag the object to position it anywhere, rotate it left and right, and you can...