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

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

Posted on March 12, 2021March 12, 2021 by 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 wrong. Basically when we type a word in an input…

Read more

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

Posted on March 9, 2021March 9, 2021 by 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 add an option for that if we don’t have it…

Read more

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

Posted on March 8, 2021March 8, 2021 by 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 my website. That’s why I’ve made this two functions to…

Read more

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

Posted on March 8, 2021March 8, 2021 by 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 inside WordPress dashboard? To add a custom page, inside your…

Read more

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

Posted on March 7, 2021March 7, 2021 by 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. To do mysqli query operations, PHP requires us a connection…

Read more

How to make your custom input fields for your WordPress posts

Posted on March 7, 2021March 8, 2021 by 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 a title and content for a post, that’s all. But,…

Read more

Unity touch screen touchpad script to transform any objects easily

Posted on March 4, 2021March 4, 2021 by 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 it? First make an UI Image on your Unity canvas…

Read more

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

Posted on February 26, 2021March 5, 2021 by 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, I want to sort my posts by custom meta key…

Read more

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

Posted on February 16, 2021March 1, 2021 by 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 this link: http://localhost/yourwebsite from your mobile phone. To do so,…

Read more

How to develop a WordPress plugin : Very Simple Way

Posted on February 15, 2021February 15, 2021 by 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 of your WordPress installation directory. Then inside that directory, create…

Read more

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

Posted on February 15, 2021February 15, 2021 by 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 database name, username and password. Hope that’s helpful.

Read more

Unity Slider to Object Rotation Script Tutorial

Posted on February 15, 2021February 15, 2021 by 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 clamping and limiting feature of how much angle the object…

Read more

How to make your Gun and Bullet system for your Unity Game and attach it to FPS Player Controller

Posted on February 12, 2021February 12, 2021 by Habibie

This is a basic tutorial about making gun and bullet projectile system for your Unity games. First I showed you how to make a bullet object, making it moving at certain speed, then making it as a prefab so we can fire any amount of bullets as we wish. Then I showed you how to…

Read more

How to make Unity Fuel System for your Unity car game

Posted on February 11, 2021February 11, 2021 by Habibie

Part #1 : Making simple fuel system for my Unity pick up car game In this video you can see how I made a simple fuel system for my game from making a display text on game UI and scripting. I will publish the next video soon about how to refuel. Part #2 : How…

Read more

Unity Left and Right Turn Sign Lights Tutorial

Posted on February 9, 2021February 9, 2021 by Habibie

How to make turn right and left signal lights in Unity | Part #1 This video tutorial is about how to make turn right and left signal lights for your car object in Unity. In this part I’ve modified my car mesh and prepared left and right turn signal light objects, applied a material to…

Read more

Unity Coin System Tutorial

Posted on February 6, 2021February 15, 2021 by Habibie

Part #1 This is my first video of some video series about how to make coin system for our Unity game. In this part I’ll be showing to you how to import 3D coin object to our Unity game, make it a prefab, adding a trigger collider and making it disappear (hide it) when we…

Read more

How to make a Day to Night Sky smooth fade transition using custom “skybox” : sphere/dome object sky

Posted on February 4, 2021February 4, 2021 by Habibie

I don’t know how to make Unity skybox transition between one skybox to another one, especially with smooth fading transition. So alternatively I made a sky dome object using basic sphere object inside Unity and apply a material with custom shader to them, and also apply SetTransition script that I demonstrated earlier on my previous…

Read more

A Unity C# Script to set the transparency of an object

Posted on February 4, 2021February 4, 2021 by Habibie

If you have an object with a material that supports color transparency, you can use this script to control it’s transparency in run time. For example you can make some buttons and use one of 2 methods available in this script to set its transparency. It has two kind of transparency changing feature, one is…

Read more

Inside Visible Transparent Unlit Unity Shader for making simple light independent material

Posted on February 4, 2021February 4, 2021 by Habibie

Sometimes we need a material for some objects that is not going to be affected by any light, for example just like making LCD screen of a turned on TV. We can apply this kind of material to the LCD plane of that object, so no matter how the lighting is in the scene, the…

Read more

Unity Speed Controller Example using Unity Slider

Posted on February 3, 2021February 3, 2021 by Habibie

In case you are building a game that need a speed controller UI such as a Slider in Unity, this example may be useful to you. In this example, first I tried to show you how to basically work with Unity Slider and how to get it’s value that ranges between 0 to 1. Then…

Read more

Posts pagination

  • Previous
  • 1
  • …
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • …
  • 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