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 Build Your Electron Js for Mac?

Posted on February 2, 2021February 5, 2021 by Habibie

The process is simply quite similar to how we do it for Windows on this link: https://thirteenov.ciihuy.com/how-to-build-your-electron-js-app-as-windows-executable-for-windows/ The only difference is, instead of win32, we use darwin. So the command is like this: And one more, the icon format for Mac is icns. What about making installer for Mac? We will need this DMG maker…

Read more

How to build your Electron js app as Windows executable for Windows?

Posted on February 2, 2021October 26, 2022 by Habibie

I made this post because if I did not work on Elenctron project for some times, I can not remember how I did it that time. So, let’s say we have a “ready to build” Electron project, to build it for Windows, first let’s install Electron Packager (my favorite method is using Electron Packager). To…

Read more

How to make your in game mini map in Unity

Posted on February 1, 2021February 2, 2021 by Habibie

Hello guys, in this post I’m going to share some of my videos about how to make mini map in your game in Unity. Part #1 In this video I’m showing my progress on making a mini map for my car driving simulator game. In this first part of my videos you will see how…

Read more

Basic Unity Touch Screen Arrows Car Controller Free Asset – Unity Package

Posted on January 30, 2021January 30, 2021 by Habibie

Are you making car driving game for mobile devices? This free Unity asset will help you to make simple car controller and touch screen UI for your car. This car controller provides you 4 arrow buttons: forward, backward, left and right. It also has brake button. Please note that you will need to place your…

Read more

Unity Pickable Object C# Script

Posted on January 29, 2021January 29, 2021 by Habibie

I was making a simple script for picking and putting down an object by getting close to a pick up and drop zone area in a game. In this game my player object is a pick up car. And I tried to make a sphere as pickable object. In both this videos you will see…

Read more

How to add an engine sound to a car with respect to its speed in Unity

Posted on January 28, 2021January 28, 2021 by Habibie

I made a pickup car with its wheel colliders and completely working. I can controll it to move by pressing arrow keys on my keyboard. The next thing I need to do is to add engine sound audio file to the car with respect to its movement speed. So when the car is running fast…

Read more

Flashlight On and Off Unity C# Script

Posted on January 27, 2021January 27, 2021 by Habibie

This simple script can be used for switching on and off a flashlight in Unity. Add the spotlight on your flashlight to the reference slot in the script. Here is the script: Watch the video to see how to use this script: You can purchase the complete files as Unity Package here: https://creativeshop.ciihuy.com/product/on-off-switchable-flashlight-unity-package/

Read more

Unity Camera Toggler C# Script

Posted on January 25, 2021January 25, 2021 by Habibie

Are you working with more than one camera in your game? You can work with any amount of cameras and you can switch between them easily using this very simple C# script, I call it Unity Camera Toggler. Here is it: In this script I use array variable of cameras, so no matter how much…

Read more

How to add touch screen steering wheel to your car/vehicle in Unity

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

In this tutorial I’m going to integrate the Touch Screen steering wheel that I already shared with you on my previous tutorial: https://www.youtube.com/watch?v=izeneTqhDC8 , to a car object. This car object of course has wheel collider and rigged properly. So if you did not watch my previous tutorials about how to make your own car…

Read more

Unity Touch Screen Steering Wheel Tutorial

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

I found a forum thread about Unity Touch Screen Steering Wheel, which you can see the link at the bottom of this post; there are two versions of script, I used the C# version here. First of all, on your Unity project, create a script named SteeringWheel. Then paste this script inside it: NOTE: Whenever…

Read more

Make your own 360 virtual tour with 3Sixty Web Tour Maker

Posted on January 6, 2021January 6, 2021 by Habibie

3Sixty is a desktop software for creating 360 virtual tour websites. It provides visual tools for adding panorama images, placing hotspots and attaching useful actions to each of them. It is written in HTML5, JavaScript and CSS and built using Electronjs and Nodejs. The 360 panorama viewer engine used in this software is Panolensjs, a…

Read more

How to load a video file from a url and play it in Unity

Posted on November 30, 2020January 25, 2021 by Habibie

This script can help you to load a video file stored somewhere on internet. So by accessing its link, you can load and play it in Unity. This method can be useful to make minimal installation file size of your program, you don’t have to embed your video but you can ask your user to…

Read more

How to use equirectangular image in Unity to look around in 360 mode?

Posted on November 25, 2020December 1, 2020 by Habibie

First, you need a shader file. Here is a shader code you can use to make shader file called InsideVisible: Then make a material, use your equirectangular panorama image in it. Then drag and drop the shader file to this material. Import a high poly sphere object (for best result) to Unity scene, apply the…

Read more

Drawing with Phaser – A simple HTML5 drawing program made with Phaser, jscolor, and jQuery

Posted on November 24, 2020January 15, 2021 by Habibie

With this program you can draw anything using a brush that can be adjusted, its size and its color, completely customize-able. There is also a button to clear the canvas so you can start over drawing again. This simple drawing can be useful to you if you want to make an online drawing program for…

Read more

How to install GUI for your CentOS 7 Virtual Private Server (VPS)

Posted on November 18, 2020November 18, 2020 by Habibie

Yay, I googled about this topic, wonderful, I finally did it. To install Gnome GUI on your Cent OS 7 server, do this commands: Then: And then this command to make the computer starts using GUI on next boot: Then reboot it: Coool! That’s all.

Read more

Simple Unity Example to add, move, rotate and remove objects dynamically

Posted on November 14, 2020January 15, 2021 by Habibie

In this Unity example project, you can have a Unity scene with some basic UIs to add a predefined objects stored on Resources folder to the scene, then click and drag the object to position it anywhere, rotate it left and right, and you can also remove it. There are two cameras in this example…

Read more

How to add a text at the center of HTML page

Posted on November 12, 2020January 15, 2021 by Habibie

So many times I need to make an element, for example an image element, that appears exactly at the center of an HTML page. I did it, and here I share the code:

Read more

How to make your own online file storage with this simple PHP program

Posted on November 7, 2020November 7, 2020 by Habibie

This PHP program you can use it to upload your personal files to your website directory so you can access them anywhere. By default username and password are admin and admin, you can change them by editing index.php file. To get the source code, go to my GitHub link here: https://github.com/habibieamrullah/SuperSimplePHPFileStorageAndUploader Watch the demo video…

Read more

Click The Floor To Move – C# Script for your Unity games

Posted on November 7, 2020November 7, 2020 by Habibie

I’ve made some simple script for easy floor click navigation system. Yeah, I don’t know how to name it properly, I just named it “Click the floor to move”. Basically the idea is when you click any area of the ground/floor, you can go to that area smoothly. I will show you this video so…

Read more

Timer Loop – Simple HTML timer program

Posted on November 5, 2020November 5, 2020 by Habibie

Timer Loop is a simple JavaScript application to set alert and timer repeatedly Timer Loop is a simple tool to make you remember something that you must do it every each x time interval. Everytime that x time comes, an alert sound will be played. Set the time interval in minutes (for example, if you…

Read more

Posts pagination

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