Unity

Below you will find pages that utilize the term “Unity”
June 26, 2021
Native Android Receive Text from Other Apps in Unity

In continuation to my previous blog Native Android text sharing in Unity, where we learnt about sharing text from a Unity app targeting the Android platform, let’s try to learn about how can we receive a text from other apps. …

May 29, 2021
Custom Android Manifest File in Unity

The Android manifest file describes essential information about your app to the Android build tools, the Android operating system, and Google Play. …

May 29, 2021
Lerp Function : Unity

In game development, one of the most common problems is the smooth transition of objects from one position to another. A linear interpolation or Lerp function is a popular technique used to achieve this in Unity. …

May 28, 2021
Typecast Android Object in Untiy

In continuation to previous my previous blogs, where we learnt about how can we use AndroidJavaClass and AndroidJavaObject to achieve simple native Android functionality in Unity, We will move one step ahead and see how can we typecast one Android object to another in Unity. …

May 28, 2021
Typecast Android Object in Untiy

This particular script will help you to typecast one Android/Java object into another in Unity. For further explaination on how this works, please read the article Native Android in Unity. …

May 21, 2021
Custom Android Manifest File in Unity

This particular xml is an example of custom Android Manifest file which can be used in unity. For further explaination on how this works, please read the article Custom Android Manifest File in Unity. …

December 3, 2020
Native Android text sharing to Whatsapp contact in Unity

In the previous blogs, we learnt about how can we trigger native Android text, image or any other format file sharing in Unity App. …

November 26, 2020
Native Android text sharing to Whatsapp contact in Unity

This particular script will help you to implement a text message sharing directly to a WhatsApp contact in Unity. For further explaination on how this works, please read the article Native Android text sharing to Whatsapp contact in Unity. …

November 23, 2020
Android : Share message directly to whatsapp contact

This particular script will help you to implement a text message sharing directly to a WhatsApp contact in Android. For further explaination on how this works, please read the article Android : Share message directly to whatsapp contact. …

October 15, 2020
Native Android image sharing in Unity using FileProvider

This particular script will help you to implement native Android image sharing using Android’s FileProvider in Unity. This is a fix for “android. …

October 12, 2020
Native Android text sharing to particular app in Unity

This particular script will help you to implement native Android text sharing to a particular app in Unity. We use all the native classes of Android in Unity using AndroidJavaClass and AndroidJavaObject and perform the Android’s ACTION_SEND with EXTRA_SUBJECT and EXTRA_TEXT, and share the content to a particular app with package name. …

October 11, 2020
Native Android image sharing in Unity

This particular script will help you to implement native Android image sharing in Unity. We use all the native classes of Android in Unity using AndroidJavaClass and AndroidJavaObject and perform the Android’s ACTION_SEND with EXTRA_SUBJECT, EXTRA_TEXT and EXTRA_STREAM. …

October 10, 2020
Native Android text sharing in Unity

This particular script will help you to implement native Android text sharing in Unity. We use all the native classes of Android in Unity using AndroidJavaClass and AndroidJavaObject and perform the Android’s ACTION_SEND with EXTRA_SUBJECT and EXTRA_TEXT. …

October 9, 2020
Native Android in Unity

This particular script will help you to implement basic native Android in Unity. This show an example of showing a native Android’s Toast in unity using AndroidJavaClass and AndroidJavaObject. …

August 14, 2020
Native Android text sharing to particular app in Unity

In the previous blogs Native Android text sharing in Unity and Native Android image sharing in Unity we learnt about how to share some text or screenshot to other apps in a Unity app targeting Android platforms. …

May 28, 2019
Native Android image sharing in Unity using FileProvider

While implementing native sharing using my previous post, Native Android image sharing in Unity we saw an exception android.os.FileUriExposedException in Android 8 (Oreo) and above. …

August 10, 2018
Native Android image sharing in Unity

In continuation to my previous blogs Native Android in Unity and Native Android text sharing in Unity, will consider another example of native Android screenshot sharing functionality in the unity app. …

June 29, 2018
Native Android text sharing in Unity

In continuation to my previous blogs Native Android in Unity, will consider another example of native Android text sharing functionality in the unity app. …

June 22, 2018
Native Android in Unity

While developing unity games in C# targeting android platform, we always want to use few native android features in our game. …