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 download Microsoft HEVCV Codec for free?

Posted on July 28, 2024July 28, 2024 by Habibie

I was trying to install GoPro Player on my computer then it asked me to install HEVCV Codec and it was somehow annoyed to me how to get it downloaded and installed. GoPro Player requires a device that’s HEVC-compatible to play HEVC videos. HEVC is a video codec that allows you to save on bitrate…

Read more

How to make a mobile airplane / aircraft simulator game easily

Posted on June 21, 2024June 22, 2024 by Habibie

Hello guys. There is a nice free and open source project on GitHub that you can use to make your airplane mobile game. Check out this aircraft physic source code on GitHub: https://github.com/gasgiant/Aircraft-Physics/tree/master Well, the example scene is working fine and you can control your airplane using keyboard. But what if we want to make…

Read more

An example how to use WordPress Rest API v2

Posted on June 21, 2024June 21, 2024 by Habibie

In this post I will show you two examples about how to use WordPress Rest API v2 to, for example, get a post content from your website, or any other WordPress sites. Example 1 – How to get post content by post ID Make sure you change “yoursite.com” with your actual site domain, and change…

Read more

How to make Unity multiplayer game using Photon Fusion

Posted on May 24, 2024May 29, 2024 by Habibie

In this blog post I will share some video tutorials about how to make your own Unity multiplayer game using Photon Fusion for free… Here is the list of videos: 1. Introduction 2. Basic example 3. Player Nickname – Basic 4. Player Nickname – Random Nickname 5. Player Nickname – Custom Nickname 6. Objects facing…

Read more

Cordova Tips: jQuery get (AJAX) not working and CORS Policy problem on iOS? Here is the solution

Posted on May 15, 2024 by Habibie

I’ve been struggling on building an iOS web app using Cordova, because whatever I did, the web app can not run jQuery get function because of CORS Policy problem in iOS WebKit WebView. Before Apple forced us to use WKWebView there were no problem at all. Okay, the solution is, add these lines in your…

Read more

How to find words between ( and ) symbols in Notepad++

Posted on January 22, 2024June 21, 2024 by Habibie

I figured out how to find any words between “(” and “)” symbols in my text files using Notepad++. Just do a regex search like this screenshot: Use this: \(.*?\) in your search dialog and activate Regular Expression radio box. EDIT: Make sure to uncheck “matches newline”; Another example… if we want to find words…

Read more

locked by CORS policy: No ‘Access-Control-Allow-Origin’ ???

Posted on September 24, 2023June 21, 2024 by Habibie

Working on a simple coding job and facing this red message on dev console: locked by CORS policy: No ‘Access-Control-Allow-Origin’ What to do? I simply make this htaccess file to bypass CORS policy:

Read more

Make your own WiFi file transfer system – Simple HTML and PHP local file upload script

Posted on August 1, 2023August 1, 2023 by Habibie

Let’s say we have our local webserver, in my case I use XAMPP so I can have a local web in my localhost. Then, by accessing this local web page over wifi from my mobile phone web browser, I can upload some files from my phone to the local web server. This way I can…

Read more

How to install macOS Catalina in your PC or Laptop using VMWare

Posted on July 24, 2023April 17, 2024 by Habibie

For a poor guy like me especially when I want to develop iOS apps, I should have a Mac to install XCode and begin developing apps. But fortunately, there is an opportunity to me to install macOS in my existing PC using VMWare! Here is the way how I install Virtual Mac in my PC:…

Read more

Very simple JavaScript countdown source code

Posted on July 23, 2023July 23, 2023 by Habibie

In case you need to make a countdown in your website, here is a handy JavaScript code you can use. Just edit the variable countDownDate and set it the date you want, then run the JS. Watch the console log counting the seconds. It will show an alert message when the countdown reaches zero.

Read more

How to make “Friend Follows Player” in Unity Game Development

Posted on July 10, 2023July 10, 2023 by Habibie

This is a video tutorial showing you how to make a friendly object/character that will follow the player object anywhere it goes. For example in this game I have FPS character controller, and wherever I go I can make that friendly object walks following me (the player). This is the script that I used in…

Read more

Tutorial how to make rocket launcher shooting game in Unity

Posted on June 20, 2023June 23, 2023 by Habibie

Hi, in this blog post I will start a tutorial series about how to make rocket launcher shooting game in Unity. I already have the game ready. It is a FPS game with Skibidi Toilet monsters around and we need to escape and run away from them. But it would be more interesting if we…

Read more

Useful and free light flares for your Unity game development

Posted on January 3, 2023 by Habibie

I have some lens flare files that I usually use and I forgot where did I get it, I believe I got it from internet. So I return it back to internet so you guys can use it too. Here is the link I stored it in my drive: https://drive.google.com/file/d/10oPol_griAe3sidhDPV0xuTcnNKQwjrt/view?usp=share_link

Read more

Simple Example to begin with Photon PUN multiplayer game development

Posted on November 29, 2022May 29, 2024 by Habibie

This simple script is to connect the game to Photon server and instantiate a player prefab on your Resources folder. Make sure your player prefab has PhotonView component in it. Check out this video on how to use it: Ready to develop more? Watch out the next steps of what we can do with Photon…

Read more

Super Silly Simple Unity FPS WASD player movement script

Posted on November 29, 2022November 29, 2022 by Habibie

In case you need a simple script to move your game character using WASD buttons, feel free to use it:

Read more

Super simple way to load any image from URL and show it as a UI Image in Unity

Posted on November 6, 2022November 28, 2022 by Habibie

Hey dude, here I’m going to share a simple script to load any image you can have from URL accross internet and show it as a UI Image inside your Unity game. Create a script name it UiImageFromUrl.cs and copy and paste the script content below: Then attach the script to a UI Image object…

Read more

Blinking Marker – Unity Screen Space Marker Overlay Script

Posted on October 30, 2022October 30, 2022 by Habibie

This is a very easy to use Unity Screen Space Marker Overlay script that will help you to show a 2D image/sprite on game screen to show the user some specific objects that has a specific tag. In this video below I will show you how to use the script: And here is the script:

Read more

ThirteeNov Walk Patrol C# script for creating any patrolling game object in Unity

Posted on September 13, 2022October 30, 2022 by Habibie

Hi guys… I’m sharing this C# script to make any game object moving and patrolling along given way points that are simple cubes with trigger and tag on them and bla bla bla… here is the script: You can watch the video for better understanding:

Read more

Wondering why you see Chrome Cast icons on your HTML5 videos on your website?

Posted on August 27, 2022 by Habibie

Sure, I hate it too. When I use video tag in my website, if I open it from my chrome on my mobile phone, I see Chrome Cast icons on each videos that I have. How to disable such icons? It is easy. Just add this css code to your page’s stylesheet: video::-internal-media-controls-overlay-cast-button { display:…

Read more

How to Install VR APK during development for Oculus Quest 2

Posted on July 11, 2022June 20, 2023 by Habibie

Do these steps to install an app on your Oculus on development stages: Step 1: Preparations: 1. Enable developer mode of Oculus Quest 2: instructions provided from this link 2. Download & Setup SideQuest from this link Step 2: Install APK via SideQuest: 1. Turn on Oculus Quest 2 and SideQuest on PC, connect them…

Read more

Posts pagination

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