This free asset from yasurkula is very nice, it allows you to pick image file from your Android device easily, it also deals with app permission so you can just call a single function to request permission, so easy! Here is the link to the...
Unity random mesh spawner at certain position C# script
In this blog post I will share a simple script that I’ve made to randomize what game object to be instantiated at a certain position as a child game object. For example, a car game object needs random accessories to be instantiated at certain area...
Nice and Simple WayPoint Based AI Car Unity Package
Hello guys, I was trying to use Unity AI Car script from Ahmedsaed (https://github.com/Ahmedsaed/CarAI-Unity) but I found it somehow interesting but to me it’s too complicated. Then I decided to modify it to make it simpler. I don’t want the NavMesh thingy that he used...
How to downgrade to Unity Ads version 4.4.2 ?
I am using Unity Ads and very happy. Recently there is a newer version of Unity Ads, which is version 4.12.0 and somehow I got problem when exporting my game as Android apk. I realized that this update is useless to me. I tried to...
How to download Microsoft HEVCV Codec for free?
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...
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...
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...
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...
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...
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...
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...
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...
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...
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...
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...
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...
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...
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...