If you are a jQuery luver, you must know how to use jQuery Post and Date functions. Recently I’ve been working on a project, that involves this jQuery Get thingy like this: But, unfortunately it did not work. If you are facing the same case...

Source Codes & Coding Tutorials
If you are a jQuery luver, you must know how to use jQuery Post and Date functions. Recently I’ve been working on a project, that involves this jQuery Get thingy like this: But, unfortunately it did not work. If you are facing the same case...
Hello, and here is my first blog post about 3DVista, a nice 360 virtual tour software. Deep linkings I want to share some deep linking features that we can use in 3DVista: Deep link for focusing to some element/hotspot, for example “painting1”: You can also...
If you are working on web development, sometimes you face this problem, for example you want to include/access some files that are not on your current website domain and then you got this error message on your dev console log: CORS header ‘Access-Control-Allow-Origin’ missing How...
This “require is not defined” is pretty annoying to me as Electron user. Last year when I got this problem, I can simply solve it by adding: nodeIntegration: true. But this time, on 2021, this problem comes again. So to solve it we need to...
Let’s go to the point. First of all you must download and install NodeJS. After it’s installed, you’re ready to start to make new project. Open your Command Prompt, in Windows for example. Go to any folder/directory. Make new folder for your project, and go...
If you want to spawn your prefab based on an imaginary grid, you can use this script. For example you want to create a scene with a lot of asteroids across the player, you can make an empty game object, attach this script and set...
Create a script in your Unity editor and name it MyAudioManager.cs Then paste this code: And watch the video for more steps: Then you will know how to play multiple audio sound files by clicking some buttons on Unity 😀
Yet there are still problems in this airplane system, it is able to rotate left and right, up and down, when it is on the ground. It should do that only when it’s flying. Another problem is when I start the engine and slightly slide...
On my previous video I fixed the gravity problem. Now the airplane is not stuck on the air when the engine is stopped. It is falling down. But problem is, it is immediately falls down without little bit gliding forward just like real aircrafts. So...
In this video I will fix the problem of my airplane. Which is the airplane is not falling down when I stopped the engine. After fixing this issue, you will see that the airplane will fall down after you stopped the engine. Check out the...
I did make a simple aircraft controller in Unity, and this time in this video I will add wing flaps to my aircraft. Wing flaps is some small wing objects in airplane wings that somehow rotates to control the aircraft movement. In this video I...
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...
I wrote this list of scale modes of Phaser engine, so later if I forgot I can take a look at it easily:
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?...
I made this tutorial to answer a question asked to me about how to make something that if we type a word than it redirects us to some page. So I do this in HTML and JavaScript, and I hope I did not get it...