Skip to content

ThirteeNov

My personal blog about coding and internet

Menu
  • About me
  • About Zofia Kreasi
  • Cart
  • Checkout
  • Making an airplane game from scratch in Unity
  • My account
  • Privacy Policy
  • Privacy Policy – zkLeaderboard
  • Sample Page
  • Shop
  • Tutorials on Learning JavaScript
  • ZKAccounts – Privacy Policy
Menu

Trying to send HTTP POST request from Unity but it’s empty? Here is why…

Posted on June 21, 2021June 21, 2021 by Habibie

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 out, and finally I found an answer from StackOverflow, and…

Read more

How to find an element from a jQuery AJAX response with jQuery .find() method

Posted on June 13, 2021 by Habibie

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 as me, try to wrap that data variable parsed from…

Read more

How to use Deep Linking feature in 3D Vista and some useful JavaScript method calls

Posted on May 29, 2021May 30, 2021 by Habibie

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 try this one that is more complex: Let’s breakdown above…

Read more

How to get rid of this error alert: CORS header ‘Access-Control-Allow-Origin’ missing

Posted on May 29, 2021May 29, 2021 by Habibie

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 to solve this problem? First I want to explain more…

Read more

Electron Uncaught ReferenceError: require is not defined 2021 even nodeIntegration is true

Posted on May 23, 2021May 23, 2021 by Habibie

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 add another thing here: contextIsolation: false. I don’t know is…

Read more

How to start to make your first Electron js app

Posted on May 23, 2021May 23, 2021 by Habibie

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 inside it. Then run this command: npm init -y Then…

Read more

Unity Random Spawn Grid : Free script to randomly spawn objects in grid formation

Posted on April 16, 2021April 16, 2021 by Habibie

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 reference to your asteroid stone prefab, then run the game.

Read more

How to play some audio and sound files by clicking some buttons respectively in Unity

Posted on April 9, 2021April 16, 2021 by Habibie

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 😀

Read more

Fixing another problems on this Unity airplane game: it should not maneuver and glide on the ground

Posted on April 1, 2021April 1, 2021 by Habibie

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 the thrust slider the aircraft is immediately run so fast…

Read more

How to make this airplane glide when the engine is suddenly stopped

Posted on March 31, 2021March 31, 2021 by Habibie

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’m going to fix this issue. Check…

Read more

How to fix gravity problem on this aircraft game development

Posted on March 31, 2021March 31, 2021 by Habibie

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 complete parts of this tutorial here: https://thirteenov.ciihuy.com/making-an-airplane-game-from-scratch-in-unity/

Read more

How to add wing flaps to your airplane in your aircraft unity game development

Posted on March 31, 2021April 1, 2021 by Habibie

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 will make those wing flaps and how to control them…

Read more

How to add a slider to control your airplane thrust and speed in Unity

Posted on March 30, 2021 by Habibie

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 the slider to make it move and take off. Check…

Read more

How to add slide left and right rotation and on screen buttons to your airplane in Unity

Posted on March 30, 2021 by Habibie

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 airplane game will be suitable for mobile devices too, I…

Read more

How to add aircraft controller buttons for your airplane game in Unity

Posted on March 30, 2021January 29, 2022 by Habibie

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 for left and right sliding rotation and another 2 for…

Read more

I always forget what kind of scale modes does Phaser js has. So here is the list…

Posted on March 29, 2021 by Habibie

I wrote this list of scale modes of Phaser engine, so later if I forgot I can take a look at it easily:

Read more

Getting started to make an aircraft that can take off and be controlled using WASD keyboard buttons on Unity

Posted on March 27, 2021March 27, 2021 by Habibie

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 before finally I made my way to fix any problem…

Read more

Unity Random Prefab Spawner Script

Posted on March 15, 2021March 15, 2021 by Habibie

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 specific tag to them. Then make an empty game object…

Read more

How to fix this Unity error: unity Exception in thread “main” java.lang.NoClassDefFoundError: javax…

Posted on March 13, 2021March 23, 2021 by Habibie

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 solution that worked for me is to uninstall my current…

Read more

Easiest way to save a List variable to PlayerPrefs in Unity

Posted on March 13, 2021March 13, 2021 by Habibie

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? My favorite way to do it is to convert the…

Read more

Posts pagination

  • Previous
  • 1
  • …
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • …
  • 20
  • 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
  • Python
  • Uncategorized
  • Unity
  • WordPress

Recent Posts

  • Make objects like wires and cables easily in Unity using Ciihuy Curved Mesh
  • [SOLVED] Can’t Add Custom Domain to Blogger After Losing CNAME Verification
  • iOS App Icon Generator by CiihuyCom
  • Advanced Blinking Marker Script to show objects position in your game canvas
  • Ciihuy Images Merger – Fast & Easy Online Image Combiner
© 2025 ThirteeNov | Powered by Superbs Personal Blog theme