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

Do you need an SVG code of WhatsApp logo? Here it is.

Posted on June 10, 2022June 10, 2022 by Habibie

Hi there, I have an SVG code of WhatsApp logo that you can use in your website projects. This WhatsApp logo is vector based, high resolution no matter how far you zoom it in. Here is the code: <svg style=”pointer-events:none; display:block; height=38px; width=38px” width=”38px” height=”38px” viewBox=”0 0 1024 1024″><defs><path id=”htwasqicona-chat” d=”M1023.941 765.153c0 5.606-.171 17.766-.508 27.159-.824…

Read more

Unity lens flare is not working, what should I do?

Posted on May 18, 2022May 18, 2022 by Habibie

Very common beginner problem. The solution to make your lens flares working in Unity: Make sure your camera has Flare Layer component. And make sure your light object is not covered by any collider. Try these two checks then you will see your lens flare working.

Read more

Be careful with malicious script attacking WordPress sites

Posted on May 17, 2022May 17, 2022 by Habibie

I just found a client facing this problem, that his website is attacked by a some kind of virus or malicious script. His website is replaced and redirects to another malicious web pages, some random and malicious blog posts generated on his posts list containing harmful links, etc. After checking further, I found that many…

Read more

Useful JavaScript snippet when you are watching that online Videos

Posted on April 30, 2022June 14, 2022 by Habibie

Hi guys, I was searching for something on StackOverflow and found this topic. I’m not suggesting you to do it, just educational information, that this JavaScript code is somehow useful. I don’t know how it works technically but it works. It works like an invisible hand to click that button to do that thing… javascript:(function(){setInterval(function()…

Read more

Some C# methods to write and read files, creating a folder and listing files inside it

Posted on February 12, 2022February 14, 2022 by Habibie

This two C# snippets may be useful to you if you are working on file read and write in your Unity C# project. Don’t forge to use System.io okay? Here is the code: Write to file List files inside a directory List directories inside a directory ordered by date

Read more

Introducing UniCipher : encrypt your playerprefs and any string to make them unreadable

Posted on February 10, 2022February 10, 2022 by Habibie

You want to make your text uneasily readable, try to encrypt it using this method: UniCipher. I’ve made this simple C# script to convert your text into an unreadable text so no one can easily understand and modify it. Make a script named UniCipher.cs and paste this: Attach it to a game object, and play…

Read more

Unity navigation tabs tutorial

Posted on February 10, 2022 by Habibie

How to create navigation tabs and buttons UI in Unity and how to change the buttons color by script? In this tutorial I will show you how to make tabs in Unity and how to switch between each tab plus its simple button color changing feature. Please have this script (MyTabs.cs) and watch my video…

Read more

2D Object Movement Touchpad Script for Unity

Posted on February 10, 2022February 10, 2022 by Habibie

Hi there, in this post I’m going to share with you how to create a touchpad to control 2D object movements in Unity. First step is to make an image UI element in your Unity Canvas. Then attach this script to it (name this script “MyMovementTouchpad”): Then add event trigger to it. You need two…

Read more

PHP JSON to Unity C# and Vice Versa

Posted on February 8, 2022February 8, 2022 by Habibie

So, you have a backend script in PHP that returns JSON string and you want to parse that data from your Unity game. What would you do?Based on my experience, here is how I do it. PHP Let’s say I have a PHP script (index.php) like this: And that php script is placed somewhere on…

Read more

How to check whether the device is connected to internet or not in Unity

Posted on February 8, 2022February 8, 2022 by Habibie

If you want to check is the Unity game running in a device connected to internet or not, you can call this coroutine function: Simply call that coroutine function like this: StartCoroutine(CheckInternetConnection()); Then wait for a message in your Unity console about internet connection. Don’t forget to use Networking namespace: using UnityEngine.Networking;

Read more

Unity Useful Snippets

Posted on January 29, 2022December 29, 2022 by Habibie

I made this post to compile some of useful snippets that I frequently use in my coding. So instead of searching around again and again, I better to list them here in one place. How to set object tag by script in Unity This one apparently so simple. To set a tag of a game…

Read more

How to click and detect an object in Unity3D?

Posted on January 27, 2022January 27, 2022 by Habibie

In this blog post, I’m sharing a simple technique and script to make you able to click any 3D object and detect what is the name of that 3D object in your Unity Editor using simple raycasting. First of all, make some 3D objects and add a tag to them, for example “FunnyTag”. Don’t forget,…

Read more

How to remove all thumbnails from wordpress posts

Posted on January 25, 2022 by 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 your wp_config file. This way is better than removing unwanted…

Read more

How to find duplicated words in Notepad++

Posted on November 21, 2021November 21, 2021 by 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.

Read more

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

Posted on November 7, 2021November 7, 2021 by 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 it and added a useful function to it so we…

Read more

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

Posted on September 6, 2021September 6, 2021 by 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 and change its position then re-enable it again like this:…

Read more

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

Posted on September 3, 2021November 11, 2021 by 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 develop from it to make your own HUDs for your…

Read more

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

Posted on July 6, 2021July 6, 2021 by 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, because at first time I was thinking it was not…

Read more

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

Posted on July 5, 2021July 5, 2021 by 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 program. So to solve this problem, I just tried to…

Read more

Building our first Cordova based mobile app, step by step

Posted on July 5, 2021January 23, 2025 by 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. I won’t cover how to install NodeJS here. I assume…

Read more

Posts pagination

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