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…
How to make a mobile airplane / aircraft simulator game easily
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…
An example how to use WordPress Rest API v2
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…
How to make Unity multiplayer game using Photon Fusion
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…
Cordova Tips: jQuery get (AJAX) not working and CORS Policy problem on iOS? Here is the solution
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…
How to find words between ( and ) symbols in Notepad++
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…
locked by CORS policy: No ‘Access-Control-Allow-Origin’ ???
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:
Make your own WiFi file transfer system – Simple HTML and PHP local file upload script
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…
How to install macOS Catalina in your PC or Laptop using VMWare
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:…
Very simple JavaScript countdown source code
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.
How to make “Friend Follows Player” in Unity Game Development
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…
Tutorial how to make rocket launcher shooting game in Unity
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…
Useful and free light flares for your Unity game development
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
Simple Example to begin with Photon PUN multiplayer game development
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…
Super Silly Simple Unity FPS WASD player movement script
In case you need a simple script to move your game character using WASD buttons, feel free to use it:
Super simple way to load any image from URL and show it as a UI Image in Unity
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…
Blinking Marker – Unity Screen Space Marker Overlay Script
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:
ThirteeNov Walk Patrol C# script for creating any patrolling game object in Unity
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:
Wondering why you see Chrome Cast icons on your HTML5 videos on your website?
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:…
How to Install VR APK during development for Oculus Quest 2
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…