Skip to content

ThirteeNov

Source Codes & Coding Tutorials

  • My YouTube Channel
  • My GitHub Page
  • About me

Category: Unity

MyRotationTouchpad script for Unity3D

December 10, 2019August 4, 2020 Habibie

This script is made for you if you need a touch pad feature in your Unity game or app. Let’s say you want to rotate an object left or right by clicking and dragging the screen to the same direction (left or right), then this...

How to click and drag to Mouse Orbit in Unity

December 4, 2019August 4, 2020 Habibie

In many cases we need an ability to do Mouse Orbit in our Unity Game. Mouse Orbit means by moving your mouse you are orbiting a specific object to view it in different angles. I’ve found this script from this link: https://wiki.unity3d.com/index.php/MouseOrbitImproved By default, without...

Simple and easy PHP and Unity POST and GET http request tutorial

December 1, 2019August 10, 2020 Habibie

This tutorial is about simple and easy HTTP POST and GET request from Unity. Watch this video to see how it works: First, take a look this php program, you can test sending POST and GET request directly from web browser if you are running...

Call JavaScript function from Unity and vice versa – Unity JavaScript Bridge

November 30, 2019August 4, 2020 Habibie

When building a Unity program for web (WebGL), mostly we need to access methods/functions inside Unity from JavaScript (browser scripting). This example is showing how it can be done. In this example I’m showing how to call JavaScript alert from Unity and then send back...

How to set a texture of a Game Object from URL in Unity3D

November 28, 2019December 31, 2020 Habibie

I’ve searched for this thing recently on internet and I found a way to set a texture image from URL to a game object in Unity3d. Here is the script, you can attach this script to your GameObject, but don’t worry to specify your desired...

Creating crowd cars that move along given waypoints in Unity3D

November 24, 2019August 4, 2020 Habibie

Sometimes we need to create some dummy crowd cars that move from a point to another points to fill up the scene with fake traffic system. This script, which I call it WP Patrol is able to move any object, let’s say a car, to...

How to prevent a camera from going inside any collision object in Unity3D

November 19, 2019August 4, 2020 Habibie

Sometimes when our camera moves, it goes inside an object like wall, tree or any other object. How to prevent that? This is very simple solution, you can try it wit a few mouse clicks. The solution is to add a collider and rigid body...

Another tutorial about Smooth Camera Follow in Unity

November 19, 2019August 4, 2020 Habibie

Hi, previously I’ve made a tutorial about how a camera can follow an object smoothly in Unity. That tutorial was in this link: https://www.youtube.com/watch?v=3QbHSlC5a3o But seems some have problem, they said camera movement is shaky and laggy. So, here is another tutorial, this time I...

How to create day and night cycle in unity

October 25, 2019August 4, 2020 Habibie

In this tutorial I will show you how to crate a day and night cycle in Unity just by animating the direct light and using it as the sun. You will also see how to create dynamic lights that can be switched on on night...

How to create a simple moving train locomotive and wagons in Unity3D

October 23, 2019August 4, 2020 Habibie

In this tutorial you will see how to easily create a moving locomotive and wagons along the spline track in Unity3D.

How to Pause and Resume game in Unity3D

October 9, 2019August 4, 2020 Habibie

How to create pause and resume button for our Unity games? It’s easy. In this video tutorial I will show you how to set up the Pause and Resume UI.

How to create simple menu navigation and switch between menu screens in Unity

October 9, 2019August 4, 2020 Habibie

I’ve made a step by step video tutorial to create a basic menu and navigation script in Unity3D. So basically you can see the Main Menu with two buttons to navigate to its sub menus, and in each sub menus you have a back button...

Enemy Patrol Starting from the Nearest and Closest Waypoint in Unity3D

October 9, 2019August 4, 2020 Habibie

I’ve created a simple C# script for Unity game that allows you to create a patrolling enemy around multiple waypoints (check points). It will start patrolling from the nearest / closest waypoint available around the patrolling object, then it continues to check the next waypoint...

How to add a Virtual Joystick in your Unity game easily

September 1, 2019August 4, 2020 Habibie

In this video I’m showing how to add a virtual joystick in your Unity by importing this package called MyJoystick. See how to use this package in this video and have fun. Here is the link to download the package, it’s from my Google Drive:...

How to move an enemy towards the player in Unity3D

May 11, 2019August 4, 2020 Habibie

When you make a game, you often need to make enemies that move towards the player. In this video I’ll share some method to move an enemy object towards the player in Unity3D. Watch this video to see how to do it by creating a...

How to animate a texture in Unity3D

May 10, 2019August 4, 2020 Habibie

Instead of animating texture itself, we can animate the coordinate of the texture by script in Unity3D. In this video tutorial I’ll show you how we can animate a texture in Unity3D. Here is the script I used in the video:

Preventing multiple same ElectronJS apps to run at single time

February 20, 2019August 4, 2020 Habibie

I am building an EelectronJS app and successfully release it as an executable Windows program. But the problem is when the app is already running, if I double-click again that .exe file, the second window of this app is running, but buggy. I don’t want...

How to : Camera Follows Player Smoothly in Unity3D

January 8, 2019August 4, 2020 Habibie

Hi, in this video I’ll share with you some useful C# script for your Unity3D game camera so your camera can follow the player’s movements smoothly. Watch this video:

How to switch between multiple cameras in Unity3D

January 7, 2019August 4, 2020 Habibie

Let’s say you have three cameras in your Unity3D scene. So how do you switch between them? In this video I will show you how to do that.

Basic Unity and Client-Server Request-Response with PHP

December 31, 2018August 4, 2020 Habibie

In order to make our Unity game connected to the online world, it must be able to send requests to and get responses from our server. In this tutorial you will see the basic way to make our game able to communicate to PHP server...

Posts navigation

Previous 1 … 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.