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,355 @@
|
|
|
1
|
+
%YAML 1.1
|
|
2
|
+
%TAG !u! tag:unity3d.com,2011:
|
|
3
|
+
--- !u!1 &742459183440729058
|
|
4
|
+
GameObject:
|
|
5
|
+
m_ObjectHideFlags: 0
|
|
6
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
7
|
+
m_PrefabInstance: {fileID: 0}
|
|
8
|
+
m_PrefabAsset: {fileID: 0}
|
|
9
|
+
serializedVersion: 6
|
|
10
|
+
m_Component:
|
|
11
|
+
- component: {fileID: 742459183440729059}
|
|
12
|
+
- component: {fileID: 742459183440729061}
|
|
13
|
+
- component: {fileID: 742459183440729060}
|
|
14
|
+
m_Layer: 5
|
|
15
|
+
m_Name: Text
|
|
16
|
+
m_TagString: Untagged
|
|
17
|
+
m_Icon: {fileID: 0}
|
|
18
|
+
m_NavMeshLayer: 0
|
|
19
|
+
m_StaticEditorFlags: 0
|
|
20
|
+
m_IsActive: 1
|
|
21
|
+
--- !u!224 &742459183440729059
|
|
22
|
+
RectTransform:
|
|
23
|
+
m_ObjectHideFlags: 0
|
|
24
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
25
|
+
m_PrefabInstance: {fileID: 0}
|
|
26
|
+
m_PrefabAsset: {fileID: 0}
|
|
27
|
+
m_GameObject: {fileID: 742459183440729058}
|
|
28
|
+
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
|
29
|
+
m_LocalPosition: {x: 0, y: 0, z: 0}
|
|
30
|
+
m_LocalScale: {x: 1, y: 1, z: 1}
|
|
31
|
+
m_ConstrainProportionsScale: 0
|
|
32
|
+
m_Children: []
|
|
33
|
+
m_Father: {fileID: 742459185063889593}
|
|
34
|
+
m_RootOrder: 0
|
|
35
|
+
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
|
36
|
+
m_AnchorMin: {x: 0, y: 0}
|
|
37
|
+
m_AnchorMax: {x: 1, y: 1}
|
|
38
|
+
m_AnchoredPosition: {x: 33.25, y: 0}
|
|
39
|
+
m_SizeDelta: {x: -66.501, y: 0}
|
|
40
|
+
m_Pivot: {x: 0.5, y: 0.5}
|
|
41
|
+
--- !u!222 &742459183440729061
|
|
42
|
+
CanvasRenderer:
|
|
43
|
+
m_ObjectHideFlags: 0
|
|
44
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
45
|
+
m_PrefabInstance: {fileID: 0}
|
|
46
|
+
m_PrefabAsset: {fileID: 0}
|
|
47
|
+
m_GameObject: {fileID: 742459183440729058}
|
|
48
|
+
m_CullTransparentMesh: 0
|
|
49
|
+
--- !u!114 &742459183440729060
|
|
50
|
+
MonoBehaviour:
|
|
51
|
+
m_ObjectHideFlags: 0
|
|
52
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
53
|
+
m_PrefabInstance: {fileID: 0}
|
|
54
|
+
m_PrefabAsset: {fileID: 0}
|
|
55
|
+
m_GameObject: {fileID: 742459183440729058}
|
|
56
|
+
m_Enabled: 1
|
|
57
|
+
m_EditorHideFlags: 0
|
|
58
|
+
m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3}
|
|
59
|
+
m_Name:
|
|
60
|
+
m_EditorClassIdentifier:
|
|
61
|
+
m_Material: {fileID: 0}
|
|
62
|
+
m_Color: {r: 1, g: 1, b: 1, a: 1}
|
|
63
|
+
m_RaycastTarget: 1
|
|
64
|
+
m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
|
|
65
|
+
m_Maskable: 1
|
|
66
|
+
m_OnCullStateChanged:
|
|
67
|
+
m_PersistentCalls:
|
|
68
|
+
m_Calls: []
|
|
69
|
+
m_FontData:
|
|
70
|
+
m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
|
|
71
|
+
m_FontSize: 48
|
|
72
|
+
m_FontStyle: 0
|
|
73
|
+
m_BestFit: 0
|
|
74
|
+
m_MinSize: 3
|
|
75
|
+
m_MaxSize: 88
|
|
76
|
+
m_Alignment: 4
|
|
77
|
+
m_AlignByGeometry: 0
|
|
78
|
+
m_RichText: 1
|
|
79
|
+
m_HorizontalOverflow: 0
|
|
80
|
+
m_VerticalOverflow: 0
|
|
81
|
+
m_LineSpacing: 1
|
|
82
|
+
m_Text: Sign in with HUAWEI ID
|
|
83
|
+
--- !u!1 &742459185063889592
|
|
84
|
+
GameObject:
|
|
85
|
+
m_ObjectHideFlags: 0
|
|
86
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
87
|
+
m_PrefabInstance: {fileID: 0}
|
|
88
|
+
m_PrefabAsset: {fileID: 0}
|
|
89
|
+
serializedVersion: 6
|
|
90
|
+
m_Component:
|
|
91
|
+
- component: {fileID: 742459185063889593}
|
|
92
|
+
- component: {fileID: 742459185063889596}
|
|
93
|
+
- component: {fileID: 742459185063889595}
|
|
94
|
+
- component: {fileID: 742459185063889594}
|
|
95
|
+
m_Layer: 5
|
|
96
|
+
m_Name: HuaweiIDButton
|
|
97
|
+
m_TagString: Untagged
|
|
98
|
+
m_Icon: {fileID: 0}
|
|
99
|
+
m_NavMeshLayer: 0
|
|
100
|
+
m_StaticEditorFlags: 0
|
|
101
|
+
m_IsActive: 1
|
|
102
|
+
--- !u!224 &742459185063889593
|
|
103
|
+
RectTransform:
|
|
104
|
+
m_ObjectHideFlags: 0
|
|
105
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
106
|
+
m_PrefabInstance: {fileID: 0}
|
|
107
|
+
m_PrefabAsset: {fileID: 0}
|
|
108
|
+
m_GameObject: {fileID: 742459185063889592}
|
|
109
|
+
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
|
|
110
|
+
m_LocalPosition: {x: 0, y: 0, z: -35.579742}
|
|
111
|
+
m_LocalScale: {x: 0.5882699, y: 0.5882699, z: 0.5882699}
|
|
112
|
+
m_ConstrainProportionsScale: 0
|
|
113
|
+
m_Children:
|
|
114
|
+
- {fileID: 742459183440729059}
|
|
115
|
+
- {fileID: 3587682690541350981}
|
|
116
|
+
m_Father: {fileID: 0}
|
|
117
|
+
m_RootOrder: 0
|
|
118
|
+
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
|
119
|
+
m_AnchorMin: {x: 0.5, y: 0.5}
|
|
120
|
+
m_AnchorMax: {x: 0.5, y: 0.5}
|
|
121
|
+
m_AnchoredPosition: {x: 0, y: 0}
|
|
122
|
+
m_SizeDelta: {x: 720, y: 96}
|
|
123
|
+
m_Pivot: {x: 0.5, y: 0.5}
|
|
124
|
+
--- !u!222 &742459185063889596
|
|
125
|
+
CanvasRenderer:
|
|
126
|
+
m_ObjectHideFlags: 0
|
|
127
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
128
|
+
m_PrefabInstance: {fileID: 0}
|
|
129
|
+
m_PrefabAsset: {fileID: 0}
|
|
130
|
+
m_GameObject: {fileID: 742459185063889592}
|
|
131
|
+
m_CullTransparentMesh: 0
|
|
132
|
+
--- !u!114 &742459185063889595
|
|
133
|
+
MonoBehaviour:
|
|
134
|
+
m_ObjectHideFlags: 0
|
|
135
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
136
|
+
m_PrefabInstance: {fileID: 0}
|
|
137
|
+
m_PrefabAsset: {fileID: 0}
|
|
138
|
+
m_GameObject: {fileID: 742459185063889592}
|
|
139
|
+
m_Enabled: 1
|
|
140
|
+
m_EditorHideFlags: 0
|
|
141
|
+
m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
|
|
142
|
+
m_Name:
|
|
143
|
+
m_EditorClassIdentifier:
|
|
144
|
+
m_Material: {fileID: 0}
|
|
145
|
+
m_Color: {r: 0.8078432, g: 0.054901965, b: 0.1764706, a: 1}
|
|
146
|
+
m_RaycastTarget: 1
|
|
147
|
+
m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
|
|
148
|
+
m_Maskable: 1
|
|
149
|
+
m_OnCullStateChanged:
|
|
150
|
+
m_PersistentCalls:
|
|
151
|
+
m_Calls: []
|
|
152
|
+
m_Sprite: {fileID: 21300000, guid: 8b5e38c4eec60014fa43067904ddbe77, type: 3}
|
|
153
|
+
m_Type: 1
|
|
154
|
+
m_PreserveAspect: 0
|
|
155
|
+
m_FillCenter: 1
|
|
156
|
+
m_FillMethod: 4
|
|
157
|
+
m_FillAmount: 1
|
|
158
|
+
m_FillClockwise: 1
|
|
159
|
+
m_FillOrigin: 0
|
|
160
|
+
m_UseSpriteMesh: 0
|
|
161
|
+
m_PixelsPerUnitMultiplier: 1
|
|
162
|
+
--- !u!114 &742459185063889594
|
|
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: 742459185063889592}
|
|
169
|
+
m_Enabled: 1
|
|
170
|
+
m_EditorHideFlags: 0
|
|
171
|
+
m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3}
|
|
172
|
+
m_Name:
|
|
173
|
+
m_EditorClassIdentifier:
|
|
174
|
+
m_Navigation:
|
|
175
|
+
m_Mode: 3
|
|
176
|
+
m_WrapAround: 0
|
|
177
|
+
m_SelectOnUp: {fileID: 0}
|
|
178
|
+
m_SelectOnDown: {fileID: 0}
|
|
179
|
+
m_SelectOnLeft: {fileID: 0}
|
|
180
|
+
m_SelectOnRight: {fileID: 0}
|
|
181
|
+
m_Transition: 1
|
|
182
|
+
m_Colors:
|
|
183
|
+
m_NormalColor: {r: 1, g: 1, b: 1, a: 1}
|
|
184
|
+
m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
|
|
185
|
+
m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1}
|
|
186
|
+
m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
|
|
187
|
+
m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608}
|
|
188
|
+
m_ColorMultiplier: 1
|
|
189
|
+
m_FadeDuration: 0.1
|
|
190
|
+
m_SpriteState:
|
|
191
|
+
m_HighlightedSprite: {fileID: 0}
|
|
192
|
+
m_PressedSprite: {fileID: 0}
|
|
193
|
+
m_SelectedSprite: {fileID: 0}
|
|
194
|
+
m_DisabledSprite: {fileID: 0}
|
|
195
|
+
m_AnimationTriggers:
|
|
196
|
+
m_NormalTrigger: Normal
|
|
197
|
+
m_HighlightedTrigger: Highlighted
|
|
198
|
+
m_PressedTrigger: Pressed
|
|
199
|
+
m_SelectedTrigger: Highlighted
|
|
200
|
+
m_DisabledTrigger: Disabled
|
|
201
|
+
m_Interactable: 1
|
|
202
|
+
m_TargetGraphic: {fileID: 742459185063889595}
|
|
203
|
+
m_OnClick:
|
|
204
|
+
m_PersistentCalls:
|
|
205
|
+
m_Calls: []
|
|
206
|
+
--- !u!1 &1089364371088334609
|
|
207
|
+
GameObject:
|
|
208
|
+
m_ObjectHideFlags: 0
|
|
209
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
210
|
+
m_PrefabInstance: {fileID: 0}
|
|
211
|
+
m_PrefabAsset: {fileID: 0}
|
|
212
|
+
serializedVersion: 6
|
|
213
|
+
m_Component:
|
|
214
|
+
- component: {fileID: 3587682690541350981}
|
|
215
|
+
- component: {fileID: 7994099895619854872}
|
|
216
|
+
- component: {fileID: 4634289098105653238}
|
|
217
|
+
m_Layer: 5
|
|
218
|
+
m_Name: HuaweiImage
|
|
219
|
+
m_TagString: Untagged
|
|
220
|
+
m_Icon: {fileID: 0}
|
|
221
|
+
m_NavMeshLayer: 0
|
|
222
|
+
m_StaticEditorFlags: 0
|
|
223
|
+
m_IsActive: 1
|
|
224
|
+
--- !u!224 &3587682690541350981
|
|
225
|
+
RectTransform:
|
|
226
|
+
m_ObjectHideFlags: 0
|
|
227
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
228
|
+
m_PrefabInstance: {fileID: 0}
|
|
229
|
+
m_PrefabAsset: {fileID: 0}
|
|
230
|
+
m_GameObject: {fileID: 1089364371088334609}
|
|
231
|
+
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
|
232
|
+
m_LocalPosition: {x: 0, y: 0, z: 0}
|
|
233
|
+
m_LocalScale: {x: 1, y: 1, z: 1}
|
|
234
|
+
m_ConstrainProportionsScale: 0
|
|
235
|
+
m_Children:
|
|
236
|
+
- {fileID: 6489492402804772981}
|
|
237
|
+
m_Father: {fileID: 742459185063889593}
|
|
238
|
+
m_RootOrder: 1
|
|
239
|
+
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
|
240
|
+
m_AnchorMin: {x: 0.5, y: 0.5}
|
|
241
|
+
m_AnchorMax: {x: 0.5, y: 0.5}
|
|
242
|
+
m_AnchoredPosition: {x: -272, y: -0.0000071392}
|
|
243
|
+
m_SizeDelta: {x: 56, y: 56}
|
|
244
|
+
m_Pivot: {x: 0.5, y: 0.5}
|
|
245
|
+
--- !u!222 &7994099895619854872
|
|
246
|
+
CanvasRenderer:
|
|
247
|
+
m_ObjectHideFlags: 0
|
|
248
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
249
|
+
m_PrefabInstance: {fileID: 0}
|
|
250
|
+
m_PrefabAsset: {fileID: 0}
|
|
251
|
+
m_GameObject: {fileID: 1089364371088334609}
|
|
252
|
+
m_CullTransparentMesh: 1
|
|
253
|
+
--- !u!114 &4634289098105653238
|
|
254
|
+
MonoBehaviour:
|
|
255
|
+
m_ObjectHideFlags: 0
|
|
256
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
257
|
+
m_PrefabInstance: {fileID: 0}
|
|
258
|
+
m_PrefabAsset: {fileID: 0}
|
|
259
|
+
m_GameObject: {fileID: 1089364371088334609}
|
|
260
|
+
m_Enabled: 1
|
|
261
|
+
m_EditorHideFlags: 0
|
|
262
|
+
m_Script: {fileID: 11500000, guid: 1344c3c82d62a2a41a3576d8abb8e3ea, type: 3}
|
|
263
|
+
m_Name:
|
|
264
|
+
m_EditorClassIdentifier:
|
|
265
|
+
m_Material: {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0}
|
|
266
|
+
m_Color: {r: 1, g: 1, b: 1, a: 1}
|
|
267
|
+
m_RaycastTarget: 1
|
|
268
|
+
m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
|
|
269
|
+
m_Maskable: 1
|
|
270
|
+
m_OnCullStateChanged:
|
|
271
|
+
m_PersistentCalls:
|
|
272
|
+
m_Calls: []
|
|
273
|
+
m_Texture: {fileID: 2800000, guid: 2c9756f6d7e69604cbebc8e3eac9dc33, type: 3}
|
|
274
|
+
m_UVRect:
|
|
275
|
+
serializedVersion: 2
|
|
276
|
+
x: 0
|
|
277
|
+
y: 0
|
|
278
|
+
width: 1
|
|
279
|
+
height: 1
|
|
280
|
+
--- !u!1 &8965019964032820191
|
|
281
|
+
GameObject:
|
|
282
|
+
m_ObjectHideFlags: 0
|
|
283
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
284
|
+
m_PrefabInstance: {fileID: 0}
|
|
285
|
+
m_PrefabAsset: {fileID: 0}
|
|
286
|
+
serializedVersion: 6
|
|
287
|
+
m_Component:
|
|
288
|
+
- component: {fileID: 6489492402804772981}
|
|
289
|
+
- component: {fileID: 878317391718763393}
|
|
290
|
+
- component: {fileID: 407928967593458692}
|
|
291
|
+
m_Layer: 5
|
|
292
|
+
m_Name: Image
|
|
293
|
+
m_TagString: Untagged
|
|
294
|
+
m_Icon: {fileID: 0}
|
|
295
|
+
m_NavMeshLayer: 0
|
|
296
|
+
m_StaticEditorFlags: 0
|
|
297
|
+
m_IsActive: 1
|
|
298
|
+
--- !u!224 &6489492402804772981
|
|
299
|
+
RectTransform:
|
|
300
|
+
m_ObjectHideFlags: 0
|
|
301
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
302
|
+
m_PrefabInstance: {fileID: 0}
|
|
303
|
+
m_PrefabAsset: {fileID: 0}
|
|
304
|
+
m_GameObject: {fileID: 8965019964032820191}
|
|
305
|
+
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
|
306
|
+
m_LocalPosition: {x: 0, y: 0, z: 0}
|
|
307
|
+
m_LocalScale: {x: 1, y: 1, z: 1}
|
|
308
|
+
m_ConstrainProportionsScale: 0
|
|
309
|
+
m_Children: []
|
|
310
|
+
m_Father: {fileID: 3587682690541350981}
|
|
311
|
+
m_RootOrder: 0
|
|
312
|
+
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
|
313
|
+
m_AnchorMin: {x: 0.5, y: 0.5}
|
|
314
|
+
m_AnchorMax: {x: 0.5, y: 0.5}
|
|
315
|
+
m_AnchoredPosition: {x: 0, y: 0}
|
|
316
|
+
m_SizeDelta: {x: 100, y: 100}
|
|
317
|
+
m_Pivot: {x: 0.5, y: 0.5}
|
|
318
|
+
--- !u!222 &878317391718763393
|
|
319
|
+
CanvasRenderer:
|
|
320
|
+
m_ObjectHideFlags: 0
|
|
321
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
322
|
+
m_PrefabInstance: {fileID: 0}
|
|
323
|
+
m_PrefabAsset: {fileID: 0}
|
|
324
|
+
m_GameObject: {fileID: 8965019964032820191}
|
|
325
|
+
m_CullTransparentMesh: 1
|
|
326
|
+
--- !u!114 &407928967593458692
|
|
327
|
+
MonoBehaviour:
|
|
328
|
+
m_ObjectHideFlags: 0
|
|
329
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
330
|
+
m_PrefabInstance: {fileID: 0}
|
|
331
|
+
m_PrefabAsset: {fileID: 0}
|
|
332
|
+
m_GameObject: {fileID: 8965019964032820191}
|
|
333
|
+
m_Enabled: 1
|
|
334
|
+
m_EditorHideFlags: 0
|
|
335
|
+
m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
|
|
336
|
+
m_Name:
|
|
337
|
+
m_EditorClassIdentifier:
|
|
338
|
+
m_Material: {fileID: 0}
|
|
339
|
+
m_Color: {r: 1, g: 1, b: 1, a: 0}
|
|
340
|
+
m_RaycastTarget: 1
|
|
341
|
+
m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
|
|
342
|
+
m_Maskable: 1
|
|
343
|
+
m_OnCullStateChanged:
|
|
344
|
+
m_PersistentCalls:
|
|
345
|
+
m_Calls: []
|
|
346
|
+
m_Sprite: {fileID: 0}
|
|
347
|
+
m_Type: 0
|
|
348
|
+
m_PreserveAspect: 0
|
|
349
|
+
m_FillCenter: 1
|
|
350
|
+
m_FillMethod: 4
|
|
351
|
+
m_FillAmount: 1
|
|
352
|
+
m_FillClockwise: 1
|
|
353
|
+
m_FillOrigin: 0
|
|
354
|
+
m_UseSpriteMesh: 0
|
|
355
|
+
m_PixelsPerUnitMultiplier: 1
|
|
@@ -0,0 +1,274 @@
|
|
|
1
|
+
%YAML 1.1
|
|
2
|
+
%TAG !u! tag:unity3d.com,2011:
|
|
3
|
+
--- !u!1 &4916502072878412554
|
|
4
|
+
GameObject:
|
|
5
|
+
m_ObjectHideFlags: 0
|
|
6
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
7
|
+
m_PrefabInstance: {fileID: 0}
|
|
8
|
+
m_PrefabAsset: {fileID: 0}
|
|
9
|
+
serializedVersion: 6
|
|
10
|
+
m_Component:
|
|
11
|
+
- component: {fileID: 4324801120588727806}
|
|
12
|
+
- component: {fileID: 552277718782909876}
|
|
13
|
+
- component: {fileID: 2830605592549948712}
|
|
14
|
+
m_Layer: 5
|
|
15
|
+
m_Name: HuaweiImage
|
|
16
|
+
m_TagString: Untagged
|
|
17
|
+
m_Icon: {fileID: 0}
|
|
18
|
+
m_NavMeshLayer: 0
|
|
19
|
+
m_StaticEditorFlags: 0
|
|
20
|
+
m_IsActive: 1
|
|
21
|
+
--- !u!224 &4324801120588727806
|
|
22
|
+
RectTransform:
|
|
23
|
+
m_ObjectHideFlags: 0
|
|
24
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
25
|
+
m_PrefabInstance: {fileID: 0}
|
|
26
|
+
m_PrefabAsset: {fileID: 0}
|
|
27
|
+
m_GameObject: {fileID: 4916502072878412554}
|
|
28
|
+
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
|
29
|
+
m_LocalPosition: {x: 0, y: 0, z: 0}
|
|
30
|
+
m_LocalScale: {x: 1, y: 1, z: 1}
|
|
31
|
+
m_ConstrainProportionsScale: 0
|
|
32
|
+
m_Children:
|
|
33
|
+
- {fileID: 6671207480803524700}
|
|
34
|
+
m_Father: {fileID: 1756714844274730266}
|
|
35
|
+
m_RootOrder: 0
|
|
36
|
+
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
|
37
|
+
m_AnchorMin: {x: 0.5, y: 0.5}
|
|
38
|
+
m_AnchorMax: {x: 0.5, y: 0.5}
|
|
39
|
+
m_AnchoredPosition: {x: -0.000048161, y: 0.00000073522}
|
|
40
|
+
m_SizeDelta: {x: 64, y: 64}
|
|
41
|
+
m_Pivot: {x: 0.5, y: 0.5}
|
|
42
|
+
--- !u!222 &552277718782909876
|
|
43
|
+
CanvasRenderer:
|
|
44
|
+
m_ObjectHideFlags: 0
|
|
45
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
46
|
+
m_PrefabInstance: {fileID: 0}
|
|
47
|
+
m_PrefabAsset: {fileID: 0}
|
|
48
|
+
m_GameObject: {fileID: 4916502072878412554}
|
|
49
|
+
m_CullTransparentMesh: 1
|
|
50
|
+
--- !u!114 &2830605592549948712
|
|
51
|
+
MonoBehaviour:
|
|
52
|
+
m_ObjectHideFlags: 0
|
|
53
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
54
|
+
m_PrefabInstance: {fileID: 0}
|
|
55
|
+
m_PrefabAsset: {fileID: 0}
|
|
56
|
+
m_GameObject: {fileID: 4916502072878412554}
|
|
57
|
+
m_Enabled: 1
|
|
58
|
+
m_EditorHideFlags: 0
|
|
59
|
+
m_Script: {fileID: 11500000, guid: 1344c3c82d62a2a41a3576d8abb8e3ea, type: 3}
|
|
60
|
+
m_Name:
|
|
61
|
+
m_EditorClassIdentifier:
|
|
62
|
+
m_Material: {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0}
|
|
63
|
+
m_Color: {r: 1, g: 1, b: 1, a: 1}
|
|
64
|
+
m_RaycastTarget: 1
|
|
65
|
+
m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
|
|
66
|
+
m_Maskable: 1
|
|
67
|
+
m_OnCullStateChanged:
|
|
68
|
+
m_PersistentCalls:
|
|
69
|
+
m_Calls: []
|
|
70
|
+
m_Texture: {fileID: 2800000, guid: 2c9756f6d7e69604cbebc8e3eac9dc33, type: 3}
|
|
71
|
+
m_UVRect:
|
|
72
|
+
serializedVersion: 2
|
|
73
|
+
x: 0
|
|
74
|
+
y: 0
|
|
75
|
+
width: 1
|
|
76
|
+
height: 1
|
|
77
|
+
--- !u!1 &6700281680036302374
|
|
78
|
+
GameObject:
|
|
79
|
+
m_ObjectHideFlags: 0
|
|
80
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
81
|
+
m_PrefabInstance: {fileID: 0}
|
|
82
|
+
m_PrefabAsset: {fileID: 0}
|
|
83
|
+
serializedVersion: 6
|
|
84
|
+
m_Component:
|
|
85
|
+
- component: {fileID: 6671207480803524700}
|
|
86
|
+
- component: {fileID: 688261041454510316}
|
|
87
|
+
- component: {fileID: 3698378988244473294}
|
|
88
|
+
m_Layer: 5
|
|
89
|
+
m_Name: Image
|
|
90
|
+
m_TagString: Untagged
|
|
91
|
+
m_Icon: {fileID: 0}
|
|
92
|
+
m_NavMeshLayer: 0
|
|
93
|
+
m_StaticEditorFlags: 0
|
|
94
|
+
m_IsActive: 1
|
|
95
|
+
--- !u!224 &6671207480803524700
|
|
96
|
+
RectTransform:
|
|
97
|
+
m_ObjectHideFlags: 0
|
|
98
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
99
|
+
m_PrefabInstance: {fileID: 0}
|
|
100
|
+
m_PrefabAsset: {fileID: 0}
|
|
101
|
+
m_GameObject: {fileID: 6700281680036302374}
|
|
102
|
+
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
|
103
|
+
m_LocalPosition: {x: 0, y: 0, z: 0}
|
|
104
|
+
m_LocalScale: {x: 1, y: 1, z: 1}
|
|
105
|
+
m_ConstrainProportionsScale: 0
|
|
106
|
+
m_Children: []
|
|
107
|
+
m_Father: {fileID: 4324801120588727806}
|
|
108
|
+
m_RootOrder: 0
|
|
109
|
+
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
|
110
|
+
m_AnchorMin: {x: 0.5, y: 0.5}
|
|
111
|
+
m_AnchorMax: {x: 0.5, y: 0.5}
|
|
112
|
+
m_AnchoredPosition: {x: 7.518, y: 0}
|
|
113
|
+
m_SizeDelta: {x: 101.036, y: 100}
|
|
114
|
+
m_Pivot: {x: 0.5, y: 0.5}
|
|
115
|
+
--- !u!222 &688261041454510316
|
|
116
|
+
CanvasRenderer:
|
|
117
|
+
m_ObjectHideFlags: 0
|
|
118
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
119
|
+
m_PrefabInstance: {fileID: 0}
|
|
120
|
+
m_PrefabAsset: {fileID: 0}
|
|
121
|
+
m_GameObject: {fileID: 6700281680036302374}
|
|
122
|
+
m_CullTransparentMesh: 1
|
|
123
|
+
--- !u!114 &3698378988244473294
|
|
124
|
+
MonoBehaviour:
|
|
125
|
+
m_ObjectHideFlags: 0
|
|
126
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
127
|
+
m_PrefabInstance: {fileID: 0}
|
|
128
|
+
m_PrefabAsset: {fileID: 0}
|
|
129
|
+
m_GameObject: {fileID: 6700281680036302374}
|
|
130
|
+
m_Enabled: 1
|
|
131
|
+
m_EditorHideFlags: 0
|
|
132
|
+
m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
|
|
133
|
+
m_Name:
|
|
134
|
+
m_EditorClassIdentifier:
|
|
135
|
+
m_Material: {fileID: 0}
|
|
136
|
+
m_Color: {r: 1, g: 1, b: 1, a: 0}
|
|
137
|
+
m_RaycastTarget: 1
|
|
138
|
+
m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
|
|
139
|
+
m_Maskable: 1
|
|
140
|
+
m_OnCullStateChanged:
|
|
141
|
+
m_PersistentCalls:
|
|
142
|
+
m_Calls: []
|
|
143
|
+
m_Sprite: {fileID: 0}
|
|
144
|
+
m_Type: 0
|
|
145
|
+
m_PreserveAspect: 0
|
|
146
|
+
m_FillCenter: 1
|
|
147
|
+
m_FillMethod: 4
|
|
148
|
+
m_FillAmount: 1
|
|
149
|
+
m_FillClockwise: 1
|
|
150
|
+
m_FillOrigin: 0
|
|
151
|
+
m_UseSpriteMesh: 0
|
|
152
|
+
m_PixelsPerUnitMultiplier: 1
|
|
153
|
+
--- !u!1 &8569139826416383410
|
|
154
|
+
GameObject:
|
|
155
|
+
m_ObjectHideFlags: 0
|
|
156
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
157
|
+
m_PrefabInstance: {fileID: 0}
|
|
158
|
+
m_PrefabAsset: {fileID: 0}
|
|
159
|
+
serializedVersion: 6
|
|
160
|
+
m_Component:
|
|
161
|
+
- component: {fileID: 1756714844274730266}
|
|
162
|
+
- component: {fileID: 4862852753109623272}
|
|
163
|
+
- component: {fileID: 1190679392340528614}
|
|
164
|
+
- component: {fileID: 7826970684771905092}
|
|
165
|
+
m_Layer: 5
|
|
166
|
+
m_Name: HuaweiIDCircleButton
|
|
167
|
+
m_TagString: Untagged
|
|
168
|
+
m_Icon: {fileID: 0}
|
|
169
|
+
m_NavMeshLayer: 0
|
|
170
|
+
m_StaticEditorFlags: 0
|
|
171
|
+
m_IsActive: 1
|
|
172
|
+
--- !u!224 &1756714844274730266
|
|
173
|
+
RectTransform:
|
|
174
|
+
m_ObjectHideFlags: 0
|
|
175
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
176
|
+
m_PrefabInstance: {fileID: 0}
|
|
177
|
+
m_PrefabAsset: {fileID: 0}
|
|
178
|
+
m_GameObject: {fileID: 8569139826416383410}
|
|
179
|
+
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
|
|
180
|
+
m_LocalPosition: {x: 0, y: 0, z: -35.579742}
|
|
181
|
+
m_LocalScale: {x: 0.5882699, y: 0.5882699, z: 0.5882699}
|
|
182
|
+
m_ConstrainProportionsScale: 0
|
|
183
|
+
m_Children:
|
|
184
|
+
- {fileID: 4324801120588727806}
|
|
185
|
+
m_Father: {fileID: 0}
|
|
186
|
+
m_RootOrder: 0
|
|
187
|
+
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
|
188
|
+
m_AnchorMin: {x: 0.5, y: 0.5}
|
|
189
|
+
m_AnchorMax: {x: 0.5, y: 0.5}
|
|
190
|
+
m_AnchoredPosition: {x: 0, y: 0}
|
|
191
|
+
m_SizeDelta: {x: 128, y: 128}
|
|
192
|
+
m_Pivot: {x: 0.5, y: 0.5}
|
|
193
|
+
--- !u!222 &4862852753109623272
|
|
194
|
+
CanvasRenderer:
|
|
195
|
+
m_ObjectHideFlags: 0
|
|
196
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
197
|
+
m_PrefabInstance: {fileID: 0}
|
|
198
|
+
m_PrefabAsset: {fileID: 0}
|
|
199
|
+
m_GameObject: {fileID: 8569139826416383410}
|
|
200
|
+
m_CullTransparentMesh: 0
|
|
201
|
+
--- !u!114 &1190679392340528614
|
|
202
|
+
MonoBehaviour:
|
|
203
|
+
m_ObjectHideFlags: 0
|
|
204
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
205
|
+
m_PrefabInstance: {fileID: 0}
|
|
206
|
+
m_PrefabAsset: {fileID: 0}
|
|
207
|
+
m_GameObject: {fileID: 8569139826416383410}
|
|
208
|
+
m_Enabled: 1
|
|
209
|
+
m_EditorHideFlags: 0
|
|
210
|
+
m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
|
|
211
|
+
m_Name:
|
|
212
|
+
m_EditorClassIdentifier:
|
|
213
|
+
m_Material: {fileID: 0}
|
|
214
|
+
m_Color: {r: 0.8078432, g: 0.054901965, b: 0.1764706, a: 1}
|
|
215
|
+
m_RaycastTarget: 1
|
|
216
|
+
m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
|
|
217
|
+
m_Maskable: 1
|
|
218
|
+
m_OnCullStateChanged:
|
|
219
|
+
m_PersistentCalls:
|
|
220
|
+
m_Calls: []
|
|
221
|
+
m_Sprite: {fileID: 21300000, guid: 618cb66ce4c31c448b61d19ca1958c0c, type: 3}
|
|
222
|
+
m_Type: 1
|
|
223
|
+
m_PreserveAspect: 0
|
|
224
|
+
m_FillCenter: 1
|
|
225
|
+
m_FillMethod: 4
|
|
226
|
+
m_FillAmount: 1
|
|
227
|
+
m_FillClockwise: 1
|
|
228
|
+
m_FillOrigin: 0
|
|
229
|
+
m_UseSpriteMesh: 0
|
|
230
|
+
m_PixelsPerUnitMultiplier: 1
|
|
231
|
+
--- !u!114 &7826970684771905092
|
|
232
|
+
MonoBehaviour:
|
|
233
|
+
m_ObjectHideFlags: 0
|
|
234
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
235
|
+
m_PrefabInstance: {fileID: 0}
|
|
236
|
+
m_PrefabAsset: {fileID: 0}
|
|
237
|
+
m_GameObject: {fileID: 8569139826416383410}
|
|
238
|
+
m_Enabled: 1
|
|
239
|
+
m_EditorHideFlags: 0
|
|
240
|
+
m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3}
|
|
241
|
+
m_Name:
|
|
242
|
+
m_EditorClassIdentifier:
|
|
243
|
+
m_Navigation:
|
|
244
|
+
m_Mode: 3
|
|
245
|
+
m_WrapAround: 0
|
|
246
|
+
m_SelectOnUp: {fileID: 0}
|
|
247
|
+
m_SelectOnDown: {fileID: 0}
|
|
248
|
+
m_SelectOnLeft: {fileID: 0}
|
|
249
|
+
m_SelectOnRight: {fileID: 0}
|
|
250
|
+
m_Transition: 1
|
|
251
|
+
m_Colors:
|
|
252
|
+
m_NormalColor: {r: 1, g: 1, b: 1, a: 1}
|
|
253
|
+
m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
|
|
254
|
+
m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1}
|
|
255
|
+
m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
|
|
256
|
+
m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608}
|
|
257
|
+
m_ColorMultiplier: 1
|
|
258
|
+
m_FadeDuration: 0.1
|
|
259
|
+
m_SpriteState:
|
|
260
|
+
m_HighlightedSprite: {fileID: 0}
|
|
261
|
+
m_PressedSprite: {fileID: 0}
|
|
262
|
+
m_SelectedSprite: {fileID: 0}
|
|
263
|
+
m_DisabledSprite: {fileID: 0}
|
|
264
|
+
m_AnimationTriggers:
|
|
265
|
+
m_NormalTrigger: Normal
|
|
266
|
+
m_HighlightedTrigger: Highlighted
|
|
267
|
+
m_PressedTrigger: Pressed
|
|
268
|
+
m_SelectedTrigger: Highlighted
|
|
269
|
+
m_DisabledTrigger: Disabled
|
|
270
|
+
m_Interactable: 1
|
|
271
|
+
m_TargetGraphic: {fileID: 1190679392340528614}
|
|
272
|
+
m_OnClick:
|
|
273
|
+
m_PersistentCalls:
|
|
274
|
+
m_Calls: []
|