├── .gitattributes ├── .gitignore ├── LICENSE.md ├── Packages ├── com.unity.gis.unit │ ├── .README - External.md │ ├── .gitignore │ ├── .npmignore │ ├── .yamato │ │ ├── environment.metafile │ │ ├── package-coverage.yml │ │ └── package-pack.yml │ ├── CHANGELOG.md │ ├── CHANGELOG.md.meta │ ├── CONTRIBUTING.md │ ├── CONTRIBUTING.md.meta │ ├── Documentation~ │ │ ├── TableOfContents.md │ │ ├── images │ │ │ ├── MultiPage_TOC-structure.png │ │ │ └── example.png │ │ ├── index.md │ │ ├── sample-package-guide.md │ │ ├── test-package-guide.md │ │ └── tools-package-guide.md │ ├── LICENSE.md │ ├── LICENSE.md.meta │ ├── QAReport.md │ ├── QAReport.md.meta │ ├── README.md │ ├── README.md.meta │ ├── Runtime.meta │ ├── Runtime │ │ ├── Core.meta │ │ ├── Core │ │ │ ├── Formula.cs │ │ │ ├── Formula.cs.meta │ │ │ ├── Mapping.cs │ │ │ ├── Mapping.cs.meta │ │ │ ├── Parser.cs │ │ │ ├── Parser.cs.meta │ │ │ ├── RegEx.cs │ │ │ ├── RegEx.cs.meta │ │ │ ├── RegexItem.cs │ │ │ ├── RegexItem.cs.meta │ │ │ ├── Unit.cs │ │ │ ├── Unit.cs.meta │ │ │ ├── UnitDef.cs │ │ │ ├── UnitDef.cs.meta │ │ │ ├── UnitDefPower.cs │ │ │ ├── UnitDefPower.cs.meta │ │ │ ├── UnitNaming.cs │ │ │ └── UnitNaming.cs.meta │ │ ├── Definitions.meta │ │ ├── Definitions │ │ │ ├── Angle.cs │ │ │ ├── Angle.cs.meta │ │ │ ├── AngularArea.cs │ │ │ ├── AngularArea.cs.meta │ │ │ ├── Area.cs │ │ │ ├── Area.cs.meta │ │ │ ├── Currency.cs │ │ │ ├── Currency.cs.meta │ │ │ ├── Frequency.cs │ │ │ ├── Frequency.cs.meta │ │ │ ├── Length.cs │ │ │ ├── Length.cs.meta │ │ │ ├── Mass.cs │ │ │ ├── Mass.cs.meta │ │ │ ├── Radioactivity.cs │ │ │ ├── Radioactivity.cs.meta │ │ │ ├── SubstanceAmount.cs │ │ │ ├── SubstanceAmount.cs.meta │ │ │ ├── Temperature.cs │ │ │ ├── Temperature.cs.meta │ │ │ ├── Time.cs │ │ │ ├── Time.cs.meta │ │ │ ├── Volume.cs │ │ │ └── Volume.cs.meta │ │ ├── Exceptions.meta │ │ ├── Exceptions │ │ │ ├── ConvertAbstractException.cs │ │ │ ├── ConvertAbstractException.cs.meta │ │ │ ├── DifferentPowersException.cs │ │ │ ├── DifferentPowersException.cs.meta │ │ │ ├── DifferentTypesException.cs │ │ │ ├── DifferentTypesException.cs.meta │ │ │ ├── DoublePatternException.cs │ │ │ ├── DoublePatternException.cs.meta │ │ │ ├── ExponentPatternException.cs │ │ │ ├── ExponentPatternException.cs.meta │ │ │ ├── IncompatibleTypesException.cs │ │ │ ├── IncompatibleTypesException.cs.meta │ │ │ ├── MultiBaseUnitException.cs │ │ │ ├── MultiBaseUnitException.cs.meta │ │ │ ├── NullUnitDefException.cs │ │ │ ├── NullUnitDefException.cs.meta │ │ │ ├── PowerOutOfRangeException.cs │ │ │ ├── PowerOutOfRangeException.cs.meta │ │ │ ├── UnitPatternException.cs │ │ │ ├── UnitPatternException.cs.meta │ │ │ ├── WrongRegistrationPowerException.cs │ │ │ ├── WrongRegistrationPowerException.cs.meta │ │ │ ├── WrongUnitDefTypeException.cs │ │ │ └── WrongUnitDefTypeException.cs.meta │ │ ├── Formatting.meta │ │ ├── Formatting │ │ │ ├── FractionalUnitFormatter.cs │ │ │ ├── FractionalUnitFormatter.cs.meta │ │ │ ├── MultiFractionalUnitFormatter.cs │ │ │ ├── MultiFractionalUnitFormatter.cs.meta │ │ │ ├── MultiUnitFormatter.cs │ │ │ ├── MultiUnitFormatter.cs.meta │ │ │ ├── MultiUnitFormatterHelper.cs │ │ │ ├── MultiUnitFormatterHelper.cs.meta │ │ │ ├── UnitFormatter.cs │ │ │ └── UnitFormatter.cs.meta │ │ ├── Interfaces.meta │ │ ├── Interfaces │ │ │ ├── IAngle.cs │ │ │ ├── IAngle.cs.meta │ │ │ ├── IAngularArea.cs │ │ │ ├── IAngularArea.cs.meta │ │ │ ├── IArea.cs │ │ │ ├── IArea.cs.meta │ │ │ ├── ICurrency.cs │ │ │ ├── ICurrency.cs.meta │ │ │ ├── IFormula.cs │ │ │ ├── IFormula.cs.meta │ │ │ ├── IFrequency.cs │ │ │ ├── IFrequency.cs.meta │ │ │ ├── ILength.cs │ │ │ ├── ILength.cs.meta │ │ │ ├── IMass.cs │ │ │ ├── IMass.cs.meta │ │ │ ├── IRadioactivity.cs │ │ │ ├── IRadioactivity.cs.meta │ │ │ ├── ISubstanceAmount.cs │ │ │ ├── ISubstanceAmount.cs.meta │ │ │ ├── ITemperature.cs │ │ │ ├── ITemperature.cs.meta │ │ │ ├── ITime.cs │ │ │ ├── ITime.cs.meta │ │ │ ├── IUnit.cs │ │ │ ├── IUnit.cs.meta │ │ │ ├── IUnitDef.cs │ │ │ ├── IUnitDef.cs.meta │ │ │ ├── IUnitException.cs │ │ │ ├── IUnitException.cs.meta │ │ │ ├── IUnitFormatter.cs │ │ │ ├── IUnitFormatter.cs.meta │ │ │ ├── IVolume.cs │ │ │ └── IVolume.cs.meta │ │ ├── Serializer.meta │ │ ├── Serializer │ │ │ ├── Json.meta │ │ │ └── Json │ │ │ │ ├── UnitConverter.cs │ │ │ │ └── UnitConverter.cs.meta │ │ ├── Units.meta │ │ ├── Units │ │ │ ├── Imperial.cs │ │ │ ├── Imperial.cs.meta │ │ │ ├── Misc.cs │ │ │ ├── Misc.cs.meta │ │ │ ├── Money.cs │ │ │ ├── Money.cs.meta │ │ │ ├── Si.cs │ │ │ ├── Si.cs.meta │ │ │ ├── Storey.cs │ │ │ ├── Storey.cs.meta │ │ │ ├── Uscs.cs │ │ │ └── Uscs.cs.meta │ │ ├── Unity.Geospatial.Unit.asmdef │ │ └── Unity.Geospatial.Unit.asmdef.meta │ ├── Tests.meta │ ├── Tests │ │ ├── .tests.json │ │ ├── Runtime.meta │ │ └── Runtime │ │ │ ├── ITester.cs │ │ │ ├── ITester.cs.meta │ │ │ ├── TestsConstructor.cs │ │ │ ├── TestsConstructor.cs.meta │ │ │ ├── TestsConvert.cs │ │ │ ├── TestsConvert.cs.meta │ │ │ ├── TestsError.cs │ │ │ ├── TestsError.cs.meta │ │ │ ├── TestsFormatter.cs │ │ │ ├── TestsFormatter.cs.meta │ │ │ ├── TestsMethod.cs │ │ │ ├── TestsMethod.cs.meta │ │ │ ├── TestsOperator.cs │ │ │ ├── TestsOperator.cs.meta │ │ │ ├── TestsSerialize.cs │ │ │ ├── TestsSerialize.cs.meta │ │ │ ├── Unity.Geospatial.Unit.Tests.asmdef │ │ │ └── Unity.Geospatial.Unit.Tests.asmdef.meta │ ├── Third Party Notices.md │ ├── Third Party Notices.md.meta │ ├── catalog-info.yaml │ ├── catalog-info.yaml.meta │ ├── package.json │ └── package.json.meta └── com.unity.reference-project.persistence-api │ ├── .dt-samples.json │ ├── CHANGELOG.md │ ├── CHANGELOG.md.meta │ ├── LICENSE.md │ ├── LICENSE.md.meta │ ├── README.md │ ├── README.md.meta │ ├── Runtime.meta │ ├── Runtime │ ├── CloudServices.meta │ ├── CloudServices │ │ ├── Api.cs │ │ ├── Api.cs.meta │ │ ├── ApiClient.cs │ │ ├── ApiClient.cs.meta │ │ ├── FileField.cs │ │ ├── FileField.cs.meta │ │ ├── RequestData.cs │ │ ├── RequestData.cs.meta │ │ ├── UrlShortener.cs │ │ ├── UrlShortener.cs.meta │ │ ├── WebResponses.cs │ │ └── WebResponses.cs.meta │ ├── Json Converters.meta │ ├── Json Converters │ │ ├── ColorValueConverter.cs │ │ ├── ColorValueConverter.cs.meta │ │ ├── QuaternionConverter.cs │ │ ├── QuaternionConverter.cs.meta │ │ ├── Vector2Converter.cs │ │ ├── Vector2Converter.cs.meta │ │ ├── Vector3Converter.cs │ │ └── Vector3Converter.cs.meta │ ├── Unity.ReferenceProject.PersistenceAPI.asmdef │ └── Unity.ReferenceProject.PersistenceAPI.asmdef.meta │ ├── Tests.meta │ ├── Tests │ ├── Tests.meta │ └── Tests │ │ ├── LocalApiTests.cs │ │ ├── LocalApiTests.cs.meta │ │ ├── Persistence.Tests.asmdef │ │ └── Persistence.Tests.asmdef.meta │ ├── package.json │ └── package.json.meta ├── README.md ├── ReferenceProject ├── Assets │ ├── AddressableAssetsData.meta │ ├── AddressableAssetsData │ │ ├── AddressableAssetSettings.asset │ │ ├── AddressableAssetSettings.asset.meta │ │ ├── AssetGroupTemplates.meta │ │ ├── AssetGroupTemplates │ │ │ ├── Packed Assets.asset │ │ │ └── Packed Assets.asset.meta │ │ ├── AssetGroups.meta │ │ ├── AssetGroups │ │ │ ├── Built In Data.asset │ │ │ ├── Built In Data.asset.meta │ │ │ ├── Default Local Group.asset │ │ │ ├── Default Local Group.asset.meta │ │ │ ├── Localization-Assets-Shared.asset │ │ │ ├── Localization-Assets-Shared.asset.meta │ │ │ ├── Localization-Locales.asset │ │ │ ├── Localization-Locales.asset.meta │ │ │ ├── Localization-String-Tables-English (en).asset │ │ │ ├── Localization-String-Tables-English (en).asset.meta │ │ │ ├── Localization-String-Tables-French (fr).asset │ │ │ ├── Localization-String-Tables-French (fr).asset.meta │ │ │ ├── Schemas.meta │ │ │ └── Schemas │ │ │ │ ├── Built In Data_PlayerDataGroupSchema.asset │ │ │ │ ├── Built In Data_PlayerDataGroupSchema.asset.meta │ │ │ │ ├── Default Local Group_BundledAssetGroupSchema.asset │ │ │ │ ├── Default Local Group_BundledAssetGroupSchema.asset.meta │ │ │ │ ├── Default Local Group_ContentUpdateGroupSchema.asset │ │ │ │ ├── Default Local Group_ContentUpdateGroupSchema.asset.meta │ │ │ │ ├── Localization-Assets-Shared_BundledAssetGroupSchema.asset │ │ │ │ ├── Localization-Assets-Shared_BundledAssetGroupSchema.asset.meta │ │ │ │ ├── Localization-Assets-Shared_ContentUpdateGroupSchema.asset │ │ │ │ ├── Localization-Assets-Shared_ContentUpdateGroupSchema.asset.meta │ │ │ │ ├── Localization-Locales_BundledAssetGroupSchema.asset │ │ │ │ ├── Localization-Locales_BundledAssetGroupSchema.asset.meta │ │ │ │ ├── Localization-Locales_ContentUpdateGroupSchema.asset │ │ │ │ ├── Localization-Locales_ContentUpdateGroupSchema.asset.meta │ │ │ │ ├── Localization-String-Tables-English (en)_BundledAssetGroupSchema.asset │ │ │ │ ├── Localization-String-Tables-English (en)_BundledAssetGroupSchema.asset.meta │ │ │ │ ├── Localization-String-Tables-English (en)_ContentUpdateGroupSchema.asset │ │ │ │ ├── Localization-String-Tables-English (en)_ContentUpdateGroupSchema.asset.meta │ │ │ │ ├── Localization-String-Tables-French (fr)_BundledAssetGroupSchema.asset │ │ │ │ ├── Localization-String-Tables-French (fr)_BundledAssetGroupSchema.asset.meta │ │ │ │ ├── Localization-String-Tables-French (fr)_ContentUpdateGroupSchema.asset │ │ │ │ └── Localization-String-Tables-French (fr)_ContentUpdateGroupSchema.asset.meta │ │ ├── DataBuilders.meta │ │ ├── DataBuilders │ │ │ ├── BuildScriptFastMode.asset │ │ │ ├── BuildScriptFastMode.asset.meta │ │ │ ├── BuildScriptPackedMode.asset │ │ │ ├── BuildScriptPackedMode.asset.meta │ │ │ ├── BuildScriptPackedPlayMode.asset │ │ │ ├── BuildScriptPackedPlayMode.asset.meta │ │ │ ├── BuildScriptVirtualMode.asset │ │ │ └── BuildScriptVirtualMode.asset.meta │ │ ├── DefaultObject.asset │ │ ├── DefaultObject.asset.meta │ │ ├── ProfileDataSourceSettings.asset │ │ ├── ProfileDataSourceSettings.asset.meta │ │ ├── Windows.meta │ │ └── Windows │ │ │ ├── addressables_content_state.bin │ │ │ └── addressables_content_state.bin.meta │ ├── Build.meta │ ├── Build │ │ ├── DisplayBuildVersion.cs │ │ ├── DisplayBuildVersion.cs.meta │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── BuildCloudPlayerSettingsProvider.cs │ │ │ ├── BuildCloudPlayerSettingsProvider.cs.meta │ │ │ ├── BuildSettingsParser.cs │ │ │ ├── BuildSettingsParser.cs.meta │ │ │ ├── Builder.cs │ │ │ ├── Builder.cs.meta │ │ │ ├── BuilderConstants.cs │ │ │ └── BuilderConstants.cs.meta │ │ ├── ucrp_base_version.txt │ │ └── ucrp_base_version.txt.meta │ ├── DefaultNetworkPrefabs.asset │ ├── DefaultNetworkPrefabs.asset.meta │ ├── Editor.meta │ ├── Editor │ │ ├── Scripts.meta │ │ ├── Scripts │ │ │ ├── CameraViewDataDefaultEditor.cs │ │ │ ├── CameraViewDataDefaultEditor.cs.meta │ │ │ ├── Focus3ProjectSettings.cs │ │ │ ├── Focus3ProjectSettings.cs.meta │ │ │ ├── QuestProjectSettings.cs │ │ │ ├── QuestProjectSettings.cs.meta │ │ │ ├── SetupVR.cs │ │ │ └── SetupVR.cs.meta │ │ ├── Unity.ReferenceProject.Editor.asmdef │ │ └── Unity.ReferenceProject.Editor.asmdef.meta │ ├── Packages_com.unity.gis.unit_Runtime_ColorPalette.asset │ ├── Packages_com.unity.gis.unit_Runtime_ColorPalette.asset.meta │ ├── Settings.meta │ ├── Settings │ │ ├── CameraProxySettings.asset │ │ ├── CameraProxySettings.asset.meta │ │ ├── FlyModeInputAction.inputactions │ │ ├── FlyModeInputAction.inputactions.meta │ │ ├── InputSystem.inputsettings.asset │ │ ├── InputSystem.inputsettings.asset.meta │ │ ├── ShaderVariants.shadervariants │ │ ├── ShaderVariants.shadervariants.meta │ │ ├── UINavigationControllerSettings.asset │ │ ├── UINavigationControllerSettings.asset.meta │ │ ├── URP.meta │ │ └── URP │ │ │ ├── URP-Balanced-Renderer.asset │ │ │ ├── URP-Balanced-Renderer.asset.meta │ │ │ ├── URP-Balanced.asset │ │ │ ├── URP-Balanced.asset.meta │ │ │ ├── URP-HighFidelity-Renderer.asset │ │ │ ├── URP-HighFidelity-Renderer.asset.meta │ │ │ ├── URP-HighFidelity.asset │ │ │ ├── URP-HighFidelity.asset.meta │ │ │ ├── URP-Performant-Renderer.asset │ │ │ ├── URP-Performant-Renderer.asset.meta │ │ │ ├── URP-Performant.asset │ │ │ └── URP-Performant.asset.meta │ ├── Tests.meta │ ├── Tests │ │ ├── Editor.meta │ │ └── Editor │ │ │ ├── EmptyConsoleTests.cs │ │ │ ├── EmptyConsoleTests.cs.meta │ │ │ ├── Unity.ReferenceProject.Tests.Editor.asmdef │ │ │ └── Unity.ReferenceProject.Tests.Editor.asmdef.meta │ ├── UnityDefaultRuntimeTheme.tss │ ├── UnityDefaultRuntimeTheme.tss.meta │ ├── UniversalRenderPipelineGlobalSettings.asset │ ├── UniversalRenderPipelineGlobalSettings.asset.meta │ ├── Utilities.meta │ ├── Utilities │ │ ├── Git.meta │ │ └── Git │ │ │ ├── Editor.meta │ │ │ ├── Editor │ │ │ ├── GitVersionControlEditor.cs │ │ │ └── GitVersionControlEditor.cs.meta │ │ │ ├── GitException.cs │ │ │ ├── GitException.cs.meta │ │ │ ├── IVersionControlInformation.cs │ │ │ ├── IVersionControlInformation.cs.meta │ │ │ ├── VersionControlInformation.cs │ │ │ └── VersionControlInformation.cs.meta │ ├── XR.meta │ ├── XR │ │ ├── Loaders.meta │ │ ├── Loaders │ │ │ ├── Open XR Loader.asset │ │ │ └── Open XR Loader.asset.meta │ │ ├── Settings.meta │ │ ├── Settings │ │ │ ├── OpenXR Editor Settings.asset │ │ │ ├── OpenXR Editor Settings.asset.meta │ │ │ ├── OpenXR Package Settings.asset │ │ │ └── OpenXR Package Settings.asset.meta │ │ ├── XRGeneralSettings.asset │ │ └── XRGeneralSettings.asset.meta │ ├── XRI.meta │ ├── XRI │ │ ├── Settings.meta │ │ └── Settings │ │ │ ├── Resources.meta │ │ │ ├── Resources │ │ │ ├── InteractionLayerSettings.asset │ │ │ ├── InteractionLayerSettings.asset.meta │ │ │ ├── XRDeviceSimulatorSettings.asset │ │ │ └── XRDeviceSimulatorSettings.asset.meta │ │ │ ├── XRInteractionEditorSettings.asset │ │ │ └── XRInteractionEditorSettings.asset.meta │ ├── _Application.meta │ ├── _Application │ │ ├── AssemblyInfo.cs │ │ ├── AssemblyInfo.cs.meta │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── AssetLoader.cs │ │ │ ├── AssetLoader.cs.meta │ │ │ ├── AssetLoaderWindow.cs │ │ │ └── AssetLoaderWindow.cs.meta │ │ ├── Localization.meta │ │ ├── Localization │ │ │ ├── English (en).asset │ │ │ ├── English (en).asset.meta │ │ │ ├── French (fr).asset │ │ │ ├── French (fr).asset.meta │ │ │ ├── Localization Settings.asset │ │ │ ├── Localization Settings.asset.meta │ │ │ ├── Project Settings iOS Shared Data.asset │ │ │ ├── Project Settings iOS Shared Data.asset.meta │ │ │ ├── Tables.meta │ │ │ └── Tables │ │ │ │ ├── AppUI Shared Data.asset │ │ │ │ ├── AppUI Shared Data.asset.meta │ │ │ │ ├── AppUI.asset │ │ │ │ ├── AppUI.asset.meta │ │ │ │ ├── AppUI_en.asset │ │ │ │ ├── AppUI_en.asset.meta │ │ │ │ ├── AppUI_fr.asset │ │ │ │ ├── AppUI_fr.asset.meta │ │ │ │ ├── ReferenceProject Shared Data.asset │ │ │ │ ├── ReferenceProject Shared Data.asset.meta │ │ │ │ ├── ReferenceProject.asset │ │ │ │ ├── ReferenceProject.asset.meta │ │ │ │ ├── ReferenceProject_en.asset │ │ │ │ ├── ReferenceProject_en.asset.meta │ │ │ │ ├── ReferenceProject_fr.asset │ │ │ │ └── ReferenceProject_fr.asset.meta │ │ ├── NavigationModes.meta │ │ ├── NavigationModes │ │ │ ├── CameraDefaultPositionController.cs │ │ │ ├── CameraDefaultPositionController.cs.meta │ │ │ ├── FlyMode.meta │ │ │ ├── FlyMode │ │ │ │ ├── FlyMode.asset │ │ │ │ ├── FlyMode.asset.meta │ │ │ │ ├── Prefabs.meta │ │ │ │ ├── Prefabs │ │ │ │ │ ├── FlyController.prefab │ │ │ │ │ └── FlyController.prefab.meta │ │ │ │ ├── Scripts.meta │ │ │ │ ├── Scripts │ │ │ │ │ ├── FlyOrbitController.cs │ │ │ │ │ └── FlyOrbitController.cs.meta │ │ │ │ ├── Sprites.meta │ │ │ │ ├── Sprites │ │ │ │ │ ├── Fly@2x.png │ │ │ │ │ └── Fly@2x.png.meta │ │ │ │ ├── UIToolkit.meta │ │ │ │ └── UIToolkit │ │ │ │ │ ├── InstructionsKeyboard_FlyMode.uxml │ │ │ │ │ ├── InstructionsKeyboard_FlyMode.uxml.meta │ │ │ │ │ ├── InstructionsTouchScreen_FlyMode.uxml │ │ │ │ │ └── InstructionsTouchScreen_FlyMode.uxml.meta │ │ │ ├── FollowMode.meta │ │ │ ├── FollowMode │ │ │ │ ├── Follow.asset │ │ │ │ ├── Follow.asset.meta │ │ │ │ ├── Prefab.meta │ │ │ │ ├── Prefab │ │ │ │ │ ├── FollowNavigation.prefab │ │ │ │ │ └── FollowNavigation.prefab.meta │ │ │ │ ├── Script.meta │ │ │ │ └── Script │ │ │ │ │ ├── CameraControllerFollow.cs │ │ │ │ │ ├── CameraControllerFollow.cs.meta │ │ │ │ │ ├── FollowNavigationMode.cs │ │ │ │ │ └── FollowNavigationMode.cs.meta │ │ │ ├── Gamepad.meta │ │ │ ├── Gamepad │ │ │ │ ├── Prefab.meta │ │ │ │ ├── Prefab │ │ │ │ │ ├── GamepadController.prefab │ │ │ │ │ └── GamepadController.prefab.meta │ │ │ │ ├── Scripts.meta │ │ │ │ ├── Scripts │ │ │ │ │ ├── GamepadController.cs │ │ │ │ │ ├── GamepadController.cs.meta │ │ │ │ │ ├── GamepadStick.cs │ │ │ │ │ └── GamepadStick.cs.meta │ │ │ │ ├── Sprites.meta │ │ │ │ ├── Sprites │ │ │ │ │ ├── Arrows@3x.png │ │ │ │ │ ├── Arrows@3x.png.meta │ │ │ │ │ ├── Center@3x.png │ │ │ │ │ └── Center@3x.png.meta │ │ │ │ ├── UIToolkit.meta │ │ │ │ └── UIToolkit │ │ │ │ │ ├── GamepadStyle.uss │ │ │ │ │ ├── GamepadStyle.uss.meta │ │ │ │ │ ├── GamepadUI.uxml │ │ │ │ │ └── GamepadUI.uxml.meta │ │ │ ├── Sprites.meta │ │ │ ├── Sprites │ │ │ │ ├── MouseNavigations.png │ │ │ │ ├── MouseNavigations.png.meta │ │ │ │ ├── NavigationMobile@1_5x.png │ │ │ │ ├── NavigationMobile@1_5x.png.meta │ │ │ │ ├── NavigationMobileWalk@1_5x.png │ │ │ │ └── NavigationMobileWalk@1_5x.png.meta │ │ │ ├── UIToolkit.meta │ │ │ ├── UIToolkit │ │ │ │ ├── InstructionsStyle.uss │ │ │ │ └── InstructionsStyle.uss.meta │ │ │ ├── WalkMode.meta │ │ │ └── WalkMode │ │ │ │ ├── Inputs.meta │ │ │ │ ├── Inputs │ │ │ │ ├── WalkModeInputAction.inputactions │ │ │ │ └── WalkModeInputAction.inputactions.meta │ │ │ │ ├── Prefabs.meta │ │ │ │ ├── Prefabs │ │ │ │ ├── WalkModeController.prefab │ │ │ │ ├── WalkModeController.prefab.meta │ │ │ │ ├── WalkModeUIController.prefab │ │ │ │ └── WalkModeUIController.prefab.meta │ │ │ │ ├── Runtime.meta │ │ │ │ ├── Runtime │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── AssemblyInfo.cs.meta │ │ │ │ ├── Localization.meta │ │ │ │ ├── Localization │ │ │ │ │ ├── WalkMode Shared Data.asset │ │ │ │ │ ├── WalkMode Shared Data.asset.meta │ │ │ │ │ ├── WalkMode.asset │ │ │ │ │ ├── WalkMode.asset.meta │ │ │ │ │ ├── WalkMode_en.asset │ │ │ │ │ ├── WalkMode_en.asset.meta │ │ │ │ │ ├── WalkMode_fr.asset │ │ │ │ │ └── WalkMode_fr.asset.meta │ │ │ │ ├── Scripts.meta │ │ │ │ ├── Scripts │ │ │ │ │ ├── WalkModeCameraController.cs │ │ │ │ │ ├── WalkModeCameraController.cs.meta │ │ │ │ │ ├── WalkModeConfigurator.cs │ │ │ │ │ ├── WalkModeConfigurator.cs.meta │ │ │ │ │ ├── WalkModeInputsController.cs │ │ │ │ │ ├── WalkModeInputsController.cs.meta │ │ │ │ │ ├── WalkModeMoveController.cs │ │ │ │ │ ├── WalkModeMoveController.cs.meta │ │ │ │ │ ├── WalkModeToolUIController.cs │ │ │ │ │ └── WalkModeToolUIController.cs.meta │ │ │ │ ├── Unity.ReferenceProject.WalkController.Runtime.asmdef │ │ │ │ └── Unity.ReferenceProject.WalkController.Runtime.asmdef.meta │ │ │ │ ├── Sprites.meta │ │ │ │ ├── Sprites │ │ │ │ ├── Settings@2x.png │ │ │ │ ├── Settings@2x.png.meta │ │ │ │ ├── SettingsIcons_hover@2x.png │ │ │ │ ├── SettingsIcons_hover@2x.png.meta │ │ │ │ ├── Walk Mode@2x.png │ │ │ │ └── Walk Mode@2x.png.meta │ │ │ │ ├── UIToolkit.meta │ │ │ │ ├── UIToolkit │ │ │ │ ├── InstructionsKeyboard_WalkMode.uxml │ │ │ │ ├── InstructionsKeyboard_WalkMode.uxml.meta │ │ │ │ ├── WalkModeSettingsStyle.uss │ │ │ │ ├── WalkModeSettingsStyle.uss.meta │ │ │ │ ├── WalkModeSettingsTool.uxml │ │ │ │ └── WalkModeSettingsTool.uxml.meta │ │ │ │ ├── WalkMode.asset │ │ │ │ └── WalkMode.asset.meta │ │ ├── Prefabs.meta │ │ ├── Prefabs │ │ │ ├── Localization.prefab │ │ │ ├── Localization.prefab.meta │ │ │ ├── StreamingCamera.prefab │ │ │ ├── StreamingCamera.prefab.meta │ │ │ ├── [ App State Machine ].prefab │ │ │ ├── [ App State Machine ].prefab.meta │ │ │ ├── [ Build Version ].prefab │ │ │ ├── [ Build Version ].prefab.meta │ │ │ ├── [ Controllers ] .prefab │ │ │ ├── [ Controllers ] .prefab.meta │ │ │ ├── [ Event System ].prefab │ │ │ ├── [ Event System ].prefab.meta │ │ │ ├── [ Main Scene Context ].prefab │ │ │ ├── [ Main Scene Context ].prefab.meta │ │ │ ├── [ Main Scene UI ].prefab │ │ │ ├── [ Main Scene UI ].prefab.meta │ │ │ ├── [ Settings ].prefab │ │ │ ├── [ Settings ].prefab.meta │ │ │ ├── [ Streaming Scene Context ].prefab │ │ │ ├── [ Streaming Scene Context ].prefab.meta │ │ │ ├── [ Streaming Scene UI ].prefab │ │ │ └── [ Streaming Scene UI ].prefab.meta │ │ ├── Resources.meta │ │ ├── Resources │ │ │ ├── ProjectContext.prefab │ │ │ └── ProjectContext.prefab.meta │ │ ├── Scenes.meta │ │ ├── Scenes │ │ │ ├── Main.unity │ │ │ ├── Main.unity.meta │ │ │ ├── Streaming.unity │ │ │ └── Streaming.unity.meta │ │ ├── Scripts.meta │ │ ├── Scripts │ │ │ ├── AppController.meta │ │ │ ├── AppController │ │ │ │ ├── AppStateToolUIManager.cs │ │ │ │ ├── AppStateToolUIManager.cs.meta │ │ │ │ ├── AppStateUIToggler.cs │ │ │ │ ├── AppStateUIToggler.cs.meta │ │ │ │ ├── AssetListRoomMonitoringController.cs │ │ │ │ └── AssetListRoomMonitoringController.cs.meta │ │ │ ├── AppStates.meta │ │ │ ├── AppStates │ │ │ │ ├── AssetListState.cs │ │ │ │ ├── AssetListState.cs.meta │ │ │ │ ├── Initialization.meta │ │ │ │ ├── Initialization │ │ │ │ │ ├── InitialState.cs │ │ │ │ │ ├── InitialState.cs.meta │ │ │ │ │ ├── WaitAuthenticationState.cs │ │ │ │ │ ├── WaitAuthenticationState.cs.meta │ │ │ │ │ ├── WaitLocalesLoadingState.cs │ │ │ │ │ └── WaitLocalesLoadingState.cs.meta │ │ │ │ ├── LoginState.cs │ │ │ │ ├── LoginState.cs.meta │ │ │ │ ├── LogoutState.cs │ │ │ │ ├── LogoutState.cs.meta │ │ │ │ ├── SceneStreamingState.cs │ │ │ │ └── SceneStreamingState.cs.meta │ │ │ ├── AppUnitSetting.cs │ │ │ ├── AppUnitSetting.cs.meta │ │ │ ├── DI.meta │ │ │ ├── DI │ │ │ │ ├── CameraInstaller.cs │ │ │ │ ├── CameraInstaller.cs.meta │ │ │ │ ├── LocalizationInstaller.cs │ │ │ │ ├── LocalizationInstaller.cs.meta │ │ │ │ ├── ServicesInstaller.cs │ │ │ │ └── ServicesInstaller.cs.meta │ │ │ ├── Localization.meta │ │ │ └── Localization │ │ │ │ ├── AppLocalization.cs │ │ │ │ ├── AppLocalization.cs.meta │ │ │ │ ├── LocalSelector.cs │ │ │ │ └── LocalSelector.cs.meta │ │ ├── UI.meta │ │ ├── UI │ │ │ ├── Background.meta │ │ │ ├── Background │ │ │ │ ├── Prefabs.meta │ │ │ │ ├── Prefabs │ │ │ │ │ ├── Background.prefab │ │ │ │ │ └── Background.prefab.meta │ │ │ │ ├── Sprites.meta │ │ │ │ ├── Sprites │ │ │ │ │ ├── UnityBackground.png │ │ │ │ │ ├── UnityBackground.png.meta │ │ │ │ │ ├── UnityLogo.png │ │ │ │ │ └── UnityLogo.png.meta │ │ │ │ ├── UIToolkit.meta │ │ │ │ └── UIToolkit │ │ │ │ │ ├── Background.uxml │ │ │ │ │ ├── Background.uxml.meta │ │ │ │ │ ├── BackgroundStyle.uss │ │ │ │ │ └── BackgroundStyle.uss.meta │ │ │ ├── Icons.meta │ │ │ ├── Icons │ │ │ │ ├── UnityIcon_1024x1024.png │ │ │ │ └── UnityIcon_1024x1024.png.meta │ │ │ ├── Menus.meta │ │ │ ├── Menus │ │ │ │ ├── UIToolkit.meta │ │ │ │ └── UIToolkit │ │ │ │ │ ├── LeftMenu.uxml │ │ │ │ │ ├── LeftMenu.uxml.meta │ │ │ │ │ ├── LeftMenuStyle.uss │ │ │ │ │ ├── LeftMenuStyle.uss.meta │ │ │ │ │ ├── LeftTopMenu.uxml │ │ │ │ │ ├── LeftTopMenu.uxml.meta │ │ │ │ │ ├── TopMenu.uxml │ │ │ │ │ ├── TopMenu.uxml.meta │ │ │ │ │ ├── TopMenuBackground.uxml │ │ │ │ │ ├── TopMenuBackground.uxml.meta │ │ │ │ │ ├── TopMenuStyle.uss │ │ │ │ │ └── TopMenuStyle.uss.meta │ │ │ ├── SceneName.meta │ │ │ ├── SceneName │ │ │ │ ├── Prefabs.meta │ │ │ │ ├── Prefabs │ │ │ │ │ ├── SceneName.prefab │ │ │ │ │ └── SceneName.prefab.meta │ │ │ │ ├── Scripts.meta │ │ │ │ ├── Scripts │ │ │ │ │ ├── AssetNameDisplay.cs │ │ │ │ │ └── AssetNameDisplay.cs.meta │ │ │ │ ├── UIToolkit.meta │ │ │ │ └── UIToolkit │ │ │ │ │ ├── SceneName.uxml │ │ │ │ │ ├── SceneName.uxml.meta │ │ │ │ │ ├── SceneNameStyle.uss │ │ │ │ │ └── SceneNameStyle.uss.meta │ │ │ ├── SplashScreen.meta │ │ │ ├── SplashScreen │ │ │ │ ├── Prefabs.meta │ │ │ │ ├── Prefabs │ │ │ │ │ ├── Splash Screen.prefab │ │ │ │ │ └── Splash Screen.prefab.meta │ │ │ │ ├── UIToolkit.meta │ │ │ │ └── UIToolkit │ │ │ │ │ ├── SplashScreen.uxml │ │ │ │ │ ├── SplashScreen.uxml.meta │ │ │ │ │ ├── SplashScreenStyle.uss │ │ │ │ │ └── SplashScreenStyle.uss.meta │ │ │ ├── StatsDisplay.meta │ │ │ ├── StatsDisplay │ │ │ │ ├── Prefabs.meta │ │ │ │ ├── Prefabs │ │ │ │ │ ├── Stats Display.prefab │ │ │ │ │ ├── Stats Display.prefab.meta │ │ │ │ │ ├── [ Streaming Stats ].prefab │ │ │ │ │ └── [ Streaming Stats ].prefab.meta │ │ │ │ ├── Scripts.meta │ │ │ │ ├── Scripts │ │ │ │ │ ├── Stats.meta │ │ │ │ │ ├── Stats │ │ │ │ │ │ ├── CameraStats.cs │ │ │ │ │ │ ├── CameraStats.cs.meta │ │ │ │ │ │ ├── FrameRate.meta │ │ │ │ │ │ ├── FrameRate │ │ │ │ │ │ │ ├── FrameRate.cs │ │ │ │ │ │ │ ├── FrameRate.cs.meta │ │ │ │ │ │ │ ├── FrameRateCalculator.cs │ │ │ │ │ │ │ └── FrameRateCalculator.cs.meta │ │ │ │ │ │ ├── SceneBoundsStats.cs │ │ │ │ │ │ └── SceneBoundsStats.cs.meta │ │ │ │ │ ├── StatsDisplay.cs │ │ │ │ │ └── StatsDisplay.cs.meta │ │ │ │ ├── UIToolkit.meta │ │ │ │ └── UIToolkit │ │ │ │ │ ├── StatsDisplay.uxml │ │ │ │ │ ├── StatsDisplay.uxml.meta │ │ │ │ │ ├── StatsDisplayStyles.uss │ │ │ │ │ └── StatsDisplayStyles.uss.meta │ │ │ ├── Theme.meta │ │ │ ├── Theme │ │ │ │ ├── Prefabs.meta │ │ │ │ ├── Prefabs │ │ │ │ │ ├── Theme.prefab │ │ │ │ │ └── Theme.prefab.meta │ │ │ │ ├── Scripts.meta │ │ │ │ └── Scripts │ │ │ │ │ ├── ThemeSetting.cs │ │ │ │ │ └── ThemeSetting.cs.meta │ │ │ ├── ToolUIModes.meta │ │ │ ├── ToolUIModes │ │ │ │ ├── Tool UI Mode Do Nothing.asset │ │ │ │ ├── Tool UI Mode Do Nothing.asset.meta │ │ │ │ ├── Tool UI Mode Floating - Right.asset │ │ │ │ ├── Tool UI Mode Floating - Right.asset.meta │ │ │ │ ├── Tool UI Mode Popover - Bottom.asset │ │ │ │ ├── Tool UI Mode Popover - Bottom.asset.meta │ │ │ │ ├── Tool UI Mode Popover - Left.asset │ │ │ │ ├── Tool UI Mode Popover - Left.asset.meta │ │ │ │ ├── Tool UI Mode Popover - Right.asset │ │ │ │ ├── Tool UI Mode Popover - Right.asset.meta │ │ │ │ ├── Tool UI Mode Simple.asset │ │ │ │ ├── Tool UI Mode Simple.asset.meta │ │ │ │ ├── Tool UI Mode Tool Panel.asset │ │ │ │ ├── Tool UI Mode Tool Panel.asset.meta │ │ │ │ ├── UIToolkit.meta │ │ │ │ └── UIToolkit │ │ │ │ │ ├── PanelModeStyles.uss │ │ │ │ │ ├── PanelModeStyles.uss.meta │ │ │ │ │ ├── PanelModeStylesFit.uss │ │ │ │ │ └── PanelModeStylesFit.uss.meta │ │ │ ├── Utils.meta │ │ │ └── Utils │ │ │ │ ├── AdditionalStyle.cs │ │ │ │ └── AdditionalStyle.cs.meta │ │ ├── UIToolkit.meta │ │ ├── UIToolkit │ │ │ ├── Fonts.meta │ │ │ ├── Fonts │ │ │ │ ├── NotoSansCJK-Regular SDF.asset │ │ │ │ ├── NotoSansCJK-Regular SDF.asset.meta │ │ │ │ ├── NotoSansCJK-Regular.ttc │ │ │ │ └── NotoSansCJK-Regular.ttc.meta │ │ │ ├── MainPanelSettings.asset │ │ │ ├── MainPanelSettings.asset.meta │ │ │ ├── MainStyle.uss │ │ │ ├── MainStyle.uss.meta │ │ │ ├── Themes.meta │ │ │ ├── Themes │ │ │ │ ├── Main Theme.tss │ │ │ │ ├── Main Theme.tss.meta │ │ │ │ ├── Main-Dark.tss │ │ │ │ ├── Main-Dark.tss.meta │ │ │ │ ├── Main-Light.tss │ │ │ │ ├── Main-Light.tss.meta │ │ │ │ ├── Palette.tss │ │ │ │ └── Palette.tss.meta │ │ │ ├── UITK Text Settings.asset │ │ │ └── UITK Text Settings.asset.meta │ │ ├── Unity.ReferenceProject.asmdef │ │ └── Unity.ReferenceProject.asmdef.meta │ ├── _Modules.meta │ ├── _Modules │ │ ├── Annotation.meta │ │ ├── Annotation │ │ │ ├── Runtime.meta │ │ │ └── Runtime │ │ │ │ ├── Localization.meta │ │ │ │ ├── Localization │ │ │ │ ├── Annotation Shared Data.asset │ │ │ │ ├── Annotation Shared Data.asset.meta │ │ │ │ ├── Annotation.asset │ │ │ │ ├── Annotation.asset.meta │ │ │ │ ├── Annotation_en.asset │ │ │ │ ├── Annotation_en.asset.meta │ │ │ │ ├── Annotation_fr.asset │ │ │ │ └── Annotation_fr.asset.meta │ │ │ │ ├── Materials.meta │ │ │ │ ├── Materials │ │ │ │ ├── AnnotationIndicator.mat │ │ │ │ └── AnnotationIndicator.mat.meta │ │ │ │ ├── Prefab.meta │ │ │ │ ├── Prefab │ │ │ │ ├── AnnotationIndicator.prefab │ │ │ │ ├── AnnotationIndicator.prefab.meta │ │ │ │ ├── AnnotationUIController.prefab │ │ │ │ └── AnnotationUIController.prefab.meta │ │ │ │ ├── Scripts.meta │ │ │ │ ├── Scripts │ │ │ │ ├── AnnotationController.cs │ │ │ │ ├── AnnotationController.cs.meta │ │ │ │ ├── AnnotationIndicatorController.cs │ │ │ │ ├── AnnotationIndicatorController.cs.meta │ │ │ │ ├── AnnotationIndicatorManager.cs │ │ │ │ ├── AnnotationIndicatorManager.cs.meta │ │ │ │ ├── AnnotationInstaller.cs │ │ │ │ ├── AnnotationInstaller.cs.meta │ │ │ │ ├── AnnotationToolUIController.cs │ │ │ │ ├── AnnotationToolUIController.cs.meta │ │ │ │ ├── CommentPanelController.cs │ │ │ │ ├── CommentPanelController.cs.meta │ │ │ │ ├── TopicPanelController.cs │ │ │ │ ├── TopicPanelController.cs.meta │ │ │ │ ├── Utils.cs │ │ │ │ └── Utils.cs.meta │ │ │ │ ├── Shaders.meta │ │ │ │ ├── Shaders │ │ │ │ ├── AnnotationIndicator.shadergraph │ │ │ │ └── AnnotationIndicator.shadergraph.meta │ │ │ │ ├── Sprites.meta │ │ │ │ ├── Sprites │ │ │ │ ├── Annotation-Middle@1x.png │ │ │ │ ├── Annotation-Middle@1x.png.meta │ │ │ │ ├── Annotation-Middle@2x.png │ │ │ │ ├── Annotation-Middle@2x.png.meta │ │ │ │ ├── Annotation-Middle@3x.png │ │ │ │ ├── Annotation-Middle@3x.png.meta │ │ │ │ ├── Annotation-Middle@4x.png │ │ │ │ ├── Annotation-Middle@4x.png.meta │ │ │ │ ├── Annotation-Outside@1x.png │ │ │ │ ├── Annotation-Outside@1x.png.meta │ │ │ │ ├── Annotation-Outside@2x.png │ │ │ │ ├── Annotation-Outside@2x.png.meta │ │ │ │ ├── Annotation-Outside@3x.png │ │ │ │ ├── Annotation-Outside@3x.png.meta │ │ │ │ ├── Annotation-Outside@4x.png │ │ │ │ ├── Annotation-Outside@4x.png.meta │ │ │ │ ├── Annotation.png │ │ │ │ ├── Annotation.png.meta │ │ │ │ ├── Annotation@2x.png │ │ │ │ ├── Annotation@2x.png.meta │ │ │ │ ├── comment@2x.png │ │ │ │ ├── comment@2x.png.meta │ │ │ │ ├── send@2x.png │ │ │ │ └── send@2x.png.meta │ │ │ │ ├── UIToolkit.meta │ │ │ │ ├── UIToolkit │ │ │ │ ├── AnnotationStyle.uss │ │ │ │ ├── AnnotationStyle.uss.meta │ │ │ │ ├── AnnotationTool.uxml │ │ │ │ ├── AnnotationTool.uxml.meta │ │ │ │ ├── CommentEntry.uxml │ │ │ │ ├── CommentEntry.uxml.meta │ │ │ │ ├── OptionButton.uxml │ │ │ │ ├── OptionButton.uxml.meta │ │ │ │ ├── TextInput.uxml │ │ │ │ ├── TextInput.uxml.meta │ │ │ │ ├── TopicEntry.uxml │ │ │ │ └── TopicEntry.uxml.meta │ │ │ │ ├── Unity.ReferenceProject.Annotation.Runtime.asmdef │ │ │ │ └── Unity.ReferenceProject.Annotation.Runtime.asmdef.meta │ │ ├── AppCamera.meta │ │ ├── AppCamera │ │ │ ├── Runtime.meta │ │ │ └── Runtime │ │ │ │ ├── Scripts.meta │ │ │ │ ├── Scripts │ │ │ │ ├── CameraController.cs │ │ │ │ ├── CameraController.cs.meta │ │ │ │ ├── CameraProxy.cs │ │ │ │ ├── CameraProxy.cs.meta │ │ │ │ ├── Settings.meta │ │ │ │ ├── Settings │ │ │ │ │ ├── CameraProxySettings.cs │ │ │ │ │ ├── CameraProxySettings.cs.meta │ │ │ │ │ ├── UINavigationControllerSettings.cs │ │ │ │ │ └── UINavigationControllerSettings.cs.meta │ │ │ │ ├── Utils.meta │ │ │ │ └── Utils │ │ │ │ │ ├── DeltaCalculator.cs │ │ │ │ │ └── DeltaCalculator.cs.meta │ │ │ │ ├── Unity.ReferenceProject.AppCamera.Runtime.asmdef │ │ │ │ └── Unity.ReferenceProject.AppCamera.Runtime.asmdef.meta │ │ ├── AssetList.meta │ │ ├── AssetList │ │ │ ├── Runtime.meta │ │ │ └── Runtime │ │ │ │ ├── Localization.meta │ │ │ │ ├── Localization │ │ │ │ ├── AssetList Shared Data.asset │ │ │ │ ├── AssetList Shared Data.asset.meta │ │ │ │ ├── AssetList.asset │ │ │ │ ├── AssetList.asset.meta │ │ │ │ ├── AssetList_en.asset │ │ │ │ ├── AssetList_en.asset.meta │ │ │ │ ├── AssetList_fr.asset │ │ │ │ └── AssetList_fr.asset.meta │ │ │ │ ├── Prefabs.meta │ │ │ │ ├── Prefabs │ │ │ │ ├── AssetList.prefab │ │ │ │ ├── AssetList.prefab.meta │ │ │ │ ├── AssetListTool.prefab │ │ │ │ └── AssetListTool.prefab.meta │ │ │ │ ├── Scripts.meta │ │ │ │ ├── Scripts │ │ │ │ ├── AssetDisplayedInformation.cs │ │ │ │ ├── AssetDisplayedInformation.cs.meta │ │ │ │ ├── Controllers.meta │ │ │ │ ├── Controllers │ │ │ │ │ ├── AssetGridUIController.cs │ │ │ │ │ ├── AssetGridUIController.cs.meta │ │ │ │ │ ├── AssetInfoUIController.cs │ │ │ │ │ ├── AssetInfoUIController.cs.meta │ │ │ │ │ ├── AssetListController.cs │ │ │ │ │ ├── AssetListController.cs.meta │ │ │ │ │ ├── AssetListToolUIController.cs │ │ │ │ │ ├── AssetListToolUIController.cs.meta │ │ │ │ │ ├── AssetListUIController.cs │ │ │ │ │ ├── AssetListUIController.cs.meta │ │ │ │ │ ├── CollectionGridUIController.cs │ │ │ │ │ ├── CollectionGridUIController.cs.meta │ │ │ │ │ ├── FilterUIController.cs │ │ │ │ │ ├── FilterUIController.cs.meta │ │ │ │ │ ├── OrganizationUIController.cs │ │ │ │ │ ├── OrganizationUIController.cs.meta │ │ │ │ │ ├── ProjectUIController.cs │ │ │ │ │ ├── ProjectUIController.cs.meta │ │ │ │ │ ├── SearchController.cs │ │ │ │ │ ├── SearchController.cs.meta │ │ │ │ │ ├── SortUIController.cs │ │ │ │ │ ├── SortUIController.cs.meta │ │ │ │ │ ├── TextureController.cs │ │ │ │ │ └── TextureController.cs.meta │ │ │ │ ├── DI.meta │ │ │ │ ├── DI │ │ │ │ │ ├── AssetListInstaller.cs │ │ │ │ │ └── AssetListInstaller.cs.meta │ │ │ │ ├── Filters.meta │ │ │ │ ├── Filters │ │ │ │ │ ├── AssetListFilterData.cs │ │ │ │ │ ├── AssetListFilterData.cs.meta │ │ │ │ │ ├── AssetTypeFilter.cs │ │ │ │ │ ├── AssetTypeFilter.cs.meta │ │ │ │ │ ├── BaseDateFilter.cs │ │ │ │ │ ├── BaseDateFilter.cs.meta │ │ │ │ │ ├── BaseTextFilter.cs │ │ │ │ │ ├── BaseTextFilter.cs.meta │ │ │ │ │ ├── CreatedByFilter.cs │ │ │ │ │ ├── CreatedByFilter.cs.meta │ │ │ │ │ ├── CreatedDateFilter.cs │ │ │ │ │ ├── CreatedDateFilter.cs.meta │ │ │ │ │ ├── FilterCreator.cs │ │ │ │ │ ├── FilterCreator.cs.meta │ │ │ │ │ ├── StatusFilter.cs │ │ │ │ │ ├── StatusFilter.cs.meta │ │ │ │ │ ├── UpdatedByFilter.cs │ │ │ │ │ ├── UpdatedByFilter.cs.meta │ │ │ │ │ ├── UpdatedDateFilter.cs │ │ │ │ │ └── UpdatedDateFilter.cs.meta │ │ │ │ ├── OrganizationSelector.cs │ │ │ │ ├── OrganizationSelector.cs.meta │ │ │ │ ├── ThumbnailPlaceholders.cs │ │ │ │ ├── ThumbnailPlaceholders.cs.meta │ │ │ │ ├── TransformationWorkflow.meta │ │ │ │ ├── TransformationWorkflow │ │ │ │ │ ├── TransformationWorkflowUIController.cs │ │ │ │ │ └── TransformationWorkflowUIController.cs.meta │ │ │ │ ├── UI.meta │ │ │ │ └── UI │ │ │ │ │ ├── AssetInformationContainerUI.cs │ │ │ │ │ └── AssetInformationContainerUI.cs.meta │ │ │ │ ├── Settings.meta │ │ │ │ ├── Settings │ │ │ │ ├── AssetDisplayedInformation.asset │ │ │ │ ├── AssetDisplayedInformation.asset.meta │ │ │ │ ├── AssetListFilterData.asset │ │ │ │ ├── AssetListFilterData.asset.meta │ │ │ │ ├── ThumbnailPlaceholders.asset │ │ │ │ └── ThumbnailPlaceholders.asset.meta │ │ │ │ ├── Sprites.meta │ │ │ │ ├── Sprites │ │ │ │ ├── 2d_placeholder.png │ │ │ │ ├── 2d_placeholder.png.meta │ │ │ │ ├── Browse@2x.png │ │ │ │ ├── Browse@2x.png.meta │ │ │ │ ├── audio_placeholder.png │ │ │ │ ├── audio_placeholder.png.meta │ │ │ │ ├── chevron.png │ │ │ │ ├── chevron.png.meta │ │ │ │ ├── chevron_down.png │ │ │ │ ├── chevron_down.png.meta │ │ │ │ ├── circle.png │ │ │ │ ├── circle.png.meta │ │ │ │ ├── cube@2x.png │ │ │ │ ├── cube@2x.png.meta │ │ │ │ ├── delete.png │ │ │ │ ├── delete.png.meta │ │ │ │ ├── expand.png │ │ │ │ ├── expand.png.meta │ │ │ │ ├── material_placeholder.png │ │ │ │ ├── material_placeholder.png.meta │ │ │ │ ├── model_placeholder.png │ │ │ │ ├── model_placeholder.png.meta │ │ │ │ ├── other_placeholder.png │ │ │ │ ├── other_placeholder.png.meta │ │ │ │ ├── script_placeholder.png │ │ │ │ ├── script_placeholder.png.meta │ │ │ │ ├── search.png │ │ │ │ ├── search.png.meta │ │ │ │ ├── squares-four@2x.png │ │ │ │ ├── squares-four@2x.png.meta │ │ │ │ ├── stack@2x.png │ │ │ │ ├── stack@2x.png.meta │ │ │ │ ├── sync.png │ │ │ │ ├── sync.png.meta │ │ │ │ ├── video_placeholder.png │ │ │ │ └── video_placeholder.png.meta │ │ │ │ ├── UIToolkit.meta │ │ │ │ ├── UIToolkit │ │ │ │ ├── AssetGridItem.uxml │ │ │ │ ├── AssetGridItem.uxml.meta │ │ │ │ ├── AssetGridItemStyle.uss │ │ │ │ ├── AssetGridItemStyle.uss.meta │ │ │ │ ├── AssetList.uxml │ │ │ │ ├── AssetList.uxml.meta │ │ │ │ ├── AssetListStyle.uss │ │ │ │ ├── AssetListStyle.uss.meta │ │ │ │ ├── CollectionGridItem.uxml │ │ │ │ ├── CollectionGridItem.uxml.meta │ │ │ │ ├── CollectionGridItemStyle.uss │ │ │ │ ├── CollectionGridItemStyle.uss.meta │ │ │ │ ├── FilterSelection.uxml │ │ │ │ ├── FilterSelection.uxml.meta │ │ │ │ ├── OrganizationListItem.uxml │ │ │ │ ├── OrganizationListItem.uxml.meta │ │ │ │ ├── OrganizationListStyle.uss │ │ │ │ ├── OrganizationListStyle.uss.meta │ │ │ │ ├── ProjectListItem.uxml │ │ │ │ ├── ProjectListItem.uxml.meta │ │ │ │ ├── TransformationWorkflow.uxml │ │ │ │ ├── TransformationWorkflow.uxml.meta │ │ │ │ ├── TransformationWorkflowStyle.uss │ │ │ │ └── TransformationWorkflowStyle.uss.meta │ │ │ │ ├── Unity.ReferenceProject.AssetList.Runtime.asmdef │ │ │ │ └── Unity.ReferenceProject.AssetList.Runtime.asmdef.meta │ │ ├── AssetManager.meta │ │ ├── AssetManager │ │ │ ├── Runtime.meta │ │ │ └── Runtime │ │ │ │ ├── Scripts.meta │ │ │ │ ├── Scripts │ │ │ │ ├── Stores.meta │ │ │ │ └── Stores │ │ │ │ │ ├── AssetManagerStore.cs │ │ │ │ │ ├── AssetManagerStore.cs.meta │ │ │ │ │ ├── AssetManagerStoreInstaller.cs │ │ │ │ │ └── AssetManagerStoreInstaller.cs.meta │ │ │ │ ├── Unity.ReferenceProject.AssetManager.Runtime.asmdef │ │ │ │ └── Unity.ReferenceProject.AssetManager.Runtime.asmdef.meta │ │ ├── Common.meta │ │ ├── Common │ │ │ ├── Runtime.meta │ │ │ └── Runtime │ │ │ │ ├── Localization.meta │ │ │ │ ├── Localization │ │ │ │ ├── Common Shared Data.asset │ │ │ │ ├── Common Shared Data.asset.meta │ │ │ │ ├── Common.asset │ │ │ │ ├── Common.asset.meta │ │ │ │ ├── Common_en.asset │ │ │ │ ├── Common_en.asset.meta │ │ │ │ ├── Common_fr.asset │ │ │ │ └── Common_fr.asset.meta │ │ │ │ ├── Scripts.meta │ │ │ │ ├── Scripts │ │ │ │ ├── CameraProvider.cs │ │ │ │ ├── CameraProvider.cs.meta │ │ │ │ ├── ColorPalette.cs │ │ │ │ ├── ColorPalette.cs.meta │ │ │ │ ├── ServicesInitializer.cs │ │ │ │ ├── ServicesInitializer.cs.meta │ │ │ │ ├── StreamableAssetHelper.cs │ │ │ │ ├── StreamableAssetHelper.cs.meta │ │ │ │ ├── TurnToFace.cs │ │ │ │ ├── TurnToFace.cs.meta │ │ │ │ ├── Utils.cs │ │ │ │ ├── Utils.cs.meta │ │ │ │ ├── ZoneScale.cs │ │ │ │ └── ZoneScale.cs.meta │ │ │ │ ├── Settings.meta │ │ │ │ ├── Settings │ │ │ │ ├── AvatarColorPalette.asset │ │ │ │ └── AvatarColorPalette.asset.meta │ │ │ │ ├── Unity.ReferenceProject.Common.Runtime.asmdef │ │ │ │ └── Unity.ReferenceProject.Common.Runtime.asmdef.meta │ │ ├── CustomKeyboard.meta │ │ ├── CustomKeyboard │ │ │ ├── Editors.meta │ │ │ ├── Editors │ │ │ │ ├── Scripts.meta │ │ │ │ ├── Scripts │ │ │ │ │ ├── KeyEditor.cs │ │ │ │ │ └── KeyEditor.cs.meta │ │ │ │ ├── Unity.ReferenceProject.CustomKeyboard.Editor.asmdef │ │ │ │ └── Unity.ReferenceProject.CustomKeyboard.Editor.asmdef.meta │ │ │ ├── Runtime.meta │ │ │ └── Runtime │ │ │ │ ├── Icons.meta │ │ │ │ ├── Icons │ │ │ │ ├── KeyboardBackspace@2x.png │ │ │ │ ├── KeyboardBackspace@2x.png.meta │ │ │ │ ├── arrow-elbow-down-left.png │ │ │ │ ├── arrow-elbow-down-left.png.meta │ │ │ │ ├── arrow-fat-up-bold.png │ │ │ │ ├── arrow-fat-up-bold.png.meta │ │ │ │ ├── arrow-fat-up-fill.png │ │ │ │ ├── arrow-fat-up-fill.png.meta │ │ │ │ ├── arrow-fat-up-light.png │ │ │ │ └── arrow-fat-up-light.png.meta │ │ │ │ ├── Scripts.meta │ │ │ │ ├── Scripts │ │ │ │ ├── KeyData.cs │ │ │ │ ├── KeyData.cs.meta │ │ │ │ ├── KeyboardController.cs │ │ │ │ ├── KeyboardController.cs.meta │ │ │ │ ├── KeyboardHandler.cs │ │ │ │ ├── KeyboardHandler.cs.meta │ │ │ │ ├── KeyboardInstaller.cs │ │ │ │ ├── KeyboardInstaller.cs.meta │ │ │ │ ├── KeyboardLayout.cs │ │ │ │ ├── KeyboardLayout.cs.meta │ │ │ │ ├── MockKeyboard.cs │ │ │ │ └── MockKeyboard.cs.meta │ │ │ │ ├── Settings.meta │ │ │ │ ├── Settings │ │ │ │ ├── Layouts.meta │ │ │ │ └── Layouts │ │ │ │ │ ├── QWERTY-Lower.asset │ │ │ │ │ ├── QWERTY-Lower.asset.meta │ │ │ │ │ ├── QWERTY-Upper-CapsLock.asset │ │ │ │ │ ├── QWERTY-Upper-CapsLock.asset.meta │ │ │ │ │ ├── QWERTY-Upper.asset │ │ │ │ │ ├── QWERTY-Upper.asset.meta │ │ │ │ │ ├── SpecialCharacter 2.asset │ │ │ │ │ ├── SpecialCharacter 2.asset.meta │ │ │ │ │ ├── SpecialCharacter.asset │ │ │ │ │ └── SpecialCharacter.asset.meta │ │ │ │ ├── UIToolkit.meta │ │ │ │ ├── UIToolkit │ │ │ │ ├── KeyboardStyle.uss │ │ │ │ └── KeyboardStyle.uss.meta │ │ │ │ ├── Unity.ReferenceProject.CustomKeyboard.Runtime.asmdef │ │ │ │ └── Unity.ReferenceProject.CustomKeyboard.Runtime.asmdef.meta │ │ ├── DataStores.meta │ │ ├── DataStores │ │ │ ├── Runtime.meta │ │ │ ├── Runtime │ │ │ │ ├── Scripts.meta │ │ │ │ ├── Scripts │ │ │ │ │ ├── DataStore.cs │ │ │ │ │ ├── DataStore.cs.meta │ │ │ │ │ ├── PropertyValue.cs │ │ │ │ │ ├── PropertyValue.cs.meta │ │ │ │ │ ├── UpdateNotification.cs │ │ │ │ │ └── UpdateNotification.cs.meta │ │ │ │ ├── Unity.ReferenceProject.DataStores.Runtime.asmdef │ │ │ │ └── Unity.ReferenceProject.DataStores.Runtime.asmdef.meta │ │ │ ├── Tests.meta │ │ │ └── Tests │ │ │ │ ├── .tests.json │ │ │ │ ├── Editor.meta │ │ │ │ ├── Runtime.meta │ │ │ │ └── Runtime │ │ │ │ ├── DataStoreTests.cs │ │ │ │ ├── DataStoreTests.cs.meta │ │ │ │ ├── Unity.ReferenceProject.DataStores.Tests.asmdef │ │ │ │ └── Unity.ReferenceProject.DataStores.Tests.asmdef.meta │ │ ├── DataStreaming.meta │ │ ├── DataStreaming │ │ │ ├── Runtime.meta │ │ │ └── Runtime │ │ │ │ ├── Localization.meta │ │ │ │ ├── Localization │ │ │ │ ├── DataStreaming Shared Data.asset │ │ │ │ ├── DataStreaming Shared Data.asset.meta │ │ │ │ ├── DataStreaming.asset │ │ │ │ ├── DataStreaming.asset.meta │ │ │ │ ├── DataStreaming_en.asset │ │ │ │ ├── DataStreaming_en.asset.meta │ │ │ │ ├── DataStreaming_fr.asset │ │ │ │ └── DataStreaming_fr.asset.meta │ │ │ │ ├── Scripts.meta │ │ │ │ ├── Scripts │ │ │ │ ├── DataStreamBound.cs │ │ │ │ ├── DataStreamBound.cs.meta │ │ │ │ ├── DataStreamController.cs │ │ │ │ ├── DataStreamController.cs.meta │ │ │ │ ├── DataStreamControllerInstaller.cs │ │ │ │ ├── DataStreamControllerInstaller.cs.meta │ │ │ │ ├── DataStreamControllerSetup.cs │ │ │ │ ├── DataStreamControllerSetup.cs.meta │ │ │ │ ├── DataStreamIndicator.cs │ │ │ │ └── DataStreamIndicator.cs.meta │ │ │ │ ├── UIToolkit.meta │ │ │ │ ├── UIToolkit │ │ │ │ ├── StreamingIndicator.uxml │ │ │ │ ├── StreamingIndicator.uxml.meta │ │ │ │ ├── StreamingIndicatorStyle.uss │ │ │ │ └── StreamingIndicatorStyle.uss.meta │ │ │ │ ├── Unity.ReferenceProject.DataStreaming.Runtime.asmdef │ │ │ │ └── Unity.ReferenceProject.DataStreaming.Runtime.asmdef.meta │ │ ├── DeepLinking.meta │ │ ├── DeepLinking │ │ │ ├── Runtime.meta │ │ │ └── Runtime │ │ │ │ ├── Localization.meta │ │ │ │ ├── Localization │ │ │ │ ├── DeepLinking Shared Data.asset │ │ │ │ ├── DeepLinking Shared Data.asset.meta │ │ │ │ ├── DeepLinking.asset │ │ │ │ ├── DeepLinking.asset.meta │ │ │ │ ├── DeepLinking_en.asset │ │ │ │ ├── DeepLinking_en.asset.meta │ │ │ │ ├── DeepLinking_fr.asset │ │ │ │ └── DeepLinking_fr.asset.meta │ │ │ │ ├── Prefabs.meta │ │ │ │ ├── Prefabs │ │ │ │ ├── DeepLinkingTool.prefab │ │ │ │ ├── DeepLinkingTool.prefab.meta │ │ │ │ ├── [ Deep Linking ].prefab │ │ │ │ └── [ Deep Linking ].prefab.meta │ │ │ │ ├── Scripts.meta │ │ │ │ ├── Scripts │ │ │ │ ├── DeepLinkingConsumer.cs │ │ │ │ ├── DeepLinkingConsumer.cs.meta │ │ │ │ ├── DeepLinkingController.cs │ │ │ │ ├── DeepLinkingController.cs.meta │ │ │ │ ├── DeepLinkingInstaller.cs │ │ │ │ ├── DeepLinkingInstaller.cs.meta │ │ │ │ ├── DeepLinkingUIController.cs │ │ │ │ └── DeepLinkingUIController.cs.meta │ │ │ │ ├── Sprites.meta │ │ │ │ ├── Sprites │ │ │ │ ├── Share@1x.png │ │ │ │ ├── Share@1x.png.meta │ │ │ │ ├── Share@2x.png │ │ │ │ ├── Share@2x.png.meta │ │ │ │ ├── Share@3x.png │ │ │ │ ├── Share@3x.png.meta │ │ │ │ ├── Share@4x.png │ │ │ │ └── Share@4x.png.meta │ │ │ │ ├── UIToolkit.meta │ │ │ │ ├── UIToolkit │ │ │ │ ├── LinkSharing.uxml │ │ │ │ ├── LinkSharing.uxml.meta │ │ │ │ ├── LinkSharingStyle.uss │ │ │ │ └── LinkSharingStyle.uss.meta │ │ │ │ ├── Unity.ReferenceProject.DeepLinking.Runtime.asmdef │ │ │ │ └── Unity.ReferenceProject.DeepLinking.Runtime.asmdef.meta │ │ ├── Gestures.meta │ │ ├── Gestures │ │ │ ├── Runtime.meta │ │ │ └── Runtime │ │ │ │ ├── Scripts.meta │ │ │ │ ├── Scripts │ │ │ │ ├── GestureInteraction.cs │ │ │ │ ├── GestureInteraction.cs.meta │ │ │ │ ├── Gestures.meta │ │ │ │ ├── Gestures │ │ │ │ │ ├── Gesture.cs │ │ │ │ │ ├── Gesture.cs.meta │ │ │ │ │ ├── GestureRecognizer.cs │ │ │ │ │ ├── GestureRecognizer.cs.meta │ │ │ │ │ ├── GestureTouchesUtility.cs │ │ │ │ │ ├── GestureTouchesUtility.cs.meta │ │ │ │ │ ├── PinchGesture.cs │ │ │ │ │ ├── PinchGesture.cs.meta │ │ │ │ │ ├── PinchGestureRecognizer.cs │ │ │ │ │ ├── PinchGestureRecognizer.cs.meta │ │ │ │ │ ├── TwoFingerDragGesture.cs │ │ │ │ │ ├── TwoFingerDragGesture.cs.meta │ │ │ │ │ ├── TwoFingerDragGestureRecognizer.cs │ │ │ │ │ └── TwoFingerDragGestureRecognizer.cs.meta │ │ │ │ ├── MouseDragComposite.cs │ │ │ │ ├── MouseDragComposite.cs.meta │ │ │ │ ├── MouseDragInteraction.cs │ │ │ │ ├── MouseDragInteraction.cs.meta │ │ │ │ ├── PinchGestureInteraction.cs │ │ │ │ ├── PinchGestureInteraction.cs.meta │ │ │ │ ├── RegisterGesturesInteraction.cs │ │ │ │ ├── RegisterGesturesInteraction.cs.meta │ │ │ │ ├── SingleTouchDragInteraction.cs │ │ │ │ ├── SingleTouchDragInteraction.cs.meta │ │ │ │ ├── TwoFingerDistanceComposite.cs │ │ │ │ ├── TwoFingerDistanceComposite.cs.meta │ │ │ │ ├── TwoFingerDragGestureInteraction.cs │ │ │ │ ├── TwoFingerDragGestureInteraction.cs.meta │ │ │ │ ├── TwoFingerMedianComposite.cs │ │ │ │ └── TwoFingerMedianComposite.cs.meta │ │ │ │ ├── Unity.ReferenceProject.Gestures.Runtime.asmdef │ │ │ │ └── Unity.ReferenceProject.Gestures.Runtime.asmdef.meta │ │ ├── Identity.meta │ │ ├── Identity │ │ │ ├── Runtime.meta │ │ │ └── Runtime │ │ │ │ ├── Localization.meta │ │ │ │ ├── Localization │ │ │ │ ├── Identity Shared Data.asset │ │ │ │ ├── Identity Shared Data.asset.meta │ │ │ │ ├── Identity.asset │ │ │ │ ├── Identity.asset.meta │ │ │ │ ├── Identity_en.asset │ │ │ │ ├── Identity_en.asset.meta │ │ │ │ ├── Identity_fr.asset │ │ │ │ └── Identity_fr.asset.meta │ │ │ │ ├── Prefabs.meta │ │ │ │ ├── Prefabs │ │ │ │ ├── Identity UI.prefab │ │ │ │ ├── Identity UI.prefab.meta │ │ │ │ ├── ProfileTool.prefab │ │ │ │ └── ProfileTool.prefab.meta │ │ │ │ ├── Scripts.meta │ │ │ │ ├── Scripts │ │ │ │ ├── CloudSession.cs │ │ │ │ ├── CloudSession.cs.meta │ │ │ │ ├── ICloudSession.cs │ │ │ │ ├── ICloudSession.cs.meta │ │ │ │ ├── IUserData.cs │ │ │ │ ├── IUserData.cs.meta │ │ │ │ ├── IdentityUIController.cs │ │ │ │ ├── IdentityUIController.cs.meta │ │ │ │ ├── ProfileToolUIController.cs │ │ │ │ ├── ProfileToolUIController.cs.meta │ │ │ │ ├── UserData.cs │ │ │ │ └── UserData.cs.meta │ │ │ │ ├── Sprites.meta │ │ │ │ ├── Sprites │ │ │ │ ├── AvatarUtils.cs │ │ │ │ ├── AvatarUtils.cs.meta │ │ │ │ ├── profile.png │ │ │ │ ├── profile.png.meta │ │ │ │ ├── profile@2x.png │ │ │ │ └── profile@2x.png.meta │ │ │ │ ├── UIToolkit.meta │ │ │ │ ├── UIToolkit │ │ │ │ ├── Identity.uxml │ │ │ │ ├── Identity.uxml.meta │ │ │ │ ├── IdentityStyle.uss │ │ │ │ ├── IdentityStyle.uss.meta │ │ │ │ ├── Profile.uxml │ │ │ │ ├── Profile.uxml.meta │ │ │ │ ├── ProfileStyle.uss │ │ │ │ └── ProfileStyle.uss.meta │ │ │ │ ├── Unity.ReferenceProject.Identity.Runtime.asmdef │ │ │ │ └── Unity.ReferenceProject.Identity.Runtime.asmdef.meta │ │ ├── InputDisabling.meta │ │ ├── InputDisabling │ │ │ ├── Editor.meta │ │ │ ├── Editor │ │ │ │ ├── InputDisablingManagerInspector.cs │ │ │ │ ├── InputDisablingManagerInspector.cs.meta │ │ │ │ ├── Unity.ReferenceProject.InputDisabling.Editor.asmdef │ │ │ │ └── Unity.ReferenceProject.InputDisabling.Editor.asmdef.meta │ │ │ ├── Runtime.meta │ │ │ └── Runtime │ │ │ │ ├── Scripts.meta │ │ │ │ ├── Scripts │ │ │ │ ├── InputDisablingManager.cs │ │ │ │ ├── InputDisablingManager.cs.meta │ │ │ │ ├── InputDisablingManagerInstaller.cs │ │ │ │ ├── InputDisablingManagerInstaller.cs.meta │ │ │ │ ├── InputDisablingOverride.cs │ │ │ │ ├── InputDisablingOverride.cs.meta │ │ │ │ ├── InputDisablingSubscriber.cs │ │ │ │ ├── InputDisablingSubscriber.cs.meta │ │ │ │ ├── SwipeInputDisabling.cs │ │ │ │ └── SwipeInputDisabling.cs.meta │ │ │ │ ├── Unity.ReferenceProject.InputDisabling.Runtime.asmdef │ │ │ │ └── Unity.ReferenceProject.InputDisabling.Runtime.asmdef.meta │ │ ├── InputSystem.meta │ │ ├── InputSystem │ │ │ ├── Runtime.meta │ │ │ └── Runtime │ │ │ │ ├── Scripts.meta │ │ │ │ ├── Scripts │ │ │ │ ├── IInputManager.cs │ │ │ │ ├── IInputManager.cs.meta │ │ │ │ ├── IVRControllerList.cs │ │ │ │ ├── IVRControllerList.cs.meta │ │ │ │ ├── InputActionWrapper.cs │ │ │ │ ├── InputActionWrapper.cs.meta │ │ │ │ ├── InputManager.cs │ │ │ │ ├── InputManager.cs.meta │ │ │ │ ├── InputManagerInstaller.cs │ │ │ │ ├── InputManagerInstaller.cs.meta │ │ │ │ ├── InputScheme.cs │ │ │ │ ├── InputScheme.cs.meta │ │ │ │ ├── InputSystemEnums.cs │ │ │ │ ├── InputSystemEnums.cs.meta │ │ │ │ ├── InputUnifier.cs │ │ │ │ └── InputUnifier.cs.meta │ │ │ │ ├── Unity.ReferenceProject.InputSystem.Runtime.asmdef │ │ │ │ └── Unity.ReferenceProject.InputSystem.Runtime.asmdef.meta │ │ ├── Instructions.meta │ │ ├── Instructions │ │ │ ├── Runtime.meta │ │ │ └── Runtime │ │ │ │ ├── Localization.meta │ │ │ │ ├── Localization │ │ │ │ ├── Instructions Shared Data.asset │ │ │ │ ├── Instructions Shared Data.asset.meta │ │ │ │ ├── Instructions.asset │ │ │ │ ├── Instructions.asset.meta │ │ │ │ ├── Instructions_en.asset │ │ │ │ ├── Instructions_en.asset.meta │ │ │ │ ├── Instructions_fr.asset │ │ │ │ └── Instructions_fr.asset.meta │ │ │ │ ├── Scripts.meta │ │ │ │ ├── Scripts │ │ │ │ ├── InstructionUIEntry.cs │ │ │ │ ├── InstructionUIEntry.cs.meta │ │ │ │ ├── InstructionUIEntryAlwaysShow.cs │ │ │ │ ├── InstructionUIEntryAlwaysShow.cs.meta │ │ │ │ ├── InstructionUIEntryPC.cs │ │ │ │ ├── InstructionUIEntryPC.cs.meta │ │ │ │ ├── InstructionUIEntryTouchScreen.cs │ │ │ │ ├── InstructionUIEntryTouchScreen.cs.meta │ │ │ │ ├── InstructionsToggleSetting.cs │ │ │ │ ├── InstructionsToggleSetting.cs.meta │ │ │ │ ├── InstructionsUIController.cs │ │ │ │ └── InstructionsUIController.cs.meta │ │ │ │ ├── UIToolkit.meta │ │ │ │ ├── UIToolkit │ │ │ │ ├── InstructionsPanel.uxml │ │ │ │ ├── InstructionsPanel.uxml.meta │ │ │ │ ├── InstructionsPanelStyle.uss │ │ │ │ └── InstructionsPanelStyle.uss.meta │ │ │ │ ├── Unity.ReferenceProject.Instructions.Runtime.asmdef │ │ │ │ └── Unity.ReferenceProject.Instructions.Runtime.asmdef.meta │ │ ├── MeasureTool.meta │ │ ├── MeasureTool │ │ │ ├── Runtime.meta │ │ │ ├── Runtime │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── AssemblyInfo.cs.meta │ │ │ │ ├── InputMaster.inputactions │ │ │ │ ├── InputMaster.inputactions.meta │ │ │ │ ├── Localization.meta │ │ │ │ ├── Localization │ │ │ │ │ ├── MeasureTool Shared Data.asset │ │ │ │ │ ├── MeasureTool Shared Data.asset.meta │ │ │ │ │ ├── MeasureTool.asset │ │ │ │ │ ├── MeasureTool.asset.meta │ │ │ │ │ ├── MeasureTool_en.asset │ │ │ │ │ ├── MeasureTool_en.asset.meta │ │ │ │ │ ├── MeasureTool_fr.asset │ │ │ │ │ └── MeasureTool_fr.asset.meta │ │ │ │ ├── Materials.meta │ │ │ │ ├── Materials │ │ │ │ │ ├── MeasureCursor.mat │ │ │ │ │ ├── MeasureCursor.mat.meta │ │ │ │ │ ├── MeasureCursorSelected.mat │ │ │ │ │ ├── MeasureCursorSelected.mat.meta │ │ │ │ │ ├── MeasureLine.mat │ │ │ │ │ ├── MeasureLine.mat.meta │ │ │ │ │ ├── MeasurePoint.mat │ │ │ │ │ └── MeasurePoint.mat.meta │ │ │ │ ├── Prefabs.meta │ │ │ │ ├── Prefabs │ │ │ │ │ ├── Measure Cursor.prefab │ │ │ │ │ ├── Measure Cursor.prefab.meta │ │ │ │ │ ├── Measure Point.prefab │ │ │ │ │ ├── Measure Point.prefab.meta │ │ │ │ │ ├── Measure Segment.prefab │ │ │ │ │ ├── Measure Segment.prefab.meta │ │ │ │ │ ├── MeasurementToolUIController.prefab │ │ │ │ │ ├── MeasurementToolUIController.prefab.meta │ │ │ │ │ ├── UI.meta │ │ │ │ │ └── UI │ │ │ │ │ │ ├── LineRenderer.prefab │ │ │ │ │ │ └── LineRenderer.prefab.meta │ │ │ │ ├── Scripts.meta │ │ │ │ ├── Scripts │ │ │ │ │ ├── AnchorConverter.cs │ │ │ │ │ ├── AnchorConverter.cs.meta │ │ │ │ │ ├── AppUnit.cs │ │ │ │ │ ├── AppUnit.cs.meta │ │ │ │ │ ├── AppUnitBindingInstaller.cs │ │ │ │ │ ├── AppUnitBindingInstaller.cs.meta │ │ │ │ │ ├── CursorPool.cs │ │ │ │ │ ├── CursorPool.cs.meta │ │ │ │ │ ├── MeasureLineCreators.meta │ │ │ │ │ ├── MeasureLineCreators │ │ │ │ │ │ ├── TwoPointMeasurementCreator.cs │ │ │ │ │ │ └── TwoPointMeasurementCreator.cs.meta │ │ │ │ │ ├── MeasureLinePersistence.cs │ │ │ │ │ ├── MeasureLinePersistence.cs.meta │ │ │ │ │ ├── MeasureToolBindingInstaller.cs │ │ │ │ │ ├── MeasureToolBindingInstaller.cs.meta │ │ │ │ │ ├── MeasureToolViewModel.cs │ │ │ │ │ ├── MeasureToolViewModel.cs.meta │ │ │ │ │ ├── ObjectPickerAnchorSelector.cs │ │ │ │ │ ├── ObjectPickerAnchorSelector.cs.meta │ │ │ │ │ ├── Pipeline.meta │ │ │ │ │ ├── Pipeline │ │ │ │ │ │ ├── AnchorSelectionContext.cs │ │ │ │ │ │ ├── AnchorSelectionContext.cs.meta │ │ │ │ │ │ ├── AnchorSelectionRaycast.cs │ │ │ │ │ │ ├── AnchorSelectionRaycast.cs.meta │ │ │ │ │ │ ├── Anchors.meta │ │ │ │ │ │ └── Anchors │ │ │ │ │ │ │ ├── IAnchor.cs │ │ │ │ │ │ │ ├── IAnchor.cs.meta │ │ │ │ │ │ │ ├── PointAnchor.cs │ │ │ │ │ │ │ └── PointAnchor.cs.meta │ │ │ │ │ ├── UI.meta │ │ │ │ │ ├── UI │ │ │ │ │ │ ├── CursorsController.cs │ │ │ │ │ │ ├── CursorsController.cs.meta │ │ │ │ │ │ ├── DraggableButton.cs │ │ │ │ │ │ ├── DraggableButton.cs.meta │ │ │ │ │ │ ├── IMeasureListItem.cs │ │ │ │ │ │ ├── IMeasureListItem.cs.meta │ │ │ │ │ │ ├── MeasureItem.cs │ │ │ │ │ │ ├── MeasureItem.cs.meta │ │ │ │ │ │ ├── MeasureLineData.cs │ │ │ │ │ │ ├── MeasureLineData.cs.meta │ │ │ │ │ │ ├── MeasureListUIController.cs │ │ │ │ │ │ ├── MeasureListUIController.cs.meta │ │ │ │ │ │ ├── MeasureUnit.cs │ │ │ │ │ │ ├── MeasureUnit.cs.meta │ │ │ │ │ │ ├── MeasurementToolController.cs │ │ │ │ │ │ ├── MeasurementToolController.cs.meta │ │ │ │ │ │ ├── MeasurementToolUIController.cs │ │ │ │ │ │ └── MeasurementToolUIController.cs.meta │ │ │ │ │ ├── Utils.meta │ │ │ │ │ ├── Utils │ │ │ │ │ │ ├── AnchorDistance.cs │ │ │ │ │ │ ├── AnchorDistance.cs.meta │ │ │ │ │ │ ├── KDTree.meta │ │ │ │ │ │ ├── KDTree │ │ │ │ │ │ │ ├── Heap.meta │ │ │ │ │ │ │ ├── Heap │ │ │ │ │ │ │ │ ├── BaseHeap.cs │ │ │ │ │ │ │ │ ├── BaseHeap.cs.meta │ │ │ │ │ │ │ │ ├── Heap.cs │ │ │ │ │ │ │ │ ├── Heap.cs.meta │ │ │ │ │ │ │ │ ├── MaxHeap.cs │ │ │ │ │ │ │ │ ├── MaxHeap.cs.meta │ │ │ │ │ │ │ │ ├── MinHeap.cs │ │ │ │ │ │ │ │ └── MinHeap.cs.meta │ │ │ │ │ │ │ ├── KDBounds.cs │ │ │ │ │ │ │ ├── KDBounds.cs.meta │ │ │ │ │ │ │ ├── KDNode.cs │ │ │ │ │ │ │ ├── KDNode.cs.meta │ │ │ │ │ │ │ ├── KDQuery.meta │ │ │ │ │ │ │ ├── KDQuery │ │ │ │ │ │ │ │ ├── Base.cs │ │ │ │ │ │ │ │ ├── Base.cs.meta │ │ │ │ │ │ │ │ ├── Debug.cs │ │ │ │ │ │ │ │ ├── Debug.cs.meta │ │ │ │ │ │ │ │ ├── KDQueryNode.cs │ │ │ │ │ │ │ │ ├── KDQueryNode.cs.meta │ │ │ │ │ │ │ │ ├── QueryClosest.cs │ │ │ │ │ │ │ │ └── QueryClosest.cs.meta │ │ │ │ │ │ │ ├── KDTree.cs │ │ │ │ │ │ │ └── KDTree.cs.meta │ │ │ │ │ │ ├── LineMath.cs │ │ │ │ │ │ └── LineMath.cs.meta │ │ │ │ │ ├── Viewer.meta │ │ │ │ │ └── Viewer │ │ │ │ │ │ ├── MeasureLabel.cs │ │ │ │ │ │ ├── MeasureLabel.cs.meta │ │ │ │ │ │ ├── MeasureLabelElement.cs │ │ │ │ │ │ ├── MeasureLabelElement.cs.meta │ │ │ │ │ │ ├── MeasureLine.cs │ │ │ │ │ │ ├── MeasureLine.cs.meta │ │ │ │ │ │ ├── MeasureSegment.cs │ │ │ │ │ │ ├── MeasureSegment.cs.meta │ │ │ │ │ │ ├── MeasurementViewer.cs │ │ │ │ │ │ └── MeasurementViewer.cs.meta │ │ │ │ ├── Shader.meta │ │ │ │ ├── Shader │ │ │ │ │ ├── MeasureLine.shadergraph │ │ │ │ │ └── MeasureLine.shadergraph.meta │ │ │ │ ├── Shaders.meta │ │ │ │ ├── Shaders │ │ │ │ │ ├── MeasureToolAlpha.shadersubgraph │ │ │ │ │ ├── MeasureToolAlpha.shadersubgraph.meta │ │ │ │ │ ├── MeasureToolColor.shadergraph │ │ │ │ │ ├── MeasureToolColor.shadergraph.meta │ │ │ │ │ ├── MeasureToolColorURP-Modified.shader │ │ │ │ │ ├── MeasureToolColorURP-Modified.shader.meta │ │ │ │ │ ├── MeasureToolTexture.shadergraph │ │ │ │ │ ├── MeasureToolTexture.shadergraph.meta │ │ │ │ │ ├── MeasureToolTextureURP-Modified.shader │ │ │ │ │ └── MeasureToolTextureURP-Modified.shader.meta │ │ │ │ ├── Sprites.meta │ │ │ │ ├── Sprites │ │ │ │ │ ├── LineRepeat.png │ │ │ │ │ ├── LineRepeat.png.meta │ │ │ │ │ ├── Measure.png │ │ │ │ │ ├── Measure.png.meta │ │ │ │ │ ├── MeasureAnchor.png │ │ │ │ │ ├── MeasureAnchor.png.meta │ │ │ │ │ ├── MeasureAnchorSelected.png │ │ │ │ │ ├── MeasureAnchorSelected.png.meta │ │ │ │ │ ├── PadControl.png │ │ │ │ │ ├── PadControl.png.meta │ │ │ │ │ ├── PointSelected.png │ │ │ │ │ ├── PointSelected.png.meta │ │ │ │ │ ├── PointUnselected.png │ │ │ │ │ ├── PointUnselected.png.meta │ │ │ │ │ ├── ToolActionsReset.png │ │ │ │ │ ├── ToolActionsReset.png.meta │ │ │ │ │ ├── ToolBar.png │ │ │ │ │ ├── ToolBar.png.meta │ │ │ │ │ ├── ToolBar@x3.png │ │ │ │ │ └── ToolBar@x3.png.meta │ │ │ │ ├── UI Toolkit.meta │ │ │ │ ├── UI Toolkit │ │ │ │ │ ├── DraggablePad.uxml │ │ │ │ │ ├── DraggablePad.uxml.meta │ │ │ │ │ ├── DraggablePadStyle.uss │ │ │ │ │ ├── DraggablePadStyle.uss.meta │ │ │ │ │ ├── MeasureLabel.uxml │ │ │ │ │ ├── MeasureLabel.uxml.meta │ │ │ │ │ ├── MeasureLabelStyle.uss │ │ │ │ │ ├── MeasureLabelStyle.uss.meta │ │ │ │ │ ├── MeasureLineItem.uxml │ │ │ │ │ ├── MeasureLineItem.uxml.meta │ │ │ │ │ ├── MeasurePanelSettings.asset │ │ │ │ │ ├── MeasurePanelSettings.asset.meta │ │ │ │ │ ├── MeasureToolPanel.uss │ │ │ │ │ ├── MeasureToolPanel.uss.meta │ │ │ │ │ ├── MeasureToolPanel.uxml │ │ │ │ │ ├── MeasureToolPanel.uxml.meta │ │ │ │ │ ├── MeasureToolSaveDialog.uss │ │ │ │ │ ├── MeasureToolSaveDialog.uss.meta │ │ │ │ │ ├── MeasureToolSaveDialog.uxml │ │ │ │ │ └── MeasureToolSaveDialog.uxml.meta │ │ │ │ ├── Unity.ReferenceProject.MeasureTool.Runtime.asmdef │ │ │ │ └── Unity.ReferenceProject.MeasureTool.Runtime.asmdef.meta │ │ │ ├── Tests.meta │ │ │ └── Tests │ │ │ │ ├── Runtime.meta │ │ │ │ └── Runtime │ │ │ │ ├── AnchorUtilsTests.cs │ │ │ │ ├── AnchorUtilsTests.cs.meta │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── AssemblyInfo.cs.meta │ │ │ │ ├── KDQueryTests.cs │ │ │ │ ├── KDQueryTests.cs.meta │ │ │ │ ├── KDTreeTests.cs │ │ │ │ ├── KDTreeTests.cs.meta │ │ │ │ ├── MaxHeapTests.cs │ │ │ │ ├── MaxHeapTests.cs.meta │ │ │ │ ├── MeasureToolEditModeTests.cs │ │ │ │ ├── MeasureToolEditModeTests.cs.meta │ │ │ │ ├── PointAnchorTests.cs │ │ │ │ ├── PointAnchorTests.cs.meta │ │ │ │ ├── Unity.ReferenceProject.MeasureTool.Runtime.Tests.asmdef │ │ │ │ └── Unity.ReferenceProject.MeasureTool.Runtime.Tests.asmdef.meta │ │ ├── Messaging.meta │ │ ├── Messaging │ │ │ ├── Runtime.meta │ │ │ └── Runtime │ │ │ │ ├── Scripts.meta │ │ │ │ ├── Scripts │ │ │ │ ├── AppMessaging.cs │ │ │ │ ├── AppMessaging.cs.meta │ │ │ │ ├── AppMessagingInstaller.cs │ │ │ │ ├── AppMessagingInstaller.cs.meta │ │ │ │ ├── IAppMessaging.cs │ │ │ │ └── IAppMessaging.cs.meta │ │ │ │ ├── Unity.ReferenceProject.Messaging.Runtime.asmdef │ │ │ │ └── Unity.ReferenceProject.Messaging.Runtime.asmdef.meta │ │ ├── Metadata.meta │ │ ├── Metadata │ │ │ ├── Runtime.meta │ │ │ └── Runtime │ │ │ │ ├── Localization.meta │ │ │ │ ├── Localization │ │ │ │ ├── MetadataDisplay Shared Data.asset │ │ │ │ ├── MetadataDisplay Shared Data.asset.meta │ │ │ │ ├── MetadataDisplay.asset │ │ │ │ ├── MetadataDisplay.asset.meta │ │ │ │ ├── MetadataDisplay_en.asset │ │ │ │ ├── MetadataDisplay_en.asset.meta │ │ │ │ ├── MetadataDisplay_fr.asset │ │ │ │ └── MetadataDisplay_fr.asset.meta │ │ │ │ ├── Prefabs.meta │ │ │ │ ├── Prefabs │ │ │ │ ├── MetadataDisplayUIController.prefab │ │ │ │ └── MetadataDisplayUIController.prefab.meta │ │ │ │ ├── Scripts.meta │ │ │ │ ├── Scripts │ │ │ │ ├── MetadataDisplayController.cs │ │ │ │ ├── MetadataDisplayController.cs.meta │ │ │ │ ├── MetadataDisplayToolUIController.cs │ │ │ │ └── MetadataDisplayToolUIController.cs.meta │ │ │ │ ├── Sprites.meta │ │ │ │ ├── Sprites │ │ │ │ ├── list-bullets.png │ │ │ │ ├── list-bullets.png.meta │ │ │ │ ├── list-bullets@2x.png │ │ │ │ └── list-bullets@2x.png.meta │ │ │ │ ├── UIToolkit.meta │ │ │ │ ├── UIToolkit │ │ │ │ ├── MetadataDisplay.uxml │ │ │ │ ├── MetadataDisplay.uxml.meta │ │ │ │ ├── MetadataDisplayStyle.uss │ │ │ │ ├── MetadataDisplayStyle.uss.meta │ │ │ │ ├── MetadataParameterListElementTemplate.uxml │ │ │ │ └── MetadataParameterListElementTemplate.uxml.meta │ │ │ │ ├── Unity.ReferenceProject.Metadata.Runtime.asmdef │ │ │ │ └── Unity.ReferenceProject.Metadata.Runtime.asmdef.meta │ │ ├── Navigation.meta │ │ ├── Navigation │ │ │ ├── Runtime.meta │ │ │ └── Runtime │ │ │ │ ├── Localization.meta │ │ │ │ ├── Localization │ │ │ │ ├── Navigation Shared Data.asset │ │ │ │ ├── Navigation Shared Data.asset.meta │ │ │ │ ├── Navigation.asset │ │ │ │ ├── Navigation.asset.meta │ │ │ │ ├── Navigation_en.asset │ │ │ │ ├── Navigation_en.asset.meta │ │ │ │ ├── Navigation_fr.asset │ │ │ │ └── Navigation_fr.asset.meta │ │ │ │ ├── Prefabs.meta │ │ │ │ ├── Prefabs │ │ │ │ ├── CameraViewTool.prefab │ │ │ │ ├── CameraViewTool.prefab.meta │ │ │ │ ├── NavigationSwitchTool.prefab │ │ │ │ └── NavigationSwitchTool.prefab.meta │ │ │ │ ├── Scripts.meta │ │ │ │ ├── Scripts │ │ │ │ ├── CameraViewData.cs │ │ │ │ ├── CameraViewData.cs.meta │ │ │ │ ├── CameraViewDataDefault.cs │ │ │ │ ├── CameraViewDataDefault.cs.meta │ │ │ │ ├── CameraViewToolUIController.cs │ │ │ │ ├── CameraViewToolUIController.cs.meta │ │ │ │ ├── NavigationInstaller.cs │ │ │ │ ├── NavigationInstaller.cs.meta │ │ │ │ ├── NavigationManager.cs │ │ │ │ ├── NavigationManager.cs.meta │ │ │ │ ├── NavigationMode.cs │ │ │ │ ├── NavigationMode.cs.meta │ │ │ │ ├── NavigationModeData.cs │ │ │ │ ├── NavigationModeData.cs.meta │ │ │ │ ├── NavigationModeDataSimple.cs │ │ │ │ ├── NavigationModeDataSimple.cs.meta │ │ │ │ ├── NavigationModeDataWalkMode.cs │ │ │ │ ├── NavigationModeDataWalkMode.cs.meta │ │ │ │ ├── NavigationSwitchTool.cs │ │ │ │ └── NavigationSwitchTool.cs.meta │ │ │ │ ├── Sprites.meta │ │ │ │ ├── Sprites │ │ │ │ ├── CustomAppUIIcon.uss │ │ │ │ ├── CustomAppUIIcon.uss.meta │ │ │ │ ├── FlyMode.png │ │ │ │ ├── FlyMode.png.meta │ │ │ │ ├── VRMode.png │ │ │ │ ├── VRMode.png.meta │ │ │ │ ├── ViewHome.png │ │ │ │ ├── ViewHome.png.meta │ │ │ │ ├── ViewLeft.png │ │ │ │ ├── ViewLeft.png.meta │ │ │ │ ├── ViewRight.png │ │ │ │ ├── ViewRight.png.meta │ │ │ │ ├── ViewTop.png │ │ │ │ ├── ViewTop.png.meta │ │ │ │ ├── WalkMode.png │ │ │ │ └── WalkMode.png.meta │ │ │ │ ├── UIToolkit.meta │ │ │ │ ├── UIToolkit │ │ │ │ ├── CameraView.meta │ │ │ │ ├── CameraView │ │ │ │ │ ├── ActionButtonCameraViewSwitchToolTemplate.uxml │ │ │ │ │ ├── ActionButtonCameraViewSwitchToolTemplate.uxml.meta │ │ │ │ │ ├── CameraViewSwitchTool.uxml │ │ │ │ │ ├── CameraViewSwitchTool.uxml.meta │ │ │ │ │ ├── CameraViewSwitchToolStyle.uss │ │ │ │ │ └── CameraViewSwitchToolStyle.uss.meta │ │ │ │ ├── NavigationMode.meta │ │ │ │ └── NavigationMode │ │ │ │ │ ├── ActionButtonNavigationSwitchToolTemplate.uxml │ │ │ │ │ ├── ActionButtonNavigationSwitchToolTemplate.uxml.meta │ │ │ │ │ ├── NavigationSwitchTool.uxml │ │ │ │ │ ├── NavigationSwitchTool.uxml.meta │ │ │ │ │ ├── NavigationSwitchToolStyle.uss │ │ │ │ │ └── NavigationSwitchToolStyle.uss.meta │ │ │ │ ├── Unity.ReferenceProject.Navigation.Runtime.asmdef │ │ │ │ ├── Unity.ReferenceProject.Navigation.Runtime.asmdef.meta │ │ │ │ ├── Views.meta │ │ │ │ └── Views │ │ │ │ ├── ViewHome.asset │ │ │ │ ├── ViewHome.asset.meta │ │ │ │ ├── ViewLeft.asset │ │ │ │ ├── ViewLeft.asset.meta │ │ │ │ ├── ViewRight.asset │ │ │ │ ├── ViewRight.asset.meta │ │ │ │ ├── ViewTop.asset │ │ │ │ └── ViewTop.asset.meta │ │ ├── ObjectSelection.meta │ │ ├── ObjectSelection │ │ │ ├── Runtime.meta │ │ │ └── Runtime │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── AssemblyInfo.cs.meta │ │ │ │ ├── Scripts.meta │ │ │ │ ├── Scripts │ │ │ │ ├── DataStreamPicker.cs │ │ │ │ ├── DataStreamPicker.cs.meta │ │ │ │ ├── IObjectPicker.cs │ │ │ │ ├── IObjectPicker.cs.meta │ │ │ │ ├── ObjectPickerInstaller.cs │ │ │ │ ├── ObjectPickerInstaller.cs.meta │ │ │ │ ├── ObjectSelectionActivator.cs │ │ │ │ ├── ObjectSelectionActivator.cs.meta │ │ │ │ ├── ObjectSelectionController.cs │ │ │ │ ├── ObjectSelectionController.cs.meta │ │ │ │ ├── ObjectSelectionInfo.cs │ │ │ │ ├── ObjectSelectionInfo.cs.meta │ │ │ │ ├── ObjectSelectionInstaller.cs │ │ │ │ ├── ObjectSelectionInstaller.cs.meta │ │ │ │ ├── SelectionHighlighter.meta │ │ │ │ ├── SelectionHighlighter │ │ │ │ │ ├── ObjectSelectionHighlighter.cs │ │ │ │ │ ├── ObjectSelectionHighlighter.cs.meta │ │ │ │ │ ├── ObjectSelectionMaterial.mat │ │ │ │ │ ├── ObjectSelectionMaterial.mat.meta │ │ │ │ │ ├── ObjectSelectionMaterial_StereoSupport.mat │ │ │ │ │ ├── ObjectSelectionMaterial_StereoSupport.mat.meta │ │ │ │ │ ├── UnlitTransparentColor.shader │ │ │ │ │ └── UnlitTransparentColor.shader.meta │ │ │ │ ├── SelectionReticule.meta │ │ │ │ ├── SelectionReticule │ │ │ │ │ ├── ObjectSelectionReticule.cs │ │ │ │ │ ├── ObjectSelectionReticule.cs.meta │ │ │ │ │ ├── ObjectSelectionReticuleMaterial.mat │ │ │ │ │ ├── ObjectSelectionReticuleMaterial.mat.meta │ │ │ │ │ ├── ObjectSelectionReticuleMaterial_StereoSupport.mat │ │ │ │ │ ├── ObjectSelectionReticuleMaterial_StereoSupport.mat.meta │ │ │ │ │ ├── ScreenSpaceScaling.shader │ │ │ │ │ └── ScreenSpaceScaling.shader.meta │ │ │ │ ├── Stores.meta │ │ │ │ └── Stores │ │ │ │ │ ├── ObjectSelectionStore.cs │ │ │ │ │ └── ObjectSelectionStore.cs.meta │ │ │ │ ├── Unity.ReferenceProject.ObjectSelection.Runtime.asmdef │ │ │ │ └── Unity.ReferenceProject.ObjectSelection.Runtime.asmdef.meta │ │ ├── Permissions.meta │ │ ├── Permissions │ │ │ ├── Runtime.meta │ │ │ └── Runtime │ │ │ │ ├── Scripts.meta │ │ │ │ ├── Scripts │ │ │ │ ├── DI.meta │ │ │ │ ├── DI │ │ │ │ │ ├── PermissionsInstaller.cs │ │ │ │ │ └── PermissionsInstaller.cs.meta │ │ │ │ ├── PermissionsController.cs │ │ │ │ └── PermissionsController.cs.meta │ │ │ │ ├── Unity.ReferenceProject.Permissions.Runtime.asmdef │ │ │ │ └── Unity.ReferenceProject.Permissions.Runtime.asmdef.meta │ │ ├── Presence.meta │ │ ├── Presence │ │ │ ├── Editor.meta │ │ │ ├── Editor │ │ │ │ ├── Scripts.meta │ │ │ │ ├── Scripts │ │ │ │ │ ├── PackageManagerUtils.cs │ │ │ │ │ ├── PackageManagerUtils.cs.meta │ │ │ │ │ ├── VivoxIntegrationToggle.cs │ │ │ │ │ └── VivoxIntegrationToggle.cs.meta │ │ │ │ ├── Unity.ReferenceProject.Presence.Editor.asmdef │ │ │ │ └── Unity.ReferenceProject.Presence.Editor.asmdef.meta │ │ │ ├── Runtime.meta │ │ │ ├── Runtime │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── AssemblyInfo.cs.meta │ │ │ │ ├── Localization.meta │ │ │ │ ├── Localization │ │ │ │ │ ├── Presence Shared Data.asset │ │ │ │ │ ├── Presence Shared Data.asset.meta │ │ │ │ │ ├── Presence.asset │ │ │ │ │ ├── Presence.asset.meta │ │ │ │ │ ├── Presence_en.asset │ │ │ │ │ ├── Presence_en.asset.meta │ │ │ │ │ ├── Presence_fr.asset │ │ │ │ │ └── Presence_fr.asset.meta │ │ │ │ ├── Materials.meta │ │ │ │ ├── Materials │ │ │ │ │ ├── Avatar.meta │ │ │ │ │ └── Avatar │ │ │ │ │ │ ├── Avatar Features.mat │ │ │ │ │ │ ├── Avatar Features.mat.meta │ │ │ │ │ │ ├── Avatar Freatures-Fade.mat │ │ │ │ │ │ ├── Avatar Freatures-Fade.mat.meta │ │ │ │ │ │ ├── AvatarTag-Fade.mat │ │ │ │ │ │ ├── AvatarTag-Fade.mat.meta │ │ │ │ │ │ ├── AvatarTag.mat │ │ │ │ │ │ ├── AvatarTag.mat.meta │ │ │ │ │ │ ├── AvatarTagRT.renderTexture │ │ │ │ │ │ ├── AvatarTagRT.renderTexture.meta │ │ │ │ │ │ ├── Construction Hat AO.png │ │ │ │ │ │ ├── Construction Hat AO.png.meta │ │ │ │ │ │ ├── Construction Hat-Fade.mat │ │ │ │ │ │ ├── Construction Hat-Fade.mat.meta │ │ │ │ │ │ ├── Construction Hat.mat │ │ │ │ │ │ ├── Construction Hat.mat.meta │ │ │ │ │ │ ├── Construction Head No Visor AO.png │ │ │ │ │ │ ├── Construction Head No Visor AO.png.meta │ │ │ │ │ │ ├── Construction Head No Visor-Fade.mat │ │ │ │ │ │ ├── Construction Head No Visor-Fade.mat.meta │ │ │ │ │ │ ├── Construction Head No Visor.mat │ │ │ │ │ │ ├── Construction Head No Visor.mat.meta │ │ │ │ │ │ ├── Construction Strap-Fade.mat │ │ │ │ │ │ ├── Construction Strap-Fade.mat.meta │ │ │ │ │ │ ├── Construction Strap.mat │ │ │ │ │ │ ├── Construction Strap.mat.meta │ │ │ │ │ │ ├── Construction Visor-Fade.mat │ │ │ │ │ │ ├── Construction Visor-Fade.mat.meta │ │ │ │ │ │ ├── Construction Visor.mat │ │ │ │ │ │ ├── Construction Visor.mat.meta │ │ │ │ │ │ ├── Hands AO.png │ │ │ │ │ │ ├── Hands AO.png.meta │ │ │ │ │ │ ├── Hands-Fade.mat │ │ │ │ │ │ ├── Hands-Fade.mat.meta │ │ │ │ │ │ ├── Hands.mat │ │ │ │ │ │ ├── Hands.mat.meta │ │ │ │ │ │ ├── NearCameraFade.shadergraph │ │ │ │ │ │ ├── NearCameraFade.shadergraph.meta │ │ │ │ │ │ ├── NearCameraFadeGlass.shadergraph │ │ │ │ │ │ ├── NearCameraFadeGlass.shadergraph.meta │ │ │ │ │ │ ├── NearCameraFadeUnlit.shadergraph │ │ │ │ │ │ └── NearCameraFadeUnlit.shadergraph.meta │ │ │ │ ├── Models.meta │ │ │ │ ├── Models │ │ │ │ │ ├── Avatar.meta │ │ │ │ │ └── Avatar │ │ │ │ │ │ ├── Generic.meta │ │ │ │ │ │ ├── Generic │ │ │ │ │ │ ├── Avatar Mouth.fbx │ │ │ │ │ │ ├── Avatar Mouth.fbx.meta │ │ │ │ │ │ ├── Avatar.fbx │ │ │ │ │ │ └── Avatar.fbx.meta │ │ │ │ │ │ ├── Reflect.meta │ │ │ │ │ │ └── Reflect │ │ │ │ │ │ ├── Avatar Reflect.fbx │ │ │ │ │ │ └── Avatar Reflect.fbx.meta │ │ │ │ ├── Prefabs.meta │ │ │ │ ├── Prefabs │ │ │ │ │ ├── Avatar Player Construction.prefab │ │ │ │ │ ├── Avatar Player Construction.prefab.meta │ │ │ │ │ ├── FollowMode.prefab │ │ │ │ │ ├── FollowMode.prefab.meta │ │ │ │ │ ├── PresenceInstallerComponents.prefab │ │ │ │ │ ├── PresenceInstallerComponents.prefab.meta │ │ │ │ │ ├── PresenceTool.prefab │ │ │ │ │ ├── PresenceTool.prefab.meta │ │ │ │ │ ├── PresentationTool.prefab │ │ │ │ │ └── PresentationTool.prefab.meta │ │ │ │ ├── Scripts.meta │ │ │ │ ├── Scripts │ │ │ │ │ ├── Avatar.meta │ │ │ │ │ ├── Avatar │ │ │ │ │ │ ├── Avatar.cs │ │ │ │ │ │ ├── Avatar.cs.meta │ │ │ │ │ │ ├── AvatarFadePosition.cs │ │ │ │ │ │ ├── AvatarFadePosition.cs.meta │ │ │ │ │ │ ├── AvatarsManager.cs │ │ │ │ │ │ ├── AvatarsManager.cs.meta │ │ │ │ │ │ ├── Model.meta │ │ │ │ │ │ ├── Model │ │ │ │ │ │ │ ├── AvatarModel.cs │ │ │ │ │ │ │ ├── AvatarModel.cs.meta │ │ │ │ │ │ │ ├── DefaultAvatarModel.cs │ │ │ │ │ │ │ └── DefaultAvatarModel.cs.meta │ │ │ │ │ │ ├── Tag.meta │ │ │ │ │ │ └── Tag │ │ │ │ │ │ │ ├── AvatarTag.cs │ │ │ │ │ │ │ ├── AvatarTag.cs.meta │ │ │ │ │ │ │ ├── WorldSpaceAvatarTag.cs │ │ │ │ │ │ │ └── WorldSpaceAvatarTag.cs.meta │ │ │ │ │ ├── DI.meta │ │ │ │ │ ├── DI │ │ │ │ │ │ ├── PresenceInstaller.cs │ │ │ │ │ │ └── PresenceInstaller.cs.meta │ │ │ │ │ ├── FollowMode.meta │ │ │ │ │ ├── FollowMode │ │ │ │ │ │ ├── FollowManager.cs │ │ │ │ │ │ ├── FollowManager.cs.meta │ │ │ │ │ │ ├── FollowModeUI.cs │ │ │ │ │ │ ├── FollowModeUI.cs.meta │ │ │ │ │ │ ├── IFollowObject.cs │ │ │ │ │ │ └── IFollowObject.cs.meta │ │ │ │ │ ├── PresenceRoomsManager.cs │ │ │ │ │ ├── PresenceRoomsManager.cs.meta │ │ │ │ │ ├── PresenceStreamingRoom.cs │ │ │ │ │ ├── PresenceStreamingRoom.cs.meta │ │ │ │ │ ├── PresenceTool.meta │ │ │ │ │ ├── PresenceTool │ │ │ │ │ │ ├── CollaboratorDataUI.cs │ │ │ │ │ │ ├── CollaboratorDataUI.cs.meta │ │ │ │ │ │ ├── CollaboratorsDataPanel.cs │ │ │ │ │ │ ├── CollaboratorsDataPanel.cs.meta │ │ │ │ │ │ ├── MuteToolUIController.cs │ │ │ │ │ │ ├── MuteToolUIController.cs.meta │ │ │ │ │ │ ├── PresenceToolUIController.cs │ │ │ │ │ │ └── PresenceToolUIController.cs.meta │ │ │ │ │ ├── PresentationMode.meta │ │ │ │ │ ├── PresentationMode │ │ │ │ │ │ ├── PresentationCollaboratorDataUI.cs │ │ │ │ │ │ ├── PresentationCollaboratorDataUI.cs.meta │ │ │ │ │ │ ├── PresentationManager.cs │ │ │ │ │ │ ├── PresentationManager.cs.meta │ │ │ │ │ │ ├── PresentationToolUIController.cs │ │ │ │ │ │ ├── PresentationToolUIController.cs.meta │ │ │ │ │ │ ├── PresenterUI.cs │ │ │ │ │ │ └── PresenterUI.cs.meta │ │ │ │ │ ├── RoomCached.cs │ │ │ │ │ ├── RoomCached.cs.meta │ │ │ │ │ ├── UI.meta │ │ │ │ │ ├── UI │ │ │ │ │ │ ├── AvatarBadgesContainer.cs │ │ │ │ │ │ ├── AvatarBadgesContainer.cs.meta │ │ │ │ │ │ ├── VoiceAvatarBadgesContainer.cs │ │ │ │ │ │ ├── VoiceAvatarBadgesContainer.cs.meta │ │ │ │ │ │ ├── VoiceLevelIndicator.cs │ │ │ │ │ │ ├── VoiceLevelIndicator.cs.meta │ │ │ │ │ │ ├── VoiceLevelMicrophoneButton.cs │ │ │ │ │ │ └── VoiceLevelMicrophoneButton.cs.meta │ │ │ │ │ ├── Utils.meta │ │ │ │ │ ├── Utils │ │ │ │ │ │ ├── AutoScale.cs │ │ │ │ │ │ ├── AutoScale.cs.meta │ │ │ │ │ │ ├── Billboard.cs │ │ │ │ │ │ └── Billboard.cs.meta │ │ │ │ │ ├── Voice.meta │ │ │ │ │ └── Voice │ │ │ │ │ │ ├── VoiceManager.cs │ │ │ │ │ │ └── VoiceManager.cs.meta │ │ │ │ ├── Sprites.meta │ │ │ │ ├── Sprites │ │ │ │ │ ├── AvatarTag.meta │ │ │ │ │ ├── AvatarTag │ │ │ │ │ │ ├── avatar-tag-pin.png │ │ │ │ │ │ └── avatar-tag-pin.png.meta │ │ │ │ │ ├── Presentation.meta │ │ │ │ │ ├── Presentation │ │ │ │ │ │ ├── PresentationIcon.png │ │ │ │ │ │ └── PresentationIcon.png.meta │ │ │ │ │ ├── VoiceLevel.meta │ │ │ │ │ └── VoiceLevel │ │ │ │ │ │ ├── Microphone@2x.png │ │ │ │ │ │ ├── Microphone@2x.png.meta │ │ │ │ │ │ ├── MicrophoneSlash@2x.png │ │ │ │ │ │ ├── MicrophoneSlash@2x.png.meta │ │ │ │ │ │ ├── VoiceLevel.png │ │ │ │ │ │ └── VoiceLevel.png.meta │ │ │ │ ├── UIToolkit.meta │ │ │ │ ├── UIToolkit │ │ │ │ │ ├── AvatarBadges.meta │ │ │ │ │ ├── AvatarBadges │ │ │ │ │ │ ├── AvatarBadgesContainerStyle.uss │ │ │ │ │ │ └── AvatarBadgesContainerStyle.uss.meta │ │ │ │ │ ├── AvatarTag.meta │ │ │ │ │ ├── AvatarTag │ │ │ │ │ │ ├── AvatarTag.uxml │ │ │ │ │ │ ├── AvatarTag.uxml.meta │ │ │ │ │ │ ├── AvatarTagPanelSettings.asset │ │ │ │ │ │ ├── AvatarTagPanelSettings.asset.meta │ │ │ │ │ │ ├── AvatarTagStyle.uss │ │ │ │ │ │ └── AvatarTagStyle.uss.meta │ │ │ │ │ ├── FollowMode.meta │ │ │ │ │ ├── FollowMode │ │ │ │ │ │ ├── FollowModeUI.uxml │ │ │ │ │ │ ├── FollowModeUI.uxml.meta │ │ │ │ │ │ ├── FollowModeUIStyle.uss │ │ │ │ │ │ └── FollowModeUIStyle.uss.meta │ │ │ │ │ ├── PresentationMode.meta │ │ │ │ │ ├── PresentationMode │ │ │ │ │ │ ├── PresentationModeUI.uss │ │ │ │ │ │ ├── PresentationModeUI.uss.meta │ │ │ │ │ │ ├── PresentationModeUI.uxml │ │ │ │ │ │ ├── PresentationModeUI.uxml.meta │ │ │ │ │ │ ├── PresenterUI.uxml │ │ │ │ │ │ ├── PresenterUI.uxml.meta │ │ │ │ │ │ ├── PresenterUIStyle.uss │ │ │ │ │ │ └── PresenterUIStyle.uss.meta │ │ │ │ │ ├── VoiceLevel.meta │ │ │ │ │ └── VoiceLevel │ │ │ │ │ │ ├── VoiceLevelMicrophoneStyle.uss │ │ │ │ │ │ └── VoiceLevelMicrophoneStyle.uss.meta │ │ │ │ ├── Unity.ReferenceProject.Presence.Runtime.asmdef │ │ │ │ └── Unity.ReferenceProject.Presence.Runtime.asmdef.meta │ │ │ ├── Tests.meta │ │ │ └── Tests │ │ │ │ ├── AvatarBadgesContainerTests.cs │ │ │ │ ├── AvatarBadgesContainerTests.cs.meta │ │ │ │ ├── DummyServer.meta │ │ │ │ ├── DummyServer │ │ │ │ ├── DummyPresenceManager.cs │ │ │ │ ├── DummyPresenceManager.cs.meta │ │ │ │ ├── DummyRoomJoiner.cs │ │ │ │ ├── DummyRoomJoiner.cs.meta │ │ │ │ ├── DummyRoomMonitoring.cs │ │ │ │ ├── DummyRoomMonitoring.cs.meta │ │ │ │ ├── DummyServer.cs │ │ │ │ └── DummyServer.cs.meta │ │ │ │ ├── DummyServerTests.cs │ │ │ │ ├── DummyServerTests.cs.meta │ │ │ │ ├── RoomCachedTests.cs │ │ │ │ ├── RoomCachedTests.cs.meta │ │ │ │ ├── TestBase.cs │ │ │ │ ├── TestBase.cs.meta │ │ │ │ ├── Unity.ReferenceProject.Presence.Tests.Runtime.asmdef │ │ │ │ └── Unity.ReferenceProject.Presence.Tests.Runtime.asmdef.meta │ │ ├── SearchSortFilter.meta │ │ ├── SearchSortFilter │ │ │ ├── Runtime.meta │ │ │ ├── Runtime │ │ │ │ ├── Scripts.meta │ │ │ │ ├── Scripts │ │ │ │ │ ├── Filter.meta │ │ │ │ │ ├── Filter │ │ │ │ │ │ ├── FilterBindNode.cs │ │ │ │ │ │ ├── FilterBindNode.cs.meta │ │ │ │ │ │ ├── FilterSingleUI.cs │ │ │ │ │ │ └── FilterSingleUI.cs.meta │ │ │ │ │ ├── Search.meta │ │ │ │ │ ├── Search │ │ │ │ │ │ ├── HighlightModule.cs │ │ │ │ │ │ ├── HighlightModule.cs.meta │ │ │ │ │ │ ├── SearchModule.cs │ │ │ │ │ │ ├── SearchModule.cs.meta │ │ │ │ │ │ ├── SearchUI.cs │ │ │ │ │ │ └── SearchUI.cs.meta │ │ │ │ │ ├── Sort.meta │ │ │ │ │ └── Sort │ │ │ │ │ │ ├── SortModule.cs │ │ │ │ │ │ ├── SortModule.cs.meta │ │ │ │ │ │ ├── SortModuleUI.cs │ │ │ │ │ │ └── SortModuleUI.cs.meta │ │ │ │ ├── Sprites.meta │ │ │ │ ├── Sprites │ │ │ │ │ ├── Vector 298@2x.png │ │ │ │ │ └── Vector 298@2x.png.meta │ │ │ │ ├── UIToolkit.meta │ │ │ │ ├── UIToolkit │ │ │ │ │ ├── SortArrows.uss │ │ │ │ │ └── SortArrows.uss.meta │ │ │ │ ├── Unity.ReferenceProject.SearchSortFilter.Runtime.asmdef │ │ │ │ └── Unity.ReferenceProject.SearchSortFilter.Runtime.asmdef.meta │ │ │ ├── Tests.meta │ │ │ └── Tests │ │ │ │ ├── FilterTests.cs │ │ │ │ ├── FilterTests.cs.meta │ │ │ │ ├── SearchTests.cs │ │ │ │ ├── SearchTests.cs.meta │ │ │ │ ├── SortTests.cs │ │ │ │ ├── SortTests.cs.meta │ │ │ │ ├── Unity.ReferenceProject.SearchSortFilter.Tests.asmdef │ │ │ │ └── Unity.ReferenceProject.SearchSortFilter.Tests.asmdef.meta │ │ ├── Settings.meta │ │ ├── Settings │ │ │ ├── Runtime.meta │ │ │ └── Runtime │ │ │ │ ├── Prefabs.meta │ │ │ │ ├── Prefabs │ │ │ │ ├── GlobalSettingsTool.prefab │ │ │ │ └── GlobalSettingsTool.prefab.meta │ │ │ │ ├── Scripts.meta │ │ │ │ ├── Scripts │ │ │ │ ├── BaseSetting.cs │ │ │ │ ├── BaseSetting.cs.meta │ │ │ │ ├── GlobalSettings.cs │ │ │ │ ├── GlobalSettings.cs.meta │ │ │ │ ├── GlobalSettingsInstaller.cs │ │ │ │ ├── GlobalSettingsInstaller.cs.meta │ │ │ │ ├── GlobalSettingsUIController.cs │ │ │ │ ├── GlobalSettingsUIController.cs.meta │ │ │ │ ├── Settings.meta │ │ │ │ └── Settings │ │ │ │ │ ├── ActionSetting.cs │ │ │ │ │ ├── ActionSetting.cs.meta │ │ │ │ │ ├── DropdownSetting.cs │ │ │ │ │ ├── DropdownSetting.cs.meta │ │ │ │ │ ├── ToggleSetting.cs │ │ │ │ │ └── ToggleSetting.cs.meta │ │ │ │ ├── Sprites.meta │ │ │ │ ├── Sprites │ │ │ │ ├── Settings.png │ │ │ │ ├── Settings.png.meta │ │ │ │ ├── Settings@2x.png │ │ │ │ └── Settings@2x.png.meta │ │ │ │ ├── UIToolkit.meta │ │ │ │ ├── UIToolkit │ │ │ │ ├── GlobalSettingsStyle.uss │ │ │ │ └── GlobalSettingsStyle.uss.meta │ │ │ │ ├── Unity.ReferenceProject.Settings.Runtime.asmdef │ │ │ │ └── Unity.ReferenceProject.Settings.Runtime.asmdef.meta │ │ ├── StateMachine.meta │ │ ├── StateMachine │ │ │ ├── Runtime.meta │ │ │ └── Runtime │ │ │ │ ├── Scripts.meta │ │ │ │ ├── Scripts │ │ │ │ ├── AppState.cs │ │ │ │ ├── AppState.cs.meta │ │ │ │ ├── AppStateController.cs │ │ │ │ ├── AppStateController.cs.meta │ │ │ │ ├── AppStateMachine.cs │ │ │ │ ├── AppStateMachine.cs.meta │ │ │ │ ├── AppStateMachineInstaller.cs │ │ │ │ └── AppStateMachineInstaller.cs.meta │ │ │ │ ├── Unity.ReferenceProject.StateMachine.Runtime.asmdef │ │ │ │ └── Unity.ReferenceProject.StateMachine.Runtime.asmdef.meta │ │ ├── Stats.meta │ │ ├── Stats │ │ │ ├── Runtime.meta │ │ │ └── Runtime │ │ │ │ ├── Prefabs.meta │ │ │ │ ├── Prefabs │ │ │ │ ├── GlobalStatsTool.prefab │ │ │ │ └── GlobalStatsTool.prefab.meta │ │ │ │ ├── Scripts.meta │ │ │ │ ├── Scripts │ │ │ │ ├── GlobalStats.cs │ │ │ │ ├── GlobalStats.cs.meta │ │ │ │ ├── GlobalStatsInstaller.cs │ │ │ │ ├── GlobalStatsInstaller.cs.meta │ │ │ │ ├── GlobalStatsUIController.cs │ │ │ │ ├── GlobalStatsUIController.cs.meta │ │ │ │ ├── Stats.meta │ │ │ │ └── Stats │ │ │ │ │ ├── BaseStat.cs │ │ │ │ │ ├── BaseStat.cs.meta │ │ │ │ │ ├── TextStat.cs │ │ │ │ │ └── TextStat.cs.meta │ │ │ │ ├── UIToolkit.meta │ │ │ │ ├── UIToolkit │ │ │ │ ├── GlobalStatsStyle.uss │ │ │ │ └── GlobalStatsStyle.uss.meta │ │ │ │ ├── Unity.ReferenceProject.Stats.asmdef │ │ │ │ └── Unity.ReferenceProject.Stats.asmdef.meta │ │ ├── Tools.meta │ │ ├── Tools │ │ │ ├── Runtime.meta │ │ │ └── Runtime │ │ │ │ ├── Prefab.meta │ │ │ │ ├── Prefab │ │ │ │ ├── AdaptiveMenu.prefab │ │ │ │ ├── AdaptiveMenu.prefab.meta │ │ │ │ ├── Tool UI Mode Popover - RightAdaptive.asset │ │ │ │ └── Tool UI Mode Popover - RightAdaptive.asset.meta │ │ │ │ ├── Scripts.meta │ │ │ │ ├── Scripts │ │ │ │ ├── AdaptiveMenu.cs │ │ │ │ ├── AdaptiveMenu.cs.meta │ │ │ │ ├── AdaptiveMenuToolUIController.cs │ │ │ │ ├── AdaptiveMenuToolUIController.cs.meta │ │ │ │ ├── Controllers.meta │ │ │ │ ├── Controllers │ │ │ │ │ ├── Panel.cs │ │ │ │ │ ├── Panel.cs.meta │ │ │ │ │ ├── ToolUIController.cs │ │ │ │ │ └── ToolUIController.cs.meta │ │ │ │ ├── ToolUIManager.cs │ │ │ │ ├── ToolUIManager.cs.meta │ │ │ │ ├── ToolUIManagerInstaller.cs │ │ │ │ ├── ToolUIManagerInstaller.cs.meta │ │ │ │ ├── ToolUIMenu.cs │ │ │ │ ├── ToolUIMenu.cs.meta │ │ │ │ ├── ToolUIModes.meta │ │ │ │ └── ToolUIModes │ │ │ │ │ ├── ToolUIMode.cs │ │ │ │ │ ├── ToolUIMode.cs.meta │ │ │ │ │ ├── ToolUIModeDoNothing.cs │ │ │ │ │ ├── ToolUIModeDoNothing.cs.meta │ │ │ │ │ ├── ToolUIModePanel.cs │ │ │ │ │ ├── ToolUIModePanel.cs.meta │ │ │ │ │ ├── ToolUIModePopover.cs │ │ │ │ │ ├── ToolUIModePopover.cs.meta │ │ │ │ │ ├── ToolUIModeSimple.cs │ │ │ │ │ └── ToolUIModeSimple.cs.meta │ │ │ │ ├── UIToolkit.meta │ │ │ │ ├── UIToolkit │ │ │ │ ├── AdaptiveStyle.uss │ │ │ │ ├── AdaptiveStyle.uss.meta │ │ │ │ ├── ToolPanel.cs │ │ │ │ ├── ToolPanel.cs.meta │ │ │ │ ├── ToolPanelStyle.uss │ │ │ │ └── ToolPanelStyle.uss.meta │ │ │ │ ├── Unity.ReferenceProject.Tools.Runtime.asmdef │ │ │ │ └── Unity.ReferenceProject.Tools.Runtime.asmdef.meta │ │ ├── UIPanel.meta │ │ ├── UIPanel │ │ │ ├── Runtime.meta │ │ │ ├── Runtime │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── AssemblyInfo.cs.meta │ │ │ │ ├── Scripts.meta │ │ │ │ ├── Scripts │ │ │ │ │ ├── IgnoreSafeArea.cs │ │ │ │ │ ├── IgnoreSafeArea.cs.meta │ │ │ │ │ ├── MainUIPanel.cs │ │ │ │ │ ├── MainUIPanel.cs.meta │ │ │ │ │ ├── MainUIPanelEntry.cs │ │ │ │ │ ├── MainUIPanelEntry.cs.meta │ │ │ │ │ ├── MainUIPanelInstaller.cs │ │ │ │ │ ├── MainUIPanelInstaller.cs.meta │ │ │ │ │ ├── MainUIPanelTheme.cs │ │ │ │ │ ├── MainUIPanelTheme.cs.meta │ │ │ │ │ ├── VisualElementExtensions.cs │ │ │ │ │ └── VisualElementExtensions.cs.meta │ │ │ │ ├── Unity.ReferenceProject.UIPanel.Runtime.asmdef │ │ │ │ └── Unity.ReferenceProject.UIPanel.Runtime.asmdef.meta │ │ │ ├── Tests.meta │ │ │ └── Tests │ │ │ │ ├── MainUIPanelEntryTests.cs │ │ │ │ ├── MainUIPanelEntryTests.cs.meta │ │ │ │ ├── Resources.meta │ │ │ │ ├── Resources │ │ │ │ ├── DummyPanelSettings.asset │ │ │ │ ├── DummyPanelSettings.asset.meta │ │ │ │ ├── DummyTemplate.uxml │ │ │ │ └── DummyTemplate.uxml.meta │ │ │ │ ├── TestGameObjects.cs │ │ │ │ ├── TestGameObjects.cs.meta │ │ │ │ ├── Unity.ReferenceProject.UIPanel.Tests.asmdef │ │ │ │ └── Unity.ReferenceProject.UIPanel.Tests.asmdef.meta │ │ ├── UITableListView.meta │ │ ├── UITableListView │ │ │ ├── Runtime.meta │ │ │ └── Runtime │ │ │ │ ├── Scripts.meta │ │ │ │ ├── Scripts │ │ │ │ ├── Interfaces.cs │ │ │ │ ├── Interfaces.cs.meta │ │ │ │ ├── Services.meta │ │ │ │ ├── Services │ │ │ │ │ ├── ColumnFilterServiceDropdown.cs │ │ │ │ │ ├── ColumnFilterServiceDropdown.cs.meta │ │ │ │ │ ├── ColumnFilterServiceTable.cs │ │ │ │ │ ├── ColumnFilterServiceTable.cs.meta │ │ │ │ │ ├── ColumnSearchService.cs │ │ │ │ │ ├── ColumnSearchService.cs.meta │ │ │ │ │ ├── ColumnSortService.cs │ │ │ │ │ ├── ColumnSortService.cs.meta │ │ │ │ │ ├── FilterTableUI.cs │ │ │ │ │ ├── FilterTableUI.cs.meta │ │ │ │ │ ├── ListTableServiceController.cs │ │ │ │ │ └── ListTableServiceController.cs.meta │ │ │ │ ├── TableListColumn.cs │ │ │ │ ├── TableListColumn.cs.meta │ │ │ │ ├── TableListColumnData.cs │ │ │ │ ├── TableListColumnData.cs.meta │ │ │ │ ├── TableListView.cs │ │ │ │ └── TableListView.cs.meta │ │ │ │ ├── Unity.ReferenceProject.UITableListView.Runtime.asmdef │ │ │ │ └── Unity.ReferenceProject.UITableListView.Runtime.asmdef.meta │ │ ├── WorldSpaceUIDocumentExtensions.meta │ │ └── WorldSpaceUIDocumentExtensions │ │ │ ├── Runtime.meta │ │ │ └── Runtime │ │ │ ├── AssemblyInfo.cs │ │ │ ├── AssemblyInfo.cs.meta │ │ │ ├── Materials.meta │ │ │ ├── Materials │ │ │ ├── RT_Dynamic.renderTexture │ │ │ ├── RT_Dynamic.renderTexture.meta │ │ │ ├── Unlit_Transparent.mat │ │ │ └── Unlit_Transparent.mat.meta │ │ │ ├── Prefabs.meta │ │ │ ├── Prefabs │ │ │ ├── WorldSpaceUIDocument.prefab │ │ │ └── WorldSpaceUIDocument.prefab.meta │ │ │ ├── Scripts.meta │ │ │ ├── Scripts │ │ │ ├── ControllerInfo.cs │ │ │ ├── ControllerInfo.cs.meta │ │ │ ├── ControllerInstaller.cs │ │ │ ├── ControllerInstaller.cs.meta │ │ │ ├── ControllerStore.cs │ │ │ ├── ControllerStore.cs.meta │ │ │ ├── WorldSpaceUIDocumentController.cs │ │ │ ├── WorldSpaceUIDocumentController.cs.meta │ │ │ ├── WorldSpaceUIDocumentCustomFunction.cs │ │ │ ├── WorldSpaceUIDocumentCustomFunction.cs.meta │ │ │ ├── WorldSpaceUIDocumentSize.cs │ │ │ └── WorldSpaceUIDocumentSize.cs.meta │ │ │ ├── UIToolkit.meta │ │ │ ├── UIToolkit │ │ │ ├── Panel Settings.asset │ │ │ └── Panel Settings.asset.meta │ │ │ ├── Unity.ReferenceProject.WorldSpaceUIDocumentExtensions.Runtime.asmdef │ │ │ └── Unity.ReferenceProject.WorldSpaceUIDocumentExtensions.Runtime.asmdef.meta │ ├── _VR.meta │ └── _VR │ │ ├── _Application.meta │ │ ├── _Application │ │ ├── Instructions.meta │ │ ├── Instructions │ │ │ ├── Localization.meta │ │ │ ├── Localization │ │ │ │ ├── InstructionsVR Shared Data.asset │ │ │ │ ├── InstructionsVR Shared Data.asset.meta │ │ │ │ ├── InstructionsVR.asset │ │ │ │ ├── InstructionsVR.asset.meta │ │ │ │ ├── InstructionsVR_en.asset │ │ │ │ ├── InstructionsVR_en.asset.meta │ │ │ │ ├── InstructionsVR_fr.asset │ │ │ │ └── InstructionsVR_fr.asset.meta │ │ │ ├── Prefabs.meta │ │ │ ├── Prefabs │ │ │ │ ├── Instructions.prefab │ │ │ │ └── Instructions.prefab.meta │ │ │ ├── Scripts.meta │ │ │ ├── Scripts │ │ │ │ ├── InstructionUIControllerVR.cs │ │ │ │ └── InstructionUIControllerVR.cs.meta │ │ │ ├── Sprites.meta │ │ │ ├── Sprites │ │ │ │ ├── ControllerButton@1x.png │ │ │ │ ├── ControllerButton@1x.png.meta │ │ │ │ ├── ControllerButton@2x.png │ │ │ │ ├── ControllerButton@2x.png.meta │ │ │ │ ├── ControllerButton@4x.png │ │ │ │ ├── ControllerButton@4x.png.meta │ │ │ │ ├── LinePointer@1x.png │ │ │ │ ├── LinePointer@1x.png.meta │ │ │ │ ├── LinePointer@2x.png │ │ │ │ ├── LinePointer@2x.png.meta │ │ │ │ ├── LinePointer@4x.png │ │ │ │ ├── LinePointer@4x.png.meta │ │ │ │ ├── ThumbstickArrow.png │ │ │ │ ├── ThumbstickArrow.png.meta │ │ │ │ ├── TriggerButton@1x.png │ │ │ │ ├── TriggerButton@1x.png.meta │ │ │ │ ├── TriggerButton@2x.png │ │ │ │ ├── TriggerButton@2x.png.meta │ │ │ │ ├── TriggerButton@4x.png │ │ │ │ ├── TriggerButton@4x.png.meta │ │ │ │ ├── VRController@1x.png │ │ │ │ ├── VRController@1x.png.meta │ │ │ │ ├── VRController@2x.png │ │ │ │ ├── VRController@2x.png.meta │ │ │ │ ├── VRController@4x.png │ │ │ │ └── VRController@4x.png.meta │ │ │ ├── UIToolkit.meta │ │ │ └── UIToolkit │ │ │ │ ├── InstructionsPanelVR.uxml │ │ │ │ ├── InstructionsPanelVR.uxml.meta │ │ │ │ ├── InstructionsPanelVRStyle.uss │ │ │ │ ├── InstructionsPanelVRStyle.uss.meta │ │ │ │ ├── InstructionsVRStyle.uss │ │ │ │ ├── InstructionsVRStyle.uss.meta │ │ │ │ ├── Instructions_VRMode.uxml │ │ │ │ └── Instructions_VRMode.uxml.meta │ │ ├── NavigationMode.meta │ │ ├── NavigationMode │ │ │ ├── NavigationVR.meta │ │ │ ├── NavigationVR │ │ │ │ ├── NavigationVR.asset │ │ │ │ ├── NavigationVR.asset.meta │ │ │ │ ├── Prefabs.meta │ │ │ │ ├── Prefabs │ │ │ │ │ ├── NavigationVR.prefab │ │ │ │ │ └── NavigationVR.prefab.meta │ │ │ │ ├── Scripts.meta │ │ │ │ └── Scripts │ │ │ │ │ ├── NavigationVR.cs │ │ │ │ │ └── NavigationVR.cs.meta │ │ │ ├── VRMode.meta │ │ │ └── VRMode │ │ │ │ ├── Prefabs.meta │ │ │ │ ├── Prefabs │ │ │ │ ├── VRModeController.prefab │ │ │ │ └── VRModeController.prefab.meta │ │ │ │ ├── Scripts.meta │ │ │ │ ├── Scripts │ │ │ │ ├── NavigationModeDataVR.cs │ │ │ │ ├── NavigationModeDataVR.cs.meta │ │ │ │ ├── VRModeController.cs │ │ │ │ └── VRModeController.cs.meta │ │ │ │ ├── VRMode.asset │ │ │ │ └── VRMode.asset.meta │ │ ├── Prefabs.meta │ │ ├── Prefabs │ │ │ ├── VR.prefab │ │ │ └── VR.prefab.meta │ │ ├── Scenes.meta │ │ ├── Scenes │ │ │ ├── MainVR.unity │ │ │ ├── MainVR.unity.meta │ │ │ ├── StreamingVR.unity │ │ │ └── StreamingVR.unity.meta │ │ ├── Scripts.meta │ │ ├── Scripts │ │ │ ├── AppMessaging.meta │ │ │ ├── AppMessaging │ │ │ │ ├── AppMessagingVR.cs │ │ │ │ └── AppMessagingVR.cs.meta │ │ │ ├── AppState.meta │ │ │ ├── AppState │ │ │ │ ├── AppStateListener.cs │ │ │ │ ├── AppStateListener.cs.meta │ │ │ │ ├── AppStateRigUIToggler.cs │ │ │ │ ├── AppStateRigUIToggler.cs.meta │ │ │ │ ├── AppStateWorldSpacePanel.cs │ │ │ │ ├── AppStateWorldSpacePanel.cs.meta │ │ │ │ ├── AssetListStateVR.cs │ │ │ │ ├── AssetListStateVR.cs.meta │ │ │ │ ├── InitializationStateVR.cs │ │ │ │ ├── InitializationStateVR.cs.meta │ │ │ │ ├── LoginStateVR.cs │ │ │ │ ├── LoginStateVR.cs.meta │ │ │ │ ├── LogoutStateVR.cs │ │ │ │ ├── LogoutStateVR.cs.meta │ │ │ │ ├── NavigationEventEnabler.cs │ │ │ │ └── NavigationEventEnabler.cs.meta │ │ │ ├── DI.meta │ │ │ ├── DI │ │ │ │ ├── AppMessagingVRInstaller.cs │ │ │ │ ├── AppMessagingVRInstaller.cs.meta │ │ │ │ ├── VRInstaller.cs │ │ │ │ └── VRInstaller.cs.meta │ │ │ ├── Keyboard.meta │ │ │ ├── Keyboard │ │ │ │ ├── AssetListKeyboardAdapter.cs │ │ │ │ ├── AssetListKeyboardAdapter.cs.meta │ │ │ │ ├── VRKeyboardController.cs │ │ │ │ └── VRKeyboardController.cs.meta │ │ │ ├── Settings.meta │ │ │ ├── Settings │ │ │ │ ├── StatDisplayVR.cs │ │ │ │ ├── StatDisplayVR.cs.meta │ │ │ │ ├── ThemeSettingVR.cs │ │ │ │ └── ThemeSettingVR.cs.meta │ │ │ ├── VRLoader.cs │ │ │ └── VRLoader.cs.meta │ │ ├── Settings.meta │ │ ├── Settings │ │ │ ├── CustomVRAction.inputactions │ │ │ └── CustomVRAction.inputactions.meta │ │ ├── Sprites.meta │ │ ├── Sprites │ │ │ ├── BurgerMenu@2x.png │ │ │ ├── BurgerMenu@2x.png.meta │ │ │ ├── VR@2x.png │ │ │ ├── VR@2x.png.meta │ │ │ ├── Wrench@2x.png │ │ │ ├── Wrench@2x.png.meta │ │ │ ├── desktop@2x.png │ │ │ └── desktop@2x.png.meta │ │ ├── ToolUI.meta │ │ ├── ToolUI │ │ │ ├── SubMenuToolUIController.cs │ │ │ ├── SubMenuToolUIController.cs.meta │ │ │ ├── ToolPanelVR.cs │ │ │ ├── ToolPanelVR.cs.meta │ │ │ ├── ToolUIMenuVR.cs │ │ │ ├── ToolUIMenuVR.cs.meta │ │ │ ├── ToolUIModePanelVR.cs │ │ │ ├── ToolUIModePanelVR.cs.meta │ │ │ ├── ToolUISubMenuVR.cs │ │ │ └── ToolUISubMenuVR.cs.meta │ │ ├── Tools.meta │ │ ├── Tools │ │ │ ├── AnnotationTool.meta │ │ │ ├── AnnotationTool │ │ │ │ ├── Prefabs.meta │ │ │ │ ├── Prefabs │ │ │ │ │ ├── AnnotationUIControllerVR.prefab │ │ │ │ │ └── AnnotationUIControllerVR.prefab.meta │ │ │ │ ├── Scripts.meta │ │ │ │ └── Scripts │ │ │ │ │ ├── AnnotationToolUIControllerVR.cs │ │ │ │ │ └── AnnotationToolUIControllerVR.cs.meta │ │ │ ├── AssetListTool.meta │ │ │ ├── AssetListTool │ │ │ │ ├── Prefabs.meta │ │ │ │ ├── Prefabs │ │ │ │ │ ├── AssetListToolVR.prefab │ │ │ │ │ └── AssetListToolVR.prefab.meta │ │ │ │ ├── Scripts.meta │ │ │ │ └── Scripts │ │ │ │ │ ├── AssetListToolUIControllerVR.cs │ │ │ │ │ └── AssetListToolUIControllerVR.cs.meta │ │ │ ├── PresenceTool.meta │ │ │ ├── PresenceTool │ │ │ │ ├── Prefabs.meta │ │ │ │ ├── Prefabs │ │ │ │ │ ├── PresenceToolVR.prefab │ │ │ │ │ └── PresenceToolVR.prefab.meta │ │ │ │ ├── Scripts.meta │ │ │ │ └── Scripts │ │ │ │ │ ├── PresenceToolUIControllerVR.cs │ │ │ │ │ └── PresenceToolUIControllerVR.cs.meta │ │ │ ├── ProfilTool.meta │ │ │ ├── ProfilTool │ │ │ │ ├── Prefabs.meta │ │ │ │ ├── Prefabs │ │ │ │ │ ├── ProfileToolVR.prefab │ │ │ │ │ └── ProfileToolVR.prefab.meta │ │ │ │ ├── Scripts.meta │ │ │ │ └── Scripts │ │ │ │ │ ├── ProfilToolControllerVR.cs │ │ │ │ │ └── ProfilToolControllerVR.cs.meta │ │ │ ├── ReturnToDesktop.meta │ │ │ └── ReturnToDesktop │ │ │ │ ├── Prefabs.meta │ │ │ │ ├── Prefabs │ │ │ │ ├── ReturnDesktop.prefab │ │ │ │ └── ReturnDesktop.prefab.meta │ │ │ │ ├── Scripts.meta │ │ │ │ └── Scripts │ │ │ │ ├── ReturnDesktopController.cs │ │ │ │ └── ReturnDesktopController.cs.meta │ │ ├── UI.meta │ │ ├── UI │ │ │ ├── ToolUIModes.meta │ │ │ └── ToolUIModes │ │ │ │ ├── Settings Panel VR.asset │ │ │ │ ├── Settings Panel VR.asset.meta │ │ │ │ ├── Tool UI Mode Fullscreen Panel VR.asset │ │ │ │ ├── Tool UI Mode Fullscreen Panel VR.asset.meta │ │ │ │ ├── Tool UI Mode Panel VR.asset │ │ │ │ └── Tool UI Mode Panel VR.asset.meta │ │ ├── UIToolkit.meta │ │ ├── UIToolkit │ │ │ ├── VR Settings.asset │ │ │ ├── VR Settings.asset.meta │ │ │ ├── VR Theme.tss │ │ │ ├── VR Theme.tss.meta │ │ │ ├── VRStyle.uss │ │ │ └── VRStyle.uss.meta │ │ ├── Unity.ReferenceProject.VR.asmdef │ │ └── Unity.ReferenceProject.VR.asmdef.meta │ │ ├── _Modules.meta │ │ └── _Modules │ │ ├── RigUI.meta │ │ ├── RigUI │ │ ├── Runtime.meta │ │ └── Runtime │ │ │ ├── AssemblyInfo.cs │ │ │ ├── AssemblyInfo.cs.meta │ │ │ ├── Materials.meta │ │ │ ├── Materials │ │ │ ├── Bar Hover.mat │ │ │ ├── Bar Hover.mat.meta │ │ │ ├── Bar Selected.mat │ │ │ ├── Bar Selected.mat.meta │ │ │ ├── Bar.mat │ │ │ ├── Bar.mat.meta │ │ │ ├── URPUnlitOpaque.mat │ │ │ ├── URPUnlitOpaque.mat.meta │ │ │ ├── URPUnlitTransparent.mat │ │ │ └── URPUnlitTransparent.mat.meta │ │ │ ├── Models.meta │ │ │ ├── Models │ │ │ ├── Panel Manipulator Model.fbx │ │ │ └── Panel Manipulator Model.fbx.meta │ │ │ ├── Prefabs.meta │ │ │ ├── Prefabs │ │ │ ├── DockedPanel.prefab │ │ │ ├── DockedPanel.prefab.meta │ │ │ ├── FloatingPanel.prefab │ │ │ └── FloatingPanel.prefab.meta │ │ │ ├── Scripts.meta │ │ │ ├── Scripts │ │ │ ├── DockedPanelController.cs │ │ │ ├── DockedPanelController.cs.meta │ │ │ ├── FloatingPanelController.cs │ │ │ ├── FloatingPanelController.cs.meta │ │ │ ├── FloatingPanelManipulator.cs │ │ │ ├── FloatingPanelManipulator.cs.meta │ │ │ ├── Handle.cs │ │ │ ├── Handle.cs.meta │ │ │ ├── MenuType.cs │ │ │ ├── MenuType.cs.meta │ │ │ ├── MenuTypeStore.cs │ │ │ ├── MenuTypeStore.cs.meta │ │ │ ├── PanelController.cs │ │ │ ├── PanelController.cs.meta │ │ │ ├── PanelManager.cs │ │ │ ├── PanelManager.cs.meta │ │ │ ├── RigUIController.cs │ │ │ └── RigUIController.cs.meta │ │ │ ├── Settings.meta │ │ │ ├── Settings │ │ │ ├── MenuType.meta │ │ │ └── MenuType │ │ │ │ ├── EmptyMenu.asset │ │ │ │ ├── EmptyMenu.asset.meta │ │ │ │ ├── InitMenu.asset │ │ │ │ ├── InitMenu.asset.meta │ │ │ │ ├── LoginMenu.asset │ │ │ │ ├── LoginMenu.asset.meta │ │ │ │ ├── StreamingMenu.asset │ │ │ │ ├── StreamingMenu.asset.meta │ │ │ │ ├── SubMenu.asset │ │ │ │ └── SubMenu.asset.meta │ │ │ ├── UIToolkit.meta │ │ │ ├── UIToolkit │ │ │ ├── AppUIPanel.uxml │ │ │ ├── AppUIPanel.uxml.meta │ │ │ ├── RigUIStyle.uss │ │ │ └── RigUIStyle.uss.meta │ │ │ ├── Unity.ReferenceProject.VR.RigUI.Runtime.asmdef │ │ │ └── Unity.ReferenceProject.VR.RigUI.Runtime.asmdef.meta │ │ ├── VRControls.meta │ │ └── VRControls │ │ ├── Editor.meta │ │ ├── Editor │ │ ├── Scripts.meta │ │ ├── Scripts │ │ │ ├── VRSimulator.cs │ │ │ └── VRSimulator.cs.meta │ │ ├── Unity.ReferenceProject.VRControls.Editor.asmdef │ │ └── Unity.ReferenceProject.VRControls.Editor.asmdef.meta │ │ ├── Runtime.meta │ │ ├── Runtime │ │ ├── Materials.meta │ │ ├── Materials │ │ │ ├── BlinkOcclusionPass.mat │ │ │ ├── BlinkOcclusionPass.mat.meta │ │ │ ├── BlinkOcclusionTexture.png │ │ │ ├── BlinkOcclusionTexture.png.meta │ │ │ ├── FlatBlue.mat │ │ │ ├── FlatBlue.mat.meta │ │ │ ├── RayInteractionLine.mat │ │ │ ├── RayInteractionLine.mat.meta │ │ │ ├── TorusCursor.mat │ │ │ ├── TorusCursor.mat.meta │ │ │ ├── XRController-Gray.mat │ │ │ ├── XRController-Gray.mat.meta │ │ │ ├── XRController-White.mat │ │ │ ├── XRController-White.mat.meta │ │ │ ├── torus_cursorShape.png │ │ │ └── torus_cursorShape.png.meta │ │ ├── Models.meta │ │ ├── Models │ │ │ ├── TeleportVisual.fbx │ │ │ ├── TeleportVisual.fbx.meta │ │ │ ├── XRControllerLT.fbx │ │ │ ├── XRControllerLT.fbx.meta │ │ │ ├── XRControllerRT.fbx │ │ │ ├── XRControllerRT.fbx.meta │ │ │ ├── cursor.fbx │ │ │ └── cursor.fbx.meta │ │ ├── Prefabs.meta │ │ ├── Prefabs │ │ │ ├── GenericControllers.meta │ │ │ ├── GenericControllers │ │ │ │ ├── XRController_LT_SD001.prefab │ │ │ │ ├── XRController_LT_SD001.prefab.meta │ │ │ │ ├── XRController_RT_SD001.prefab │ │ │ │ └── XRController_RT_SD001.prefab.meta │ │ │ ├── RayInteractionCursor3D.prefab │ │ │ ├── RayInteractionCursor3D.prefab.meta │ │ │ ├── RayInteractionLine.prefab │ │ │ ├── RayInteractionLine.prefab.meta │ │ │ ├── Teleport Visuals.prefab │ │ │ ├── Teleport Visuals.prefab.meta │ │ │ ├── Teleport.prefab │ │ │ ├── Teleport.prefab.meta │ │ │ ├── XR Device Simulator.prefab │ │ │ └── XR Device Simulator.prefab.meta │ │ ├── Scripts.meta │ │ ├── Scripts │ │ │ ├── Controllers.meta │ │ │ ├── Controllers │ │ │ │ ├── Axis.cs │ │ │ │ ├── Axis.cs.meta │ │ │ │ ├── InputDrivenTransformController.cs │ │ │ │ ├── InputDrivenTransformController.cs.meta │ │ │ │ ├── TransformAxisRange.cs │ │ │ │ └── TransformAxisRange.cs.meta │ │ │ ├── Locomotions.meta │ │ │ ├── Locomotions │ │ │ │ ├── BaseLocomotionProvider.cs │ │ │ │ ├── BaseLocomotionProvider.cs.meta │ │ │ │ ├── Fly.cs │ │ │ │ ├── Fly.cs.meta │ │ │ │ ├── SpeedControl.cs │ │ │ │ ├── SpeedControl.cs.meta │ │ │ │ ├── Strafe.cs │ │ │ │ ├── Strafe.cs.meta │ │ │ │ ├── Teleport.cs │ │ │ │ ├── Teleport.cs.meta │ │ │ │ ├── TeleportVisuals.cs │ │ │ │ ├── TeleportVisuals.cs.meta │ │ │ │ ├── Turn.cs │ │ │ │ ├── Turn.cs.meta │ │ │ │ ├── Vertical.cs │ │ │ │ └── Vertical.cs.meta │ │ │ ├── Rays.meta │ │ │ ├── Rays │ │ │ │ ├── CursorBlendShapeController.cs │ │ │ │ ├── CursorBlendShapeController.cs.meta │ │ │ │ ├── InteractionLineSettings.cs │ │ │ │ ├── InteractionLineSettings.cs.meta │ │ │ │ ├── LineWidthController.cs │ │ │ │ ├── LineWidthController.cs.meta │ │ │ │ ├── RayInteractionCursor.cs │ │ │ │ ├── RayInteractionCursor.cs.meta │ │ │ │ ├── RayInteractionLine.cs │ │ │ │ ├── RayInteractionLine.cs.meta │ │ │ │ ├── RayInteractionRenderer.cs │ │ │ │ ├── RayInteractionRenderer.cs.meta │ │ │ │ ├── RayInteractionSnappingController.cs │ │ │ │ ├── RayInteractionSnappingController.cs.meta │ │ │ │ ├── RayVisualController.cs │ │ │ │ └── RayVisualController.cs.meta │ │ │ ├── Utils.meta │ │ │ └── Utils │ │ │ │ ├── InputActionMapEnabler.cs │ │ │ │ ├── InputActionMapEnabler.cs.meta │ │ │ │ ├── XRDeviceSimulatorInitPosition.cs │ │ │ │ └── XRDeviceSimulatorInitPosition.cs.meta │ │ ├── Settings.meta │ │ ├── Settings │ │ │ ├── InputVR.inputactions │ │ │ ├── InputVR.inputactions.meta │ │ │ ├── Lines.meta │ │ │ ├── Lines │ │ │ │ ├── DefaultLineSettings.asset │ │ │ │ ├── DefaultLineSettings.asset.meta │ │ │ │ ├── LineSettings3D.asset │ │ │ │ ├── LineSettings3D.asset.meta │ │ │ │ ├── LineSettings3DSelected.asset │ │ │ │ ├── LineSettings3DSelected.asset.meta │ │ │ │ ├── LineSettingsUI.asset │ │ │ │ ├── LineSettingsUI.asset.meta │ │ │ │ ├── LineSettingsUIClick.asset │ │ │ │ └── LineSettingsUIClick.asset.meta │ │ │ ├── TransformAxisRanges.meta │ │ │ ├── TransformAxisRanges │ │ │ │ ├── Action Button Range.asset │ │ │ │ ├── Action Button Range.asset.meta │ │ │ │ ├── Grip Range.asset │ │ │ │ ├── Grip Range.asset.meta │ │ │ │ ├── Joystick X Range.asset │ │ │ │ ├── Joystick X Range.asset.meta │ │ │ │ ├── Joystick Y Range.asset │ │ │ │ ├── Joystick Y Range.asset.meta │ │ │ │ ├── Trigger Range.asset │ │ │ │ └── Trigger Range.asset.meta │ │ │ ├── XR Device Simulator Controls.inputactions │ │ │ └── XR Device Simulator Controls.inputactions.meta │ │ ├── Unity.ReferenceProject.VR.VRControls.Runtime.asmdef │ │ └── Unity.ReferenceProject.VR.VRControls.Runtime.asmdef.meta │ │ ├── Tests.meta │ │ └── Tests │ │ ├── Editor.meta │ │ └── Editor │ │ ├── Unity.ReferenceProject.VRControls.Tests.Editor.asmdef │ │ ├── Unity.ReferenceProject.VRControls.Tests.Editor.asmdef.meta │ │ ├── VRSimulatorTest.cs │ │ └── VRSimulatorTest.cs.meta ├── Packages │ ├── Documentation~ │ │ ├── TableOfContents.md │ │ ├── basic-concepts.md │ │ ├── do-more.md │ │ ├── filter.yml │ │ ├── get-started.md │ │ ├── glossary.md │ │ ├── images │ │ │ ├── MultiPage_TOC-structure.png │ │ │ ├── example.png │ │ │ ├── placeholder-1.png │ │ │ ├── placeholder-success.png │ │ │ ├── step-1.png │ │ │ ├── step-2.png │ │ │ ├── step-3.png │ │ │ ├── ucrp_assets.jpg │ │ │ ├── ucrp_collaborate.jpg │ │ │ ├── ucrp_vr.jpg │ │ │ └── video_thumb_play.jpg │ │ ├── index.md │ │ ├── installation.md │ │ ├── projectMetadata.json │ │ ├── sample1.md │ │ ├── troubleshooting.md │ │ ├── upgrade-guide.md │ │ ├── use-case-1.md │ │ ├── use-case-2.md │ │ ├── use-case-3.md │ │ └── whats-new.md │ ├── manifest.json │ └── packages-lock.json ├── ProjectSettings │ ├── AudioManager.asset │ ├── BurstAotSettings_StandaloneWindows.json │ ├── ClusterInputManager.asset │ ├── CommonBurstAotSettings.json │ ├── DynamicsManager.asset │ ├── EditorBuildSettings.asset │ ├── EditorSettings.asset │ ├── GraphicsSettings.asset │ ├── InputManager.asset │ ├── LocalizationSettings.asset │ ├── MemorySettings.asset │ ├── NavMeshAreas.asset │ ├── PackageManagerSettings.asset │ ├── Packages │ │ └── com.unity.services.vivox │ │ │ └── Settings.json │ ├── Physics2DSettings.asset │ ├── PresetManager.asset │ ├── ProjectSettings.asset │ ├── ProjectVersion.txt │ ├── QualitySettings.asset │ ├── SceneTemplateSettings.json │ ├── ScriptableBuildPipeline.json │ ├── ShaderGraphSettings.asset │ ├── TagManager.asset │ ├── TimeManager.asset │ ├── URPProjectSettings.asset │ ├── UnityConnectSettings.asset │ ├── VFXManager.asset │ ├── VersionControlSettings.asset │ ├── XRPackageSettings.asset │ └── XRSettings.asset ├── ReferenceProject.sln.DotSettings ├── Unity.Global.DotSettings └── fastlane │ ├── Appfile │ ├── Fastfile │ └── README.md └── Third Party Notices.md /Packages/com.unity.gis.unit/.gitignore: -------------------------------------------------------------------------------- 1 | artifacts/** 2 | build/** 3 | .build_script/** 4 | node_modules/** 5 | .DS_Store 6 | .npmrc 7 | !Documentation~ 8 | !.Documentation 9 | npm-debug.log 10 | build.sh.meta 11 | build.bat.meta 12 | .idea/ 13 | -------------------------------------------------------------------------------- /Packages/com.unity.gis.unit/CHANGELOG.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 749f7f554b8da4900b35f46cc4873728 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Packages/com.unity.gis.unit/CONTRIBUTING.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6fd283f1a6fcc49d7ace0c400d41b7cc 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Packages/com.unity.gis.unit/Documentation~/TableOfContents.md: -------------------------------------------------------------------------------- 1 | * [UPM Package Starter Kit](index) 2 | * [Guide for features packages](tools-package-guide) 3 | * [Guide for sample packages](sample-package-guide) 4 | * [Guide for test packages](test-package-guide) 5 | -------------------------------------------------------------------------------- /Packages/com.unity.gis.unit/Documentation~/images/MultiPage_TOC-structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/unity-cloud-reference-project/668dd34a3c1ec8cd27fe97092e3fedca68746868/Packages/com.unity.gis.unit/Documentation~/images/MultiPage_TOC-structure.png -------------------------------------------------------------------------------- /Packages/com.unity.gis.unit/Documentation~/images/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/unity-cloud-reference-project/668dd34a3c1ec8cd27fe97092e3fedca68746868/Packages/com.unity.gis.unit/Documentation~/images/example.png -------------------------------------------------------------------------------- /Packages/com.unity.gis.unit/LICENSE.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e6037b8afbe8c46fd97bcb265741e6e8 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Packages/com.unity.gis.unit/QAReport.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4364e7005fdf345b6843fed36faed9e8 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Packages/com.unity.gis.unit/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bf1b847cf7e544407893b78ab453156a 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Packages/com.unity.gis.unit/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c80e6ead4135e472c961865e73a511b4 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.unity.gis.unit/Runtime/Core.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4be17c819b9ba41e38af133180022b83 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.unity.gis.unit/Runtime/Core/UnitNaming.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3379585e882a40148a2d4727492a3f42 3 | timeCreated: 1670598212 -------------------------------------------------------------------------------- /Packages/com.unity.gis.unit/Runtime/Definitions.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: adb81f866791848abaaf07120be054c8 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.unity.gis.unit/Runtime/Exceptions.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 24fc75da28f5444eca5e0addb790d46e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.unity.gis.unit/Runtime/Formatting.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 39ec7755ba8c5fd4dbbecef19f3c4bc1 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.unity.gis.unit/Runtime/Interfaces.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: abdf955bdffcc4723a708d7a533e707b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.unity.gis.unit/Runtime/Interfaces/ICurrency.cs: -------------------------------------------------------------------------------- 1 | 2 | namespace Unity.Geospatial.Unit 3 | { 4 | /// 5 | /// Interface for monetary units. 6 | /// 7 | public interface ICurrency : IUnitDef 8 | { 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /Packages/com.unity.gis.unit/Runtime/Serializer.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: be1feecd46c854594b628327191f367e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.unity.gis.unit/Runtime/Serializer/Json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 09381b281a1cc4126a24f0ab855de55e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.unity.gis.unit/Runtime/Units.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 965d81bb1de1f4a029e97be51c2ceac8 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.unity.gis.unit/Runtime/Unity.Geospatial.Unit.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5b43f234cb94948ef8fe64044b8cf392 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Packages/com.unity.gis.unit/Tests.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f3f4d6f2c26f64a36a31eb367f899a16 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.unity.gis.unit/Tests/.tests.json: -------------------------------------------------------------------------------- 1 | { 2 | "createSeparatePackage": false 3 | } 4 | -------------------------------------------------------------------------------- /Packages/com.unity.gis.unit/Tests/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 26eaefe37f11d48b6b439c345373530b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.unity.gis.unit/Tests/Runtime/ITester.cs: -------------------------------------------------------------------------------- 1 | 2 | namespace Unity.Geospatial.Unit.Tests 3 | { 4 | public interface ITester 5 | { 6 | void Invoke(); 7 | void InvokeOnArray(); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /Packages/com.unity.gis.unit/Tests/Runtime/Unity.Geospatial.Unit.Tests.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e641085c8e448470e8486475a4db6880 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Packages/com.unity.gis.unit/Third Party Notices.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eb370a36e8ad44d809a22aad7acc9253 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Packages/com.unity.gis.unit/catalog-info.yaml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 46c8ec256d9fb479996f5a6d6c848ba1 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Packages/com.unity.gis.unit/package.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a9413decf343f4261b3db89537c10165 3 | PackageManifestImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Packages/com.unity.reference-project.persistence-api/.dt-samples.json: -------------------------------------------------------------------------------- 1 | { 2 | "SharedAssetDependencies": [ ], 3 | "SampleEntries": [ 4 | { 5 | "Path": "GooglePersistenceSample" 6 | } 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /Packages/com.unity.reference-project.persistence-api/CHANGELOG.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 28b413a7e6281154c930401aa6c28353 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Packages/com.unity.reference-project.persistence-api/LICENSE.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0f332524d61c9e44ca61fe2dffefe16e 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Packages/com.unity.reference-project.persistence-api/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e7264ff1410c9b749b22e68670edc41e 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Packages/com.unity.reference-project.persistence-api/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2f7d4254fa8abd44e8d6be9c8d33d212 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.unity.reference-project.persistence-api/Runtime/CloudServices/ApiClient.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 19c40d21e8e84be590e0a3693830c8ff 3 | timeCreated: 1673649825 -------------------------------------------------------------------------------- /Packages/com.unity.reference-project.persistence-api/Runtime/CloudServices/FileField.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1b9f436e71f54f37b6c98b4a249906a7 3 | timeCreated: 1673647238 -------------------------------------------------------------------------------- /Packages/com.unity.reference-project.persistence-api/Runtime/CloudServices/UrlShortener.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 54973a28b5394bab8d02bb2e7b62a5ed 3 | timeCreated: 1673652419 -------------------------------------------------------------------------------- /Packages/com.unity.reference-project.persistence-api/Runtime/CloudServices/WebResponses.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3def563881de45a3b52f0f600173fe83 3 | timeCreated: 1673647587 -------------------------------------------------------------------------------- /Packages/com.unity.reference-project.persistence-api/Tests.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 825081b079599184dac6ab83a2f86180 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.unity.reference-project.persistence-api/Tests/Tests.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 361251008b6e91c4397bf91fa3f620a9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/com.unity.reference-project.persistence-api/package.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 47c0b805296f87744b7151debd49eed6 3 | PackageManifestImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/AddressableAssetsData.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c6ad50c2021692f408b967c1e19a8249 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/AddressableAssetsData/AssetGroupTemplates.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2a277555ec42a354eac06cb5683f7ac9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/AddressableAssetsData/AssetGroups.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d313406e5bbc6f84499b1cc091eb32db 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/AddressableAssetsData/AssetGroups/Schemas.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b6f33117231bd834c82af7fbd751e4c9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/AddressableAssetsData/DataBuilders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8aa27e959c7187a49baa36adf6f7edcd 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/AddressableAssetsData/Windows.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2fd0bf7778acb6c4aad369c1f4412e7b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/AddressableAssetsData/Windows/addressables_content_state.bin.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dd8d4fca2b2b7e7428f21f21b3f87db9 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/Build.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 91f3bda80e0d3dd4984bffd269bc621f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/Build/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ec4bed5df64ec754389ce7c44c88a271 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/Build/ucrp_base_version.txt: -------------------------------------------------------------------------------- 1 | ucrp-20240725 -------------------------------------------------------------------------------- /ReferenceProject/Assets/Build/ucrp_base_version.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 75075d7ba4d3bfd4e9c86f7cde5db0e3 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/DefaultNetworkPrefabs.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fa03bb7ef18f46646aeebb7439839a75 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 755c4cc618c038b439656f766b0d6316 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/Editor/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a35ef245a42cb1345af2e042439d89ef 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/Editor/Scripts/QuestProjectSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ef03f42f763245449083f5ab00d05c07 3 | timeCreated: 1689594153 -------------------------------------------------------------------------------- /ReferenceProject/Assets/Editor/Unity.ReferenceProject.Editor.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 42d6e6dfd3cc7554d82ebab38eba0dd5 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/Settings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 709f11a7f3c4041caa4ef136ea32d874 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/Settings/URP.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f7adba85cd4d1c84f81ab2140e12f19b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/Settings/URP/URP-Balanced.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e1260c1148f6143b28bae5ace5e9c5d1 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/Settings/URP/URP-HighFidelity.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7b7fd9122c28c4d15b667c7040e3b3fd 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/Settings/URP/URP-Performant.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d0e2fc18fe036412f8223b3b3d9ad574 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/Tests.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1c044ac48ada4aa4d95e2ba335bf8677 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/Tests/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c89b91a2fa9b7844db17bf927e24dda6 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/Tests/Editor/Unity.ReferenceProject.Tests.Editor.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 99ac47ba643b8234d86228def48dca92 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/UnityDefaultRuntimeTheme.tss: -------------------------------------------------------------------------------- 1 | @import url("unity-theme://default"); 2 | VisualElement {} -------------------------------------------------------------------------------- /ReferenceProject/Assets/Utilities.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2197acd7f8598442fa59e3ae9184c202 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/Utilities/Git.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7a1b0a2217c0e4d9eb1eac40a541a5a5 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/Utilities/Git/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 91dbe1b5870454a4aa50ac0bf7bee34a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/XR.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b1e18b0660a371e4fac513832dcf41b3 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/XR/Loaders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ed36e2738c804864ca8fe9b4359e9219 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/XR/Settings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 844a6846120517d4aa6650f4d456be0b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/XR/XRGeneralSettings.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3b626a85c7770754780be8de89afa3b1 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/XRI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a315aa5e15b1e7342b7af206889d2971 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/XRI/Settings.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9fee8131f873fe647a4c8eb12cc5b131 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/XRI/Settings/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bc236774f751d8a4f8b411779ba7cad6 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/_Application.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2d9870c5f79acd24e96d18d4b98a06c6 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/_Application/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Unity.Cloud.Common; 3 | 4 | [assembly: ApiSourceVersion("Unity Cloud Reference Project", "0.6.0")] 5 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/_Application/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 14e0dc8ad996f6a439eb53766d41a354 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/_Application/Editor/AssetLoaderWindow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ab047e768e70483294f5a0913dc90ace 3 | timeCreated: 1695819814 -------------------------------------------------------------------------------- /ReferenceProject/Assets/_Application/Localization.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: db39ebf8161322542b1a47d225d85907 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/_Application/Localization/Tables.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ac458abb1054ec646857b917a4f0d5de 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/_Application/NavigationModes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6eb6ca600b8a9a942a7b8fa2c45abdb9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/_Application/NavigationModes/CameraDefaultPositionController.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b75a0d0253c84f89b574e2136033eec8 3 | timeCreated: 1681744639 -------------------------------------------------------------------------------- /ReferenceProject/Assets/_Application/NavigationModes/FlyMode.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ff7ffa65366017c409fc2fd456540868 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/_Application/NavigationModes/FlyMode/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e99059191b4a6c345883587ca1b2f9f6 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/_Application/NavigationModes/FlyMode/Prefabs/FlyController.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 32ea63756e6e61e4e9fdecab454a33a5 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/_Application/NavigationModes/FlyMode/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4921643530489a645937965503785b8d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/_Application/NavigationModes/FlyMode/Sprites.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f29094f5103a97a4d85eba6fbef83e51 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/_Application/NavigationModes/FlyMode/Sprites/Fly@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/unity-cloud-reference-project/668dd34a3c1ec8cd27fe97092e3fedca68746868/ReferenceProject/Assets/_Application/NavigationModes/FlyMode/Sprites/Fly@2x.png -------------------------------------------------------------------------------- /ReferenceProject/Assets/_Application/NavigationModes/FollowMode.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 19939207ddc667749a3bcae91836dee4 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/_Application/NavigationModes/Gamepad.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: feffd3afaaab44a197ee496d40221155 3 | timeCreated: 1706542208 -------------------------------------------------------------------------------- /ReferenceProject/Assets/_Application/NavigationModes/Gamepad/Prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 69b8e81b70494ba78d3e8235dbeb1fd7 3 | timeCreated: 1706542214 -------------------------------------------------------------------------------- /ReferenceProject/Assets/_Application/NavigationModes/Gamepad/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cf1a1aff11b740a69ed44045e8e05a98 3 | timeCreated: 1706542315 -------------------------------------------------------------------------------- /ReferenceProject/Assets/_Application/NavigationModes/Gamepad/Scripts/GamepadStick.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4deab906bb87402da174ef33877adb96 3 | timeCreated: 1706554701 -------------------------------------------------------------------------------- /ReferenceProject/Assets/_Application/NavigationModes/Gamepad/Sprites.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a7ac5e4ac5164435898a55ece8b75cc6 3 | timeCreated: 1706542224 -------------------------------------------------------------------------------- /ReferenceProject/Assets/_Application/NavigationModes/Gamepad/UIToolkit.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7ba8d26a2f6845379b886b6e4320e0e6 3 | timeCreated: 1706542252 -------------------------------------------------------------------------------- /ReferenceProject/Assets/_Application/NavigationModes/Sprites.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 643e5bb36dd79fe4ca97c77f6ff96a0e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/_Application/NavigationModes/UIToolkit.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dcae199a68b23be48b882abca2bc3a9e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/_Application/NavigationModes/WalkMode.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c5294361c80320a42b61aa0e3fa7012c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/_Application/NavigationModes/WalkMode/Inputs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 771a95ba17fafa6479607d0b7c9f75ff 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/_Application/NavigationModes/WalkMode/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9d6017a75db401c40a861e3fae80ecc7 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/_Application/NavigationModes/WalkMode/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 14d5c783f6cf840439078eca251649f9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/_Application/NavigationModes/WalkMode/Runtime/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Runtime.CompilerServices; 3 | 4 | [assembly: InternalsVisibleTo("Unity.ReferenceProject.WalkController.Tests")] 5 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/_Application/NavigationModes/WalkMode/Sprites.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5d112f0a93d064645a2aa1453813a87e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/_Application/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 075abd8b8969f4c4cbfa84a7b1166f59 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/_Application/Prefabs/Localization.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 83c5d055a0b587442a071b9e0184bcab 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/_Application/Prefabs/StreamingCamera.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 109cd5eaead5ee44a8f64bda7837bf09 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/_Application/Prefabs/[ App State Machine ].prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cfbca1aa8e04c5d42bb2205d744608b3 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/_Application/Prefabs/[ Build Version ].prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 187a14857f9967f4984a0ea6c8801d63 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/_Application/Prefabs/[ Controllers ] .prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0971367d8b8b5b54bacd991e06643b0d 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/_Application/Prefabs/[ Event System ].prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 34256d43e58ab96448dc5646d44a6bfa 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/_Application/Prefabs/[ Main Scene Context ].prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 91752a67bbb7715478d8efc9d86f6286 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/_Application/Prefabs/[ Main Scene UI ].prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3be93bd84fd0cd746b8dd0b5a57cbd38 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/_Application/Prefabs/[ Settings ].prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b5de23870725a9f46b2808a5c85628c9 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/_Application/Prefabs/[ Streaming Scene Context ].prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: acf69ec9f8051894f92b06bb3cc6f69a 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/_Application/Prefabs/[ Streaming Scene UI ].prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d1ef7d982ec669f4ca8941f02e4213a8 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/_Application/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 11c40bd8f9f557841ba52fd1cd25541a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/_Application/Resources/ProjectContext.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1c42651df06400948866467ca6c6e7de 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/_Application/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: db3aa694c578af84d8747d1d846b4137 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/_Application/Scenes/Main.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 35fa68ad7fd607245a90ee992fcff946 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/_Application/Scenes/Streaming.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2354f3df93e484348aa7019d1fa0037b 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/_Application/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5263e2fa929b9d844afbb3e84bb0ea10 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/_Application/Scripts/AppController.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e4261e739b2ef62499704d1bae993c3c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/_Application/Scripts/AppController/AppStateToolUIManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c67edca8ab0e422da96b4f63df36f235 3 | timeCreated: 1678893577 -------------------------------------------------------------------------------- /ReferenceProject/Assets/_Application/Scripts/AppController/AppStateUIToggler.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b3f1e50e45c84cbfac581bb894015102 3 | timeCreated: 1676040454 -------------------------------------------------------------------------------- /ReferenceProject/Assets/_Application/Scripts/AppController/AssetListRoomMonitoringController.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5277540ad59b4753ad4c9dc1b3c908c8 3 | timeCreated: 1701802619 -------------------------------------------------------------------------------- /ReferenceProject/Assets/_Application/Scripts/AppStates.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8a167dd9d5354b80a0abb313e0b72f45 3 | timeCreated: 1671244284 -------------------------------------------------------------------------------- /ReferenceProject/Assets/_Application/Scripts/AppStates/Initialization.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7d6c0b1b81f74c439e9626aa7ff0242a 3 | timeCreated: 1681390107 -------------------------------------------------------------------------------- /ReferenceProject/Assets/_Application/Scripts/AppStates/Initialization/InitialState.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ae7b65d565894cdbaae554ada56d5b28 3 | timeCreated: 1681357732 -------------------------------------------------------------------------------- /ReferenceProject/Assets/_Application/Scripts/AppStates/Initialization/WaitAuthenticationState.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9c1b4d642a4e4f659d01a34416bdc430 3 | timeCreated: 1674854823 -------------------------------------------------------------------------------- /ReferenceProject/Assets/_Application/Scripts/AppStates/Initialization/WaitLocalesLoadingState.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b86fa3163b824facb1dcff330494e11b 3 | timeCreated: 1681352910 -------------------------------------------------------------------------------- /ReferenceProject/Assets/_Application/Scripts/AppStates/LoginState.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b7c92e0ae38940a289db62a72f96337a 3 | timeCreated: 1671244294 -------------------------------------------------------------------------------- /ReferenceProject/Assets/_Application/Scripts/AppStates/SceneStreamingState.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d54e7bb15d7d4fcb840201ee825710bc 3 | timeCreated: 1671244355 -------------------------------------------------------------------------------- /ReferenceProject/Assets/_Application/Scripts/DI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3c342919ae44b3d4197d61523b68b358 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/_Application/Scripts/Localization.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ae84a699e953f0f4395c186f69881338 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/_Application/Scripts/Localization/AppLocalization.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cd9edc70ccb34dcd8a8cba928f4fd212 3 | timeCreated: 1679595196 -------------------------------------------------------------------------------- /ReferenceProject/Assets/_Application/UI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ffd439d17cd4400418cdc2b4d9ba5829 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/_Application/UI/Background.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3c0a3d61f7b850745913c1c6659ad260 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/_Application/UI/Background/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 54a0d21b796293e48ab758a97fab6c40 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/_Application/UI/Background/Prefabs/Background.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e381962aa18edce4f9b2846c71139509 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/_Application/UI/Background/Sprites.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9d1cf9f418c906a46876dc485dd701c9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/_Application/UI/Background/Sprites/UnityBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/unity-cloud-reference-project/668dd34a3c1ec8cd27fe97092e3fedca68746868/ReferenceProject/Assets/_Application/UI/Background/Sprites/UnityBackground.png -------------------------------------------------------------------------------- /ReferenceProject/Assets/_Application/UI/Background/Sprites/UnityLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unity-Technologies/unity-cloud-reference-project/668dd34a3c1ec8cd27fe97092e3fedca68746868/ReferenceProject/Assets/_Application/UI/Background/Sprites/UnityLogo.png -------------------------------------------------------------------------------- /ReferenceProject/Assets/_Application/UI/Background/UIToolkit.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f58e91009b345da4a9d97f7b15624b7a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /ReferenceProject/Assets/_Application/UI/Background/UIToolkit/Background.uxml: -------------------------------------------------------------------------------- 1 | 2 |