Setting up Azure Spatial Anchor using Unity Package

Place the following code the manifest.json { "scopedRegistries": [ { "name": "Azure Mixed Reality Services", "url": "https://api.bintray.com/npm/microsoft/AzureMixedReality-NPM", "scopes": [ "com.microsoft.azure.spatial-anchors-sdk" ] } ], "dependencies": { "com.microsoft.azure.spatial-anchors-sdk.windows": "2.5.0", "com.microsoft.azure.spatial-anchors-sdk.android": "2.5.0", "com.microsoft.azure.spatial-anchors-sdk.ios":…

Appstore Submission 2020

Setup Logos use this site for quick logo generation https://appicon.co/ and place the icons based on the correct resolution in unity Setup apple developer account http://developers.apple.com/ Create an apple account…

Playstore Submission 2020

Step 1. Create Unqiue Bundle ID use reverse domain setup: (remove all capital letters and symbols) CANNOT BE com.Dreamarvel.LKCNHM_AR The app will not able to install, the correct way should…

Find Component in child Gameobject

![-w1680](media/15998105420013/15998106683994.jpg) If Text component is placed under the DisplayIdTxt and we need to retrieve it from Item GameObject ```csharp Text DisplayIdTxt = newItem.transform.Find("DisplayIDTxt").GetComponent(); ```

Singleton instancing

Use this to allow to create and maintain a single instance of the class that allows another class to access its methods and properties class TestClass { private static TestClass…

Create UI elements

The ASAManager require basic functions: Connect to spatial anchor server List all available anchors by ID Delete anchors by ID Exit and close session Flow: st=>start: Start e=>end: End op=>operation:…