Skip to content

ThirteeNov

Source Codes & Coding Tutorials

  • My YouTube Channel
  • My GitHub Page
  • About me

Author: Habibie

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

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

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

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

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

March 30, 2021January 29, 2022 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...

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

March 29, 2021 Habibie

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

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

Unity Random Prefab Spawner Script

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

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

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

Easiest way to save a List variable to PlayerPrefs in Unity

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

How to type something then it should redirect us to another page in HTML and JavaScript

March 12, 2021March 12, 2021 Habibie

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

How to save and retrieve data in WordPress using get_options and update_options

March 9, 2021March 9, 2021 Habibie

In WordPress development, we often need to save and retrieve simple data in our database. By using get_options and update_options in WordPress this thing become super easy. Let’s say we want to save and retrieve a data called “User’s age”. First of all, we need...

Some handy PHP functions to create database table and add a column to it easily

March 8, 2021March 8, 2021 Habibie

I personally really like to do “make a table if not exists” and “add a column if not exists” to mysql database when working with PHP. By doing that I don’t have to manually create table and add column before populating it with data from...

How to make custom page for your plugin inside WordPress admin dashboard

March 8, 2021March 8, 2021 Habibie

Depending on what kind of plugin you are making, sometimes you want to make a settings page for your plugin so users can play around with the settings to control the way your plugin works. So how to make custom settings page for your plugin...

How to ride WordPress and use it’s database configurations to create our own tables and columns

March 7, 2021March 7, 2021 Habibie

When making a WordPress plugin sometimes we need to do some database operations, such as making table, adding column, inserting new data, updating data and so on. We can use current WordPress database connection that has been established before so we can just ride it....

How to make your custom input fields for your WordPress posts

March 7, 2021March 8, 2021 Habibie

By default there are some basic input fields and options for your wordpress posts when you want to publish a post, such as title and the post text itself, categories and the rest. These basic fields is only useful for making simple blog by adding...

Unity touch screen touchpad script to transform any objects easily

March 4, 2021March 4, 2021 Habibie

In this blog post I will share a new script that I’ve made to create a touch screen touchpad in our Unity game to control object’s transformations such as position, rotation and scale, easily. I call this script TNObjectTransformTouchpad. Here is it: How to use...

How to sort recent WordPress posts using custom order based on anything

February 26, 2021March 5, 2021 Habibie

I was trying to figure out how to make custom order of posts lists in our WordPress website. It’s confusing at first, because what I need to do is to sort my posts ordered by custom meta box field of my posts. In other words,...

How to access your localhost website running with XAMPP from another devices (like Android phone)

February 16, 2021March 1, 2021 Habibie

Hi there, I know you often develop an online websites on your local environment using local webserver such as XAMPP before you deploy it on real web server online. Sometimes you need to access your local website that is running on localhost for example in...

How to develop a WordPress plugin : Very Simple Way

February 15, 2021February 15, 2021 Habibie

Basically making a WordPress plugin is very easy. If you know the basic, you can make it super complicated, depending on what you want to achieve. First Step: Make the directory and plugin file To make a plugin, simply create a directory inside wp-content->plugins folder...

How to retrieve current database name, user and password of a WordPress site

February 15, 2021February 15, 2021 Habibie

When you are working on WordPress development (theme deelopment or plugin development), probably you will need to retrieve current website database name, database user and password. To get those information you can write these lines on your theme/plugin: The last three lines will echo the...

Unity Slider to Object Rotation Script Tutorial

February 15, 2021February 15, 2021 Habibie

In this blog post I will share a handy and yet very simple script to help you using Unity Slider UI to rotate an object, such as camera or any object, by changing the value of your slider in Unity Canvas. This script also has...

Posts navigation

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