com.beanbag.huaweiads 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Documentation.md +9 -0
- package/Documentation.md.meta +7 -0
- package/Editor/Editor/Extensions/ActionExtensions.cs +32 -0
- package/Editor/Editor/Extensions/ActionExtensions.cs.meta +11 -0
- package/Editor/Editor/Extensions/CollectionExtensions.cs +36 -0
- package/Editor/Editor/Extensions/CollectionExtensions.cs.meta +11 -0
- package/Editor/Editor/Extensions/StringExtensions.cs +119 -0
- package/Editor/Editor/Extensions/StringExtensions.cs.meta +11 -0
- package/Editor/Editor/Extensions/WindowExtensions.cs +59 -0
- package/Editor/Editor/Extensions/WindowExtensions.cs.meta +11 -0
- package/Editor/Editor/Extensions.meta +8 -0
- package/Editor/Editor/General/UI/Button/Button.cs +143 -0
- package/Editor/Editor/General/UI/Button/Button.cs.meta +11 -0
- package/Editor/Editor/General/UI/Button/Clickable.cs +30 -0
- package/Editor/Editor/General/UI/Button/Clickable.cs.meta +11 -0
- package/Editor/Editor/General/UI/Button.meta +8 -0
- package/Editor/Editor/General/UI/Collections/IReadOnlyList.cs +10 -0
- package/Editor/Editor/General/UI/Collections/IReadOnlyList.cs.meta +11 -0
- package/Editor/Editor/General/UI/Collections.meta +8 -0
- package/Editor/Editor/General/UI/ConditionalDrawer.cs +25 -0
- package/Editor/Editor/General/UI/ConditionalDrawer.cs.meta +11 -0
- package/Editor/Editor/General/UI/CustomEditorDrawer.cs +12 -0
- package/Editor/Editor/General/UI/CustomEditorDrawer.cs.meta +11 -0
- package/Editor/Editor/General/UI/Depth.cs +27 -0
- package/Editor/Editor/General/UI/Depth.cs.meta +11 -0
- package/Editor/Editor/General/UI/DisabledDrawer.cs +53 -0
- package/Editor/Editor/General/UI/DisabledDrawer.cs.meta +11 -0
- package/Editor/Editor/General/UI/Dropdown/EnumDropdown.cs +35 -0
- package/Editor/Editor/General/UI/Dropdown/EnumDropdown.cs.meta +11 -0
- package/Editor/Editor/General/UI/Dropdown/EnumFlagsDropdown.cs +24 -0
- package/Editor/Editor/General/UI/Dropdown/EnumFlagsDropdown.cs.meta +11 -0
- package/Editor/Editor/General/UI/Dropdown/IDropdown.cs +9 -0
- package/Editor/Editor/General/UI/Dropdown/IDropdown.cs.meta +11 -0
- package/Editor/Editor/General/UI/Dropdown/StringDropdown.cs +46 -0
- package/Editor/Editor/General/UI/Dropdown/StringDropdown.cs.meta +11 -0
- package/Editor/Editor/General/UI/Dropdown.meta +8 -0
- package/Editor/Editor/General/UI/Focusable.cs +53 -0
- package/Editor/Editor/General/UI/Focusable.cs.meta +11 -0
- package/Editor/Editor/General/UI/Foldout.cs +61 -0
- package/Editor/Editor/General/UI/Foldout.cs.meta +11 -0
- package/Editor/Editor/General/UI/HelpBox/HelpBox.cs +42 -0
- package/Editor/Editor/General/UI/HelpBox/HelpBox.cs.meta +11 -0
- package/Editor/Editor/General/UI/HelpBox/RichHelpBox.cs +35 -0
- package/Editor/Editor/General/UI/HelpBox/RichHelpBox.cs.meta +11 -0
- package/Editor/Editor/General/UI/HelpBox.meta +8 -0
- package/Editor/Editor/General/UI/HorizontalLine.cs +13 -0
- package/Editor/Editor/General/UI/HorizontalLine.cs.meta +11 -0
- package/Editor/Editor/General/UI/IDrawer.cs +7 -0
- package/Editor/Editor/General/UI/IDrawer.cs.meta +11 -0
- package/Editor/Editor/General/UI/Image/Image.cs +49 -0
- package/Editor/Editor/General/UI/Image/Image.cs.meta +11 -0
- package/Editor/Editor/General/UI/Image.meta +8 -0
- package/Editor/Editor/General/UI/InlineGroup.cs +41 -0
- package/Editor/Editor/General/UI/InlineGroup.cs.meta +11 -0
- package/Editor/Editor/General/UI/Label/DelegatedLabel.cs +31 -0
- package/Editor/Editor/General/UI/Label/DelegatedLabel.cs.meta +11 -0
- package/Editor/Editor/General/UI/Label/Label.cs +133 -0
- package/Editor/Editor/General/UI/Label/Label.cs.meta +11 -0
- package/Editor/Editor/General/UI/Label.meta +8 -0
- package/Editor/Editor/General/UI/List/AlteratingListDrawer.cs +93 -0
- package/Editor/Editor/General/UI/List/AlteratingListDrawer.cs.meta +11 -0
- package/Editor/Editor/General/UI/List/ListDrawer.cs +77 -0
- package/Editor/Editor/General/UI/List/ListDrawer.cs.meta +11 -0
- package/Editor/Editor/General/UI/List.meta +8 -0
- package/Editor/Editor/General/UI/LongProcess.cs +24 -0
- package/Editor/Editor/General/UI/LongProcess.cs.meta +11 -0
- package/Editor/Editor/General/UI/Menu/EditableMenu.cs +46 -0
- package/Editor/Editor/General/UI/Menu/EditableMenu.cs.meta +11 -0
- package/Editor/Editor/General/UI/Menu/Menu.cs +55 -0
- package/Editor/Editor/General/UI/Menu/Menu.cs.meta +11 -0
- package/Editor/Editor/General/UI/Menu.meta +8 -0
- package/Editor/Editor/General/UI/PersistentFoldout.cs +72 -0
- package/Editor/Editor/General/UI/PersistentFoldout.cs.meta +11 -0
- package/Editor/Editor/General/UI/ScrollView/ScrollView.cs +16 -0
- package/Editor/Editor/General/UI/ScrollView/ScrollView.cs.meta +11 -0
- package/Editor/Editor/General/UI/ScrollView.meta +8 -0
- package/Editor/Editor/General/UI/Sequence/EmptySequenceDrawer.cs +33 -0
- package/Editor/Editor/General/UI/Sequence/EmptySequenceDrawer.cs.meta +11 -0
- package/Editor/Editor/General/UI/Sequence/HorizontalSequenceDrawer.cs +18 -0
- package/Editor/Editor/General/UI/Sequence/HorizontalSequenceDrawer.cs.meta +11 -0
- package/Editor/Editor/General/UI/Sequence/SequenceDrawer.cs +74 -0
- package/Editor/Editor/General/UI/Sequence/SequenceDrawer.cs.meta +11 -0
- package/Editor/Editor/General/UI/Sequence/VerticalSequenceDrawer.cs +28 -0
- package/Editor/Editor/General/UI/Sequence/VerticalSequenceDrawer.cs.meta +11 -0
- package/Editor/Editor/General/UI/Sequence.meta +8 -0
- package/Editor/Editor/General/UI/Space.cs +19 -0
- package/Editor/Editor/General/UI/Space.cs.meta +11 -0
- package/Editor/Editor/General/UI/Spacer.cs +13 -0
- package/Editor/Editor/General/UI/Spacer.cs.meta +11 -0
- package/Editor/Editor/General/UI/TabBar/TabBar.cs +42 -0
- package/Editor/Editor/General/UI/TabBar/TabBar.cs.meta +11 -0
- package/Editor/Editor/General/UI/TabBar/TabView.cs +13 -0
- package/Editor/Editor/General/UI/TabBar/TabView.cs.meta +11 -0
- package/Editor/Editor/General/UI/TabBar.meta +8 -0
- package/Editor/Editor/General/UI/TextArea/TextArea.cs +74 -0
- package/Editor/Editor/General/UI/TextArea/TextArea.cs.meta +11 -0
- package/Editor/Editor/General/UI/TextArea.meta +8 -0
- package/Editor/Editor/General/UI/TextField/ReturnChecker.cs +40 -0
- package/Editor/Editor/General/UI/TextField/ReturnChecker.cs.meta +11 -0
- package/Editor/Editor/General/UI/TextField/TextField.cs +169 -0
- package/Editor/Editor/General/UI/TextField/TextField.cs.meta +11 -0
- package/Editor/Editor/General/UI/TextField/TextFieldWithAccept.cs +65 -0
- package/Editor/Editor/General/UI/TextField/TextFieldWithAccept.cs.meta +11 -0
- package/Editor/Editor/General/UI/TextField.meta +8 -0
- package/Editor/Editor/General/UI/TimedDrawer.cs +35 -0
- package/Editor/Editor/General/UI/TimedDrawer.cs.meta +11 -0
- package/Editor/Editor/General/UI/Toggle/Toggle.cs +67 -0
- package/Editor/Editor/General/UI/Toggle/Toggle.cs.meta +11 -0
- package/Editor/Editor/General/UI/Toggle/ToggledTextFieldWithButton.cs +41 -0
- package/Editor/Editor/General/UI/Toggle/ToggledTextFieldWithButton.cs.meta +11 -0
- package/Editor/Editor/General/UI/Toggle.meta +8 -0
- package/Editor/Editor/General/UI/Window/DisplayDialog.cs +55 -0
- package/Editor/Editor/General/UI/Window/DisplayDialog.cs.meta +11 -0
- package/Editor/Editor/General/UI/Window/HMSEditorWindow.cs +60 -0
- package/Editor/Editor/General/UI/Window/HMSEditorWindow.cs.meta +11 -0
- package/Editor/Editor/General/UI/Window/ModalDialog.cs +93 -0
- package/Editor/Editor/General/UI/Window/ModalDialog.cs.meta +11 -0
- package/Editor/Editor/General/UI/Window/ModalWindow.cs +88 -0
- package/Editor/Editor/General/UI/Window/ModalWindow.cs.meta +11 -0
- package/Editor/Editor/General/UI/Window.meta +8 -0
- package/Editor/Editor/General/UI.meta +8 -0
- package/Editor/Editor/General.meta +8 -0
- package/Editor/Editor/HuaweiAdsFileCopier.cs +62 -0
- package/Editor/Editor/HuaweiAdsFileCopier.cs.meta +11 -0
- package/Editor/Editor/HuaweiMobileServices.Editor.asmdef +17 -0
- package/Editor/Editor/HuaweiMobileServices.Editor.asmdef.meta +7 -0
- package/Editor/Editor/Utils/HMSEditorUtils.cs +490 -0
- package/Editor/Editor/Utils/HMSEditorUtils.cs.meta +11 -0
- package/Editor/Editor/Utils/HMSExcelHelper.cs +50 -0
- package/Editor/Editor/Utils/HMSExcelHelper.cs.meta +11 -0
- package/Editor/Editor/Utils/HMSGradleFixer.cs +178 -0
- package/Editor/Editor/Utils/HMSGradleFixer.cs.meta +11 -0
- package/Editor/Editor/Utils/HMSGradleWorker.cs +316 -0
- package/Editor/Editor/Utils/HMSGradleWorker.cs.meta +11 -0
- package/Editor/Editor/Utils/HMSPackageChecker.cs +26 -0
- package/Editor/Editor/Utils/HMSPackageChecker.cs.meta +11 -0
- package/Editor/Editor/Utils/HMSPluginUpdater.cs +208 -0
- package/Editor/Editor/Utils/HMSPluginUpdater.cs.meta +11 -0
- package/Editor/Editor/Utils/HMSPluginUpdaterInit.cs +20 -0
- package/Editor/Editor/Utils/HMSPluginUpdaterInit.cs.meta +11 -0
- package/Editor/Editor/Utils/HMSWebRequestHelper.cs +388 -0
- package/Editor/Editor/Utils/HMSWebRequestHelper.cs.meta +11 -0
- package/Editor/Editor/Utils/HMSWebUtils.cs +113 -0
- package/Editor/Editor/Utils/HMSWebUtils.cs.meta +11 -0
- package/Editor/Editor/Utils.meta +8 -0
- package/Editor/Editor/View/AdsTab/HMSAdsSettingsDrawer.cs +427 -0
- package/Editor/Editor/View/AdsTab/HMSAdsSettingsDrawer.cs.meta +11 -0
- package/Editor/Editor/View/AdsTab/HMSAdsTabFactory.cs +14 -0
- package/Editor/Editor/View/AdsTab/HMSAdsTabFactory.cs.meta +11 -0
- package/Editor/Editor/View/AdsTab.meta +8 -0
- package/Editor/Editor/View/CloudDBTab/HMSCloudDBSettingsDrawer.cs +208 -0
- package/Editor/Editor/View/CloudDBTab/HMSCloudDBSettingsDrawer.cs.meta +11 -0
- package/Editor/Editor/View/CloudDBTab/HMSCloudDBTabFactory.cs +13 -0
- package/Editor/Editor/View/CloudDBTab/HMSCloudDBTabFactory.cs.meta +11 -0
- package/Editor/Editor/View/CloudDBTab.meta +8 -0
- package/Editor/Editor/View/ConnectAPI/HMSConnectAPITabFactory.cs +30 -0
- package/Editor/Editor/View/ConnectAPI/HMSConnectAPITabFactory.cs.meta +11 -0
- package/Editor/Editor/View/ConnectAPI/HMSConnectAPIWindow.cs +22 -0
- package/Editor/Editor/View/ConnectAPI/HMSConnectAPIWindow.cs.meta +11 -0
- package/Editor/Editor/View/ConnectAPI/TokenObtainerEditor.cs +43 -0
- package/Editor/Editor/View/ConnectAPI/TokenObtainerEditor.cs.meta +11 -0
- package/Editor/Editor/View/ConnectAPI.meta +8 -0
- package/Editor/Editor/View/GameServiceTab/AchievementsManipulator.cs +92 -0
- package/Editor/Editor/View/GameServiceTab/AchievementsManipulator.cs.meta +11 -0
- package/Editor/Editor/View/GameServiceTab/HMSAchievementsAdderDrawer.cs +35 -0
- package/Editor/Editor/View/GameServiceTab/HMSAchievementsAdderDrawer.cs.meta +11 -0
- package/Editor/Editor/View/GameServiceTab/HMSGameServiceSettingsDrawer.cs +138 -0
- package/Editor/Editor/View/GameServiceTab/HMSGameServiceSettingsDrawer.cs.meta +11 -0
- package/Editor/Editor/View/GameServiceTab/HMSGameServiceTabFactory.cs +13 -0
- package/Editor/Editor/View/GameServiceTab/HMSGameServiceTabFactory.cs.meta +11 -0
- package/Editor/Editor/View/GameServiceTab/HMSLeaderboardAdderDrawer.cs +34 -0
- package/Editor/Editor/View/GameServiceTab/HMSLeaderboardAdderDrawer.cs.meta +11 -0
- package/Editor/Editor/View/GameServiceTab/LeaderboardManipulator.cs +92 -0
- package/Editor/Editor/View/GameServiceTab/LeaderboardManipulator.cs.meta +11 -0
- package/Editor/Editor/View/GameServiceTab.meta +8 -0
- package/Editor/Editor/View/InAppPurchaseTab/HMSIAPProductAdderDrawer.cs +36 -0
- package/Editor/Editor/View/InAppPurchaseTab/HMSIAPProductAdderDrawer.cs.meta +11 -0
- package/Editor/Editor/View/InAppPurchaseTab/HMSIAPSettingsDrawer.cs +195 -0
- package/Editor/Editor/View/InAppPurchaseTab/HMSIAPSettingsDrawer.cs.meta +11 -0
- package/Editor/Editor/View/InAppPurchaseTab/HMSIAPTabFactory.cs +14 -0
- package/Editor/Editor/View/InAppPurchaseTab/HMSIAPTabFactory.cs.meta +11 -0
- package/Editor/Editor/View/InAppPurchaseTab/IAPProductManipulator.cs +111 -0
- package/Editor/Editor/View/InAppPurchaseTab/IAPProductManipulator.cs.meta +11 -0
- package/Editor/Editor/View/InAppPurchaseTab.meta +8 -0
- package/Editor/Editor/View/KeyToolTab/HMSKeyToolWindow.cs +240 -0
- package/Editor/Editor/View/KeyToolTab/HMSKeyToolWindow.cs.meta +11 -0
- package/Editor/Editor/View/KeyToolTab.meta +8 -0
- package/Editor/Editor/View/KitSettingsTab/APMToggleEditor.cs +59 -0
- package/Editor/Editor/View/KitSettingsTab/APMToggleEditor.cs.meta +11 -0
- package/Editor/Editor/View/KitSettingsTab/AccountToggleEditor.cs +78 -0
- package/Editor/Editor/View/KitSettingsTab/AccountToggleEditor.cs.meta +11 -0
- package/Editor/Editor/View/KitSettingsTab/AdsToggleEditor.cs +76 -0
- package/Editor/Editor/View/KitSettingsTab/AdsToggleEditor.cs.meta +11 -0
- package/Editor/Editor/View/KitSettingsTab/AnalyticsToggleEditor.cs +92 -0
- package/Editor/Editor/View/KitSettingsTab/AnalyticsToggleEditor.cs.meta +11 -0
- package/Editor/Editor/View/KitSettingsTab/AppLinkingToggleEditor.cs +67 -0
- package/Editor/Editor/View/KitSettingsTab/AppLinkingToggleEditor.cs.meta +11 -0
- package/Editor/Editor/View/KitSettingsTab/AppMessagingToggleEditor.cs +57 -0
- package/Editor/Editor/View/KitSettingsTab/AppMessagingToggleEditor.cs.meta +11 -0
- package/Editor/Editor/View/KitSettingsTab/AuthToggleEditor.cs +71 -0
- package/Editor/Editor/View/KitSettingsTab/AuthToggleEditor.cs.meta +11 -0
- package/Editor/Editor/View/KitSettingsTab/CloudDBToggleEditor.cs +80 -0
- package/Editor/Editor/View/KitSettingsTab/CloudDBToggleEditor.cs.meta +11 -0
- package/Editor/Editor/View/KitSettingsTab/CloudStorageToggleEditor.cs +64 -0
- package/Editor/Editor/View/KitSettingsTab/CloudStorageToggleEditor.cs.meta +11 -0
- package/Editor/Editor/View/KitSettingsTab/CrashToggleEditor.cs +63 -0
- package/Editor/Editor/View/KitSettingsTab/CrashToggleEditor.cs.meta +11 -0
- package/Editor/Editor/View/KitSettingsTab/DriveKitToggleEditor.cs +74 -0
- package/Editor/Editor/View/KitSettingsTab/DriveKitToggleEditor.cs.meta +11 -0
- package/Editor/Editor/View/KitSettingsTab/GameServiceToggleEditor.cs +81 -0
- package/Editor/Editor/View/KitSettingsTab/GameServiceToggleEditor.cs.meta +11 -0
- package/Editor/Editor/View/KitSettingsTab/HelpboxAGConnectFile.cs +24 -0
- package/Editor/Editor/View/KitSettingsTab/HelpboxAGConnectFile.cs.meta +11 -0
- package/Editor/Editor/View/KitSettingsTab/IAPToggleEditor.cs +76 -0
- package/Editor/Editor/View/KitSettingsTab/IAPToggleEditor.cs.meta +11 -0
- package/Editor/Editor/View/KitSettingsTab/LocationToogleEditor.cs +66 -0
- package/Editor/Editor/View/KitSettingsTab/LocationToogleEditor.cs.meta +11 -0
- package/Editor/Editor/View/KitSettingsTab/MLKitToggleEditor.cs +87 -0
- package/Editor/Editor/View/KitSettingsTab/MLKitToggleEditor.cs.meta +11 -0
- package/Editor/Editor/View/KitSettingsTab/Modeling3dKitToggleEditor.cs +75 -0
- package/Editor/Editor/View/KitSettingsTab/Modeling3dKitToggleEditor.cs.meta +11 -0
- package/Editor/Editor/View/KitSettingsTab/NearbyServiceToggleEditor.cs +56 -0
- package/Editor/Editor/View/KitSettingsTab/NearbyServiceToggleEditor.cs.meta +11 -0
- package/Editor/Editor/View/KitSettingsTab/PluginToggleEditor.cs +58 -0
- package/Editor/Editor/View/KitSettingsTab/PluginToggleEditor.cs.meta +11 -0
- package/Editor/Editor/View/KitSettingsTab/PushToggleEditor.cs +71 -0
- package/Editor/Editor/View/KitSettingsTab/PushToggleEditor.cs.meta +11 -0
- package/Editor/Editor/View/KitSettingsTab/RemoteConfigToggleEditor.cs +80 -0
- package/Editor/Editor/View/KitSettingsTab/RemoteConfigToggleEditor.cs.meta +11 -0
- package/Editor/Editor/View/KitSettingsTab/ScanKitToggleEditor.cs +59 -0
- package/Editor/Editor/View/KitSettingsTab/ScanKitToggleEditor.cs.meta +11 -0
- package/Editor/Editor/View/KitSettingsTab/ToggleEditor.cs +12 -0
- package/Editor/Editor/View/KitSettingsTab/ToggleEditor.cs.meta +11 -0
- package/Editor/Editor/View/KitSettingsTab.meta +8 -0
- package/Editor/Editor/View/LibrariesTab/HMSLibrariesDrawer.cs +65 -0
- package/Editor/Editor/View/LibrariesTab/HMSLibrariesDrawer.cs.meta +11 -0
- package/Editor/Editor/View/LibrariesTab.meta +8 -0
- package/Editor/Editor/View/MLKitTab/HMSMLKitSettingsDrawer.cs +145 -0
- package/Editor/Editor/View/MLKitTab/HMSMLKitSettingsDrawer.cs.meta +11 -0
- package/Editor/Editor/View/MLKitTab/HMSMLKitTabFactory.cs +15 -0
- package/Editor/Editor/View/MLKitTab/HMSMLKitTabFactory.cs.meta +11 -0
- package/Editor/Editor/View/MLKitTab.meta +8 -0
- package/Editor/Editor/View/MainWindow/HMSMainKitsTabFactory.cs +136 -0
- package/Editor/Editor/View/MainWindow/HMSMainKitsTabFactory.cs.meta +11 -0
- package/Editor/Editor/View/MainWindow/HMSMainWindow.cs +60 -0
- package/Editor/Editor/View/MainWindow/HMSMainWindow.cs.meta +11 -0
- package/Editor/Editor/View/MainWindow.meta +8 -0
- package/Editor/Editor/View/ModelingTab/ModelingSettingsDrawer.cs +43 -0
- package/Editor/Editor/View/ModelingTab/ModelingSettingsDrawer.cs.meta +11 -0
- package/Editor/Editor/View/ModelingTab/ModelingTabFactory.cs +12 -0
- package/Editor/Editor/View/ModelingTab/ModelingTabFactory.cs.meta +11 -0
- package/Editor/Editor/View/ModelingTab.meta +8 -0
- package/Editor/Editor/View/PMSWindow/AllIAPProductsWindow/AllIAPProductsEditor.cs +192 -0
- package/Editor/Editor/View/PMSWindow/AllIAPProductsWindow/AllIAPProductsEditor.cs.meta +11 -0
- package/Editor/Editor/View/PMSWindow/AllIAPProductsWindow/HMSAllIAPProductsWindow.cs +34 -0
- package/Editor/Editor/View/PMSWindow/AllIAPProductsWindow/HMSAllIAPProductsWindow.cs.meta +11 -0
- package/Editor/Editor/View/PMSWindow/AllIAPProductsWindow/IAPQueryListEditor.cs +41 -0
- package/Editor/Editor/View/PMSWindow/AllIAPProductsWindow/IAPQueryListEditor.cs.meta +11 -0
- package/Editor/Editor/View/PMSWindow/AllIAPProductsWindow/UpdateIAPProductWindow/HMSUpdateIAPProductWindow.cs +24 -0
- package/Editor/Editor/View/PMSWindow/AllIAPProductsWindow/UpdateIAPProductWindow/HMSUpdateIAPProductWindow.cs.meta +11 -0
- package/Editor/Editor/View/PMSWindow/AllIAPProductsWindow/UpdateIAPProductWindow/UpdateIAPProductEditor.cs +269 -0
- package/Editor/Editor/View/PMSWindow/AllIAPProductsWindow/UpdateIAPProductWindow/UpdateIAPProductEditor.cs.meta +11 -0
- package/Editor/Editor/View/PMSWindow/AllIAPProductsWindow/UpdateIAPProductWindow.meta +8 -0
- package/Editor/Editor/View/PMSWindow/AllIAPProductsWindow.meta +8 -0
- package/Editor/Editor/View/PMSWindow/CreateAProductWindow/CreateProductEditor.cs +452 -0
- package/Editor/Editor/View/PMSWindow/CreateAProductWindow/CreateProductEditor.cs.meta +11 -0
- package/Editor/Editor/View/PMSWindow/CreateAProductWindow/HMSCreateAProductWindow.cs +34 -0
- package/Editor/Editor/View/PMSWindow/CreateAProductWindow/HMSCreateAProductWindow.cs.meta +11 -0
- package/Editor/Editor/View/PMSWindow/CreateAProductWindow/LanguagesFoldoutEditor.cs +96 -0
- package/Editor/Editor/View/PMSWindow/CreateAProductWindow/LanguagesFoldoutEditor.cs.meta +11 -0
- package/Editor/Editor/View/PMSWindow/CreateAProductWindow.meta +8 -0
- package/Editor/Editor/View/PMSWindow/CreateProductsWindow/CreateProductsEditor.cs +322 -0
- package/Editor/Editor/View/PMSWindow/CreateProductsWindow/CreateProductsEditor.cs.meta +11 -0
- package/Editor/Editor/View/PMSWindow/CreateProductsWindow/HMSCSVReader.cs +53 -0
- package/Editor/Editor/View/PMSWindow/CreateProductsWindow/HMSCSVReader.cs.meta +11 -0
- package/Editor/Editor/View/PMSWindow/CreateProductsWindow/HMSCreateProductsWindow.cs +34 -0
- package/Editor/Editor/View/PMSWindow/CreateProductsWindow/HMSCreateProductsWindow.cs.meta +11 -0
- package/Editor/Editor/View/PMSWindow/CreateProductsWindow.meta +8 -0
- package/Editor/Editor/View/PMSWindow/HMSPMSAPITabFactory.cs +40 -0
- package/Editor/Editor/View/PMSWindow/HMSPMSAPITabFactory.cs.meta +11 -0
- package/Editor/Editor/View/PMSWindow.meta +8 -0
- package/Editor/Editor/View/PublishingAPI/HMSPublishingAPITabFactory.cs +15 -0
- package/Editor/Editor/View/PublishingAPI/HMSPublishingAPITabFactory.cs.meta +11 -0
- package/Editor/Editor/View/PublishingAPI/QueryingAppInformation/HelpBoxEnablingAppSigning.cs +22 -0
- package/Editor/Editor/View/PublishingAPI/QueryingAppInformation/HelpBoxEnablingAppSigning.cs.meta +11 -0
- package/Editor/Editor/View/PublishingAPI/QueryingAppInformation/QueryingAppInfoEditor.cs +546 -0
- package/Editor/Editor/View/PublishingAPI/QueryingAppInformation/QueryingAppInfoEditor.cs.meta +11 -0
- package/Editor/Editor/View/PublishingAPI/QueryingAppInformation/QueryingAppInfoWindow.cs +32 -0
- package/Editor/Editor/View/PublishingAPI/QueryingAppInformation/QueryingAppInfoWindow.cs.meta +11 -0
- package/Editor/Editor/View/PublishingAPI/QueryingAppInformation.meta +8 -0
- package/Editor/Editor/View/PublishingAPI.meta +8 -0
- package/Editor/Editor/View/RemoteConfigTab/DefaultValueManipulator.cs +115 -0
- package/Editor/Editor/View/RemoteConfigTab/DefaultValueManipulator.cs.meta +11 -0
- package/Editor/Editor/View/RemoteConfigTab/HMSRemoteConfigAdderDrawer.cs +33 -0
- package/Editor/Editor/View/RemoteConfigTab/HMSRemoteConfigAdderDrawer.cs.meta +11 -0
- package/Editor/Editor/View/RemoteConfigTab/HMSRemoteConfigSettingsDrawer.cs +103 -0
- package/Editor/Editor/View/RemoteConfigTab/HMSRemoteConfigSettingsDrawer.cs.meta +11 -0
- package/Editor/Editor/View/RemoteConfigTab/HMSRemoteConfigTabFactory.cs +14 -0
- package/Editor/Editor/View/RemoteConfigTab/HMSRemoteConfigTabFactory.cs.meta +11 -0
- package/Editor/Editor/View/RemoteConfigTab.meta +8 -0
- package/Editor/Editor/View/Utils/CompilationWindow.cs +46 -0
- package/Editor/Editor/View/Utils/CompilationWindow.cs.meta +11 -0
- package/Editor/Editor/View/Utils/ICollectionManipulator.cs +9 -0
- package/Editor/Editor/View/Utils/ICollectionManipulator.cs.meta +11 -0
- package/Editor/Editor/View/Utils/WindowEditRedirect.cs +18 -0
- package/Editor/Editor/View/Utils/WindowEditRedirect.cs.meta +11 -0
- package/Editor/Editor/View/Utils.meta +8 -0
- package/Editor/Editor/View.meta +8 -0
- package/Editor/Editor.meta +8 -0
- package/Editor.meta +8 -0
- package/LICENSE.md +9 -0
- package/LICENSE.md.meta +7 -0
- package/ReadMe.md +2 -0
- package/ReadMe.md.meta +7 -0
- package/Runtime/Demos/APM/APMDemo.unity +2375 -0
- package/Runtime/Demos/APM/APMDemo.unity.meta +7 -0
- package/Runtime/Demos/APM/APMDemoManager.cs +105 -0
- package/Runtime/Demos/APM/APMDemoManager.cs.meta +11 -0
- package/Runtime/Demos/APM/APMDemoUIView.cs +76 -0
- package/Runtime/Demos/APM/APMDemoUIView.cs.meta +11 -0
- package/Runtime/Demos/APM.meta +8 -0
- package/Runtime/Demos/Account/AccountDemo.unity +1255 -0
- package/Runtime/Demos/Account/AccountDemo.unity.meta +7 -0
- package/Runtime/Demos/Account/AccountDemoManager.cs +79 -0
- package/Runtime/Demos/Account/AccountDemoManager.cs.meta +11 -0
- package/Runtime/Demos/Account/AccountUIView.cs +72 -0
- package/Runtime/Demos/Account/AccountUIView.cs.meta +11 -0
- package/Runtime/Demos/Account.meta +8 -0
- package/Runtime/Demos/Ads/AdsDemo.unity +2332 -0
- package/Runtime/Demos/Ads/AdsDemo.unity.meta +7 -0
- package/Runtime/Demos/Ads/AdsDemoManager.cs +257 -0
- package/Runtime/Demos/Ads/AdsDemoManager.cs.meta +11 -0
- package/Runtime/Demos/Ads/AdsUIView.cs +87 -0
- package/Runtime/Demos/Ads/AdsUIView.cs.meta +11 -0
- package/Runtime/Demos/Ads/InstallReferrer/Demo.unity +344 -0
- package/Runtime/Demos/Ads/InstallReferrer/Demo.unity.meta +7 -0
- package/Runtime/Demos/Ads/InstallReferrer/InstallReferrerDemo.cs +55 -0
- package/Runtime/Demos/Ads/InstallReferrer/InstallReferrerDemo.cs.meta +11 -0
- package/Runtime/Demos/Ads/InstallReferrer.meta +8 -0
- package/Runtime/Demos/Ads.meta +8 -0
- package/Runtime/Demos/Analytics/AnalyticsDemo.unity +1918 -0
- package/Runtime/Demos/Analytics/AnalyticsDemo.unity.meta +11 -0
- package/Runtime/Demos/Analytics/AnalyticsDemoManager.cs +46 -0
- package/Runtime/Demos/Analytics/AnalyticsDemoManager.cs.meta +11 -0
- package/Runtime/Demos/Analytics/AnalyticsUIView.cs +49 -0
- package/Runtime/Demos/Analytics/AnalyticsUIView.cs.meta +11 -0
- package/Runtime/Demos/Analytics.meta +8 -0
- package/Runtime/Demos/AppLinking/AppLinkingDemo.cs +144 -0
- package/Runtime/Demos/AppLinking/AppLinkingDemo.cs.meta +11 -0
- package/Runtime/Demos/AppLinking/AppLinkingDemo.unity +1709 -0
- package/Runtime/Demos/AppLinking/AppLinkingDemo.unity.meta +7 -0
- package/Runtime/Demos/AppLinking/AppLinkingUIView.cs +108 -0
- package/Runtime/Demos/AppLinking/AppLinkingUIView.cs.meta +11 -0
- package/Runtime/Demos/AppLinking.meta +8 -0
- package/Runtime/Demos/AppMessaging/AppMessaging.unity +541 -0
- package/Runtime/Demos/AppMessaging/AppMessaging.unity.meta +7 -0
- package/Runtime/Demos/AppMessaging/AppMessagingDemoManager.cs +28 -0
- package/Runtime/Demos/AppMessaging/AppMessagingDemoManager.cs.meta +11 -0
- package/Runtime/Demos/AppMessaging.meta +8 -0
- package/Runtime/Demos/AuthService/AuthServiceDemo.cs +204 -0
- package/Runtime/Demos/AuthService/AuthServiceDemo.cs.meta +11 -0
- package/Runtime/Demos/AuthService/AuthServiceDemo.unity +5006 -0
- package/Runtime/Demos/AuthService/AuthServiceDemo.unity.meta +7 -0
- package/Runtime/Demos/AuthService.meta +8 -0
- package/Runtime/Demos/CloudDB/CloudDBDemo.cs +348 -0
- package/Runtime/Demos/CloudDB/CloudDBDemo.cs.meta +11 -0
- package/Runtime/Demos/CloudDB/CloudDBDemo.unity +3420 -0
- package/Runtime/Demos/CloudDB/CloudDBDemo.unity.meta +7 -0
- package/Runtime/Demos/CloudDB/CloudDBDemoUIView.cs +180 -0
- package/Runtime/Demos/CloudDB/CloudDBDemoUIView.cs.meta +11 -0
- package/Runtime/Demos/CloudDB.meta +8 -0
- package/Runtime/Demos/CloudStorage/CloudStorageDemo.cs +201 -0
- package/Runtime/Demos/CloudStorage/CloudStorageDemo.cs.meta +11 -0
- package/Runtime/Demos/CloudStorage/CloudStorageDemo.unity +2074 -0
- package/Runtime/Demos/CloudStorage/CloudStorageDemo.unity.meta +7 -0
- package/Runtime/Demos/CloudStorage.meta +8 -0
- package/Runtime/Demos/CrashKit/CrashDemo.unity +1455 -0
- package/Runtime/Demos/CrashKit/CrashDemo.unity.meta +7 -0
- package/Runtime/Demos/CrashKit/CrashDemoManager.cs +50 -0
- package/Runtime/Demos/CrashKit/CrashDemoManager.cs.meta +11 -0
- package/Runtime/Demos/CrashKit/CrashDemoView.cs +64 -0
- package/Runtime/Demos/CrashKit/CrashDemoView.cs.meta +11 -0
- package/Runtime/Demos/CrashKit.meta +8 -0
- package/Runtime/Demos/DriveKit/DriveDemoManager.cs +135 -0
- package/Runtime/Demos/DriveKit/DriveDemoManager.cs.meta +11 -0
- package/Runtime/Demos/DriveKit/DriveDemoView.cs +90 -0
- package/Runtime/Demos/DriveKit/DriveDemoView.cs.meta +11 -0
- package/Runtime/Demos/DriveKit/DriveKitDemo.unity +1791 -0
- package/Runtime/Demos/DriveKit/DriveKitDemo.unity.meta +7 -0
- package/Runtime/Demos/DriveKit.meta +8 -0
- package/Runtime/Demos/Game/GameAddictionPreventionDemo/GameAddictionPreventionDemo.unity +813 -0
- package/Runtime/Demos/Game/GameAddictionPreventionDemo/GameAddictionPreventionDemo.unity.meta +7 -0
- package/Runtime/Demos/Game/GameAddictionPreventionDemo/GameAddictionPreventionDemoManager.cs +127 -0
- package/Runtime/Demos/Game/GameAddictionPreventionDemo/GameAddictionPreventionDemoManager.cs.meta +11 -0
- package/Runtime/Demos/Game/GameAddictionPreventionDemo.meta +8 -0
- package/Runtime/Demos/Game/GameDemo.unity +3107 -0
- package/Runtime/Demos/Game/GameDemo.unity.meta +7 -0
- package/Runtime/Demos/Game/GameDemoManager.cs +347 -0
- package/Runtime/Demos/Game/GameDemoManager.cs.meta +11 -0
- package/Runtime/Demos/Game/GameDemoUIView.cs +92 -0
- package/Runtime/Demos/Game/GameDemoUIView.cs.meta +11 -0
- package/Runtime/Demos/Game.meta +8 -0
- package/Runtime/Demos/IAP/IAPDemoUIView.cs +114 -0
- package/Runtime/Demos/IAP/IAPDemoUIView.cs.meta +11 -0
- package/Runtime/Demos/IAP/IapDemo.unity +4418 -0
- package/Runtime/Demos/IAP/IapDemo.unity.meta +7 -0
- package/Runtime/Demos/IAP/IapDemoManager.cs +157 -0
- package/Runtime/Demos/IAP/IapDemoManager.cs.meta +11 -0
- package/Runtime/Demos/IAP/Second Demo-Menu_Store/MainMenuManager.cs +200 -0
- package/Runtime/Demos/IAP/Second Demo-Menu_Store/MainMenuManager.cs.meta +11 -0
- package/Runtime/Demos/IAP/Second Demo-Menu_Store/Scene0_MainMenu.unity +2109 -0
- package/Runtime/Demos/IAP/Second Demo-Menu_Store/Scene0_MainMenu.unity.meta +7 -0
- package/Runtime/Demos/IAP/Second Demo-Menu_Store/Scene1_Store.unity +6210 -0
- package/Runtime/Demos/IAP/Second Demo-Menu_Store/Scene1_Store.unity.meta +7 -0
- package/Runtime/Demos/IAP/Second Demo-Menu_Store/StoreManager.cs +145 -0
- package/Runtime/Demos/IAP/Second Demo-Menu_Store/StoreManager.cs.meta +11 -0
- package/Runtime/Demos/IAP/Second Demo-Menu_Store.meta +8 -0
- package/Runtime/Demos/IAP/UnityDemo/UnityIAPDemoUIView.cs +96 -0
- package/Runtime/Demos/IAP/UnityDemo/UnityIAPDemoUIView.cs.meta +11 -0
- package/Runtime/Demos/IAP/UnityDemo/UnityIapDemo.unity +3930 -0
- package/Runtime/Demos/IAP/UnityDemo/UnityIapDemo.unity.meta +7 -0
- package/Runtime/Demos/IAP/UnityDemo/UnityIapDemoManager.cs +151 -0
- package/Runtime/Demos/IAP/UnityDemo/UnityIapDemoManager.cs.meta +11 -0
- package/Runtime/Demos/IAP/UnityDemo.meta +8 -0
- package/Runtime/Demos/IAP.meta +8 -0
- package/Runtime/Demos/InAppComment/InAppCommentDemo.cs +71 -0
- package/Runtime/Demos/InAppComment/InAppCommentDemo.cs.meta +11 -0
- package/Runtime/Demos/InAppComment/InAppCommentDemo.unity +759 -0
- package/Runtime/Demos/InAppComment/InAppCommentDemo.unity.meta +7 -0
- package/Runtime/Demos/InAppComment.meta +8 -0
- package/Runtime/Demos/Location/ActivityIdentificationDemo.cs +209 -0
- package/Runtime/Demos/Location/ActivityIdentificationDemo.cs.meta +11 -0
- package/Runtime/Demos/Location/FusedLocationDemo.cs +154 -0
- package/Runtime/Demos/Location/FusedLocationDemo.cs.meta +11 -0
- package/Runtime/Demos/Location/GeocodingDemo.cs +94 -0
- package/Runtime/Demos/Location/GeocodingDemo.cs.meta +11 -0
- package/Runtime/Demos/Location/GeofenceDemo.cs +180 -0
- package/Runtime/Demos/Location/GeofenceDemo.cs.meta +11 -0
- package/Runtime/Demos/Location/LocationDemo.unity +5912 -0
- package/Runtime/Demos/Location/LocationDemo.unity.meta +7 -0
- package/Runtime/Demos/Location/LocationDemoManager.cs +49 -0
- package/Runtime/Demos/Location/LocationDemoManager.cs.meta +11 -0
- package/Runtime/Demos/Location.meta +8 -0
- package/Runtime/Demos/ML/LanguageDetection/LanguageDetectionDemoManager.cs +199 -0
- package/Runtime/Demos/ML/LanguageDetection/LanguageDetectionDemoManager.cs.meta +11 -0
- package/Runtime/Demos/ML/LanguageDetection/LanguageDetectionManager.unity +2097 -0
- package/Runtime/Demos/ML/LanguageDetection/LanguageDetectionManager.unity.meta +7 -0
- package/Runtime/Demos/ML/LanguageDetection.meta +8 -0
- package/Runtime/Demos/ML/MLKitDemo.unity +20214 -0
- package/Runtime/Demos/ML/MLKitDemo.unity.meta +7 -0
- package/Runtime/Demos/ML/MlKitDemoManager.cs +89 -0
- package/Runtime/Demos/ML/MlKitDemoManager.cs.meta +11 -0
- package/Runtime/Demos/ML/TextRecognition/TextRecognition.unity +3948 -0
- package/Runtime/Demos/ML/TextRecognition/TextRecognition.unity.meta +7 -0
- package/Runtime/Demos/ML/TextRecognition/TextRecognitionDemoManager.cs +200 -0
- package/Runtime/Demos/ML/TextRecognition/TextRecognitionDemoManager.cs.meta +11 -0
- package/Runtime/Demos/ML/TextRecognition.meta +8 -0
- package/Runtime/Demos/ML/TextToSpeechDemo/TextToSpeechDemo.unity +7398 -0
- package/Runtime/Demos/ML/TextToSpeechDemo/TextToSpeechDemo.unity.meta +7 -0
- package/Runtime/Demos/ML/TextToSpeechDemo/TextToSpeechDemoManager.cs +209 -0
- package/Runtime/Demos/ML/TextToSpeechDemo/TextToSpeechDemoManager.cs.meta +11 -0
- package/Runtime/Demos/ML/TextToSpeechDemo.meta +8 -0
- package/Runtime/Demos/ML/Translate/TranslateDemo.unity +5231 -0
- package/Runtime/Demos/ML/Translate/TranslateDemo.unity.meta +7 -0
- package/Runtime/Demos/ML/Translate/TranslateDemoManager.cs +275 -0
- package/Runtime/Demos/ML/Translate/TranslateDemoManager.cs.meta +11 -0
- package/Runtime/Demos/ML/Translate.meta +8 -0
- package/Runtime/Demos/ML.meta +8 -0
- package/Runtime/Demos/Modeling3D/Modeling3dDemo.unity +4130 -0
- package/Runtime/Demos/Modeling3D/Modeling3dDemo.unity.meta +7 -0
- package/Runtime/Demos/Modeling3D/Modeling3dDemoManager.cs +382 -0
- package/Runtime/Demos/Modeling3D/Modeling3dDemoManager.cs.meta +11 -0
- package/Runtime/Demos/Modeling3D/Modeling3dMeterialDemo.unity +1788 -0
- package/Runtime/Demos/Modeling3D/Modeling3dMeterialDemo.unity.meta +7 -0
- package/Runtime/Demos/Modeling3D/Modeling3dMeterialDemoManager.cs +157 -0
- package/Runtime/Demos/Modeling3D/Modeling3dMeterialDemoManager.cs.meta +11 -0
- package/Runtime/Demos/Modeling3D/ProgressBar.cs +36 -0
- package/Runtime/Demos/Modeling3D/ProgressBar.cs.meta +11 -0
- package/Runtime/Demos/Modeling3D/TaskListDisplay.cs +101 -0
- package/Runtime/Demos/Modeling3D/TaskListDisplay.cs.meta +11 -0
- package/Runtime/Demos/Modeling3D.meta +8 -0
- package/Runtime/Demos/NearbyService/Nearby.unity +1563 -0
- package/Runtime/Demos/NearbyService/Nearby.unity.meta +7 -0
- package/Runtime/Demos/NearbyService/NearbyDemoManager.cs +192 -0
- package/Runtime/Demos/NearbyService/NearbyDemoManager.cs.meta +11 -0
- package/Runtime/Demos/NearbyService/NearbyDemoUIView.cs +73 -0
- package/Runtime/Demos/NearbyService/NearbyDemoUIView.cs.meta +11 -0
- package/Runtime/Demos/NearbyService.meta +8 -0
- package/Runtime/Demos/Push/PushDemo.unity +720 -0
- package/Runtime/Demos/Push/PushDemo.unity.meta +7 -0
- package/Runtime/Demos/Push/PushDemoManager.cs +123 -0
- package/Runtime/Demos/Push/PushDemoManager.cs.meta +11 -0
- package/Runtime/Demos/Push.meta +8 -0
- package/Runtime/Demos/RemoteConfig/RemoteConfigDemo.cs +120 -0
- package/Runtime/Demos/RemoteConfig/RemoteConfigDemo.cs.meta +11 -0
- package/Runtime/Demos/RemoteConfig/RemoteConfigDemo.unity +2259 -0
- package/Runtime/Demos/RemoteConfig/RemoteConfigDemo.unity.meta +7 -0
- package/Runtime/Demos/RemoteConfig/RemoteConfigUIView.cs +109 -0
- package/Runtime/Demos/RemoteConfig/RemoteConfigUIView.cs.meta +11 -0
- package/Runtime/Demos/RemoteConfig.meta +8 -0
- package/Runtime/Demos/Scan/ScanKitDemo.cs +69 -0
- package/Runtime/Demos/Scan/ScanKitDemo.cs.meta +11 -0
- package/Runtime/Demos/Scan/ScanKitDemo.unity +803 -0
- package/Runtime/Demos/Scan/ScanKitDemo.unity.meta +7 -0
- package/Runtime/Demos/Scan/ScanKitUIView.cs +38 -0
- package/Runtime/Demos/Scan/ScanKitUIView.cs.meta +11 -0
- package/Runtime/Demos/Scan.meta +8 -0
- package/Runtime/Demos.meta +8 -0
- package/Runtime/Dlls/EPPlus.dll +0 -0
- package/Runtime/Dlls/EPPlus.dll.meta +69 -0
- package/Runtime/Dlls/HuaweiMobileServices.dll +0 -0
- package/Runtime/Dlls/HuaweiMobileServices.dll.meta +38 -0
- package/Runtime/Dlls/HuaweiMobileServices.pdb +0 -0
- package/Runtime/Dlls/HuaweiMobileServices.pdb.meta +7 -0
- package/Runtime/Dlls/link.xml +5 -0
- package/Runtime/Dlls/link.xml.meta +7 -0
- package/Runtime/Dlls.meta +8 -0
- package/Runtime/HuaweiMobileServices.Core.asmdef +16 -0
- package/Runtime/HuaweiMobileServices.Core.asmdef.meta +7 -0
- package/Runtime/Plugins/Android/BookInfo.java +100 -0
- package/Runtime/Plugins/Android/BookInfo.java.meta +32 -0
- package/Runtime/Plugins/Android/HMSUnityPushKit.plugin/AndroidManifest.xml +13 -0
- package/Runtime/Plugins/Android/HMSUnityPushKit.plugin/build.gradle +31 -0
- package/Runtime/Plugins/Android/HMSUnityPushKit.plugin/project.properties +2 -0
- package/Runtime/Plugins/Android/HMSUnityPushKit.plugin.meta +80 -0
- package/Runtime/Plugins/Android/ObjectTypeInfoHelper.java +33 -0
- package/Runtime/Plugins/Android/ObjectTypeInfoHelper.java.meta +32 -0
- package/Runtime/Plugins/Android/app-debug.aar +0 -0
- package/Runtime/Plugins/Android/app-debug.aar.meta +32 -0
- package/Runtime/Plugins/Android/hmsLauncherTemplate.gradle +32 -0
- package/Runtime/Plugins/Android/hmsLauncherTemplate.gradle.meta +7 -0
- package/Runtime/Plugins/Android/hmsMainTemplate.gradle +13 -0
- package/Runtime/Plugins/Android/hmsMainTemplate.gradle.meta +7 -0
- package/Runtime/Plugins/Android.meta +8 -0
- package/Runtime/Plugins.meta +8 -0
- package/Runtime/Prefabs/HuaweiIDButton.prefab +355 -0
- package/Runtime/Prefabs/HuaweiIDButton.prefab.meta +7 -0
- package/Runtime/Prefabs/HuaweiIDCircleButton.prefab +274 -0
- package/Runtime/Prefabs/HuaweiIDCircleButton.prefab.meta +7 -0
- package/Runtime/Prefabs/Modeling3DTaskListItem.prefab +1881 -0
- package/Runtime/Prefabs/Modeling3DTaskListItem.prefab.meta +7 -0
- package/Runtime/Prefabs/SplashAdPreview.prefab +591 -0
- package/Runtime/Prefabs/SplashAdPreview.prefab.meta +7 -0
- package/Runtime/Prefabs/native_large_image.prefab +1172 -0
- package/Runtime/Prefabs/native_large_image.prefab.meta +7 -0
- package/Runtime/Prefabs.meta +8 -0
- package/Runtime/Resources/Huawei/CircleCorner.png +0 -0
- package/Runtime/Resources/Huawei/CircleCorner.png.meta +135 -0
- package/Runtime/Resources/Huawei/Huawei-White.png +0 -0
- package/Runtime/Resources/Huawei/Huawei-White.png.meta +135 -0
- package/Runtime/Resources/Huawei/RoundedCorner.png +0 -0
- package/Runtime/Resources/Huawei/RoundedCorner.png.meta +135 -0
- package/Runtime/Resources/Huawei.meta +8 -0
- package/Runtime/Resources/close.png +0 -0
- package/Runtime/Resources/close.png.meta +116 -0
- package/Runtime/Resources/coins100.png +0 -0
- package/Runtime/Resources/coins100.png.meta +121 -0
- package/Runtime/Resources/coins1000.png +0 -0
- package/Runtime/Resources/coins1000.png.meta +121 -0
- package/Runtime/Resources/info.png +0 -0
- package/Runtime/Resources/info.png.meta +116 -0
- package/Runtime/Resources/no_ads.png +0 -0
- package/Runtime/Resources/no_ads.png.meta +135 -0
- package/Runtime/Resources/premium.png +0 -0
- package/Runtime/Resources/premium.png.meta +135 -0
- package/Runtime/Resources/xml/remoteConfig.xml +5 -0
- package/Runtime/Resources/xml/remoteConfig.xml.meta +7 -0
- package/Runtime/Resources/xml.meta +8 -0
- package/Runtime/Resources.meta +8 -0
- package/Runtime/Scripts/APM/HMSAPMManager.cs +31 -0
- package/Runtime/Scripts/APM/HMSAPMManager.cs.meta +11 -0
- package/Runtime/Scripts/APM.meta +8 -0
- package/Runtime/Scripts/Account/HMSAccountKitManager.cs +194 -0
- package/Runtime/Scripts/Account/HMSAccountKitManager.cs.meta +11 -0
- package/Runtime/Scripts/Account.meta +8 -0
- package/Runtime/Scripts/Ads/HMSAdsKitManager.cs +977 -0
- package/Runtime/Scripts/Ads/HMSAdsKitManager.cs.meta +11 -0
- package/Runtime/Scripts/Ads/LargeImageNative.cs +166 -0
- package/Runtime/Scripts/Ads/LargeImageNative.cs.meta +11 -0
- package/Runtime/Scripts/Ads.meta +8 -0
- package/Runtime/Scripts/Analytics/HMSAnalyticsKitManager.cs +98 -0
- package/Runtime/Scripts/Analytics/HMSAnalyticsKitManager.cs.meta +11 -0
- package/Runtime/Scripts/Analytics.meta +8 -0
- package/Runtime/Scripts/AppMessaging/HMSAppMessagingManager.cs +60 -0
- package/Runtime/Scripts/AppMessaging/HMSAppMessagingManager.cs.meta +11 -0
- package/Runtime/Scripts/AppMessaging.meta +8 -0
- package/Runtime/Scripts/AuthService/HMSAuthServiceManager.cs +142 -0
- package/Runtime/Scripts/AuthService/HMSAuthServiceManager.cs.meta +11 -0
- package/Runtime/Scripts/AuthService.meta +8 -0
- package/Runtime/Scripts/CloudDB/BookInfo.cs +58 -0
- package/Runtime/Scripts/CloudDB/BookInfo.cs.meta +11 -0
- package/Runtime/Scripts/CloudDB/HMSCloudDBManager.cs +343 -0
- package/Runtime/Scripts/CloudDB/HMSCloudDBManager.cs.meta +11 -0
- package/Runtime/Scripts/CloudDB.meta +8 -0
- package/Runtime/Scripts/CloudStorage/HMSCloudStorageManager.cs +349 -0
- package/Runtime/Scripts/CloudStorage/HMSCloudStorageManager.cs.meta +11 -0
- package/Runtime/Scripts/CloudStorage.meta +8 -0
- package/Runtime/Scripts/Crash/HMSCrashManager.cs +61 -0
- package/Runtime/Scripts/Crash/HMSCrashManager.cs.meta +11 -0
- package/Runtime/Scripts/Crash.meta +8 -0
- package/Runtime/Scripts/Drive/CredentialManager.cs +55 -0
- package/Runtime/Scripts/Drive/CredentialManager.cs.meta +11 -0
- package/Runtime/Scripts/Drive/HMSDriveKitManager.cs +248 -0
- package/Runtime/Scripts/Drive/HMSDriveKitManager.cs.meta +11 -0
- package/Runtime/Scripts/Drive.meta +8 -0
- package/Runtime/Scripts/Game/HMSAchievementsEntry.cs +14 -0
- package/Runtime/Scripts/Game/HMSAchievementsEntry.cs.meta +11 -0
- package/Runtime/Scripts/Game/HMSAchievementsManager.cs +147 -0
- package/Runtime/Scripts/Game/HMSAchievementsManager.cs.meta +11 -0
- package/Runtime/Scripts/Game/HMSGameServiceManager.cs +314 -0
- package/Runtime/Scripts/Game/HMSGameServiceManager.cs.meta +11 -0
- package/Runtime/Scripts/Game/HMSLeaderboardEntry.cs +14 -0
- package/Runtime/Scripts/Game/HMSLeaderboardEntry.cs.meta +11 -0
- package/Runtime/Scripts/Game/HMSLeaderboardManager.cs +272 -0
- package/Runtime/Scripts/Game/HMSLeaderboardManager.cs.meta +11 -0
- package/Runtime/Scripts/Game/HMSSaveGameManager.cs +236 -0
- package/Runtime/Scripts/Game/HMSSaveGameManager.cs.meta +11 -0
- package/Runtime/Scripts/Game.meta +8 -0
- package/Runtime/Scripts/IAP/HMSIAPManager.cs +715 -0
- package/Runtime/Scripts/IAP/HMSIAPManager.cs.meta +11 -0
- package/Runtime/Scripts/IAP/HMSIAPProductType.cs +21 -0
- package/Runtime/Scripts/IAP/HMSIAPProductType.cs.meta +11 -0
- package/Runtime/Scripts/IAP/UnityPurchase/HuaweiPurchasingModule.cs +28 -0
- package/Runtime/Scripts/IAP/UnityPurchase/HuaweiPurchasingModule.cs.meta +11 -0
- package/Runtime/Scripts/IAP/UnityPurchase/HuaweiStore.cs +305 -0
- package/Runtime/Scripts/IAP/UnityPurchase/HuaweiStore.cs.meta +11 -0
- package/Runtime/Scripts/IAP/UnityPurchase.meta +8 -0
- package/Runtime/Scripts/IAP.meta +8 -0
- package/Runtime/Scripts/Location/GeofenceReceiver.cs +29 -0
- package/Runtime/Scripts/Location/GeofenceReceiver.cs.meta +11 -0
- package/Runtime/Scripts/Location/HMSLocationManager.cs +96 -0
- package/Runtime/Scripts/Location/HMSLocationManager.cs.meta +11 -0
- package/Runtime/Scripts/Location/LocationReceiver.cs +40 -0
- package/Runtime/Scripts/Location/LocationReceiver.cs.meta +11 -0
- package/Runtime/Scripts/Location.meta +8 -0
- package/Runtime/Scripts/ML/LangDetector/HMSMLLanguageDetectionManager.cs +180 -0
- package/Runtime/Scripts/ML/LangDetector/HMSMLLanguageDetectionManager.cs.meta +11 -0
- package/Runtime/Scripts/ML/LangDetector.meta +8 -0
- package/Runtime/Scripts/ML/MLDownloadListenerManager.cs +17 -0
- package/Runtime/Scripts/ML/MLDownloadListenerManager.cs.meta +11 -0
- package/Runtime/Scripts/ML/TextRecognition/HMSMLTextRecognitionKitManager.cs +163 -0
- package/Runtime/Scripts/ML/TextRecognition/HMSMLTextRecognitionKitManager.cs.meta +11 -0
- package/Runtime/Scripts/ML/TextRecognition.meta +8 -0
- package/Runtime/Scripts/ML/TextToSpeech/HMSMLTextToSpeechKitManager.cs +276 -0
- package/Runtime/Scripts/ML/TextToSpeech/HMSMLTextToSpeechKitManager.cs.meta +11 -0
- package/Runtime/Scripts/ML/TextToSpeech/MLTextToSpeechListenerManager.cs +94 -0
- package/Runtime/Scripts/ML/TextToSpeech/MLTextToSpeechListenerManager.cs.meta +11 -0
- package/Runtime/Scripts/ML/TextToSpeech.meta +8 -0
- package/Runtime/Scripts/ML/Translate/HMSMLTranslateKitManager.cs +203 -0
- package/Runtime/Scripts/ML/Translate/HMSMLTranslateKitManager.cs.meta +11 -0
- package/Runtime/Scripts/ML/Translate.meta +8 -0
- package/Runtime/Scripts/ML.meta +8 -0
- package/Runtime/Scripts/Modeling3D/HMSModeling3dKitManager.cs +557 -0
- package/Runtime/Scripts/Modeling3D/HMSModeling3dKitManager.cs.meta +11 -0
- package/Runtime/Scripts/Modeling3D/Modeling3dDTO.cs +38 -0
- package/Runtime/Scripts/Modeling3D/Modeling3dDTO.cs.meta +11 -0
- package/Runtime/Scripts/Modeling3D/Modeling3dListenerManager.cs +172 -0
- package/Runtime/Scripts/Modeling3D/Modeling3dListenerManager.cs.meta +11 -0
- package/Runtime/Scripts/Modeling3D.meta +8 -0
- package/Runtime/Scripts/NearbyService/HMSNearbyServiceManager.cs +80 -0
- package/Runtime/Scripts/NearbyService/HMSNearbyServiceManager.cs.meta +11 -0
- package/Runtime/Scripts/NearbyService.meta +8 -0
- package/Runtime/Scripts/Push/HMSPushKitManager.cs +134 -0
- package/Runtime/Scripts/Push/HMSPushKitManager.cs.meta +11 -0
- package/Runtime/Scripts/Push.meta +8 -0
- package/Runtime/Scripts/RemoteConfig/HMSRemoteConfigManager.cs +157 -0
- package/Runtime/Scripts/RemoteConfig/HMSRemoteConfigManager.cs.meta +11 -0
- package/Runtime/Scripts/RemoteConfig.meta +8 -0
- package/Runtime/Scripts/Scan/HMSScanKitManager.cs +60 -0
- package/Runtime/Scripts/Scan/HMSScanKitManager.cs.meta +11 -0
- package/Runtime/Scripts/Scan.meta +8 -0
- package/Runtime/Scripts/Settings/HMSAchievementsSettings.cs +37 -0
- package/Runtime/Scripts/Settings/HMSAchievementsSettings.cs.meta +11 -0
- package/Runtime/Scripts/Settings/HMSAdsKitSettings.cs +56 -0
- package/Runtime/Scripts/Settings/HMSAdsKitSettings.cs.meta +11 -0
- package/Runtime/Scripts/Settings/HMSConnectAPISettings.cs +44 -0
- package/Runtime/Scripts/Settings/HMSConnectAPISettings.cs.meta +11 -0
- package/Runtime/Scripts/Settings/HMSGameServiceSettings.cs +40 -0
- package/Runtime/Scripts/Settings/HMSGameServiceSettings.cs.meta +11 -0
- package/Runtime/Scripts/Settings/HMSIAPKitSettings.cs +37 -0
- package/Runtime/Scripts/Settings/HMSIAPKitSettings.cs.meta +11 -0
- package/Runtime/Scripts/Settings/HMSIAPProductListSettings.cs +74 -0
- package/Runtime/Scripts/Settings/HMSIAPProductListSettings.cs.meta +11 -0
- package/Runtime/Scripts/Settings/HMSLeaderboardSettings.cs +37 -0
- package/Runtime/Scripts/Settings/HMSLeaderboardSettings.cs.meta +11 -0
- package/Runtime/Scripts/Settings/HMSMLKitSettings.cs +42 -0
- package/Runtime/Scripts/Settings/HMSMLKitSettings.cs.meta +11 -0
- package/Runtime/Scripts/Settings/HMSMainEditorSettings.cs +38 -0
- package/Runtime/Scripts/Settings/HMSMainEditorSettings.cs.meta +11 -0
- package/Runtime/Scripts/Settings/HMSModelingKitSettings.cs +38 -0
- package/Runtime/Scripts/Settings/HMSModelingKitSettings.cs.meta +11 -0
- package/Runtime/Scripts/Settings/HMSPluginSettings.cs +37 -0
- package/Runtime/Scripts/Settings/HMSPluginSettings.cs.meta +11 -0
- package/Runtime/Scripts/Settings/HMSRemoteConfigSettings.cs +40 -0
- package/Runtime/Scripts/Settings/HMSRemoteConfigSettings.cs.meta +11 -0
- package/Runtime/Scripts/Settings/HMSRemoteDefaultValueSettings.cs +53 -0
- package/Runtime/Scripts/Settings/HMSRemoteDefaultValueSettings.cs.meta +11 -0
- package/Runtime/Scripts/Settings/Settings.cs +75 -0
- package/Runtime/Scripts/Settings/Settings.cs.meta +11 -0
- package/Runtime/Scripts/Settings/SettingsScriptableObject.cs +14 -0
- package/Runtime/Scripts/Settings/SettingsScriptableObject.cs.meta +11 -0
- package/Runtime/Scripts/Settings.meta +8 -0
- package/Runtime/Scripts/Utils/HMSExceptionHandler.cs +120 -0
- package/Runtime/Scripts/Utils/HMSExceptionHandler.cs.meta +11 -0
- package/Runtime/Scripts/Utils/HMSManagerStart.cs +36 -0
- package/Runtime/Scripts/Utils/HMSManagerStart.cs.meta +11 -0
- package/Runtime/Scripts/Utils/HMSSafeArea.cs +63 -0
- package/Runtime/Scripts/Utils/HMSSafeArea.cs.meta +11 -0
- package/Runtime/Scripts/Utils/HMSSingleton.cs +56 -0
- package/Runtime/Scripts/Utils/HMSSingleton.cs.meta +11 -0
- package/Runtime/Scripts/Utils/HMSSplashAdPreview.cs +37 -0
- package/Runtime/Scripts/Utils/HMSSplashAdPreview.cs.meta +11 -0
- package/Runtime/Scripts/Utils/HuaweiConstants.cs +204 -0
- package/Runtime/Scripts/Utils/HuaweiConstants.cs.meta +11 -0
- package/Runtime/Scripts/Utils/JsonHelper.cs +23 -0
- package/Runtime/Scripts/Utils/JsonHelper.cs.meta +11 -0
- package/Runtime/Scripts/Utils/PlayerPrefsJsonDatabase.cs +130 -0
- package/Runtime/Scripts/Utils/PlayerPrefsJsonDatabase.cs.meta +11 -0
- package/Runtime/Scripts/Utils/ScriptableHelper.cs +58 -0
- package/Runtime/Scripts/Utils/ScriptableHelper.cs.meta +11 -0
- package/Runtime/Scripts/Utils/SerializableDictionary.cs +129 -0
- package/Runtime/Scripts/Utils/SerializableDictionary.cs.meta +11 -0
- package/Runtime/Scripts/Utils.meta +8 -0
- package/Runtime/Scripts.meta +8 -0
- package/Runtime/Settings/Resources.meta +8 -0
- package/Runtime/Settings.meta +8 -0
- package/Runtime/VERSION +1 -0
- package/Runtime/VERSION.meta +7 -0
- package/Runtime.meta +8 -0
- package/package.json +13 -0
- package/package.json.meta +7 -0
|
@@ -0,0 +1,803 @@
|
|
|
1
|
+
%YAML 1.1
|
|
2
|
+
%TAG !u! tag:unity3d.com,2011:
|
|
3
|
+
--- !u!29 &1
|
|
4
|
+
OcclusionCullingSettings:
|
|
5
|
+
m_ObjectHideFlags: 0
|
|
6
|
+
serializedVersion: 2
|
|
7
|
+
m_OcclusionBakeSettings:
|
|
8
|
+
smallestOccluder: 5
|
|
9
|
+
smallestHole: 0.25
|
|
10
|
+
backfaceThreshold: 100
|
|
11
|
+
m_SceneGUID: 00000000000000000000000000000000
|
|
12
|
+
m_OcclusionCullingData: {fileID: 0}
|
|
13
|
+
--- !u!104 &2
|
|
14
|
+
RenderSettings:
|
|
15
|
+
m_ObjectHideFlags: 0
|
|
16
|
+
serializedVersion: 9
|
|
17
|
+
m_Fog: 0
|
|
18
|
+
m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
|
|
19
|
+
m_FogMode: 3
|
|
20
|
+
m_FogDensity: 0.01
|
|
21
|
+
m_LinearFogStart: 0
|
|
22
|
+
m_LinearFogEnd: 300
|
|
23
|
+
m_AmbientSkyColor: {r: 0.212, g: 0.227, b: 0.259, a: 1}
|
|
24
|
+
m_AmbientEquatorColor: {r: 0.114, g: 0.125, b: 0.133, a: 1}
|
|
25
|
+
m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1}
|
|
26
|
+
m_AmbientIntensity: 1
|
|
27
|
+
m_AmbientMode: 0
|
|
28
|
+
m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1}
|
|
29
|
+
m_SkyboxMaterial: {fileID: 10304, guid: 0000000000000000f000000000000000, type: 0}
|
|
30
|
+
m_HaloStrength: 0.5
|
|
31
|
+
m_FlareStrength: 1
|
|
32
|
+
m_FlareFadeSpeed: 3
|
|
33
|
+
m_HaloTexture: {fileID: 0}
|
|
34
|
+
m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0}
|
|
35
|
+
m_DefaultReflectionMode: 0
|
|
36
|
+
m_DefaultReflectionResolution: 128
|
|
37
|
+
m_ReflectionBounces: 1
|
|
38
|
+
m_ReflectionIntensity: 1
|
|
39
|
+
m_CustomReflection: {fileID: 0}
|
|
40
|
+
m_Sun: {fileID: 0}
|
|
41
|
+
m_IndirectSpecularColor: {r: 0.44657898, g: 0.4964133, b: 0.5748178, a: 1}
|
|
42
|
+
m_UseRadianceAmbientProbe: 0
|
|
43
|
+
--- !u!157 &3
|
|
44
|
+
LightmapSettings:
|
|
45
|
+
m_ObjectHideFlags: 0
|
|
46
|
+
serializedVersion: 12
|
|
47
|
+
m_GIWorkflowMode: 1
|
|
48
|
+
m_GISettings:
|
|
49
|
+
serializedVersion: 2
|
|
50
|
+
m_BounceScale: 1
|
|
51
|
+
m_IndirectOutputScale: 1
|
|
52
|
+
m_AlbedoBoost: 1
|
|
53
|
+
m_EnvironmentLightingMode: 0
|
|
54
|
+
m_EnableBakedLightmaps: 1
|
|
55
|
+
m_EnableRealtimeLightmaps: 0
|
|
56
|
+
m_LightmapEditorSettings:
|
|
57
|
+
serializedVersion: 12
|
|
58
|
+
m_Resolution: 2
|
|
59
|
+
m_BakeResolution: 40
|
|
60
|
+
m_AtlasSize: 1024
|
|
61
|
+
m_AO: 0
|
|
62
|
+
m_AOMaxDistance: 1
|
|
63
|
+
m_CompAOExponent: 1
|
|
64
|
+
m_CompAOExponentDirect: 0
|
|
65
|
+
m_ExtractAmbientOcclusion: 0
|
|
66
|
+
m_Padding: 2
|
|
67
|
+
m_LightmapParameters: {fileID: 0}
|
|
68
|
+
m_LightmapsBakeMode: 1
|
|
69
|
+
m_TextureCompression: 1
|
|
70
|
+
m_FinalGather: 0
|
|
71
|
+
m_FinalGatherFiltering: 1
|
|
72
|
+
m_FinalGatherRayCount: 256
|
|
73
|
+
m_ReflectionCompression: 2
|
|
74
|
+
m_MixedBakeMode: 2
|
|
75
|
+
m_BakeBackend: 1
|
|
76
|
+
m_PVRSampling: 1
|
|
77
|
+
m_PVRDirectSampleCount: 32
|
|
78
|
+
m_PVRSampleCount: 512
|
|
79
|
+
m_PVRBounces: 2
|
|
80
|
+
m_PVREnvironmentSampleCount: 256
|
|
81
|
+
m_PVREnvironmentReferencePointCount: 2048
|
|
82
|
+
m_PVRFilteringMode: 1
|
|
83
|
+
m_PVRDenoiserTypeDirect: 1
|
|
84
|
+
m_PVRDenoiserTypeIndirect: 1
|
|
85
|
+
m_PVRDenoiserTypeAO: 1
|
|
86
|
+
m_PVRFilterTypeDirect: 0
|
|
87
|
+
m_PVRFilterTypeIndirect: 0
|
|
88
|
+
m_PVRFilterTypeAO: 0
|
|
89
|
+
m_PVREnvironmentMIS: 1
|
|
90
|
+
m_PVRCulling: 1
|
|
91
|
+
m_PVRFilteringGaussRadiusDirect: 1
|
|
92
|
+
m_PVRFilteringGaussRadiusIndirect: 5
|
|
93
|
+
m_PVRFilteringGaussRadiusAO: 2
|
|
94
|
+
m_PVRFilteringAtrousPositionSigmaDirect: 0.5
|
|
95
|
+
m_PVRFilteringAtrousPositionSigmaIndirect: 2
|
|
96
|
+
m_PVRFilteringAtrousPositionSigmaAO: 1
|
|
97
|
+
m_ExportTrainingData: 0
|
|
98
|
+
m_TrainingDataDestination: TrainingData
|
|
99
|
+
m_LightProbeSampleCountMultiplier: 4
|
|
100
|
+
m_LightingDataAsset: {fileID: 0}
|
|
101
|
+
m_LightingSettings: {fileID: 0}
|
|
102
|
+
--- !u!196 &4
|
|
103
|
+
NavMeshSettings:
|
|
104
|
+
serializedVersion: 2
|
|
105
|
+
m_ObjectHideFlags: 0
|
|
106
|
+
m_BuildSettings:
|
|
107
|
+
serializedVersion: 2
|
|
108
|
+
agentTypeID: 0
|
|
109
|
+
agentRadius: 0.5
|
|
110
|
+
agentHeight: 2
|
|
111
|
+
agentSlope: 45
|
|
112
|
+
agentClimb: 0.4
|
|
113
|
+
ledgeDropHeight: 0
|
|
114
|
+
maxJumpAcrossDistance: 0
|
|
115
|
+
minRegionArea: 2
|
|
116
|
+
manualCellSize: 0
|
|
117
|
+
cellSize: 0.16666667
|
|
118
|
+
manualTileSize: 0
|
|
119
|
+
tileSize: 256
|
|
120
|
+
accuratePlacement: 0
|
|
121
|
+
maxJobWorkers: 0
|
|
122
|
+
preserveTilesOutsideBounds: 0
|
|
123
|
+
debug:
|
|
124
|
+
m_Flags: 0
|
|
125
|
+
m_NavMeshData: {fileID: 0}
|
|
126
|
+
--- !u!1 &237152095
|
|
127
|
+
GameObject:
|
|
128
|
+
m_ObjectHideFlags: 0
|
|
129
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
130
|
+
m_PrefabInstance: {fileID: 0}
|
|
131
|
+
m_PrefabAsset: {fileID: 0}
|
|
132
|
+
serializedVersion: 6
|
|
133
|
+
m_Component:
|
|
134
|
+
- component: {fileID: 237152099}
|
|
135
|
+
- component: {fileID: 237152098}
|
|
136
|
+
- component: {fileID: 237152097}
|
|
137
|
+
- component: {fileID: 237152096}
|
|
138
|
+
m_Layer: 5
|
|
139
|
+
m_Name: Canvas
|
|
140
|
+
m_TagString: Untagged
|
|
141
|
+
m_Icon: {fileID: 0}
|
|
142
|
+
m_NavMeshLayer: 0
|
|
143
|
+
m_StaticEditorFlags: 0
|
|
144
|
+
m_IsActive: 1
|
|
145
|
+
--- !u!114 &237152096
|
|
146
|
+
MonoBehaviour:
|
|
147
|
+
m_ObjectHideFlags: 0
|
|
148
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
149
|
+
m_PrefabInstance: {fileID: 0}
|
|
150
|
+
m_PrefabAsset: {fileID: 0}
|
|
151
|
+
m_GameObject: {fileID: 237152095}
|
|
152
|
+
m_Enabled: 1
|
|
153
|
+
m_EditorHideFlags: 0
|
|
154
|
+
m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3}
|
|
155
|
+
m_Name:
|
|
156
|
+
m_EditorClassIdentifier:
|
|
157
|
+
m_IgnoreReversedGraphics: 1
|
|
158
|
+
m_BlockingObjects: 0
|
|
159
|
+
m_BlockingMask:
|
|
160
|
+
serializedVersion: 2
|
|
161
|
+
m_Bits: 4294967295
|
|
162
|
+
--- !u!114 &237152097
|
|
163
|
+
MonoBehaviour:
|
|
164
|
+
m_ObjectHideFlags: 0
|
|
165
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
166
|
+
m_PrefabInstance: {fileID: 0}
|
|
167
|
+
m_PrefabAsset: {fileID: 0}
|
|
168
|
+
m_GameObject: {fileID: 237152095}
|
|
169
|
+
m_Enabled: 1
|
|
170
|
+
m_EditorHideFlags: 0
|
|
171
|
+
m_Script: {fileID: 11500000, guid: 0cd44c1031e13a943bb63640046fad76, type: 3}
|
|
172
|
+
m_Name:
|
|
173
|
+
m_EditorClassIdentifier:
|
|
174
|
+
m_UiScaleMode: 1
|
|
175
|
+
m_ReferencePixelsPerUnit: 100
|
|
176
|
+
m_ScaleFactor: 1
|
|
177
|
+
m_ReferenceResolution: {x: 1080, y: 1920}
|
|
178
|
+
m_ScreenMatchMode: 0
|
|
179
|
+
m_MatchWidthOrHeight: 0
|
|
180
|
+
m_PhysicalUnit: 3
|
|
181
|
+
m_FallbackScreenDPI: 96
|
|
182
|
+
m_DefaultSpriteDPI: 96
|
|
183
|
+
m_DynamicPixelsPerUnit: 1
|
|
184
|
+
m_PresetInfoIsWorld: 0
|
|
185
|
+
--- !u!223 &237152098
|
|
186
|
+
Canvas:
|
|
187
|
+
m_ObjectHideFlags: 0
|
|
188
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
189
|
+
m_PrefabInstance: {fileID: 0}
|
|
190
|
+
m_PrefabAsset: {fileID: 0}
|
|
191
|
+
m_GameObject: {fileID: 237152095}
|
|
192
|
+
m_Enabled: 1
|
|
193
|
+
serializedVersion: 3
|
|
194
|
+
m_RenderMode: 0
|
|
195
|
+
m_Camera: {fileID: 0}
|
|
196
|
+
m_PlaneDistance: 100
|
|
197
|
+
m_PixelPerfect: 0
|
|
198
|
+
m_ReceivesEvents: 1
|
|
199
|
+
m_OverrideSorting: 0
|
|
200
|
+
m_OverridePixelPerfect: 0
|
|
201
|
+
m_SortingBucketNormalizedSize: 0
|
|
202
|
+
m_AdditionalShaderChannelsFlag: 25
|
|
203
|
+
m_SortingLayerID: 0
|
|
204
|
+
m_SortingOrder: 0
|
|
205
|
+
m_TargetDisplay: 0
|
|
206
|
+
--- !u!224 &237152099
|
|
207
|
+
RectTransform:
|
|
208
|
+
m_ObjectHideFlags: 0
|
|
209
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
210
|
+
m_PrefabInstance: {fileID: 0}
|
|
211
|
+
m_PrefabAsset: {fileID: 0}
|
|
212
|
+
m_GameObject: {fileID: 237152095}
|
|
213
|
+
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
|
214
|
+
m_LocalPosition: {x: 0, y: 0, z: 0}
|
|
215
|
+
m_LocalScale: {x: 0, y: 0, z: 0}
|
|
216
|
+
m_Children:
|
|
217
|
+
- {fileID: 990930659}
|
|
218
|
+
- {fileID: 340790982}
|
|
219
|
+
m_Father: {fileID: 0}
|
|
220
|
+
m_RootOrder: 2
|
|
221
|
+
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
|
222
|
+
m_AnchorMin: {x: 0, y: 0}
|
|
223
|
+
m_AnchorMax: {x: 0, y: 0}
|
|
224
|
+
m_AnchoredPosition: {x: 0, y: 0}
|
|
225
|
+
m_SizeDelta: {x: 0, y: 0}
|
|
226
|
+
m_Pivot: {x: 0, y: 0}
|
|
227
|
+
--- !u!1 &340790981
|
|
228
|
+
GameObject:
|
|
229
|
+
m_ObjectHideFlags: 0
|
|
230
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
231
|
+
m_PrefabInstance: {fileID: 0}
|
|
232
|
+
m_PrefabAsset: {fileID: 0}
|
|
233
|
+
serializedVersion: 6
|
|
234
|
+
m_Component:
|
|
235
|
+
- component: {fileID: 340790982}
|
|
236
|
+
- component: {fileID: 340790984}
|
|
237
|
+
- component: {fileID: 340790983}
|
|
238
|
+
m_Layer: 5
|
|
239
|
+
m_Name: TxtQRCodeText
|
|
240
|
+
m_TagString: Untagged
|
|
241
|
+
m_Icon: {fileID: 0}
|
|
242
|
+
m_NavMeshLayer: 0
|
|
243
|
+
m_StaticEditorFlags: 0
|
|
244
|
+
m_IsActive: 1
|
|
245
|
+
--- !u!224 &340790982
|
|
246
|
+
RectTransform:
|
|
247
|
+
m_ObjectHideFlags: 0
|
|
248
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
249
|
+
m_PrefabInstance: {fileID: 0}
|
|
250
|
+
m_PrefabAsset: {fileID: 0}
|
|
251
|
+
m_GameObject: {fileID: 340790981}
|
|
252
|
+
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
|
253
|
+
m_LocalPosition: {x: 0, y: 0, z: 0}
|
|
254
|
+
m_LocalScale: {x: 1, y: 1, z: 1}
|
|
255
|
+
m_Children: []
|
|
256
|
+
m_Father: {fileID: 237152099}
|
|
257
|
+
m_RootOrder: 1
|
|
258
|
+
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
|
259
|
+
m_AnchorMin: {x: 0, y: 0.5}
|
|
260
|
+
m_AnchorMax: {x: 1, y: 0.5}
|
|
261
|
+
m_AnchoredPosition: {x: 0, y: 393}
|
|
262
|
+
m_SizeDelta: {x: 0, y: 216.59}
|
|
263
|
+
m_Pivot: {x: 0.5, y: 0.5}
|
|
264
|
+
--- !u!114 &340790983
|
|
265
|
+
MonoBehaviour:
|
|
266
|
+
m_ObjectHideFlags: 0
|
|
267
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
268
|
+
m_PrefabInstance: {fileID: 0}
|
|
269
|
+
m_PrefabAsset: {fileID: 0}
|
|
270
|
+
m_GameObject: {fileID: 340790981}
|
|
271
|
+
m_Enabled: 1
|
|
272
|
+
m_EditorHideFlags: 0
|
|
273
|
+
m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3}
|
|
274
|
+
m_Name:
|
|
275
|
+
m_EditorClassIdentifier:
|
|
276
|
+
m_Material: {fileID: 0}
|
|
277
|
+
m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1}
|
|
278
|
+
m_RaycastTarget: 1
|
|
279
|
+
m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
|
|
280
|
+
m_Maskable: 1
|
|
281
|
+
m_OnCullStateChanged:
|
|
282
|
+
m_PersistentCalls:
|
|
283
|
+
m_Calls: []
|
|
284
|
+
m_FontData:
|
|
285
|
+
m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
|
|
286
|
+
m_FontSize: 94
|
|
287
|
+
m_FontStyle: 0
|
|
288
|
+
m_BestFit: 0
|
|
289
|
+
m_MinSize: 0
|
|
290
|
+
m_MaxSize: 111
|
|
291
|
+
m_Alignment: 4
|
|
292
|
+
m_AlignByGeometry: 0
|
|
293
|
+
m_RichText: 1
|
|
294
|
+
m_HorizontalOverflow: 0
|
|
295
|
+
m_VerticalOverflow: 0
|
|
296
|
+
m_LineSpacing: 1
|
|
297
|
+
m_Text: QR Code Text
|
|
298
|
+
--- !u!222 &340790984
|
|
299
|
+
CanvasRenderer:
|
|
300
|
+
m_ObjectHideFlags: 0
|
|
301
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
302
|
+
m_PrefabInstance: {fileID: 0}
|
|
303
|
+
m_PrefabAsset: {fileID: 0}
|
|
304
|
+
m_GameObject: {fileID: 340790981}
|
|
305
|
+
m_CullTransparentMesh: 1
|
|
306
|
+
--- !u!1 &550198159
|
|
307
|
+
GameObject:
|
|
308
|
+
m_ObjectHideFlags: 0
|
|
309
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
310
|
+
m_PrefabInstance: {fileID: 0}
|
|
311
|
+
m_PrefabAsset: {fileID: 0}
|
|
312
|
+
serializedVersion: 6
|
|
313
|
+
m_Component:
|
|
314
|
+
- component: {fileID: 550198160}
|
|
315
|
+
- component: {fileID: 550198162}
|
|
316
|
+
- component: {fileID: 550198161}
|
|
317
|
+
m_Layer: 5
|
|
318
|
+
m_Name: TxtScan
|
|
319
|
+
m_TagString: Untagged
|
|
320
|
+
m_Icon: {fileID: 0}
|
|
321
|
+
m_NavMeshLayer: 0
|
|
322
|
+
m_StaticEditorFlags: 0
|
|
323
|
+
m_IsActive: 1
|
|
324
|
+
--- !u!224 &550198160
|
|
325
|
+
RectTransform:
|
|
326
|
+
m_ObjectHideFlags: 0
|
|
327
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
328
|
+
m_PrefabInstance: {fileID: 0}
|
|
329
|
+
m_PrefabAsset: {fileID: 0}
|
|
330
|
+
m_GameObject: {fileID: 550198159}
|
|
331
|
+
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
|
332
|
+
m_LocalPosition: {x: 0, y: 0, z: 0}
|
|
333
|
+
m_LocalScale: {x: 1, y: 1, z: 1}
|
|
334
|
+
m_Children: []
|
|
335
|
+
m_Father: {fileID: 990930659}
|
|
336
|
+
m_RootOrder: 0
|
|
337
|
+
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
|
338
|
+
m_AnchorMin: {x: 0, y: 0}
|
|
339
|
+
m_AnchorMax: {x: 1, y: 1}
|
|
340
|
+
m_AnchoredPosition: {x: 0, y: 0}
|
|
341
|
+
m_SizeDelta: {x: 0, y: 0}
|
|
342
|
+
m_Pivot: {x: 0.5, y: 0.5}
|
|
343
|
+
--- !u!114 &550198161
|
|
344
|
+
MonoBehaviour:
|
|
345
|
+
m_ObjectHideFlags: 0
|
|
346
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
347
|
+
m_PrefabInstance: {fileID: 0}
|
|
348
|
+
m_PrefabAsset: {fileID: 0}
|
|
349
|
+
m_GameObject: {fileID: 550198159}
|
|
350
|
+
m_Enabled: 1
|
|
351
|
+
m_EditorHideFlags: 0
|
|
352
|
+
m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3}
|
|
353
|
+
m_Name:
|
|
354
|
+
m_EditorClassIdentifier:
|
|
355
|
+
m_Material: {fileID: 0}
|
|
356
|
+
m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1}
|
|
357
|
+
m_RaycastTarget: 1
|
|
358
|
+
m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
|
|
359
|
+
m_Maskable: 1
|
|
360
|
+
m_OnCullStateChanged:
|
|
361
|
+
m_PersistentCalls:
|
|
362
|
+
m_Calls: []
|
|
363
|
+
m_FontData:
|
|
364
|
+
m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
|
|
365
|
+
m_FontSize: 83
|
|
366
|
+
m_FontStyle: 0
|
|
367
|
+
m_BestFit: 0
|
|
368
|
+
m_MinSize: 10
|
|
369
|
+
m_MaxSize: 115
|
|
370
|
+
m_Alignment: 4
|
|
371
|
+
m_AlignByGeometry: 0
|
|
372
|
+
m_RichText: 1
|
|
373
|
+
m_HorizontalOverflow: 0
|
|
374
|
+
m_VerticalOverflow: 0
|
|
375
|
+
m_LineSpacing: 1
|
|
376
|
+
m_Text: SCAN
|
|
377
|
+
--- !u!222 &550198162
|
|
378
|
+
CanvasRenderer:
|
|
379
|
+
m_ObjectHideFlags: 0
|
|
380
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
381
|
+
m_PrefabInstance: {fileID: 0}
|
|
382
|
+
m_PrefabAsset: {fileID: 0}
|
|
383
|
+
m_GameObject: {fileID: 550198159}
|
|
384
|
+
m_CullTransparentMesh: 1
|
|
385
|
+
--- !u!1 &647459034
|
|
386
|
+
GameObject:
|
|
387
|
+
m_ObjectHideFlags: 0
|
|
388
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
389
|
+
m_PrefabInstance: {fileID: 0}
|
|
390
|
+
m_PrefabAsset: {fileID: 0}
|
|
391
|
+
serializedVersion: 6
|
|
392
|
+
m_Component:
|
|
393
|
+
- component: {fileID: 647459035}
|
|
394
|
+
- component: {fileID: 647459037}
|
|
395
|
+
- component: {fileID: 647459036}
|
|
396
|
+
m_Layer: 0
|
|
397
|
+
m_Name: ScanKitDemo
|
|
398
|
+
m_TagString: Untagged
|
|
399
|
+
m_Icon: {fileID: 0}
|
|
400
|
+
m_NavMeshLayer: 0
|
|
401
|
+
m_StaticEditorFlags: 0
|
|
402
|
+
m_IsActive: 1
|
|
403
|
+
--- !u!4 &647459035
|
|
404
|
+
Transform:
|
|
405
|
+
m_ObjectHideFlags: 0
|
|
406
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
407
|
+
m_PrefabInstance: {fileID: 0}
|
|
408
|
+
m_PrefabAsset: {fileID: 0}
|
|
409
|
+
m_GameObject: {fileID: 647459034}
|
|
410
|
+
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
|
411
|
+
m_LocalPosition: {x: 0, y: 0, z: 0}
|
|
412
|
+
m_LocalScale: {x: 1, y: 1, z: 1}
|
|
413
|
+
m_Children: []
|
|
414
|
+
m_Father: {fileID: 0}
|
|
415
|
+
m_RootOrder: 4
|
|
416
|
+
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
|
417
|
+
--- !u!114 &647459036
|
|
418
|
+
MonoBehaviour:
|
|
419
|
+
m_ObjectHideFlags: 0
|
|
420
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
421
|
+
m_PrefabInstance: {fileID: 0}
|
|
422
|
+
m_PrefabAsset: {fileID: 0}
|
|
423
|
+
m_GameObject: {fileID: 647459034}
|
|
424
|
+
m_Enabled: 1
|
|
425
|
+
m_EditorHideFlags: 0
|
|
426
|
+
m_Script: {fileID: 11500000, guid: e731671dc08e76a4ab3db36cde3861be, type: 3}
|
|
427
|
+
m_Name:
|
|
428
|
+
m_EditorClassIdentifier:
|
|
429
|
+
--- !u!114 &647459037
|
|
430
|
+
MonoBehaviour:
|
|
431
|
+
m_ObjectHideFlags: 0
|
|
432
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
433
|
+
m_PrefabInstance: {fileID: 0}
|
|
434
|
+
m_PrefabAsset: {fileID: 0}
|
|
435
|
+
m_GameObject: {fileID: 647459034}
|
|
436
|
+
m_Enabled: 1
|
|
437
|
+
m_EditorHideFlags: 0
|
|
438
|
+
m_Script: {fileID: 11500000, guid: 4ebd2ff7fb8eeea43aa13f62159f04d9, type: 3}
|
|
439
|
+
m_Name:
|
|
440
|
+
m_EditorClassIdentifier:
|
|
441
|
+
--- !u!1 &748683066
|
|
442
|
+
GameObject:
|
|
443
|
+
m_ObjectHideFlags: 0
|
|
444
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
445
|
+
m_PrefabInstance: {fileID: 0}
|
|
446
|
+
m_PrefabAsset: {fileID: 0}
|
|
447
|
+
serializedVersion: 6
|
|
448
|
+
m_Component:
|
|
449
|
+
- component: {fileID: 748683068}
|
|
450
|
+
- component: {fileID: 748683067}
|
|
451
|
+
m_Layer: 0
|
|
452
|
+
m_Name: Directional Light
|
|
453
|
+
m_TagString: Untagged
|
|
454
|
+
m_Icon: {fileID: 0}
|
|
455
|
+
m_NavMeshLayer: 0
|
|
456
|
+
m_StaticEditorFlags: 0
|
|
457
|
+
m_IsActive: 1
|
|
458
|
+
--- !u!108 &748683067
|
|
459
|
+
Light:
|
|
460
|
+
m_ObjectHideFlags: 0
|
|
461
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
462
|
+
m_PrefabInstance: {fileID: 0}
|
|
463
|
+
m_PrefabAsset: {fileID: 0}
|
|
464
|
+
m_GameObject: {fileID: 748683066}
|
|
465
|
+
m_Enabled: 1
|
|
466
|
+
serializedVersion: 10
|
|
467
|
+
m_Type: 1
|
|
468
|
+
m_Shape: 0
|
|
469
|
+
m_Color: {r: 1, g: 0.95686275, b: 0.8392157, a: 1}
|
|
470
|
+
m_Intensity: 1
|
|
471
|
+
m_Range: 10
|
|
472
|
+
m_SpotAngle: 30
|
|
473
|
+
m_InnerSpotAngle: 21.80208
|
|
474
|
+
m_CookieSize: 10
|
|
475
|
+
m_Shadows:
|
|
476
|
+
m_Type: 2
|
|
477
|
+
m_Resolution: -1
|
|
478
|
+
m_CustomResolution: -1
|
|
479
|
+
m_Strength: 1
|
|
480
|
+
m_Bias: 0.05
|
|
481
|
+
m_NormalBias: 0.4
|
|
482
|
+
m_NearPlane: 0.2
|
|
483
|
+
m_CullingMatrixOverride:
|
|
484
|
+
e00: 1
|
|
485
|
+
e01: 0
|
|
486
|
+
e02: 0
|
|
487
|
+
e03: 0
|
|
488
|
+
e10: 0
|
|
489
|
+
e11: 1
|
|
490
|
+
e12: 0
|
|
491
|
+
e13: 0
|
|
492
|
+
e20: 0
|
|
493
|
+
e21: 0
|
|
494
|
+
e22: 1
|
|
495
|
+
e23: 0
|
|
496
|
+
e30: 0
|
|
497
|
+
e31: 0
|
|
498
|
+
e32: 0
|
|
499
|
+
e33: 1
|
|
500
|
+
m_UseCullingMatrixOverride: 0
|
|
501
|
+
m_Cookie: {fileID: 0}
|
|
502
|
+
m_DrawHalo: 0
|
|
503
|
+
m_Flare: {fileID: 0}
|
|
504
|
+
m_RenderMode: 0
|
|
505
|
+
m_CullingMask:
|
|
506
|
+
serializedVersion: 2
|
|
507
|
+
m_Bits: 4294967295
|
|
508
|
+
m_RenderingLayerMask: 1
|
|
509
|
+
m_Lightmapping: 4
|
|
510
|
+
m_LightShadowCasterMode: 0
|
|
511
|
+
m_AreaSize: {x: 1, y: 1}
|
|
512
|
+
m_BounceIntensity: 1
|
|
513
|
+
m_ColorTemperature: 6570
|
|
514
|
+
m_UseColorTemperature: 0
|
|
515
|
+
m_BoundingSphereOverride: {x: 0, y: 0, z: 0, w: 0}
|
|
516
|
+
m_UseBoundingSphereOverride: 0
|
|
517
|
+
m_UseViewFrustumForShadowCasterCull: 1
|
|
518
|
+
m_ShadowRadius: 0
|
|
519
|
+
m_ShadowAngle: 0
|
|
520
|
+
--- !u!4 &748683068
|
|
521
|
+
Transform:
|
|
522
|
+
m_ObjectHideFlags: 0
|
|
523
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
524
|
+
m_PrefabInstance: {fileID: 0}
|
|
525
|
+
m_PrefabAsset: {fileID: 0}
|
|
526
|
+
m_GameObject: {fileID: 748683066}
|
|
527
|
+
m_LocalRotation: {x: 0.40821788, y: -0.23456968, z: 0.10938163, w: 0.8754261}
|
|
528
|
+
m_LocalPosition: {x: 0, y: 3, z: 0}
|
|
529
|
+
m_LocalScale: {x: 1, y: 1, z: 1}
|
|
530
|
+
m_Children: []
|
|
531
|
+
m_Father: {fileID: 0}
|
|
532
|
+
m_RootOrder: 1
|
|
533
|
+
m_LocalEulerAnglesHint: {x: 50, y: -30, z: 0}
|
|
534
|
+
--- !u!1 &864992892
|
|
535
|
+
GameObject:
|
|
536
|
+
m_ObjectHideFlags: 0
|
|
537
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
538
|
+
m_PrefabInstance: {fileID: 0}
|
|
539
|
+
m_PrefabAsset: {fileID: 0}
|
|
540
|
+
serializedVersion: 6
|
|
541
|
+
m_Component:
|
|
542
|
+
- component: {fileID: 864992895}
|
|
543
|
+
- component: {fileID: 864992894}
|
|
544
|
+
- component: {fileID: 864992893}
|
|
545
|
+
m_Layer: 0
|
|
546
|
+
m_Name: Main Camera
|
|
547
|
+
m_TagString: MainCamera
|
|
548
|
+
m_Icon: {fileID: 0}
|
|
549
|
+
m_NavMeshLayer: 0
|
|
550
|
+
m_StaticEditorFlags: 0
|
|
551
|
+
m_IsActive: 1
|
|
552
|
+
--- !u!81 &864992893
|
|
553
|
+
AudioListener:
|
|
554
|
+
m_ObjectHideFlags: 0
|
|
555
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
556
|
+
m_PrefabInstance: {fileID: 0}
|
|
557
|
+
m_PrefabAsset: {fileID: 0}
|
|
558
|
+
m_GameObject: {fileID: 864992892}
|
|
559
|
+
m_Enabled: 1
|
|
560
|
+
--- !u!20 &864992894
|
|
561
|
+
Camera:
|
|
562
|
+
m_ObjectHideFlags: 0
|
|
563
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
564
|
+
m_PrefabInstance: {fileID: 0}
|
|
565
|
+
m_PrefabAsset: {fileID: 0}
|
|
566
|
+
m_GameObject: {fileID: 864992892}
|
|
567
|
+
m_Enabled: 1
|
|
568
|
+
serializedVersion: 2
|
|
569
|
+
m_ClearFlags: 1
|
|
570
|
+
m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0}
|
|
571
|
+
m_projectionMatrixMode: 1
|
|
572
|
+
m_GateFitMode: 2
|
|
573
|
+
m_FOVAxisMode: 0
|
|
574
|
+
m_SensorSize: {x: 36, y: 24}
|
|
575
|
+
m_LensShift: {x: 0, y: 0}
|
|
576
|
+
m_FocalLength: 50
|
|
577
|
+
m_NormalizedViewPortRect:
|
|
578
|
+
serializedVersion: 2
|
|
579
|
+
x: 0
|
|
580
|
+
y: 0
|
|
581
|
+
width: 1
|
|
582
|
+
height: 1
|
|
583
|
+
near clip plane: 0.3
|
|
584
|
+
far clip plane: 1000
|
|
585
|
+
field of view: 60
|
|
586
|
+
orthographic: 0
|
|
587
|
+
orthographic size: 5
|
|
588
|
+
m_Depth: -1
|
|
589
|
+
m_CullingMask:
|
|
590
|
+
serializedVersion: 2
|
|
591
|
+
m_Bits: 4294967295
|
|
592
|
+
m_RenderingPath: -1
|
|
593
|
+
m_TargetTexture: {fileID: 0}
|
|
594
|
+
m_TargetDisplay: 0
|
|
595
|
+
m_TargetEye: 3
|
|
596
|
+
m_HDR: 1
|
|
597
|
+
m_AllowMSAA: 1
|
|
598
|
+
m_AllowDynamicResolution: 0
|
|
599
|
+
m_ForceIntoRT: 0
|
|
600
|
+
m_OcclusionCulling: 1
|
|
601
|
+
m_StereoConvergence: 10
|
|
602
|
+
m_StereoSeparation: 0.022
|
|
603
|
+
--- !u!4 &864992895
|
|
604
|
+
Transform:
|
|
605
|
+
m_ObjectHideFlags: 0
|
|
606
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
607
|
+
m_PrefabInstance: {fileID: 0}
|
|
608
|
+
m_PrefabAsset: {fileID: 0}
|
|
609
|
+
m_GameObject: {fileID: 864992892}
|
|
610
|
+
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
|
611
|
+
m_LocalPosition: {x: 0, y: 1, z: -10}
|
|
612
|
+
m_LocalScale: {x: 1, y: 1, z: 1}
|
|
613
|
+
m_Children: []
|
|
614
|
+
m_Father: {fileID: 0}
|
|
615
|
+
m_RootOrder: 0
|
|
616
|
+
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
|
617
|
+
--- !u!1 &990930658
|
|
618
|
+
GameObject:
|
|
619
|
+
m_ObjectHideFlags: 0
|
|
620
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
621
|
+
m_PrefabInstance: {fileID: 0}
|
|
622
|
+
m_PrefabAsset: {fileID: 0}
|
|
623
|
+
serializedVersion: 6
|
|
624
|
+
m_Component:
|
|
625
|
+
- component: {fileID: 990930659}
|
|
626
|
+
- component: {fileID: 990930662}
|
|
627
|
+
- component: {fileID: 990930661}
|
|
628
|
+
- component: {fileID: 990930660}
|
|
629
|
+
m_Layer: 5
|
|
630
|
+
m_Name: BtnScan
|
|
631
|
+
m_TagString: Untagged
|
|
632
|
+
m_Icon: {fileID: 0}
|
|
633
|
+
m_NavMeshLayer: 0
|
|
634
|
+
m_StaticEditorFlags: 0
|
|
635
|
+
m_IsActive: 1
|
|
636
|
+
--- !u!224 &990930659
|
|
637
|
+
RectTransform:
|
|
638
|
+
m_ObjectHideFlags: 0
|
|
639
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
640
|
+
m_PrefabInstance: {fileID: 0}
|
|
641
|
+
m_PrefabAsset: {fileID: 0}
|
|
642
|
+
m_GameObject: {fileID: 990930658}
|
|
643
|
+
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
|
644
|
+
m_LocalPosition: {x: 0, y: 0, z: 0}
|
|
645
|
+
m_LocalScale: {x: 1, y: 1, z: 1}
|
|
646
|
+
m_Children:
|
|
647
|
+
- {fileID: 550198160}
|
|
648
|
+
m_Father: {fileID: 237152099}
|
|
649
|
+
m_RootOrder: 0
|
|
650
|
+
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
|
651
|
+
m_AnchorMin: {x: 0.5, y: 0.5}
|
|
652
|
+
m_AnchorMax: {x: 0.5, y: 0.5}
|
|
653
|
+
m_AnchoredPosition: {x: 0, y: 0}
|
|
654
|
+
m_SizeDelta: {x: 600, y: 150}
|
|
655
|
+
m_Pivot: {x: 0.5, y: 0.5}
|
|
656
|
+
--- !u!114 &990930660
|
|
657
|
+
MonoBehaviour:
|
|
658
|
+
m_ObjectHideFlags: 0
|
|
659
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
660
|
+
m_PrefabInstance: {fileID: 0}
|
|
661
|
+
m_PrefabAsset: {fileID: 0}
|
|
662
|
+
m_GameObject: {fileID: 990930658}
|
|
663
|
+
m_Enabled: 1
|
|
664
|
+
m_EditorHideFlags: 0
|
|
665
|
+
m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3}
|
|
666
|
+
m_Name:
|
|
667
|
+
m_EditorClassIdentifier:
|
|
668
|
+
m_Navigation:
|
|
669
|
+
m_Mode: 3
|
|
670
|
+
m_WrapAround: 0
|
|
671
|
+
m_SelectOnUp: {fileID: 0}
|
|
672
|
+
m_SelectOnDown: {fileID: 0}
|
|
673
|
+
m_SelectOnLeft: {fileID: 0}
|
|
674
|
+
m_SelectOnRight: {fileID: 0}
|
|
675
|
+
m_Transition: 1
|
|
676
|
+
m_Colors:
|
|
677
|
+
m_NormalColor: {r: 1, g: 1, b: 1, a: 1}
|
|
678
|
+
m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
|
|
679
|
+
m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1}
|
|
680
|
+
m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
|
|
681
|
+
m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608}
|
|
682
|
+
m_ColorMultiplier: 1
|
|
683
|
+
m_FadeDuration: 0.1
|
|
684
|
+
m_SpriteState:
|
|
685
|
+
m_HighlightedSprite: {fileID: 0}
|
|
686
|
+
m_PressedSprite: {fileID: 0}
|
|
687
|
+
m_SelectedSprite: {fileID: 0}
|
|
688
|
+
m_DisabledSprite: {fileID: 0}
|
|
689
|
+
m_AnimationTriggers:
|
|
690
|
+
m_NormalTrigger: Normal
|
|
691
|
+
m_HighlightedTrigger: Highlighted
|
|
692
|
+
m_PressedTrigger: Pressed
|
|
693
|
+
m_SelectedTrigger: Selected
|
|
694
|
+
m_DisabledTrigger: Disabled
|
|
695
|
+
m_Interactable: 1
|
|
696
|
+
m_TargetGraphic: {fileID: 990930661}
|
|
697
|
+
m_OnClick:
|
|
698
|
+
m_PersistentCalls:
|
|
699
|
+
m_Calls: []
|
|
700
|
+
--- !u!114 &990930661
|
|
701
|
+
MonoBehaviour:
|
|
702
|
+
m_ObjectHideFlags: 0
|
|
703
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
704
|
+
m_PrefabInstance: {fileID: 0}
|
|
705
|
+
m_PrefabAsset: {fileID: 0}
|
|
706
|
+
m_GameObject: {fileID: 990930658}
|
|
707
|
+
m_Enabled: 1
|
|
708
|
+
m_EditorHideFlags: 0
|
|
709
|
+
m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
|
|
710
|
+
m_Name:
|
|
711
|
+
m_EditorClassIdentifier:
|
|
712
|
+
m_Material: {fileID: 0}
|
|
713
|
+
m_Color: {r: 1, g: 1, b: 1, a: 1}
|
|
714
|
+
m_RaycastTarget: 1
|
|
715
|
+
m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
|
|
716
|
+
m_Maskable: 1
|
|
717
|
+
m_OnCullStateChanged:
|
|
718
|
+
m_PersistentCalls:
|
|
719
|
+
m_Calls: []
|
|
720
|
+
m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0}
|
|
721
|
+
m_Type: 1
|
|
722
|
+
m_PreserveAspect: 0
|
|
723
|
+
m_FillCenter: 1
|
|
724
|
+
m_FillMethod: 4
|
|
725
|
+
m_FillAmount: 1
|
|
726
|
+
m_FillClockwise: 1
|
|
727
|
+
m_FillOrigin: 0
|
|
728
|
+
m_UseSpriteMesh: 0
|
|
729
|
+
m_PixelsPerUnitMultiplier: 1
|
|
730
|
+
--- !u!222 &990930662
|
|
731
|
+
CanvasRenderer:
|
|
732
|
+
m_ObjectHideFlags: 0
|
|
733
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
734
|
+
m_PrefabInstance: {fileID: 0}
|
|
735
|
+
m_PrefabAsset: {fileID: 0}
|
|
736
|
+
m_GameObject: {fileID: 990930658}
|
|
737
|
+
m_CullTransparentMesh: 1
|
|
738
|
+
--- !u!1 &1136961763
|
|
739
|
+
GameObject:
|
|
740
|
+
m_ObjectHideFlags: 0
|
|
741
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
742
|
+
m_PrefabInstance: {fileID: 0}
|
|
743
|
+
m_PrefabAsset: {fileID: 0}
|
|
744
|
+
serializedVersion: 6
|
|
745
|
+
m_Component:
|
|
746
|
+
- component: {fileID: 1136961766}
|
|
747
|
+
- component: {fileID: 1136961765}
|
|
748
|
+
- component: {fileID: 1136961764}
|
|
749
|
+
m_Layer: 0
|
|
750
|
+
m_Name: EventSystem
|
|
751
|
+
m_TagString: Untagged
|
|
752
|
+
m_Icon: {fileID: 0}
|
|
753
|
+
m_NavMeshLayer: 0
|
|
754
|
+
m_StaticEditorFlags: 0
|
|
755
|
+
m_IsActive: 1
|
|
756
|
+
--- !u!114 &1136961764
|
|
757
|
+
MonoBehaviour:
|
|
758
|
+
m_ObjectHideFlags: 0
|
|
759
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
760
|
+
m_PrefabInstance: {fileID: 0}
|
|
761
|
+
m_PrefabAsset: {fileID: 0}
|
|
762
|
+
m_GameObject: {fileID: 1136961763}
|
|
763
|
+
m_Enabled: 1
|
|
764
|
+
m_EditorHideFlags: 0
|
|
765
|
+
m_Script: {fileID: 11500000, guid: 4f231c4fb786f3946a6b90b886c48677, type: 3}
|
|
766
|
+
m_Name:
|
|
767
|
+
m_EditorClassIdentifier:
|
|
768
|
+
m_HorizontalAxis: Horizontal
|
|
769
|
+
m_VerticalAxis: Vertical
|
|
770
|
+
m_SubmitButton: Submit
|
|
771
|
+
m_CancelButton: Cancel
|
|
772
|
+
m_InputActionsPerSecond: 10
|
|
773
|
+
m_RepeatDelay: 0.5
|
|
774
|
+
m_ForceModuleActive: 0
|
|
775
|
+
--- !u!114 &1136961765
|
|
776
|
+
MonoBehaviour:
|
|
777
|
+
m_ObjectHideFlags: 0
|
|
778
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
779
|
+
m_PrefabInstance: {fileID: 0}
|
|
780
|
+
m_PrefabAsset: {fileID: 0}
|
|
781
|
+
m_GameObject: {fileID: 1136961763}
|
|
782
|
+
m_Enabled: 1
|
|
783
|
+
m_EditorHideFlags: 0
|
|
784
|
+
m_Script: {fileID: 11500000, guid: 76c392e42b5098c458856cdf6ecaaaa1, type: 3}
|
|
785
|
+
m_Name:
|
|
786
|
+
m_EditorClassIdentifier:
|
|
787
|
+
m_FirstSelected: {fileID: 0}
|
|
788
|
+
m_sendNavigationEvents: 1
|
|
789
|
+
m_DragThreshold: 10
|
|
790
|
+
--- !u!4 &1136961766
|
|
791
|
+
Transform:
|
|
792
|
+
m_ObjectHideFlags: 0
|
|
793
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
794
|
+
m_PrefabInstance: {fileID: 0}
|
|
795
|
+
m_PrefabAsset: {fileID: 0}
|
|
796
|
+
m_GameObject: {fileID: 1136961763}
|
|
797
|
+
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
|
798
|
+
m_LocalPosition: {x: 0, y: 0, z: 0}
|
|
799
|
+
m_LocalScale: {x: 1, y: 1, z: 1}
|
|
800
|
+
m_Children: []
|
|
801
|
+
m_Father: {fileID: 0}
|
|
802
|
+
m_RootOrder: 3
|
|
803
|
+
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|