Skip to content

ThirteeNov

Source Codes & Coding Tutorials

  • My YouTube Channel
  • My GitHub Page
  • About me

Category: Unity

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

How to add an engine sound to a car with respect to its speed in Unity

January 28, 2021January 28, 2021 Habibie

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

January 27, 2021January 27, 2021 Habibie

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

January 25, 2021January 25, 2021 Habibie

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

January 13, 2021January 23, 2021 Habibie

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

January 13, 2021February 12, 2021 Habibie

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

How to load a video file from a url and play it in Unity

November 30, 2020January 25, 2021 Habibie

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?

November 25, 2020December 1, 2020 Habibie

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

Simple Unity Example to add, move, rotate and remove objects dynamically

November 14, 2020January 15, 2021 Habibie

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

How to add a text at the center of HTML page

November 12, 2020January 15, 2021 Habibie

So many times I need to make an element, for example an image element, that appears exactly at the center of an HTML page. I did it, and here I share the code:

Click The Floor To Move – C# Script for your Unity games

November 7, 2020November 7, 2020 Habibie

I’ve made some simple script for easy floor click navigation system. Yeah, I don’t know how to name it properly, I just named it “Click the floor to move”. Basically the idea is when you click any area of the ground/floor, you can go to...

How to make a Unity WebGL page appears full screen?

October 28, 2020November 30, 2020 Habibie

I’m sure you tried to export your Unity game to a WebGL version to publish it online. But it does not appear full screen. Well, you can replace your index.html code with this, but do it at your own risk: And, hey, don’t forget you...

How to make texture chooser system in Unity

October 27, 2020October 27, 2020 Habibie

This is a demo scene of a Unity project that demonstrates how we can make a texture changing system. You can click one of those two objects inside the scene to show a texture changer interface, then you can select available textures to change the...

How to make automatic sliding door in Unity

October 24, 2020October 24, 2020 Habibie

I want to make an automatic sliding door in Unity. The idea is, there will be a door with a sensor area. If a player inside that sensor area, the door will open, and if the player left, the door closes. To make this thing...

Posts navigation

Previous 1 2 3 4 5 6 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

  • Useful and free light flares for your Unity game development
  • Simple Example to begin with Photon PUN multiplayer game development
  • Super Silly Simple Unity FPS WASD player movement script
  • Super simple way to load any image from URL and show it as a UI Image in Unity
  • Blinking Marker – Unity Screen Space Marker Overlay Script
  • ThirteeNov Walk Patrol C# script for creating any patrolling game object in Unity
  • Wondering why you see Chrome Cast icons on your HTML5 videos on your website?
  • How to Install VR APK during development for Oculus Quest 2
  • Do you need an SVG code of WhatsApp logo? Here it is.
  • 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 that online 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
Copyright © ThirteeNov

Minimalist Theme by WPVKP.