Skip to content

ThirteeNov

Source Codes & Coding Tutorials

  • My YouTube Channel
  • My GitHub Page
  • About me

How to remove all thumbnails from wordpress posts

January 25, 2022 Habibie

In case you want to remove all the existing post thumbnails / feature images of a website, you can go to phpmyadmin and find your database, look up for wp_yoursite_postmeta table, and run this query: Remember, “yoursite” is your website’s prefix that you setup on...

How to find duplicated words in Notepad++

November 21, 2021November 21, 2021 Habibie

To find if you have duplicated words (each line one word, for example), sort all the lines by alphabet, then hit ctrl+f and find the duplicated word using this regex: ^(.?)$\s+?^(?=.^\1$) Viola, you’ll find them.

How to play any YouTube video dynamically using YouTube iFrame API + autoplay on mobile devices

November 7, 2021November 7, 2021 Habibie

In this blog post you will see a script that I’ve demonstrated on my YouTube channel to play any YouTube video dynamically by clicking a button or typing a video id easily. Here is the script: The script is originally found here but I modified...

Wondering why you can not modify position of your player with Character Controller enabled in Unity?

September 6, 2021September 6, 2021 Habibie

I have a capsule object with Character Controller component enabled in it. Somehow if I want to change it’s transform.position, I can not just do it like as if it doesn’t have Character Controller. So workaround is, to temporarily disable the CC for a while...

How to add a 2D marker or icon on our game screen according to the 3D object in the scene in Unity

September 3, 2021November 11, 2021 Habibie

I believe you have seen a lot some games that show a 2D icon or marker that is pointing to an object in 3D world inside the game. In this blog post I will share a simple script that you can learn about it and...

Fixing _GoogleMobileAds.h and iOS build failure in XCode when using AdMob

July 6, 2021July 6, 2021 Habibie

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

Android / iOS Player Settings tab/page empty in Unity Build Settings? Don’t be worry, here is why

July 5, 2021July 5, 2021 Habibie

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

July 5, 2021July 5, 2021 Habibie

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…

June 21, 2021June 21, 2021 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...

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

June 13, 2021 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...

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

May 29, 2021May 30, 2021 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...

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

May 29, 2021May 29, 2021 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...

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

May 23, 2021May 23, 2021 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...

How to start to make your first Electron js app

May 23, 2021May 23, 2021 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...

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

April 16, 2021April 16, 2021 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...

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

April 9, 2021April 16, 2021 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 😀

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

April 1, 2021April 1, 2021 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...

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

March 31, 2021March 31, 2021 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...

How to fix gravity problem on this aircraft game development

March 31, 2021March 31, 2021 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...

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

March 31, 2021April 1, 2021 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...

Posts navigation

Previous 1 2 3 4 … 16 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.