So many times this problem happened to me when I build my Xcode generated project from Unity if I use AdMob. One of the problems is the missing _GoogleMobileAds.h file, and so many other problems. The main cause is because I never used the Cocoapod,...
Author: Habibie
Android / iOS Player Settings tab/page empty in Unity Build Settings? Don’t be worry, here is why
Several times I got this problem, that when I switched my build settings to Android or iOS, when I open the Player Settings, I found an empty tab/page. I was wondering why it happened. Turned out that I installed non-matching Android and/or iOS Support installation...
Building our first Cordova based mobile app, step by step
By using Cordova, we can build a web application that can run on many mobile devices both iOS and Android. This post will show you all the basic required steps to do it. NodeJS First of all, to use Cordova, we need to install NodeJS....
Trying to send HTTP POST request from Unity but it’s empty? Here is why…
In this blog post I’m going to share my annoying experience with Unity. It is about sending POST request from Unity C# by using UnityWebRequest. I tried to send the post data, but the server did not detect it. It took me hours to figure...
How to find an element from a jQuery AJAX response with jQuery .find() method
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...
How to use Deep Linking feature in 3D Vista and some useful JavaScript method calls
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...
How to get rid of this error alert: CORS header ‘Access-Control-Allow-Origin’ missing
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...
Electron Uncaught ReferenceError: require is not defined 2021 even nodeIntegration is true
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...
How to start to make your first Electron js app
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...
Unity Random Spawn Grid : Free script to randomly spawn objects in grid formation
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...
How to play some audio and sound files by clicking some buttons respectively in Unity
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 😀
Fixing another problems on this Unity airplane game: it should not maneuver and glide on the ground
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...
How to make this airplane glide when the engine is suddenly stopped
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...
How to fix gravity problem on this aircraft game development
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...
How to add wing flaps to your airplane in your aircraft unity game development
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...
How to add a slider to control your airplane thrust and speed in Unity
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
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
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 always forget what kind of scale modes does Phaser js has. So here is the list…
I wrote this list of scale modes of Phaser engine, so later if I forgot I can take a look at it easily:
Getting started to make an aircraft that can take off and be controlled using WASD keyboard buttons on Unity
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...