commit 8a23a295fc694e243110ae805eadedd66e312a09 Author: ci-gitlab Date: Mon Oct 23 15:17:41 2023 +0800 feat:update upm diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..74bd7f7 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,222 @@ +# ChangeLog + +## 3.13.0 +### Fixed Bugs +- Android & iOS: 支持新的 scope (basic_info & email) +- Android: 修复一些情况下的错误崩溃 +- iOS: 支持更安全的有端授权协议 + +## 3.11.1 + +### Fixed Bugs +- iOS: 修复登录模块对系统 URL 回调的使用方式 + +### Dependencies + +- TapTap.Common v3.11.1 + +## 3.11.0 + +### Dependencies + +- TapTap.Common v3.11.0 + +## 3.10.0 + +### Dependencies + +- TapTap.Common v3.10.0 + +## 3.9.0 + +### Dependencies + +- TapTap.Common v3.9.0 + +## 3.8.0 + +### Dependencies + +- TapTap.Common v3.8.0 + +## 3.7.1 + +### Dependencies + +- TapTap.Common v3.7.1 + +## 3.7.0 + +### Optimization and fixed bugs +- 添加获取互关列表接口 + +### Dependencies + +- TapTap.Common v3.7.0 + + +## 3.6.3 + +### Optimization and fixed bugs +- Android 尝试修复静态变量丢失的问题 + +### Dependencies + +- TapTap.Common v3.6.3 + +## 3.6.1 + +### Optimization and fixed bugs +- UI 优化 + +### Dependencies + +- TapTap.Common v3.6.1 + +## 3.6.0 + +### Optimization and fixed bugs + +- 优化未安装 iOS Support 时 Editor 编译问题 + +### Dependencies + +- TapTap.Common v3.6.0 + +## 3.5.2 + +### New Feature + +- 新增 PC Web 授权登录 + +### Dependencies + +- TapTap.Common v3.5.2 + +## 3.5.0 + +### Optimization and fixed bugs +- 内嵌 web 登录页面支持异形刘海屏的正常展示 + +### Dependencies + +- TapTap.Common v3.5.0 + +## 3.4.0 + +### Dependencies + +- TapTap.Common v3.4.0 + +## 3.3.0 + +### Optimization and fixed bugs + +- 优化 iOS Plist.info 修改方式,防止覆盖工程原有配置。 + +### Dependencies + +- TapTap.Common v3.3.0 + +## 3.2.1 + +### New Feature + +- 新增 TapTap 登录权限配置范围 + +### Dependencies + +- TapTap.Common v3.2.0 + +## 3.2.0 + +### New Feature + +- 支持 PC 端使用 TapTap 登录 + +### Dependencies + +- TapTap.Common v3.2.0 + +## 3.1.0 + +### Dependencies + +- TapTap.Common v3.1.0 + +## 3.0.0 + +### New Feature + +- 新增 TapTap OAuth 相关接口 + ``` + // 登陆 + TapLogin.Login(); + // 登出 + TapLogin.Logout(); + ``` +- 新增篝火测试资格 + ``` + var boolean = await TapLogin.GetTestQualification(); + ``` + +### Dependencies + +- TapTap.Common v3.0.0 + +## 2.1.7 + +### Optimization + +- 更新 iOS 拦截 openUrl 方式 + +### Dependencies + +- TapTap.Common v2.1.7 + +### 2.1.6 + +### Optimization and fixed bugs + +- 修复 TapTap 授权登录的一些 UI 问题 + +### Dependencies + +- TapTap.Common v2.1.6 + +### 2.1.5 + +### New Feature + +- 云玩内唤起 TapTap 客户端登陆 + +### 2.1.4 + +### Dependencies + +- TapTap.Common v2.1.4 + +### 2.1.3 + +### Dependencies + +- TapTap.Common v2.1.3 + +### 2.1.2 + +### Dependencies + +- TapTap.Common v2.1.2 + +## 2.1.1 + +### Dependencies + +- TapTap.Common v2.1.1 + +## 2.0.0 + +### Feature + +* TapTap Login + diff --git a/CHANGELOG.md.meta b/CHANGELOG.md.meta new file mode 100644 index 0000000..4a33cab --- /dev/null +++ b/CHANGELOG.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: eeb07bf1995f44e02bf1e2f6c996794c +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Documentation.meta b/Documentation.meta new file mode 100644 index 0000000..08d25da --- /dev/null +++ b/Documentation.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f2c93960c5ec14a968e71901b4eaeaab +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Documentation/README.md b/Documentation/README.md new file mode 100644 index 0000000..ef0eb1d --- /dev/null +++ b/Documentation/README.md @@ -0,0 +1,58 @@ +## TapTap.Login + +## 使用前提 + +使用 TapTap.Login 前提是必须依赖以下库: + +* [TapTap.Common](https://github.com/TapTap/TapCommon-Unity.git) + +> 如果游戏需要支持 PC 平台 ,则参考[ PC配置文档 ](PC.md) + +### 1.初始化 + +#### 如果配合 `TapBoostrap` 使用,则不需要调用初始化接口 + +```c# +TapLogin.Init(string clientID); +``` + +### 2.唤起 TapTap 网页 或者 TapTap 客户端进行登陆 + +登陆成功之后,会返回 `AccessToken` + +```c# +var accessToken = await TapLogin.Login(); +``` + +配置权限范围 + +```c# +// 默认使用 public_profile + +var accessToken = await TapLogin.Login(new []{"public_profile"}) +; +``` + +### 3. 获取 TapTap AccessToken + +```c# +var accessToken = await TapLogin.GetAccessToken(); +``` + +### 4. 获取 TapTap Profile + +```c# +var profile = await TapLogin.FetchProfile(); +``` + +### 5. 获取篝火测试资格 + +```c# +var boolean = await TapLogin.GetTestQualification(); +``` + +### 6. 退出登陆 + +```c# +TapLogin.Logout(); +``` \ No newline at end of file diff --git a/Documentation/README.md.meta b/Documentation/README.md.meta new file mode 100644 index 0000000..365fa39 --- /dev/null +++ b/Documentation/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: bba3a05fa298643d1a20c3cab5614c17 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Mobile.meta b/Mobile.meta new file mode 100644 index 0000000..badc8c5 --- /dev/null +++ b/Mobile.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b342e9aa171b743c5996484a958afba5 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Mobile/Editor.meta b/Mobile/Editor.meta new file mode 100644 index 0000000..69dfef6 --- /dev/null +++ b/Mobile/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6b459e69a01b34fc29e293ebc89f27f6 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Mobile/Editor/TapLoginIOSProcessor.cs b/Mobile/Editor/TapLoginIOSProcessor.cs new file mode 100644 index 0000000..9ae7691 --- /dev/null +++ b/Mobile/Editor/TapLoginIOSProcessor.cs @@ -0,0 +1,67 @@ +using System.IO; +using TapTap.Common.Editor; +using UnityEditor; +using UnityEditor.Callbacks; +#if UNITY_IOS || UNITY_STANDALONE_OSX +using UnityEditor.iOS.Xcode; +#endif +using UnityEngine; + +namespace TapTap.Login.Editor +{ +#if UNITY_IOS || UNITY_STANDALONE_OSX + public static class TapLoginIOSProcessor + { + // 添加标签,unity导出工程后自动执行该函数 + [PostProcessBuild(103)] + public static void OnPostprocessBuild(BuildTarget buildTarget, string path) + { + var parentFolder = Directory.GetParent(Application.dataPath)?.FullName; + + var plistFile = TapFileHelper.RecursionFilterFile(parentFolder + "/Assets/Plugins/", "TDS-Info.plist"); + + if (!plistFile.Exists) + { + Debug.LogError("TapSDK Can't find TDS-Info.plist in Project/Assets/Plugins/!"); + } + + + if (buildTarget is BuildTarget.iOS) + { +#if UNITY_IOS + TapCommonCompile.HandlerPlist(Path.GetFullPath(path), plistFile.FullName); +#endif + } + else if (buildTarget is BuildTarget.StandaloneOSX) + { + Debug.Log($"path:{path}"); + Debug.Log($"path:{Path.GetFullPath(path)}"); + Debug.Log($"dir:{Path.GetDirectoryName(path)}"); + Debug.Log($"dir:{Path.GetFileName(path)}"); + // 获得工程路径 +#if UNITY_2020_1_OR_NEWER + var directory = Path.GetDirectoryName(path); + if (string.IsNullOrEmpty(directory)) + { + directory = ""; + } + + var fileName = Path.GetFileName(path); + if (!fileName.EndsWith(".xcodeproj")) + { + fileName += ".xcodeproj"; + } + + var projPath = Path.Combine(directory, $"{fileName}/project.pbxproj"); +#elif UNITY_2019_1_OR_NEWER + var projPath = Path.Combine(path, "project.pbxproj"); +#else +#endif +#if UNITY_IOS + TapCommonCompile.HandlerPlist(Path.GetFullPath(path), plistFile.FullName, true); +#endif + } + } + } +#endif +} \ No newline at end of file diff --git a/Mobile/Editor/TapLoginIOSProcessor.cs.meta b/Mobile/Editor/TapLoginIOSProcessor.cs.meta new file mode 100644 index 0000000..f0fb142 --- /dev/null +++ b/Mobile/Editor/TapLoginIOSProcessor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 543a4c42d7c774f1cb7a7b18b19c6c5f +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Mobile/Editor/TapLoginMobileProcessBuild.cs b/Mobile/Editor/TapLoginMobileProcessBuild.cs new file mode 100644 index 0000000..0d2bfeb --- /dev/null +++ b/Mobile/Editor/TapLoginMobileProcessBuild.cs @@ -0,0 +1,20 @@ +using System; +using UnityEditor.Build.Reporting; +using TapTap.Common.Editor; + +namespace TapTap.Login.Mobile.Editor { + public class TapLoginMobileProcessBuild : SDKLinkProcessBuild { + public override int callbackOrder => 0; + + public override string LinkPath => "TapTap/Login/link.xml"; + + public override LinkedAssembly[] LinkedAssemblies => new LinkedAssembly[] { + new LinkedAssembly { Fullname = "TapTap.Login.Runtime" }, + new LinkedAssembly { Fullname = "TapTap.Login.Mobile.Runtime" } + }; + + public override Func IsTargetPlatform => (report) => { + return BuildTargetUtils.IsSupportMobile(report.summary.platform); + }; + } +} diff --git a/Mobile/Editor/TapLoginMobileProcessBuild.cs.meta b/Mobile/Editor/TapLoginMobileProcessBuild.cs.meta new file mode 100644 index 0000000..77720c6 --- /dev/null +++ b/Mobile/Editor/TapLoginMobileProcessBuild.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: fa860a43f603e4d569a2efe38e2760d8 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Mobile/Editor/TapTap.Login.Mobile.Editor.asmdef b/Mobile/Editor/TapTap.Login.Mobile.Editor.asmdef new file mode 100644 index 0000000..e8de837 --- /dev/null +++ b/Mobile/Editor/TapTap.Login.Mobile.Editor.asmdef @@ -0,0 +1,17 @@ +{ + "name": "TapTap.Login.Mobile.Editor", + "references": [ + "GUID:616cea76def2d4f059b94440fc8cc03d" + ], + "includePlatforms": [ + "Editor" + ], + "excludePlatforms": [], + "allowUnsafeCode": false, + "overrideReferences": false, + "precompiledReferences": [], + "autoReferenced": true, + "defineConstraints": [], + "versionDefines": [], + "noEngineReferences": false +} \ No newline at end of file diff --git a/Mobile/Editor/TapTap.Login.Mobile.Editor.asmdef.meta b/Mobile/Editor/TapTap.Login.Mobile.Editor.asmdef.meta new file mode 100644 index 0000000..2ca26db --- /dev/null +++ b/Mobile/Editor/TapTap.Login.Mobile.Editor.asmdef.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 60aa8897230d6419da34689f63383ebd +AssemblyDefinitionImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Mobile/Runtime.meta b/Mobile/Runtime.meta new file mode 100644 index 0000000..79d95b6 --- /dev/null +++ b/Mobile/Runtime.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8126ac1a2c05c468581fbae88a51caad +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Mobile/Runtime/ITapLogin.cs b/Mobile/Runtime/ITapLogin.cs new file mode 100644 index 0000000..c2e0a21 --- /dev/null +++ b/Mobile/Runtime/ITapLogin.cs @@ -0,0 +1,46 @@ +using System.Threading.Tasks; +using TapTap.Common; + +namespace TapTap.Login.Mobile +{ + public interface ITapLogin + { + void Init(string clientID); + + void Init(string clientID, bool isCn, bool roundCorner); + + void ChangeConfig(bool roundCorner, bool isPortrait); + + Task FetchProfile(); + + Task GetProfile(); + + Task GetAccessToken(); + + Task Login(); + + Task Login(string[] permissions); + + Task GetTestQualification(); + + void Logout(); + } + + public interface ITapLoginResultListener + { + void LoginCancel(); + + void LoginError(TapError error); + + void LoginSuccess(AccessToken token); + } + + public static class TapLoginConstants + { + public static string TAP_LOGIN_SERVICE = "TDSLoginService"; + + public static string TAP_LOGIN_SERVICE_CLZ = "com.taptap.sdk.wrapper.TDSLoginService"; + + public static string TAP_LOGIN_SERVICE_IMPL = "com.taptap.sdk.wrapper.TDSLoginServiceImpl"; + } +} \ No newline at end of file diff --git a/Mobile/Runtime/ITapLogin.cs.meta b/Mobile/Runtime/ITapLogin.cs.meta new file mode 100644 index 0000000..d348aef --- /dev/null +++ b/Mobile/Runtime/ITapLogin.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 69b41de145ee74f908e40d3c44ff7b6a +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Mobile/Runtime/TapLoginImpl.cs b/Mobile/Runtime/TapLoginImpl.cs new file mode 100644 index 0000000..1b10848 --- /dev/null +++ b/Mobile/Runtime/TapLoginImpl.cs @@ -0,0 +1,242 @@ +using System.Collections.Generic; +using System.Threading.Tasks; +using TapTap.Common; + +namespace TapTap.Login.Mobile +{ + public class TapLoginImpl : ITapLogin + { + private TapLoginImpl() + { + EngineBridge.GetInstance() + .Register(TapLoginConstants.TAP_LOGIN_SERVICE_CLZ, TapLoginConstants.TAP_LOGIN_SERVICE_IMPL); + } + + private static volatile TapLoginImpl _sInstance; + + private static readonly object Locker = new object(); + + public static TapLoginImpl GetInstance() + { + lock (Locker) + { + if (_sInstance == null) + { + _sInstance = new TapLoginImpl(); + } + } + + return _sInstance; + } + + public void Init(string clientID) + { + EngineBridge.GetInstance().CallHandler(new Command.Builder() + .Service(TapLoginConstants.TAP_LOGIN_SERVICE) + .Method("init") + .Args("clientID", clientID) + .CommandBuilder()); + } + + public void Init(string clientID, bool isCn, bool roundCorner) + { + EngineBridge.GetInstance().CallHandler(new Command.Builder() + .Service(TapLoginConstants.TAP_LOGIN_SERVICE) + .Method("initWithClientID") + .Args("clientID", clientID) + .Args("regionType", isCn) + .Args("roundCorner", roundCorner) + .CommandBuilder()); + } + + public void ChangeConfig(bool roundCorner, bool isPortrait) + { + EngineBridge.GetInstance().CallHandler(new Command.Builder() + .Service(TapLoginConstants.TAP_LOGIN_SERVICE) + .Method("changeConfig") + .Args("roundCorner", roundCorner) + .Args("isPortrait", isPortrait) + .CommandBuilder()); + } + + + public async Task FetchProfile() + { + var command = new Command.Builder() + .Service(TapLoginConstants.TAP_LOGIN_SERVICE) + .Method("fetchProfileForCurrentAccessToken") + .Callback(true) + .OnceTime(true) + .CommandBuilder(); + var result = await EngineBridge.GetInstance().Emit(command); + if (!EngineBridge.CheckResult(result)) + { + throw new TapException((int)TapErrorCode.ERROR_CODE_BRIDGE_EXECUTE, "TapSDK fetchProfile Failed!"); + } + + var loginWrapper = new TapLoginWrapper(result.content); + if (loginWrapper.LoginCallbackCode == 0) + { + return new Profile(loginWrapper.Wrapper); + } + + throw new TapException((int)TapErrorCode.ERROR_CODE_BRIDGE_EXECUTE, loginWrapper.Wrapper); + } + + public async Task GetProfile() + { + var command = new Command.Builder() + .Service(TapLoginConstants.TAP_LOGIN_SERVICE) + .Method("currentProfile") + .Callback(true) + .OnceTime(true) + .CommandBuilder(); + var result = await EngineBridge.GetInstance().Emit(command); + if (!EngineBridge.CheckResult(result)) + { + throw new TapException((int)TapErrorCode.ERROR_CODE_BRIDGE_EXECUTE, "TapSDK GetProfile Failed!"); + } + + return new Profile(result.content); + } + + public async Task GetAccessToken() + { + var command = new Command.Builder() + .Service(TapLoginConstants.TAP_LOGIN_SERVICE) + .Method("currentAccessToken") + .Callback(true) + .OnceTime(true) + .CommandBuilder(); + + var result = await EngineBridge.GetInstance().Emit(command); + + if (!EngineBridge.CheckResult(result)) + { + throw new TapException((int)TapErrorCode.ERROR_CODE_BRIDGE_EXECUTE, "TapSDK GetAccessToken Failed!"); + } + + return new AccessToken(result.content); + } + + public void AppendPermission(string permission) { + // TODO@luran + // var command = new Command.Builder() + // .Service(TapLoginConstants.TAP_LOGIN_SERVICE) + // .Method("appendPermission") + // .Args("permission", permission) + // .CommandBuilder(); + + // EngineBridge.GetInstance().CallHandler(command); + } + + public async Task Login() + { + var tcs = new TaskCompletionSource(); + RegisterLoginCallback(tcs); + StartLogin(new[] { TapLogin.TAP_LOGIN_SCOPE_PUBLIC_PROFILE }); + return await tcs.Task; + } + + public async Task Login(string[] permissions) + { + var tcs = new TaskCompletionSource(); + RegisterLoginCallback(tcs); + StartLogin(permissions); + return await tcs.Task; + } + + public void Logout() + { + var command = new Command.Builder() + .Service(TapLoginConstants.TAP_LOGIN_SERVICE) + .Method("logout") + .CommandBuilder(); + + EngineBridge.GetInstance().CallHandler(command); + } + + public async Task GetTestQualification() + { + var command = new Command.Builder() + .Service(TapLoginConstants.TAP_LOGIN_SERVICE) + .Method("getTestQualification") + .Callback(true) + .OnceTime(true) + .CommandBuilder(); + + var result = await EngineBridge.GetInstance().Emit(command); + + if (!EngineBridge.CheckResult(result)) + { + throw new TapException((int)TapErrorCode.ERROR_CODE_BRIDGE_EXECUTE, + "TapSDK GetTestQualification Failed!"); + } + + var dic = Json.Deserialize(result.content) as Dictionary; + var testQualification = SafeDictionary.GetValue(dic, "userTestQualification"); + return testQualification == 1; + } + + private static void StartLogin(string[] permissions) + { + var command = new Command.Builder() + .Service(TapLoginConstants.TAP_LOGIN_SERVICE) + .Method("startTapLogin") + .Args("permissions", permissions) + .CommandBuilder(); + EngineBridge.GetInstance().CallHandler(command); + } + + + private static void RegisterLoginCallback(TaskCompletionSource tcs) + { + var command = new Command.Builder() + .Service(TapLoginConstants.TAP_LOGIN_SERVICE) + .Method("registerLoginCallback") + .Callback(true) + .OnceTime(false) + .CommandBuilder(); + + EngineBridge.GetInstance().CallHandler(command, result => + { + if (!EngineBridge.CheckResult(result)) + { + tcs.TrySetException(new TapException((int)TapErrorCode.ERROR_CODE_BRIDGE_EXECUTE, + "TapSDK Login Failed!")); + return; + } + + var wrapper = new TapLoginWrapper(result.content); + + switch (wrapper.LoginCallbackCode) + { + case 0: + var accessToken = new AccessToken(wrapper.Wrapper); + tcs.TrySetResult(accessToken); + break; + case 1: + tcs.TrySetException(new TapException((int)TapErrorCode.ERROR_CODE_BIND_CANCEL, + "Login Cancel")); + break; + default: + var tapError = TapError.SafeConstructorTapError(wrapper.Wrapper); + tcs.TrySetException(new TapException(tapError.code, + tapError.errorDescription)); + break; + } + + UnRegisterLoginCallback(); + }); + } + + private static void UnRegisterLoginCallback() + { + var command = new Command.Builder() + .Service(TapLoginConstants.TAP_LOGIN_SERVICE) + .Method("unregisterLoginCallback") + .CommandBuilder(); + EngineBridge.GetInstance().CallHandler(command); + } + } +} \ No newline at end of file diff --git a/Mobile/Runtime/TapLoginImpl.cs.meta b/Mobile/Runtime/TapLoginImpl.cs.meta new file mode 100644 index 0000000..0bb665b --- /dev/null +++ b/Mobile/Runtime/TapLoginImpl.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 6a4684c9ef1d943ffba49b2e8d38906c +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Mobile/Runtime/TapLoginMobile.cs b/Mobile/Runtime/TapLoginMobile.cs new file mode 100644 index 0000000..2d60a7a --- /dev/null +++ b/Mobile/Runtime/TapLoginMobile.cs @@ -0,0 +1,70 @@ +using System; +using System.Threading.Tasks; + +namespace TapTap.Login.Mobile +{ + public class TapLoginMobile : Internal.ITapLoginPlatform + { + public void Init(string clientID) + { + TapLoginImpl.GetInstance().Init(clientID); + } + + public void Init(string clientID, bool isCn, bool roundCorner) + { + TapLoginImpl.GetInstance().Init(clientID, isCn, roundCorner); + } + + public void ChangeConfig(bool roundCorner, bool isPortrait) + { + TapLoginImpl.GetInstance().ChangeConfig(roundCorner, isPortrait); + } + + public Task FetchProfile() + { + return TapLoginImpl.GetInstance().FetchProfile(); + } + + public Task GetProfile() + { + return TapLoginImpl.GetInstance().GetProfile(); + } + + public Task GetAccessToken() + { + return TapLoginImpl.GetInstance().GetAccessToken(); + } + + public void AppendPermission(string permission) { + TapLoginImpl.GetInstance().AppendPermission(permission); + } + + public Task Login() + { + return TapLoginImpl.GetInstance().Login(); + } + + public Task Login(string[] permissions) + { + return TapLoginImpl.GetInstance().Login(permissions); + } + + public Task Authorize(string[] permissions = null) { + throw new NotImplementedException(nameof(Authorize)); + } + + public async Task Login(TapLoginPermissionConfig _) { + throw new NotImplementedException(nameof(Login)); + } + + public void Logout() + { + TapLoginImpl.GetInstance().Logout(); + } + + public Task GetTestQualification() + { + return TapLoginImpl.GetInstance().GetTestQualification(); + } + } +} \ No newline at end of file diff --git a/Mobile/Runtime/TapLoginMobile.cs.meta b/Mobile/Runtime/TapLoginMobile.cs.meta new file mode 100644 index 0000000..589f4db --- /dev/null +++ b/Mobile/Runtime/TapLoginMobile.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 4295ff79f49ab4cd6a6d8895c03abb78 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Mobile/Runtime/TapLoginWrapper.cs b/Mobile/Runtime/TapLoginWrapper.cs new file mode 100644 index 0000000..544f75d --- /dev/null +++ b/Mobile/Runtime/TapLoginWrapper.cs @@ -0,0 +1,19 @@ +using System.Collections.Generic; +using TapTap.Common; + +namespace TapTap.Login.Mobile +{ + public class TapLoginWrapper + { + public string Wrapper; + + public int LoginCallbackCode; + + public TapLoginWrapper(string json) + { + var dic = Json.Deserialize(json) as Dictionary; + Wrapper = SafeDictionary.GetValue(dic, "wrapper"); + LoginCallbackCode = SafeDictionary.GetValue(dic, "loginCallbackCode"); + } + } +} \ No newline at end of file diff --git a/Mobile/Runtime/TapLoginWrapper.cs.meta b/Mobile/Runtime/TapLoginWrapper.cs.meta new file mode 100644 index 0000000..eeefbce --- /dev/null +++ b/Mobile/Runtime/TapLoginWrapper.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 13f1c9f969a6c45ad906faf33c39c76e +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Mobile/Runtime/TapTap.Login.Mobile.Runtime.asmdef b/Mobile/Runtime/TapTap.Login.Mobile.Runtime.asmdef new file mode 100644 index 0000000..4e4e3d7 --- /dev/null +++ b/Mobile/Runtime/TapTap.Login.Mobile.Runtime.asmdef @@ -0,0 +1,20 @@ +{ + "name": "TapTap.Login.Mobile.Runtime", + "references": [ + "GUID:e8754b6153389406c963cd52996cc80f", + "GUID:0b3f64ec33f5b4da98a17367a35b82f2", + "GUID:43c632eee0a6f42cdaf21080b154f3a1" + ], + "includePlatforms": [ + "Android", + "iOS" + ], + "excludePlatforms": [], + "allowUnsafeCode": false, + "overrideReferences": false, + "precompiledReferences": [], + "autoReferenced": true, + "defineConstraints": [], + "versionDefines": [], + "noEngineReferences": false +} \ No newline at end of file diff --git a/Mobile/Runtime/TapTap.Login.Mobile.Runtime.asmdef.meta b/Mobile/Runtime/TapTap.Login.Mobile.Runtime.asmdef.meta new file mode 100644 index 0000000..95c4937 --- /dev/null +++ b/Mobile/Runtime/TapTap.Login.Mobile.Runtime.asmdef.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 6ff51c32c188e424b97bac52a5cb5184 +AssemblyDefinitionImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/PC.md b/PC.md new file mode 100644 index 0000000..6996232 --- /dev/null +++ b/PC.md @@ -0,0 +1,60 @@ +# TapTap Login PC 登录接入文档 + +> TapTap.Login PC 支持 Window 以及 Mac 两种平台,提供 Web 浏览器授权以及 TapTap 客户端扫码登录 + + +## 在 Mac 平台使用 TapTap.Login + +### 1. 编译配置 + +* 打开 *BuildSetting* 选择 *PC、Mac & Linux Standalone* Platform,*Target Platform* 选择 MacOS +* 勾选 *Create XCode Project* ,选择输出 XCode 工程进行编译 + +### 2. 配置 URL Types + +* 打开输出的 *XCode Project* , 选择 *Target* ,点击 *Info* ,展开 *URL Types*,请检查是否自动添加以下 URL Scheme,如果未添加,则手动添加进去。 +> TapWeb : open-taptap-{clientId} + +* 或者修改 *Info.plist* ,添加以下配置 + +```xml +CFBundleURLTypes + + + CFBundleURLName + TapWeb + CFBundleURLSchemes + + open-taptap-{client_id} + + + +``` + +## 在 Window 平台使用 TapTap.Login + +#### 给 Window 添加游戏注册表 + +``` +Windows Registry Editor Version 5.00 + +[HKEY_CLASSES_ROOT\open-taptap-{client_id}] +@="{游戏名称}" +"URL Protocol"="{程序.exe 安装路径}}" + +[HKEY_CLASSES_ROOT\open-taptap-{client_id}] +@="{游戏名称}" + +[HKEY_CLASSES_ROOT\open-taptap-{client_id}] + +[HKEY_CLASSES_ROOT\open-taptap-{client_id}\Shell\Open] + +[HKEY_CLASSES_ROOT\open-taptap-{client_id}\Shell\Open\Command] +@="\"{程序.exe 安装路径}\" \"%1\"" + +``` + +打开 Window 注册表编辑器,查看 `HKEY_CLASSES_ROOT\open-taptap-{clientId}` 是否存在以及等该目录下是否包含 `DefaultIcon`、`Shell\Open\Command` 是否匹配上文中的参数 + + + diff --git a/PC.md.meta b/PC.md.meta new file mode 100644 index 0000000..2850fe0 --- /dev/null +++ b/PC.md.meta @@ -0,0 +1,3 @@ +fileFormatVersion: 2 +guid: 0acb126baaec47058c09c039fb0df359 +timeCreated: 1639126466 \ No newline at end of file diff --git a/Plugins.meta b/Plugins.meta new file mode 100644 index 0000000..6f22dba --- /dev/null +++ b/Plugins.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 389763214cb6d491d83a645bbf33a750 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Plugins/Android.meta b/Plugins/Android.meta new file mode 100644 index 0000000..924e4a1 --- /dev/null +++ b/Plugins/Android.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4b872f00946c04ccea41c19eb6ae406a +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Plugins/Android/libs.meta b/Plugins/Android/libs.meta new file mode 100644 index 0000000..6b8bb11 --- /dev/null +++ b/Plugins/Android/libs.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0ef9a962e4bd24262a889ea13fed9c07 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Plugins/Android/libs/TapLogin_3.23.0.aar b/Plugins/Android/libs/TapLogin_3.23.0.aar new file mode 100644 index 0000000..bbb0668 Binary files /dev/null and b/Plugins/Android/libs/TapLogin_3.23.0.aar differ diff --git a/Plugins/Android/libs/TapLogin_3.23.0.aar.meta b/Plugins/Android/libs/TapLogin_3.23.0.aar.meta new file mode 100644 index 0000000..b7f9e27 --- /dev/null +++ b/Plugins/Android/libs/TapLogin_3.23.0.aar.meta @@ -0,0 +1,32 @@ +fileFormatVersion: 2 +guid: 0adf2ac35af7f4236a9f10b0ce24f337 +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 0 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + Android: Android + second: + enabled: 1 + settings: {} + - first: + Any: + second: + enabled: 0 + settings: {} + - first: + Editor: Editor + second: + enabled: 0 + settings: + DefaultValueInitialized: true + userData: + assetBundleName: + assetBundleVariant: diff --git a/Plugins/iOS.meta b/Plugins/iOS.meta new file mode 100644 index 0000000..5ce5153 --- /dev/null +++ b/Plugins/iOS.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 667a75a1a23fe417c89c8e75fdba321b +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Plugins/iOS/Resource.meta b/Plugins/iOS/Resource.meta new file mode 100644 index 0000000..b4c5dc0 --- /dev/null +++ b/Plugins/iOS/Resource.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 309e7468770854d07a38ca51ef1829e6 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Plugins/iOS/Resource/TapLoginResource.bundle.meta b/Plugins/iOS/Resource/TapLoginResource.bundle.meta new file mode 100644 index 0000000..2ddf9c4 --- /dev/null +++ b/Plugins/iOS/Resource/TapLoginResource.bundle.meta @@ -0,0 +1,81 @@ +fileFormatVersion: 2 +guid: 784e57f7c38f14328a4a9f152e87d7b5 +folderAsset: yes +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 0 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + : Any + second: + enabled: 0 + settings: + Exclude Android: 1 + Exclude Editor: 1 + Exclude Linux64: 1 + Exclude OSXUniversal: 1 + Exclude Win: 1 + Exclude Win64: 1 + Exclude iOS: 0 + - first: + Android: Android + second: + enabled: 0 + settings: + CPU: ARMv7 + - first: + Any: + second: + enabled: 0 + settings: {} + - first: + Editor: Editor + second: + enabled: 0 + settings: + CPU: AnyCPU + DefaultValueInitialized: true + OS: AnyOS + - first: + Standalone: Linux64 + second: + enabled: 0 + settings: + CPU: None + - first: + Standalone: OSXUniversal + second: + enabled: 0 + settings: + CPU: None + - first: + Standalone: Win + second: + enabled: 0 + settings: + CPU: None + - first: + Standalone: Win64 + second: + enabled: 0 + settings: + CPU: None + - first: + iPhone: iOS + second: + enabled: 1 + settings: + AddToEmbeddedBinaries: false + CPU: AnyCPU + CompileFlags: + FrameworkDependencies: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Plugins/iOS/Resource/TapLoginResource.bundle/de.lproj.meta b/Plugins/iOS/Resource/TapLoginResource.bundle/de.lproj.meta new file mode 100644 index 0000000..2beb602 --- /dev/null +++ b/Plugins/iOS/Resource/TapLoginResource.bundle/de.lproj.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 584c839590c8846a08282b6f2a38b5da +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Plugins/iOS/Resource/TapLoginResource.bundle/de.lproj/Localizable.strings b/Plugins/iOS/Resource/TapLoginResource.bundle/de.lproj/Localizable.strings new file mode 100644 index 0000000..e69de29 diff --git a/Plugins/iOS/Resource/TapLoginResource.bundle/de.lproj/Localizable.strings.meta b/Plugins/iOS/Resource/TapLoginResource.bundle/de.lproj/Localizable.strings.meta new file mode 100644 index 0000000..b2e680b --- /dev/null +++ b/Plugins/iOS/Resource/TapLoginResource.bundle/de.lproj/Localizable.strings.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 5e714493137484795835ba9c04dd0a9b +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Plugins/iOS/Resource/TapLoginResource.bundle/en.lproj.meta b/Plugins/iOS/Resource/TapLoginResource.bundle/en.lproj.meta new file mode 100644 index 0000000..8342983 --- /dev/null +++ b/Plugins/iOS/Resource/TapLoginResource.bundle/en.lproj.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2db9cdfe31c0941759b925d9d9d023b2 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Plugins/iOS/Resource/TapLoginResource.bundle/en.lproj/Localizable.strings b/Plugins/iOS/Resource/TapLoginResource.bundle/en.lproj/Localizable.strings new file mode 100644 index 0000000..c331ebc --- /dev/null +++ b/Plugins/iOS/Resource/TapLoginResource.bundle/en.lproj/Localizable.strings @@ -0,0 +1 @@ +"login_account_logged_tip" = "Logged-in account: %@"; \ No newline at end of file diff --git a/Plugins/iOS/Resource/TapLoginResource.bundle/en.lproj/Localizable.strings.meta b/Plugins/iOS/Resource/TapLoginResource.bundle/en.lproj/Localizable.strings.meta new file mode 100644 index 0000000..b1b88fe --- /dev/null +++ b/Plugins/iOS/Resource/TapLoginResource.bundle/en.lproj/Localizable.strings.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: a0cd798c6f59c4fd2904df9722e69561 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Plugins/iOS/Resource/TapLoginResource.bundle/es.lproj.meta b/Plugins/iOS/Resource/TapLoginResource.bundle/es.lproj.meta new file mode 100644 index 0000000..23012fb --- /dev/null +++ b/Plugins/iOS/Resource/TapLoginResource.bundle/es.lproj.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: eb914a8671b4e47acabb5958d724af29 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Plugins/iOS/Resource/TapLoginResource.bundle/es.lproj/Localizable.strings b/Plugins/iOS/Resource/TapLoginResource.bundle/es.lproj/Localizable.strings new file mode 100644 index 0000000..e69de29 diff --git a/Plugins/iOS/Resource/TapLoginResource.bundle/es.lproj/Localizable.strings.meta b/Plugins/iOS/Resource/TapLoginResource.bundle/es.lproj/Localizable.strings.meta new file mode 100644 index 0000000..1ae1da0 --- /dev/null +++ b/Plugins/iOS/Resource/TapLoginResource.bundle/es.lproj/Localizable.strings.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 1f48955edb7314395886888ec1227c92 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Plugins/iOS/Resource/TapLoginResource.bundle/fr.lproj.meta b/Plugins/iOS/Resource/TapLoginResource.bundle/fr.lproj.meta new file mode 100644 index 0000000..dc30759 --- /dev/null +++ b/Plugins/iOS/Resource/TapLoginResource.bundle/fr.lproj.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 72b07f5c50607464eb0e0c6fe8b77736 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Plugins/iOS/Resource/TapLoginResource.bundle/fr.lproj/Localizable.strings b/Plugins/iOS/Resource/TapLoginResource.bundle/fr.lproj/Localizable.strings new file mode 100644 index 0000000..e69de29 diff --git a/Plugins/iOS/Resource/TapLoginResource.bundle/fr.lproj/Localizable.strings.meta b/Plugins/iOS/Resource/TapLoginResource.bundle/fr.lproj/Localizable.strings.meta new file mode 100644 index 0000000..4be196e --- /dev/null +++ b/Plugins/iOS/Resource/TapLoginResource.bundle/fr.lproj/Localizable.strings.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 6bdedf9d8b6824525b93aa53fd502624 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Plugins/iOS/Resource/TapLoginResource.bundle/in.lproj.meta b/Plugins/iOS/Resource/TapLoginResource.bundle/in.lproj.meta new file mode 100644 index 0000000..0f8355d --- /dev/null +++ b/Plugins/iOS/Resource/TapLoginResource.bundle/in.lproj.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0c444cecca83d4891a0ecef1b723625c +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Plugins/iOS/Resource/TapLoginResource.bundle/in.lproj/Localizable.strings b/Plugins/iOS/Resource/TapLoginResource.bundle/in.lproj/Localizable.strings new file mode 100644 index 0000000..052f53d --- /dev/null +++ b/Plugins/iOS/Resource/TapLoginResource.bundle/in.lproj/Localizable.strings @@ -0,0 +1 @@ +"login_account_logged_tip" = "Akun yang login: %@"; \ No newline at end of file diff --git a/Plugins/iOS/Resource/TapLoginResource.bundle/in.lproj/Localizable.strings.meta b/Plugins/iOS/Resource/TapLoginResource.bundle/in.lproj/Localizable.strings.meta new file mode 100644 index 0000000..24cdfd3 --- /dev/null +++ b/Plugins/iOS/Resource/TapLoginResource.bundle/in.lproj/Localizable.strings.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 6d09ff1b208984014b1edda7800a94d4 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Plugins/iOS/Resource/TapLoginResource.bundle/ja.lproj.meta b/Plugins/iOS/Resource/TapLoginResource.bundle/ja.lproj.meta new file mode 100644 index 0000000..37c5316 --- /dev/null +++ b/Plugins/iOS/Resource/TapLoginResource.bundle/ja.lproj.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 30eca30d6cb154f14bb7712bcbcaa87e +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Plugins/iOS/Resource/TapLoginResource.bundle/ja.lproj/Localizable.strings b/Plugins/iOS/Resource/TapLoginResource.bundle/ja.lproj/Localizable.strings new file mode 100644 index 0000000..b744ff5 --- /dev/null +++ b/Plugins/iOS/Resource/TapLoginResource.bundle/ja.lproj/Localizable.strings @@ -0,0 +1 @@ +"login_account_logged_tip" = "ログイン中のアカウント: %@"; \ No newline at end of file diff --git a/Plugins/iOS/Resource/TapLoginResource.bundle/ja.lproj/Localizable.strings.meta b/Plugins/iOS/Resource/TapLoginResource.bundle/ja.lproj/Localizable.strings.meta new file mode 100644 index 0000000..6ab8385 --- /dev/null +++ b/Plugins/iOS/Resource/TapLoginResource.bundle/ja.lproj/Localizable.strings.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 108d87d8e2b2f4b49b41d05471ac36fb +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Plugins/iOS/Resource/TapLoginResource.bundle/ko.lproj.meta b/Plugins/iOS/Resource/TapLoginResource.bundle/ko.lproj.meta new file mode 100644 index 0000000..9c4556b --- /dev/null +++ b/Plugins/iOS/Resource/TapLoginResource.bundle/ko.lproj.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 96a4b2a76a2f94ea79c65c35bb4aaaa5 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Plugins/iOS/Resource/TapLoginResource.bundle/ko.lproj/Localizable.strings b/Plugins/iOS/Resource/TapLoginResource.bundle/ko.lproj/Localizable.strings new file mode 100644 index 0000000..8ead5b9 --- /dev/null +++ b/Plugins/iOS/Resource/TapLoginResource.bundle/ko.lproj/Localizable.strings @@ -0,0 +1 @@ +"login_account_logged_tip" = "로그인한 계정: %@"; \ No newline at end of file diff --git a/Plugins/iOS/Resource/TapLoginResource.bundle/ko.lproj/Localizable.strings.meta b/Plugins/iOS/Resource/TapLoginResource.bundle/ko.lproj/Localizable.strings.meta new file mode 100644 index 0000000..b753d49 --- /dev/null +++ b/Plugins/iOS/Resource/TapLoginResource.bundle/ko.lproj/Localizable.strings.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 5b5093760006b4e1f81954bfeb940acd +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Plugins/iOS/Resource/TapLoginResource.bundle/ms.lproj.meta b/Plugins/iOS/Resource/TapLoginResource.bundle/ms.lproj.meta new file mode 100644 index 0000000..ec36102 --- /dev/null +++ b/Plugins/iOS/Resource/TapLoginResource.bundle/ms.lproj.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8d9416d7f046647f0a9df2501bb61dff +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Plugins/iOS/Resource/TapLoginResource.bundle/ms.lproj/Localizable.strings b/Plugins/iOS/Resource/TapLoginResource.bundle/ms.lproj/Localizable.strings new file mode 100644 index 0000000..e69de29 diff --git a/Plugins/iOS/Resource/TapLoginResource.bundle/ms.lproj/Localizable.strings.meta b/Plugins/iOS/Resource/TapLoginResource.bundle/ms.lproj/Localizable.strings.meta new file mode 100644 index 0000000..02cc5e7 --- /dev/null +++ b/Plugins/iOS/Resource/TapLoginResource.bundle/ms.lproj/Localizable.strings.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: d372f6169a64d4c03875a247079723fd +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Plugins/iOS/Resource/TapLoginResource.bundle/pt.lproj.meta b/Plugins/iOS/Resource/TapLoginResource.bundle/pt.lproj.meta new file mode 100644 index 0000000..e6a1663 --- /dev/null +++ b/Plugins/iOS/Resource/TapLoginResource.bundle/pt.lproj.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6960263d9708e4787b5d6e065dd21287 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Plugins/iOS/Resource/TapLoginResource.bundle/pt.lproj/Localizable.strings b/Plugins/iOS/Resource/TapLoginResource.bundle/pt.lproj/Localizable.strings new file mode 100644 index 0000000..844b146 --- /dev/null +++ b/Plugins/iOS/Resource/TapLoginResource.bundle/pt.lproj/Localizable.strings @@ -0,0 +1 @@ +"login_account_logged_tip" = "Conta conectada: %@"; \ No newline at end of file diff --git a/Plugins/iOS/Resource/TapLoginResource.bundle/pt.lproj/Localizable.strings.meta b/Plugins/iOS/Resource/TapLoginResource.bundle/pt.lproj/Localizable.strings.meta new file mode 100644 index 0000000..6223faf --- /dev/null +++ b/Plugins/iOS/Resource/TapLoginResource.bundle/pt.lproj/Localizable.strings.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 20538e5665c344f42895c38924cf7911 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Plugins/iOS/Resource/TapLoginResource.bundle/ru.lproj.meta b/Plugins/iOS/Resource/TapLoginResource.bundle/ru.lproj.meta new file mode 100644 index 0000000..b7a7167 --- /dev/null +++ b/Plugins/iOS/Resource/TapLoginResource.bundle/ru.lproj.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 647e49df94c5d44f89357055584051de +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Plugins/iOS/Resource/TapLoginResource.bundle/ru.lproj/Localizable.strings b/Plugins/iOS/Resource/TapLoginResource.bundle/ru.lproj/Localizable.strings new file mode 100644 index 0000000..e69de29 diff --git a/Plugins/iOS/Resource/TapLoginResource.bundle/ru.lproj/Localizable.strings.meta b/Plugins/iOS/Resource/TapLoginResource.bundle/ru.lproj/Localizable.strings.meta new file mode 100644 index 0000000..e20de9a --- /dev/null +++ b/Plugins/iOS/Resource/TapLoginResource.bundle/ru.lproj/Localizable.strings.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: e01809d7fca5d41e2abccf631d669c96 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Plugins/iOS/Resource/TapLoginResource.bundle/th.lproj.meta b/Plugins/iOS/Resource/TapLoginResource.bundle/th.lproj.meta new file mode 100644 index 0000000..4505217 --- /dev/null +++ b/Plugins/iOS/Resource/TapLoginResource.bundle/th.lproj.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 312874c4ec9514726910d1b081943cae +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Plugins/iOS/Resource/TapLoginResource.bundle/th.lproj/Localizable.strings b/Plugins/iOS/Resource/TapLoginResource.bundle/th.lproj/Localizable.strings new file mode 100644 index 0000000..6faca7d --- /dev/null +++ b/Plugins/iOS/Resource/TapLoginResource.bundle/th.lproj/Localizable.strings @@ -0,0 +1 @@ +"login_account_logged_tip" = "บัญชีที่ล็อกอิน: %@"; \ No newline at end of file diff --git a/Plugins/iOS/Resource/TapLoginResource.bundle/th.lproj/Localizable.strings.meta b/Plugins/iOS/Resource/TapLoginResource.bundle/th.lproj/Localizable.strings.meta new file mode 100644 index 0000000..eed2fda --- /dev/null +++ b/Plugins/iOS/Resource/TapLoginResource.bundle/th.lproj/Localizable.strings.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 926c25dbb846148d1b5f97617c237c7c +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Plugins/iOS/Resource/TapLoginResource.bundle/tr.lproj.meta b/Plugins/iOS/Resource/TapLoginResource.bundle/tr.lproj.meta new file mode 100644 index 0000000..d414ab0 --- /dev/null +++ b/Plugins/iOS/Resource/TapLoginResource.bundle/tr.lproj.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 322f3f3e4552d496082054c9fe4ad86d +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Plugins/iOS/Resource/TapLoginResource.bundle/tr.lproj/Localizable.strings b/Plugins/iOS/Resource/TapLoginResource.bundle/tr.lproj/Localizable.strings new file mode 100644 index 0000000..e69de29 diff --git a/Plugins/iOS/Resource/TapLoginResource.bundle/tr.lproj/Localizable.strings.meta b/Plugins/iOS/Resource/TapLoginResource.bundle/tr.lproj/Localizable.strings.meta new file mode 100644 index 0000000..a2b4887 --- /dev/null +++ b/Plugins/iOS/Resource/TapLoginResource.bundle/tr.lproj/Localizable.strings.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: cd3491054da9b480495dbde91f288ea9 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Plugins/iOS/Resource/TapLoginResource.bundle/vi.lproj.meta b/Plugins/iOS/Resource/TapLoginResource.bundle/vi.lproj.meta new file mode 100644 index 0000000..369272f --- /dev/null +++ b/Plugins/iOS/Resource/TapLoginResource.bundle/vi.lproj.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b605ba02483cc43458939ce74cd36dd4 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Plugins/iOS/Resource/TapLoginResource.bundle/vi.lproj/Localizable.strings b/Plugins/iOS/Resource/TapLoginResource.bundle/vi.lproj/Localizable.strings new file mode 100644 index 0000000..e69de29 diff --git a/Plugins/iOS/Resource/TapLoginResource.bundle/vi.lproj/Localizable.strings.meta b/Plugins/iOS/Resource/TapLoginResource.bundle/vi.lproj/Localizable.strings.meta new file mode 100644 index 0000000..d945afc --- /dev/null +++ b/Plugins/iOS/Resource/TapLoginResource.bundle/vi.lproj/Localizable.strings.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: a305e734366b242c7a2b4a6d79f2cb9b +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Plugins/iOS/Resource/TapLoginResource.bundle/zh-Hans.lproj.meta b/Plugins/iOS/Resource/TapLoginResource.bundle/zh-Hans.lproj.meta new file mode 100644 index 0000000..eaf8e9e --- /dev/null +++ b/Plugins/iOS/Resource/TapLoginResource.bundle/zh-Hans.lproj.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d18f0ce09d4934794becf7d360015d5b +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Plugins/iOS/Resource/TapLoginResource.bundle/zh-Hans.lproj/Localizable.strings b/Plugins/iOS/Resource/TapLoginResource.bundle/zh-Hans.lproj/Localizable.strings new file mode 100644 index 0000000..3b374a7 --- /dev/null +++ b/Plugins/iOS/Resource/TapLoginResource.bundle/zh-Hans.lproj/Localizable.strings @@ -0,0 +1 @@ +"login_account_logged_tip" = "已登录账号:%@"; \ No newline at end of file diff --git a/Plugins/iOS/Resource/TapLoginResource.bundle/zh-Hans.lproj/Localizable.strings.meta b/Plugins/iOS/Resource/TapLoginResource.bundle/zh-Hans.lproj/Localizable.strings.meta new file mode 100644 index 0000000..4c882b2 --- /dev/null +++ b/Plugins/iOS/Resource/TapLoginResource.bundle/zh-Hans.lproj/Localizable.strings.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: ae274f1c90d5d42faaf56de614ea1295 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Plugins/iOS/Resource/TapLoginResource.bundle/zh-Hant.lproj.meta b/Plugins/iOS/Resource/TapLoginResource.bundle/zh-Hant.lproj.meta new file mode 100644 index 0000000..ec8ea5f --- /dev/null +++ b/Plugins/iOS/Resource/TapLoginResource.bundle/zh-Hant.lproj.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2cb8c2bb4d90047ebbd29c67c73423ab +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Plugins/iOS/Resource/TapLoginResource.bundle/zh-Hant.lproj/Localizable.strings b/Plugins/iOS/Resource/TapLoginResource.bundle/zh-Hant.lproj/Localizable.strings new file mode 100644 index 0000000..fc5aeae --- /dev/null +++ b/Plugins/iOS/Resource/TapLoginResource.bundle/zh-Hant.lproj/Localizable.strings @@ -0,0 +1 @@ +"login_account_logged_tip" = "已登入帳號:%@"; \ No newline at end of file diff --git a/Plugins/iOS/Resource/TapLoginResource.bundle/zh-Hant.lproj/Localizable.strings.meta b/Plugins/iOS/Resource/TapLoginResource.bundle/zh-Hant.lproj/Localizable.strings.meta new file mode 100644 index 0000000..9e87d25 --- /dev/null +++ b/Plugins/iOS/Resource/TapLoginResource.bundle/zh-Hant.lproj/Localizable.strings.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 10e8e5d9d2d4f4ca7aa96ed5a372c414 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Plugins/iOS/TapLoginSDK.framework.meta b/Plugins/iOS/TapLoginSDK.framework.meta new file mode 100644 index 0000000..8079dd5 --- /dev/null +++ b/Plugins/iOS/TapLoginSDK.framework.meta @@ -0,0 +1,69 @@ +fileFormatVersion: 2 +guid: 0cb5e9195d4db4ef29b7f5c2c756f40e +folderAsset: yes +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 0 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + : Any + second: + enabled: 0 + settings: + Exclude Android: 1 + Exclude Editor: 1 + Exclude Linux64: 1 + Exclude OSXUniversal: 1 + Exclude Win: 1 + Exclude Win64: 1 + Exclude iOS: 0 + - first: + Any: + second: + enabled: 0 + settings: {} + - first: + Editor: Editor + second: + enabled: 0 + settings: + DefaultValueInitialized: true + - first: + Standalone: Linux64 + second: + enabled: 0 + settings: + CPU: None + - first: + Standalone: OSXUniversal + second: + enabled: 0 + settings: + CPU: x86 + - first: + Standalone: Win + second: + enabled: 0 + settings: + CPU: None + - first: + Standalone: Win64 + second: + enabled: 0 + settings: + CPU: None + - first: + iPhone: iOS + second: + enabled: 1 + settings: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Plugins/iOS/TapLoginSDK.framework/Headers.meta b/Plugins/iOS/TapLoginSDK.framework/Headers.meta new file mode 100644 index 0000000..47780c6 --- /dev/null +++ b/Plugins/iOS/TapLoginSDK.framework/Headers.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: abeb3e307f861456eb7b2d4f36aaff3a +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Plugins/iOS/TapLoginSDK.framework/Headers/AccountGlobalError.h b/Plugins/iOS/TapLoginSDK.framework/Headers/AccountGlobalError.h new file mode 100644 index 0000000..e2880f6 --- /dev/null +++ b/Plugins/iOS/TapLoginSDK.framework/Headers/AccountGlobalError.h @@ -0,0 +1,26 @@ +// +// AccountGlobalError.h +// TapTapLoginSource +// +// Created by Bottle K on 2020/12/15. +// + +#import + +NS_ASSUME_NONNULL_BEGIN +FOUNDATION_EXPORT NSString *const LOGIN_ERROR_ACCESS_DENIED; +FOUNDATION_EXPORT NSString *const LOGIN_ERROR_INVALID_GRANT; +FOUNDATION_EXPORT NSString *const LOGIN_ERROR_PERMISSION_RESULT; + +@interface AccountGlobalError : NSObject +@property (nonatomic, assign) NSInteger code; +@property (nonatomic, copy) NSString *msg; +@property (nonatomic, copy) NSString *error; +@property (nonatomic, copy) NSString *errorDescription; + +- (instancetype)initWithName:(NSString *)errorName NSError:(NSError *)error; + +- (NSString *)toJsonString; +@end + +NS_ASSUME_NONNULL_END diff --git a/Plugins/iOS/TapLoginSDK.framework/Headers/AccountGlobalError.h.meta b/Plugins/iOS/TapLoginSDK.framework/Headers/AccountGlobalError.h.meta new file mode 100644 index 0000000..426b38e --- /dev/null +++ b/Plugins/iOS/TapLoginSDK.framework/Headers/AccountGlobalError.h.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: c815f3cc598254d3c9c4cf1f947c5e43 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Plugins/iOS/TapLoginSDK.framework/Headers/IscTapLoginService.h b/Plugins/iOS/TapLoginSDK.framework/Headers/IscTapLoginService.h new file mode 100644 index 0000000..1b06fb1 --- /dev/null +++ b/Plugins/iOS/TapLoginSDK.framework/Headers/IscTapLoginService.h @@ -0,0 +1,26 @@ +// +// IscTapLoginService.h +// Pods-TDSLoginSource_Example +// +// Created by Bottle K on 2020/12/15. +// + +#import +#import +NS_ASSUME_NONNULL_BEGIN + +@interface IscTapLoginService : NSObject ++ (void)addSDKLoginResultDelegate:(NSString *)sdkName delegate:(id )delegate; + ++ (void)removeSDKLoginResultDelegate:(NSString *)sdkName; + ++ (void)startSDKLogin:(NSString *)sdkName permission:(NSArray *)permissions; + ++ (void)handleLoginError:(NSDictionary *)params; + ++ (void)changeConfigWithClientId:(NSString *)clientId + regionType:(RegionType)region + token:(TTSDKAccessToken *)token; +@end + +NS_ASSUME_NONNULL_END diff --git a/Plugins/iOS/TapLoginSDK.framework/Headers/IscTapLoginService.h.meta b/Plugins/iOS/TapLoginSDK.framework/Headers/IscTapLoginService.h.meta new file mode 100644 index 0000000..a94356f --- /dev/null +++ b/Plugins/iOS/TapLoginSDK.framework/Headers/IscTapLoginService.h.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 3f071f3c86c054828b1233d42d24acb2 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Plugins/iOS/TapLoginSDK.framework/Headers/TTSDKAccessToken.h b/Plugins/iOS/TapLoginSDK.framework/Headers/TTSDKAccessToken.h new file mode 100644 index 0000000..8787869 --- /dev/null +++ b/Plugins/iOS/TapLoginSDK.framework/Headers/TTSDKAccessToken.h @@ -0,0 +1,69 @@ +// +// TTSDKAccessToken.h +// TapTapSDK +// +// Created by TapTap on 2017/10/17. +// Copyright © 2017年 易玩. All rights reserved. +// + +#import + +/** + * @brief TapTap登录授权数据封装类 + * + * 该类封装了所有授权提供的返回数据 + */ +@interface TTSDKAccessToken : NSObject + +/// 唯一标志 +@property (nonatomic, copy) NSString * kid; + +/// 认证码 +@property (nonatomic, copy) NSString * accessToken; + +/// 认证码类型 +@property (nonatomic, copy) NSString * tokenType; + +/// mac密钥 +@property (nonatomic, copy) NSString * macKey; + +/// mac密钥计算方式 +@property (nonatomic, copy) NSString * macAlgorithm; + +/// 用户授权的权限,多个时以逗号隔开 +@property (nonatomic, copy) NSString * scope; + +/// 用户授权的权限 Array 形式 +@property (nonatomic, copy) NSArray * scopeArray; + +/// 根据JSON生成 TTSDKAccessToken +/// @param accessTokenJsonString json字符串类型的AccessToken ++ (TTSDKAccessToken *)build:(NSString *)accessTokenJsonString; + +/// 通过参数生成实例 ++ (TTSDKAccessToken *)build:(NSString *)kid accessToken:(NSString *)accessToken tokenType:(NSString *)tokenType macKey:(NSString *)macKey macAlgorithm:(NSString *)macAlgorithm; + ++ (TTSDKAccessToken *)build:(NSString *)kid accessToken:(NSString *)accessToken tokenType:(NSString *)tokenType macKey:(NSString *)macKey macAlgorithm:(NSString *)macAlgorithm scope:(NSArray *)scope; + +/// 转换成json字符串 +- (NSString *)toJsonString; + +- (NSDictionary *)toDictionary; + ++ (NSArray *)scopeStringToArray:(NSString *)scopeString; + ++ (TTSDKAccessToken *)createWithQueryStr:(NSString *)queryStr; ++ (TTSDKAccessToken *)createWithDictionary:(NSDictionary *)dic; + +- (NSString *)toQueryString; + +/** + * @brief 获取当前认证 + * + * 该认证会优先读取本地缓存,不存在时将会返回nil + */ ++ (TTSDKAccessToken *)currentAccessToken; + ++ (void)setCurrentToken:(TTSDKAccessToken *)token; + +@end diff --git a/Plugins/iOS/TapLoginSDK.framework/Headers/TTSDKAccessToken.h.meta b/Plugins/iOS/TapLoginSDK.framework/Headers/TTSDKAccessToken.h.meta new file mode 100644 index 0000000..d4a6e9e --- /dev/null +++ b/Plugins/iOS/TapLoginSDK.framework/Headers/TTSDKAccessToken.h.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 876cdb492e7fe44db98e22e07df1541a +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Plugins/iOS/TapLoginSDK.framework/Headers/TTSDKConfig.h b/Plugins/iOS/TapLoginSDK.framework/Headers/TTSDKConfig.h new file mode 100644 index 0000000..732574f --- /dev/null +++ b/Plugins/iOS/TapLoginSDK.framework/Headers/TTSDKConfig.h @@ -0,0 +1,31 @@ +// +// TTSDKConfig.h +// TapTapSDK +// +// Created by wzb on 2020/5/13. +// Copyright © 2020 易玩. All rights reserved. +// + +#import + +NS_ASSUME_NONNULL_BEGIN + +#define TapLoginSDKErrorDomain @"TapLoginSDKErrorDomain" + +typedef NS_ENUM (NSInteger, RegionType) { + RegionTypeCN, + RegionTypeIO +}; + +@interface TTSDKConfig : NSObject + +/// 是否为圆角,默认为圆角 +@property (nonatomic, assign) BOOL roundCorner; +/// 限定登录客户端 +@property (nonatomic, assign) RegionType regionType; +/// Server URL +@property (nonatomic, copy) NSString *serverURL; + +@end + +NS_ASSUME_NONNULL_END diff --git a/Plugins/iOS/TapLoginSDK.framework/Headers/TTSDKConfig.h.meta b/Plugins/iOS/TapLoginSDK.framework/Headers/TTSDKConfig.h.meta new file mode 100644 index 0000000..3f983e0 --- /dev/null +++ b/Plugins/iOS/TapLoginSDK.framework/Headers/TTSDKConfig.h.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: a9bf7a68eb0064940bdafa002b57126e +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Plugins/iOS/TapLoginSDK.framework/Headers/TTSDKLoginResult.h b/Plugins/iOS/TapLoginSDK.framework/Headers/TTSDKLoginResult.h new file mode 100644 index 0000000..e56ec2f --- /dev/null +++ b/Plugins/iOS/TapLoginSDK.framework/Headers/TTSDKLoginResult.h @@ -0,0 +1,29 @@ +// +// TTSDKLoginResult.h +// TapTapSDK +// +// Created by TapTap on 2017/10/17. +// Copyright © 2017年 易玩. All rights reserved. +// + +#import + +@class TTSDKAccessToken; + +/** + * @brief 登入结果 + * + * 该类封装了登入的响应结果(非NSError情况下) + */ +@interface TTSDKLoginResult : NSObject + +/// 授权Token +@property (nonatomic, copy) TTSDKAccessToken *token; + +/// 用户是否选择取消授权(非拒绝授权,拒绝授权将在NSError中进行返回) +@property (nonatomic, readonly) BOOL isCancelled; + +- (instancetype)initWithToken:(TTSDKAccessToken *)token + isCancelled:(BOOL)isCancelled; + +@end diff --git a/Plugins/iOS/TapLoginSDK.framework/Headers/TTSDKLoginResult.h.meta b/Plugins/iOS/TapLoginSDK.framework/Headers/TTSDKLoginResult.h.meta new file mode 100644 index 0000000..d936e5a --- /dev/null +++ b/Plugins/iOS/TapLoginSDK.framework/Headers/TTSDKLoginResult.h.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: bc7910d23d0b545c0bba3d9ea62e2b8a +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Plugins/iOS/TapLoginSDK.framework/Headers/TTSDKProfile.h b/Plugins/iOS/TapLoginSDK.framework/Headers/TTSDKProfile.h new file mode 100644 index 0000000..690aefc --- /dev/null +++ b/Plugins/iOS/TapLoginSDK.framework/Headers/TTSDKProfile.h @@ -0,0 +1,48 @@ +// +// TTSDKProfile.h +// TapTapSDK +// +// Created by TapTap on 2017/10/27. +// Copyright © 2017年 易玩. All rights reserved. +// + +#import + +/** + * @brief TapTap用户信息封装类 + * + * 该类封装了所有用户信息提供的返回数据 + */ +@interface TTSDKProfile : NSObject + +/// 用户名 +@property (nonatomic, readonly, strong) NSString *name; + +/// 用户头像 +@property (nonatomic, readonly, strong) NSString *avatar; + +/// open id +@property (nonatomic, readonly, strong) NSString *openid; + +/// union id +@property (nonatomic, readonly, strong) NSString *unionid; + +@property (nonatomic, readonly, strong) NSString *email; + +@property (nonatomic, readonly, assign, getter = isEmailVerified) BOOL emailVerified; + +- (instancetype)initWithJSON:(NSDictionary *)json; + +/** + * @brief 获取当前用户信息 + * + * 该用户信息会优先读取本地缓存,不存在时将会返回nil + */ ++ (TTSDKProfile *)currentProfile; + ++ (void)fetchProfileForCurrentAccessToken:(void (^)(TTSDKProfile *profile, NSError *error))handler; + +- (NSString *)toJsonString; + +- (NSDictionary *)toDictionary; +@end diff --git a/Plugins/iOS/TapLoginSDK.framework/Headers/TTSDKProfile.h.meta b/Plugins/iOS/TapLoginSDK.framework/Headers/TTSDKProfile.h.meta new file mode 100644 index 0000000..20e8b18 --- /dev/null +++ b/Plugins/iOS/TapLoginSDK.framework/Headers/TTSDKProfile.h.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 4378d9768be484d1c9c64590759c38a9 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Plugins/iOS/TapLoginSDK.framework/Headers/TapAuth.h b/Plugins/iOS/TapLoginSDK.framework/Headers/TapAuth.h new file mode 100644 index 0000000..1227c64 --- /dev/null +++ b/Plugins/iOS/TapLoginSDK.framework/Headers/TapAuth.h @@ -0,0 +1,30 @@ +// +// TapAuth.h +// TapLoginSDK +// +// Created by 黄驿峰 on 2023/9/14. +// + +#import +#import + +NS_ASSUME_NONNULL_BEGIN + +typedef void (^TapAuthManagerRequestHandler)(TapAuthResult *result); + +@interface TapAuth : NSObject + ++ (BOOL)isPreApproved; + ++ (void)setPreApproved:(BOOL)preApproved; + +/// 开始登录流程 +/// @param permissions 权限列表 +/// @param targetViewController 需要展现的页面 ++ (void)requestPermissions:(NSArray *)permissions fromController:(UIViewController *_Nullable)targetViewController handler:(TapAuthManagerRequestHandler)handler; + ++ (void)requestPermissions:(NSArray *)permissions handler:(TapAuthManagerRequestHandler)handler; + +@end + +NS_ASSUME_NONNULL_END diff --git a/Plugins/iOS/TapLoginSDK.framework/Headers/TapAuth.h.meta b/Plugins/iOS/TapLoginSDK.framework/Headers/TapAuth.h.meta new file mode 100644 index 0000000..5b11b52 --- /dev/null +++ b/Plugins/iOS/TapLoginSDK.framework/Headers/TapAuth.h.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 4e0e5352a9300473c9b9539ddcc92cec +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Plugins/iOS/TapLoginSDK.framework/Headers/TapAuthResult.h b/Plugins/iOS/TapLoginSDK.framework/Headers/TapAuthResult.h new file mode 100644 index 0000000..550f891 --- /dev/null +++ b/Plugins/iOS/TapLoginSDK.framework/Headers/TapAuthResult.h @@ -0,0 +1,36 @@ +// +// TapAuthResult.h +// TapCommonSDK +// +// Created by 黄驿峰 on 2022/1/27. +// + +#import +#import + +typedef NS_ENUM(NSInteger, TapAuthResultType) { + TapAuthResultTypeSuccess, + TapAuthResultTypeCancel, + TapAuthResultTypeError, +}; + +NS_ASSUME_NONNULL_BEGIN + +@interface TapAuthResult : NSObject + +@property (nonatomic, assign, readonly) TapAuthResultType type; + +@property (nonatomic, strong, nullable, readonly) TTSDKAccessToken *token; + +@property (nonatomic, strong, nullable, readonly) NSError *error; + ++ (instancetype)successWithToken:(TTSDKAccessToken *)token; ++ (instancetype)failWithError:(NSError *)error; ++ (instancetype)cancel; + ++ (instancetype)new NS_UNAVAILABLE; +- (instancetype)init NS_UNAVAILABLE; + +@end + +NS_ASSUME_NONNULL_END diff --git a/Plugins/iOS/TapLoginSDK.framework/Headers/TapAuthResult.h.meta b/Plugins/iOS/TapLoginSDK.framework/Headers/TapAuthResult.h.meta new file mode 100644 index 0000000..ce51290 --- /dev/null +++ b/Plugins/iOS/TapLoginSDK.framework/Headers/TapAuthResult.h.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: d461e9ef9ae4f46398f05fd2d88d00d1 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Plugins/iOS/TapLoginSDK.framework/Headers/TapFriends.h b/Plugins/iOS/TapLoginSDK.framework/Headers/TapFriends.h new file mode 100644 index 0000000..c363af2 --- /dev/null +++ b/Plugins/iOS/TapLoginSDK.framework/Headers/TapFriends.h @@ -0,0 +1,59 @@ +// +// TapFriends.h +// TapLoginSDK +// +// Created by pzheng on 2022/02/23. +// + +#import + +NS_ASSUME_NONNULL_BEGIN + +/// Tap Friend Info +@interface TapFriendInfo : NSObject + +/// Nickname. +@property (nonatomic, readonly) NSString *name; + +/// Avatar. +@property (nonatomic, readonly) NSString *avatar; + +/// Open ID. +@property (nonatomic, readonly) NSString *openid; + +@end + +/// Query Result +@interface TapFriendResult : NSObject + +/// List of `TapFriendInfo`. +@property (nonatomic, nullable, readonly) NSArray *data; + +/// The start index of the next query. +@property (nonatomic, nullable, readonly) NSString *cursor; + +@end + +/// Query Option +@interface TapFriendQueryOption : NSObject + +/// The limit of the result. +@property (nonatomic) NSUInteger size; + +/// The start index of this query. +@property (nonatomic, nullable) NSString *cursor; + +@end + +/// Tap Friends +@interface TapFriends : NSObject + +/// Query mutual list. +/// @param option See `TapFriendQueryOption`. +/// @param callback Result callback. ++ (void)queryMutualListWithOption:(TapFriendQueryOption * _Nullable)option + callback:(void (^)(TapFriendResult * _Nullable result, NSError * _Nullable error))callback; + +@end + +NS_ASSUME_NONNULL_END diff --git a/Plugins/iOS/TapLoginSDK.framework/Headers/TapFriends.h.meta b/Plugins/iOS/TapLoginSDK.framework/Headers/TapFriends.h.meta new file mode 100644 index 0000000..9632cc0 --- /dev/null +++ b/Plugins/iOS/TapLoginSDK.framework/Headers/TapFriends.h.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: b6f33f68099984998abe53d03bb2c2c6 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Plugins/iOS/TapLoginSDK.framework/Headers/TapLoginHelper.h b/Plugins/iOS/TapLoginSDK.framework/Headers/TapLoginHelper.h new file mode 100644 index 0000000..7bb352e --- /dev/null +++ b/Plugins/iOS/TapLoginSDK.framework/Headers/TapLoginHelper.h @@ -0,0 +1,88 @@ +// +// TapLoginHelper.h +// TapTapLoginSource +// +// Created by Bottle K on 2020/12/2. +// + +#import +#import +#import +#import +#import +#import +#import + +#define TapLoginSDK @"TapLogin" +#define TapLoginSDK_VERSION_NUMBER @"32200001" +#define TapLoginSDK_VERSION @"3.22.0" + +NS_ASSUME_NONNULL_BEGIN + +@interface TapLoginHelper : NSObject + +/// 初始化 +/// @param clientID clientID ++ (void)initWithClientID:(NSString *)clientID; + +/// 初始化 +/// @param clientID clientID +/// @param config 配置项 ++ (void)initWithClientID:(NSString *)clientID config:(TTSDKConfig *_Nullable)config; + +/// 修改登录配置 +/// @param config 配置项 ++ (void)changeTapLoginConfig:(TTSDKConfig *_Nullable)config; + +/// 设置登录回调 +/// @param delegate 回调 ++ (void)registerLoginResultDelegate:(id )delegate; + +/// 移除登录回调 ++ (void)unregisterLoginResultDelegate; + +/// 获取当前设置的登录回调 ++ (id _Nullable)getLoginResultDelegate; + +/// 开始登录流程 +/// @param permissions 权限列表 ++ (void)startTapLogin:(NSArray *)permissions; + +/// 开始登录流程 +/// @param targetViewController 需要展现的页面 +/// @param permissions 权限列表 ++ (void)startTapLogin:(UIViewController *_Nullable)targetViewController permissions:(NSArray *)permissions; + +/// 获取当前 Token ++ ( TTSDKAccessToken * _Nullable )currentAccessToken; + +/// 获取当前 Profile ++ ( TTSDKProfile * _Nullable )currentProfile; + +/// 获取当前服务器上最新的 Profile +/// @param callback 回调 ++ (void)fetchProfileForCurrentAccessToken:(void (^)(TTSDKProfile *profile, NSError *error))callback; + +/// 登出 ++ (void)logout; + +/// 获取当前用户是否有测试资格 +/// @param callback 回调 ++ (void)getTestQualification:(void (^)(BOOL isQualified, NSError *_Nullable error))callback; + +/// 当前是否有国内客户端支持 ++ (BOOL)isTapTapClientSupport; + +/// 当前是否有国外客户端支持 ++ (BOOL)isTapTapGlobalClientSupport; + +/// 监听 url 回调 +/// @param url url ++ (BOOL)handleTapTapOpenURL:(NSURL *)url __attribute__((deprecated("Please use [TDSHandleUrl handleOpenURL:]"))); + +/// 添加预设的登录请求权限 ++ (void)appendPermission:(NSString *)permission; + +@end + +NS_ASSUME_NONNULL_END diff --git a/Plugins/iOS/TapLoginSDK.framework/Headers/TapLoginHelper.h.meta b/Plugins/iOS/TapLoginSDK.framework/Headers/TapLoginHelper.h.meta new file mode 100644 index 0000000..47a6751 --- /dev/null +++ b/Plugins/iOS/TapLoginSDK.framework/Headers/TapLoginHelper.h.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 9b9d2131fe28f40879fa2499d7da7a96 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Plugins/iOS/TapLoginSDK.framework/Headers/TapLoginSDK.h b/Plugins/iOS/TapLoginSDK.framework/Headers/TapLoginSDK.h new file mode 100644 index 0000000..6c52dbd --- /dev/null +++ b/Plugins/iOS/TapLoginSDK.framework/Headers/TapLoginSDK.h @@ -0,0 +1,29 @@ +// +// TapLoginSDK.h +// TapLoginSDK +// +// Created by Bottle K on 2021/3/25. +// + +#import + +//! Project version number for TapLoginSDK. +FOUNDATION_EXPORT double TapLoginSDKVersionNumber; + +//! Project version string for TapLoginSDK. +FOUNDATION_EXPORT const unsigned char TapLoginSDKVersionString[]; + +// In this header, you should import all the public headers of your framework using statements like #import + +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import diff --git a/Plugins/iOS/TapLoginSDK.framework/Headers/TapLoginSDK.h.meta b/Plugins/iOS/TapLoginSDK.framework/Headers/TapLoginSDK.h.meta new file mode 100644 index 0000000..5cb44dc --- /dev/null +++ b/Plugins/iOS/TapLoginSDK.framework/Headers/TapLoginSDK.h.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 33ddf19b930e74662a47fc217e83d4af +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Plugins/iOS/TapLoginSDK.framework/Headers/TapPhoneLoginManager.h b/Plugins/iOS/TapLoginSDK.framework/Headers/TapPhoneLoginManager.h new file mode 100644 index 0000000..72c54c5 --- /dev/null +++ b/Plugins/iOS/TapLoginSDK.framework/Headers/TapPhoneLoginManager.h @@ -0,0 +1,30 @@ +// +// TapPhoneLoginManager.h +// TapLoginSDK +// +// Created by Fattycat on 2023/7/12. +// + +#import + +NS_ASSUME_NONNULL_BEGIN + +typedef void (^TapClientLoginResultHandler)(NSError *_Nullable error); +typedef void (^TapClientLoginResultHandler2)(NSError *_Nullable error, NSArray *permissions); + +typedef void (^TapPhoneLoginResultHandler)(Boolean isCancel, NSString *_Nullable phoneVerifyToken, NSString *_Nullable perferedLoginType); +typedef void (^TapPhoneLoginResultHandler2)(Boolean isCancel, NSString *_Nullable phoneVerifyToken, NSString *_Nullable perferedLoginType, NSArray *permissions); + +@interface TapPhoneLoginManager : NSObject + +@property (nonatomic, strong, nullable) TapClientLoginResultHandler clientResultHandler; +@property (nonatomic, strong, nullable) TapPhoneLoginResultHandler phoneResultHandler; + +@property (nonatomic, strong, nullable) TapClientLoginResultHandler2 clientResultHandler2; +@property (nonatomic, strong, nullable) TapPhoneLoginResultHandler2 phoneResultHandler2; + ++ (instancetype)sharedInstance; + +NS_ASSUME_NONNULL_END + +@end diff --git a/Plugins/iOS/TapLoginSDK.framework/Headers/TapPhoneLoginManager.h.meta b/Plugins/iOS/TapLoginSDK.framework/Headers/TapPhoneLoginManager.h.meta new file mode 100644 index 0000000..a435ed7 --- /dev/null +++ b/Plugins/iOS/TapLoginSDK.framework/Headers/TapPhoneLoginManager.h.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 4581fa3b2298c45239a44ddd4a4ed6fa +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Plugins/iOS/TapLoginSDK.framework/Headers/TapTapLoginResultDelegate.h b/Plugins/iOS/TapLoginSDK.framework/Headers/TapTapLoginResultDelegate.h new file mode 100644 index 0000000..6fe7738 --- /dev/null +++ b/Plugins/iOS/TapLoginSDK.framework/Headers/TapTapLoginResultDelegate.h @@ -0,0 +1,28 @@ +// +// TapTapLoginResultDelegate.h +// Pods-TDSLoginSource_Example +// +// Created by Bottle K on 2020/12/15. +// + +#import +#import +#import +NS_ASSUME_NONNULL_BEGIN + +@protocol TapTapLoginResultDelegate + +/// 登录成功回调 +/// @param token token对象 +- (void)onLoginSuccess:(TTSDKAccessToken *)token; + +/// 登录取消 +- (void)onLoginCancel; + +/// 登录失败 +/// @param error 失败原因 +- (void)onLoginError:(AccountGlobalError *)error; + +@end + +NS_ASSUME_NONNULL_END diff --git a/Plugins/iOS/TapLoginSDK.framework/Headers/TapTapLoginResultDelegate.h.meta b/Plugins/iOS/TapLoginSDK.framework/Headers/TapTapLoginResultDelegate.h.meta new file mode 100644 index 0000000..cf977d4 --- /dev/null +++ b/Plugins/iOS/TapLoginSDK.framework/Headers/TapTapLoginResultDelegate.h.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: e66623424742047229ea690c1cd508ab +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Plugins/iOS/TapLoginSDK.framework/Info.plist b/Plugins/iOS/TapLoginSDK.framework/Info.plist new file mode 100644 index 0000000..f244048 Binary files /dev/null and b/Plugins/iOS/TapLoginSDK.framework/Info.plist differ diff --git a/Plugins/iOS/TapLoginSDK.framework/Info.plist.meta b/Plugins/iOS/TapLoginSDK.framework/Info.plist.meta new file mode 100644 index 0000000..59ec738 --- /dev/null +++ b/Plugins/iOS/TapLoginSDK.framework/Info.plist.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: a7c248506d26945679dec3d205ba3196 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Plugins/iOS/TapLoginSDK.framework/Modules.meta b/Plugins/iOS/TapLoginSDK.framework/Modules.meta new file mode 100644 index 0000000..94e0644 --- /dev/null +++ b/Plugins/iOS/TapLoginSDK.framework/Modules.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 78f6ab88b40d74756a9ac2ee447b3aef +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Plugins/iOS/TapLoginSDK.framework/Modules/module.modulemap b/Plugins/iOS/TapLoginSDK.framework/Modules/module.modulemap new file mode 100644 index 0000000..4c98ef4 --- /dev/null +++ b/Plugins/iOS/TapLoginSDK.framework/Modules/module.modulemap @@ -0,0 +1,6 @@ +framework module TapLoginSDK { + umbrella header "TapLoginSDK.h" + + export * + module * { export * } +} diff --git a/Plugins/iOS/TapLoginSDK.framework/Modules/module.modulemap.meta b/Plugins/iOS/TapLoginSDK.framework/Modules/module.modulemap.meta new file mode 100644 index 0000000..593cab6 --- /dev/null +++ b/Plugins/iOS/TapLoginSDK.framework/Modules/module.modulemap.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 159fe574938864a4ebad993d5a0431c1 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Plugins/iOS/TapLoginSDK.framework/TapLoginSDK b/Plugins/iOS/TapLoginSDK.framework/TapLoginSDK new file mode 100644 index 0000000..34da842 Binary files /dev/null and b/Plugins/iOS/TapLoginSDK.framework/TapLoginSDK differ diff --git a/Plugins/iOS/TapLoginSDK.framework/TapLoginSDK.meta b/Plugins/iOS/TapLoginSDK.framework/TapLoginSDK.meta new file mode 100644 index 0000000..8120deb --- /dev/null +++ b/Plugins/iOS/TapLoginSDK.framework/TapLoginSDK.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: a82a6c4377084408f9f075ca9fb348da +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Plugins/zxing.unity.dll b/Plugins/zxing.unity.dll new file mode 100644 index 0000000..1ef2e26 Binary files /dev/null and b/Plugins/zxing.unity.dll differ diff --git a/Plugins/zxing.unity.dll.meta b/Plugins/zxing.unity.dll.meta new file mode 100644 index 0000000..8367da5 --- /dev/null +++ b/Plugins/zxing.unity.dll.meta @@ -0,0 +1,33 @@ +fileFormatVersion: 2 +guid: 44603b497110848c1bee102b300ad164 +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 0 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + Any: + second: + enabled: 1 + settings: {} + - first: + Editor: Editor + second: + enabled: 0 + settings: + DefaultValueInitialized: true + - first: + Windows Store Apps: WindowsStoreApps + second: + enabled: 0 + settings: + CPU: AnyCPU + userData: + assetBundleName: + assetBundleVariant: diff --git a/README.md b/README.md new file mode 100644 index 0000000..e1eb74b --- /dev/null +++ b/README.md @@ -0,0 +1,58 @@ +## [TapTap.Login](./Documentation/README.md) + +## 使用前提 + +使用 TapTap.Login 前提是必须依赖以下库: + +* [TapTap.Common](https://github.com/TapTap/TapCommon-Unity.git) + +> 如果游戏需要支持 PC Platform ,则参考[ PC配置文档 ](./PC.md) + +### 1.初始化 + +#### 如果配合 `TapBoostrap` 使用,则不需要调用初始化接口 + +```c# +TapLogin.Init(string clientID); +``` + +### 2.唤起 TapTap 网页 或者 TapTap 客户端进行登陆 + +登陆成功之后,会返回 `AccessToken` + +```c# +var accessToken = await TapLogin.Login(); +``` + +配置权限范围 + +```c# +// 默认使用 public_profile + +var accessToken = await TapLogin.Login(new []{"public_profile"}) +; +``` + +### 3. 获取 TapTap AccessToken + +```c# +var accessToken = await TapLogin.GetAccessToken(); +``` + +### 4. 获取 TapTap Profile + +```c# +var profile = await TapLogin.FetchProfile(); +``` + +### 5. 获取篝火测试资格 + +```c# +var boolean = await TapLogin.GetTestQualification(); +``` + +### 6. 退出登陆 + +```c# +TapLogin.Logout(); +``` \ No newline at end of file diff --git a/README.md.meta b/README.md.meta new file mode 100644 index 0000000..7807717 --- /dev/null +++ b/README.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: c720d298abf1847cca49e4f58f9972e8 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Runtime.meta b/Runtime.meta new file mode 100644 index 0000000..e2b5c9f --- /dev/null +++ b/Runtime.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2ae9b1c1f703a4bdc9ee0b6d24c4194a +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Runtime/Internal.meta b/Runtime/Internal.meta new file mode 100644 index 0000000..9136b2b --- /dev/null +++ b/Runtime/Internal.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 24cd5e31f29ae47b5866be602d4bd83c +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Runtime/Internal/ITapLoginPlatform.cs b/Runtime/Internal/ITapLoginPlatform.cs new file mode 100644 index 0000000..86e45d1 --- /dev/null +++ b/Runtime/Internal/ITapLoginPlatform.cs @@ -0,0 +1,30 @@ +using System; +using System.Threading.Tasks; + +namespace TapTap.Login.Internal { + public interface ITapLoginPlatform { + void Init(string clientID); + + void Init(string clientID, bool isCn, bool roundCorner); + + void ChangeConfig(bool roundCorner, bool isPortrait); + + Task FetchProfile(); + + Task GetProfile(); + + Task GetAccessToken(); + + Task Login(); + + Task Login(string[] permissions); + + Task Login(TapLoginPermissionConfig config); + + Task Authorize(string[] permissions = null); + + void Logout(); + + Task GetTestQualification(); + } +} diff --git a/Runtime/Internal/ITapLoginPlatform.cs.meta b/Runtime/Internal/ITapLoginPlatform.cs.meta new file mode 100644 index 0000000..aeccf7a --- /dev/null +++ b/Runtime/Internal/ITapLoginPlatform.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 4087c690e3ccd4ac38ad7d9062573224 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Runtime/Internal/Init.meta b/Runtime/Internal/Init.meta new file mode 100644 index 0000000..000b878 --- /dev/null +++ b/Runtime/Internal/Init.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7755e949d0f964a27a68a703b5758d90 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Runtime/Internal/Init/LoginInitTask.cs b/Runtime/Internal/Init/LoginInitTask.cs new file mode 100644 index 0000000..4ca4539 --- /dev/null +++ b/Runtime/Internal/Init/LoginInitTask.cs @@ -0,0 +1,14 @@ +using System; +using System.Linq; +using TapTap.Common; +using TapTap.Common.Internal.Init; + +namespace TapTap.Login.Internal.Init { + public class LoginInitTask : IInitTask { + public int Order => 11; + + public void Init(TapConfig config) { + TapLogin.Init(config.ClientID, config.RegionType == RegionType.CN, TapLoginConfig.Config == null || TapLoginConfig.Config.RoundCorner); + } + } +} diff --git a/Runtime/Internal/Init/LoginInitTask.cs.meta b/Runtime/Internal/Init/LoginInitTask.cs.meta new file mode 100644 index 0000000..762032d --- /dev/null +++ b/Runtime/Internal/Init/LoginInitTask.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: ef4050f6c70464872a62df912446e757 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Runtime/Internal/Region.cs b/Runtime/Internal/Region.cs new file mode 100644 index 0000000..2b8e59e --- /dev/null +++ b/Runtime/Internal/Region.cs @@ -0,0 +1,84 @@ +namespace TapTap.Login.Internal +{ + public abstract class Region + { + public abstract string WebHost(); + + public abstract string ApiHost(); + + public abstract string AccountHost(); + + public string CodeUrl() + { + return WebHost() + "/oauth2/v1/device/code"; + } + + public string TokenUrl() + { + return WebHost() + "/oauth2/v1/token"; + } + + public string ProfileUrl(bool havePublicProfile = true) + { + if (havePublicProfile) + { + return ApiHost() + "/account/profile/v1?client_id="; + } + else + { + return ApiHost() + "/account/basic-info/v1?client_id="; + } + } + + public string AccountUrl() + { + return AccountHost() + "/authorize?"; + } + } + + public class RegionCN : Region { + + private static string webHost = "https://accounts.tapapis.cn"; + + private static string apiHost = "https://open.tapapis.cn"; + + private static string accountHost = "https://accounts.taptap.cn"; + + + public override string WebHost() + { + return webHost; + } + + public override string ApiHost() + { + return apiHost; + } + + public override string AccountHost() + { + return accountHost; + } + } + + public class RegionIO : Region + { + private static string webHost = "https://accounts.tapapis.com"; + private static string apiHost = "https://open.tapapis.com"; + private static string accountHost = "https://accounts.taptap.io"; + public override string WebHost() + { + return webHost; + } + + public override string ApiHost() + { + return apiHost; + } + + public override string AccountHost() + { + return accountHost; + } + } +} \ No newline at end of file diff --git a/Runtime/Internal/Region.cs.meta b/Runtime/Internal/Region.cs.meta new file mode 100644 index 0000000..882a9e1 --- /dev/null +++ b/Runtime/Internal/Region.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 1feada2e0e7bd49db8a8fa50ad07bc6e +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Runtime/Public.meta b/Runtime/Public.meta new file mode 100644 index 0000000..bfe4288 --- /dev/null +++ b/Runtime/Public.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 397e36f43b9fe4d309a388111a8cb950 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Runtime/Public/AccessToken.cs b/Runtime/Public/AccessToken.cs new file mode 100644 index 0000000..3f4f444 --- /dev/null +++ b/Runtime/Public/AccessToken.cs @@ -0,0 +1,69 @@ +using System; +using System.Collections.Generic; +using TapTap.Common; +using UnityEngine; +using LC.Newtonsoft.Json; + +namespace TapTap.Login +{ + public class AccessToken + { + [JsonProperty("kid")] + public string kid; + + [JsonProperty("access_token")] + public string accessToken; + + [JsonProperty("token_type")] + public string tokenType; + + [JsonProperty("mac_key")] + public string macKey; + + [JsonProperty("mac_algorithm")] + public string macAlgorithm; + + [JsonProperty("scope")] + public HashSet scopeSet; + + public AccessToken(string json) + { + if (string.IsNullOrEmpty(json)) + { + return; + } + var dic = Json.Deserialize(json) as Dictionary; + kid = SafeDictionary.GetValue(dic, "kid"); + accessToken = SafeDictionary.GetValue(dic, "access_token"); + tokenType = SafeDictionary.GetValue(dic, "token_type"); + macKey = SafeDictionary.GetValue(dic, "mac_key"); + macAlgorithm = SafeDictionary.GetValue(dic, "mac_algorithm"); + string scopeStr = SafeDictionary.GetValue(dic, "scope"); + if (string.IsNullOrEmpty(scopeStr)) + { + scopeSet = new HashSet(); + } + else + { + try + { + scopeSet = new HashSet(scopeStr.Split(' ')); + } + catch (Exception e) + { + scopeSet = new HashSet(); + } + } + } + + public AccessToken() + { + + } + + public string ToJson() + { + return JsonUtility.ToJson(this); + } + } +} \ No newline at end of file diff --git a/Runtime/Public/AccessToken.cs.meta b/Runtime/Public/AccessToken.cs.meta new file mode 100644 index 0000000..83da57c --- /dev/null +++ b/Runtime/Public/AccessToken.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 6b1c85172abe742f18d2bb494252eed8 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Runtime/Public/Profile.cs b/Runtime/Public/Profile.cs new file mode 100644 index 0000000..9c7ca37 --- /dev/null +++ b/Runtime/Public/Profile.cs @@ -0,0 +1,51 @@ +using System.Collections.Generic; +using TapTap.Common; +using UnityEngine; +using LC.Newtonsoft.Json; + +namespace TapTap.Login +{ + public class Profile + { + [JsonProperty("name")] + public string name; + + [JsonProperty("gender")] + public string gender; + + [JsonProperty("avatar")] + public string avatar; + + [JsonProperty("openid")] + public string openid; + + [JsonProperty("unionid")] + public string unionid; + + [JsonIgnore] + public string email; + + [JsonIgnore] + public bool emailVerified; + + public Profile() { + + } + + public Profile(string json) + { + var dic = Json.Deserialize(json) as Dictionary; + name = SafeDictionary.GetValue(dic, "name"); + avatar = SafeDictionary.GetValue(dic, "avatar"); + openid = SafeDictionary.GetValue(dic, "openid"); + unionid = SafeDictionary.GetValue(dic, "unionid"); + email = SafeDictionary.GetValue(dic, "email"); + emailVerified = SafeDictionary.GetValue(dic, "email_verified"); + } + + public string ToJson() + { + return JsonUtility.ToJson(this); + } + } +} \ No newline at end of file diff --git a/Runtime/Public/Profile.cs.meta b/Runtime/Public/Profile.cs.meta new file mode 100644 index 0000000..998cbbf --- /dev/null +++ b/Runtime/Public/Profile.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 6645cb881ce9c41d5a8cc4708dd67200 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Runtime/Public/TapFriendInfo.cs b/Runtime/Public/TapFriendInfo.cs new file mode 100644 index 0000000..a99c4db --- /dev/null +++ b/Runtime/Public/TapFriendInfo.cs @@ -0,0 +1,15 @@ +namespace TapTap.Friends { + public class TapFriendInfo { + public string Name { + get; internal set; + } + + public string Avatar { + get; internal set; + } + + public string OpenId { + get; internal set; + } + } +} diff --git a/Runtime/Public/TapFriendInfo.cs.meta b/Runtime/Public/TapFriendInfo.cs.meta new file mode 100644 index 0000000..19d8068 --- /dev/null +++ b/Runtime/Public/TapFriendInfo.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 1704f54f800454b3fb4e7e8473f9cb37 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Runtime/Public/TapFriendResult.cs b/Runtime/Public/TapFriendResult.cs new file mode 100644 index 0000000..b88dfc3 --- /dev/null +++ b/Runtime/Public/TapFriendResult.cs @@ -0,0 +1,13 @@ +using System.Collections.ObjectModel; + +namespace TapTap.Friends { + public class TapFriendResult { + public ReadOnlyCollection FriendList { + get; internal set; + } + + public string Cursor { + get; internal set; + } + } +} diff --git a/Runtime/Public/TapFriendResult.cs.meta b/Runtime/Public/TapFriendResult.cs.meta new file mode 100644 index 0000000..2970f16 --- /dev/null +++ b/Runtime/Public/TapFriendResult.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 10c88cb0d937247c3a4c6af903d5503d +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Runtime/Public/TapFriends.cs b/Runtime/Public/TapFriends.cs new file mode 100644 index 0000000..67189ff --- /dev/null +++ b/Runtime/Public/TapFriends.cs @@ -0,0 +1,145 @@ +using System; +using System.Threading.Tasks; +using System.Collections.Generic; +using System.Linq; +using TapTap.Login; +using TapTap.Common; +using TapTap.Login.Internal; +using System.Net.Http; +using System.Net.Http.Headers; +using TapTap.Common.Internal.Json; +using TapTap.Common.Internal.Http; +using LC.Newtonsoft.Json; +using System.Security.Cryptography; +using System.Text; + +namespace TapTap.Friends { + public class TapFriends { + private static HttpClient httpClient = null; + + public static async Task QueryMutualList(string cursor = null, int size = 100) { + AccessToken accessToken = await TapLogin.GetAccessToken(); + if (accessToken == null) { + throw new ArgumentNullException(nameof(accessToken)); + } + string url = $"{TapTapSdk.CurrentRegion.ApiHost()}/friends/v1/list"; + Dictionary queryParams = new Dictionary { + { "max_size", size }, + {"client_id",TapTapSdk.ClientId } + }; + if (!string.IsNullOrEmpty(cursor)) { + queryParams.Add("continuation_token", cursor); + } + IEnumerable queryPairs = queryParams.Select(kv => $"{kv.Key}={kv.Value}"); + string queries = string.Join("&", queryPairs); + url = $"{url}?{queries}"; + + var dt = DateTime.UtcNow - new DateTime(1970, 1, 1); + var ts = (int)dt.TotalSeconds; + var uri = new Uri(url); + Dictionary headers = new Dictionary { + { "Authorization", "MAC " + GetAuthorizationHeader(accessToken.kid,accessToken.macKey,accessToken.macAlgorithm, + "GET",uri.PathAndQuery,uri.Host,"443", ts)} + }; + if (httpClient == null) + { + httpClient = new HttpClient(); + httpClient.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json")); + httpClient.DefaultRequestHeaders.AcceptCharset.Add(new StringWithQualityHeaderValue("utf-8")); + + } + HttpRequestMessage request = new HttpRequestMessage + { + RequestUri = new Uri(url), + Method = HttpMethod.Get, + }; + HttpRequestHeaders reqHeaders = request.Headers; + if (reqHeaders != null) + { + foreach (KeyValuePair kv in headers) + { + reqHeaders.Add(kv.Key, kv.Value.ToString()); + } + } + TapHttpUtils.PrintRequest(httpClient, request); + + HttpResponseMessage originResponse = await httpClient.SendAsync(request, HttpCompletionOption.ResponseHeadersRead); + request.Dispose(); + string resultString = await originResponse.Content.ReadAsStringAsync(); + originResponse.Dispose(); + TapHttpUtils.PrintResponse(originResponse, resultString); + + Dictionary response; + if (originResponse.IsSuccessStatusCode) + { + response = JsonConvert.DeserializeObject>(resultString, + TapJsonConverter.Default); + } + else + { + throw new TapException(((int)originResponse.StatusCode), resultString); + } + if (response.TryGetValue("data", out object dataObj) && + dataObj is Dictionary data) { + TapFriendResult result = new TapFriendResult(); + if (data.TryGetValue("list", out object listObj) && listObj is List list) { + result.FriendList = list.Cast>() + .Select(item => new TapFriendInfo { + OpenId = item["openid"] as string, + Name = item.TryGetValue("nickname", out object nicknameObj) && (nicknameObj is string nickname) ? + nickname : null, + Avatar = item.TryGetValue("avatar", out object avatarObj) && (avatarObj is string avatar) ? + avatar : null + }) + .ToList() + .AsReadOnly(); + + result.Cursor = data.TryGetValue("is_truncated", out object isTruncatedObj) && + isTruncatedObj is bool isTruncated && + isTruncated ? + (data.TryGetValue("next_continuation_token", out object nextSkipObj) && + (nextSkipObj is string nextSkip) ? + nextSkip : null) : null; + return result; + + } + } + return null; + } + + private static string GetAuthorizationHeader(string kid, + string macKey, + string macAlgorithm, + string method, + string uri, + string host, + string port, + int timestamp) + { + var nonce = new Random().Next().ToString(); + + var normalizedString = $"{timestamp}\n{nonce}\n{method}\n{uri}\n{host}\n{port}\n\n"; + + HashAlgorithm hashGenerator; + switch (macAlgorithm) + { + case "hmac-sha-256": + hashGenerator = new HMACSHA256(Encoding.ASCII.GetBytes(macKey)); + break; + case "hmac-sha-1": + hashGenerator = new HMACSHA1(Encoding.ASCII.GetBytes(macKey)); + break; + default: + throw new InvalidOperationException("Unsupported MAC algorithm"); + } + + var hash = Convert.ToBase64String(hashGenerator.ComputeHash(Encoding.ASCII.GetBytes(normalizedString))); + + var authorizationHeader = new StringBuilder(); + authorizationHeader.AppendFormat(@"id=""{0}"",ts=""{1}"",nonce=""{2}"",mac=""{3}""", + kid, timestamp, nonce, hash); + + return authorizationHeader.ToString(); + } + } +} diff --git a/Runtime/Public/TapFriends.cs.meta b/Runtime/Public/TapFriends.cs.meta new file mode 100644 index 0000000..0a13913 --- /dev/null +++ b/Runtime/Public/TapFriends.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 63d7af19c75ee4a89b130a0a0e1736e3 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Runtime/Public/TapLogin.cs b/Runtime/Public/TapLogin.cs new file mode 100644 index 0000000..e9eb5c7 --- /dev/null +++ b/Runtime/Public/TapLogin.cs @@ -0,0 +1,119 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using TapTap.Common; +using TapTap.Login.Internal; +using TapTap.Common.Internal.Utils; +using System; + +namespace TapTap.Login +{ + public class TapLogin + { + public const string TAP_LOGIN_SCOPE_BASIC_INFO = "basic_info"; + public const string TAP_LOGIN_SCOPE_PUBLIC_PROFILE = "public_profile"; + public const string TAP_LOGIN_SCOPE_USER_FRIENDS = "user_friends"; + public const string TAP_LOGIN_SCOPE_EMAIL = "email"; + public const string TAP_LOGIN_SCOPE_PHONE = "phone"; + public const string TAP_LOGIN_SCOPE_COMPLIANCE = "compliance"; + + private static HashSet defaultPermissions; + + public static HashSet DefaultPermissions { + get { + if (defaultPermissions == null) { + defaultPermissions = new HashSet(); + } + return defaultPermissions; + } + } + + private static ITapLoginPlatform platformWrapper; + + static TapLogin() { + platformWrapper = BridgeUtils.CreateBridgeImplementation(typeof(ITapLoginPlatform), + "TapTap.Login") as ITapLoginPlatform; + } + + public static void Init(string clientID) { + platformWrapper.Init(clientID); + TapTapSdk.SDKInitialize(clientID, true); + } + + public static void Init(string clientID, bool isCn, bool roundCorner) { + platformWrapper.Init(clientID, isCn, roundCorner); + TapTapSdk.SDKInitialize(clientID, isCn); + } + + public static void ChangeConfig(bool roundCorner, bool isPortrait) { + platformWrapper.ChangeConfig(roundCorner, isPortrait); + } + + public static Task FetchProfile() { + return platformWrapper.FetchProfile(); + } + + public static Task GetProfile() { + return platformWrapper.GetProfile(); + } + + public static Task GetAccessToken() { + return platformWrapper.GetAccessToken(); + } + + public static Task Login() { + var result = platformWrapper.Login(); + _ = TriggerTapLogin(result); + return result; + } + + public static Task Login(string[] permissions) { + + var result = platformWrapper.Login(permissions); + _ = TriggerTapLogin(result); + return result; + } + + + public static Task Login(TapLoginPermissionConfig config) { + Task result = platformWrapper.Login(config); + _ = TriggerTapLogin(result); + return result; + } + + public static Task Authorize(string[] permissions = null) { + return platformWrapper.Authorize(permissions); + } + + public static void Logout() { + platformWrapper.Logout(); + EventManager.TriggerEvent(EventConst.OnTapLogout, UnityTDSUser.TAP_AUTH_CHANNEL); + } + + public static Task GetTestQualification() { + return platformWrapper.GetTestQualification(); + } + + public static void AppendPermission(string permission) { + if (string.IsNullOrWhiteSpace(permission)) { + return; + } + DefaultPermissions.Add(permission); + } + + public static void RemovePermission(string permission) { + if (string.IsNullOrWhiteSpace(permission)) { + return; + } + DefaultPermissions.Remove(permission); + } + + private static async Task TriggerTapLogin(Task accessTokenTask) { + _ = await accessTokenTask; + var profile = await GetProfile(); + EventManager.TriggerEvent(EventConst.OnTapLogin, new KeyValuePair(UnityTDSUser.TAP_AUTH_CHANNEL, profile.unionid)); + } + + } +} \ No newline at end of file diff --git a/Runtime/Public/TapLogin.cs.meta b/Runtime/Public/TapLogin.cs.meta new file mode 100644 index 0000000..6219ae5 --- /dev/null +++ b/Runtime/Public/TapLogin.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: c60164586f7bc46bfb3013f5beb91f81 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Runtime/Public/TapLoginConfig.cs b/Runtime/Public/TapLoginConfig.cs new file mode 100644 index 0000000..4da0dc7 --- /dev/null +++ b/Runtime/Public/TapLoginConfig.cs @@ -0,0 +1,34 @@ +using System; +using System.Linq; +using System.Collections.Generic; + +namespace TapTap.Common { + public class TapLoginConfig { + public static TapLoginConfig Config { get; set; } + + private bool _isPortrait; + private bool _roundCorner; + + public bool RoundCorner => _roundCorner; + + public TapLoginConfig(bool RoundCorner, bool isPortrait) { + _roundCorner = RoundCorner; + _isPortrait = isPortrait; + } + + public Dictionary ToDict() { + return new Dictionary { + ["roundCorner"] = _roundCorner, + ["isPortrait"] = _isPortrait, + }; + } + } + + public static class TapConfigBuilderForLogin { + public static TapConfig.Builder TapLoginConfig(this TapConfig.Builder _, bool RoundCorner, bool isPotrait) { + + Common.TapLoginConfig.Config = new TapLoginConfig(RoundCorner, isPotrait); + return _; + } + } +} \ No newline at end of file diff --git a/Runtime/Public/TapLoginConfig.cs.meta b/Runtime/Public/TapLoginConfig.cs.meta new file mode 100644 index 0000000..df72094 --- /dev/null +++ b/Runtime/Public/TapLoginConfig.cs.meta @@ -0,0 +1,3 @@ +fileFormatVersion: 2 +guid: a5923d5c11ef42ad8b5e3ccf0319d1f6 +timeCreated: 1695632344 \ No newline at end of file diff --git a/Runtime/Public/TapLoginPermissionConfig.cs b/Runtime/Public/TapLoginPermissionConfig.cs new file mode 100644 index 0000000..658e7ba --- /dev/null +++ b/Runtime/Public/TapLoginPermissionConfig.cs @@ -0,0 +1,12 @@ + +namespace TapTap.Login { + public class TapLoginPermission { + public string Permission { get; set; } + public string Description { get; set; } + } + + public class TapLoginPermissionConfig { + public string Name { get; set; } + public TapLoginPermission[] Permissions { get; set; } + } +} \ No newline at end of file diff --git a/Runtime/Public/TapLoginPermissionConfig.cs.meta b/Runtime/Public/TapLoginPermissionConfig.cs.meta new file mode 100644 index 0000000..254a079 --- /dev/null +++ b/Runtime/Public/TapLoginPermissionConfig.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 7eb5131eed15d40b79b2cf225f2e376f +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Runtime/Public/TapTapSdk.cs b/Runtime/Public/TapTapSdk.cs new file mode 100644 index 0000000..4c7ffdd --- /dev/null +++ b/Runtime/Public/TapTapSdk.cs @@ -0,0 +1,20 @@ +using TapTap.Common; + +namespace TapTap.Login.Internal +{ + public static class TapTapSdk + { + public const string Version = "1.2.0"; + + public static string ClientId { get; private set; } + + public static Region CurrentRegion { get; private set; } + + public static void SDKInitialize(string clientId, bool isCn) + { + ClientId = clientId; + CurrentRegion = isCn ? (Region)new RegionCN() : new RegionIO(); + TapLocalizeManager.SetCurrentRegion(isCn); + } + } +} \ No newline at end of file diff --git a/Runtime/Public/TapTapSdk.cs.meta b/Runtime/Public/TapTapSdk.cs.meta new file mode 100644 index 0000000..7d4711b --- /dev/null +++ b/Runtime/Public/TapTapSdk.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 762c5963339fb430e974398fae5bb511 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Runtime/TapTap.Login.Runtime.asmdef b/Runtime/TapTap.Login.Runtime.asmdef new file mode 100644 index 0000000..290b230 --- /dev/null +++ b/Runtime/TapTap.Login.Runtime.asmdef @@ -0,0 +1,15 @@ +{ + "name": "TapTap.Login.Runtime", + "references": [ + "GUID:0b3f64ec33f5b4da98a17367a35b82f2" + ], + "includePlatforms": [], + "excludePlatforms": [], + "allowUnsafeCode": false, + "overrideReferences": false, + "precompiledReferences": [], + "autoReferenced": true, + "defineConstraints": [], + "versionDefines": [], + "noEngineReferences": false +} \ No newline at end of file diff --git a/Runtime/TapTap.Login.Runtime.asmdef.meta b/Runtime/TapTap.Login.Runtime.asmdef.meta new file mode 100644 index 0000000..eba7550 --- /dev/null +++ b/Runtime/TapTap.Login.Runtime.asmdef.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: e8754b6153389406c963cd52996cc80f +AssemblyDefinitionImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Standalone.meta b/Standalone.meta new file mode 100644 index 0000000..ff93668 --- /dev/null +++ b/Standalone.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 31c94f56cfbed4fa2af034971d6dde47 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Standalone/Editor.meta b/Standalone/Editor.meta new file mode 100644 index 0000000..eabbaae --- /dev/null +++ b/Standalone/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b5994a776f5ee4f8998f23dd47cb2fef +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Standalone/Editor/TapLoginStandaloneProcessBuild.cs b/Standalone/Editor/TapLoginStandaloneProcessBuild.cs new file mode 100644 index 0000000..8f804da --- /dev/null +++ b/Standalone/Editor/TapLoginStandaloneProcessBuild.cs @@ -0,0 +1,22 @@ +using System; +using UnityEditor.Build.Reporting; +using TapTap.Common.Editor; + +namespace TapTap.Login.Editor +{ + public class TapLoginStandaloneProcessBuild : SDKLinkProcessBuild + { + public override int callbackOrder => 0; + + public override string LinkPath => "TapTap/Login/link.xml"; + + public override LinkedAssembly[] LinkedAssemblies => new LinkedAssembly[] { + new LinkedAssembly { Fullname = "TapTap.Login.Runtime" }, + new LinkedAssembly { Fullname = "TapTap.Login.Standalone.Runtime" } + }; + + public override Func IsTargetPlatform => (report) => { + return BuildTargetUtils.IsSupportStandalone(report.summary.platform); + }; + } +} \ No newline at end of file diff --git a/Standalone/Editor/TapLoginStandaloneProcessBuild.cs.meta b/Standalone/Editor/TapLoginStandaloneProcessBuild.cs.meta new file mode 100644 index 0000000..f8b3d64 --- /dev/null +++ b/Standalone/Editor/TapLoginStandaloneProcessBuild.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 7661a47473b9c438980a7d4b0be90e2e +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Standalone/Editor/TapTap.Login.Standalone.Editor.asmdef b/Standalone/Editor/TapTap.Login.Standalone.Editor.asmdef new file mode 100644 index 0000000..eb322b1 --- /dev/null +++ b/Standalone/Editor/TapTap.Login.Standalone.Editor.asmdef @@ -0,0 +1,17 @@ +{ + "name": "TapTap.Login.Standalone.Editor", + "references": [ + "GUID:616cea76def2d4f059b94440fc8cc03d" + ], + "includePlatforms": [ + "Editor" + ], + "excludePlatforms": [], + "allowUnsafeCode": false, + "overrideReferences": false, + "precompiledReferences": [], + "autoReferenced": true, + "defineConstraints": [], + "versionDefines": [], + "noEngineReferences": false +} \ No newline at end of file diff --git a/Standalone/Editor/TapTap.Login.Standalone.Editor.asmdef.meta b/Standalone/Editor/TapTap.Login.Standalone.Editor.asmdef.meta new file mode 100644 index 0000000..b8f53e5 --- /dev/null +++ b/Standalone/Editor/TapTap.Login.Standalone.Editor.asmdef.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: ff2731b992f0b4736afeff3719a96ad4 +AssemblyDefinitionImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Standalone/Resources.meta b/Standalone/Resources.meta new file mode 100644 index 0000000..8350073 --- /dev/null +++ b/Standalone/Resources.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7396550db8b6142668fe2dab2457c315 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Standalone/Resources/Prefabs.meta b/Standalone/Resources/Prefabs.meta new file mode 100644 index 0000000..047f994 --- /dev/null +++ b/Standalone/Resources/Prefabs.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 32e8212d1e4f3425d83ba0ecb6d9c87f +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Standalone/Resources/Prefabs/TapLogin.meta b/Standalone/Resources/Prefabs/TapLogin.meta new file mode 100644 index 0000000..1cbbf79 --- /dev/null +++ b/Standalone/Resources/Prefabs/TapLogin.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c686093e8a6564ca382572d5fcbac918 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Standalone/Resources/Prefabs/TapLogin/LoginPanel.prefab b/Standalone/Resources/Prefabs/TapLogin/LoginPanel.prefab new file mode 100644 index 0000000..9abb2c8 --- /dev/null +++ b/Standalone/Resources/Prefabs/TapLogin/LoginPanel.prefab @@ -0,0 +1,756 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &1988411968899274 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 224718936248725256} + - component: {fileID: 222194775545726812} + - component: {fileID: 114158668541600830} + - component: {fileID: 1329868199737064244} + - component: {fileID: 7345694189827681648} + m_Layer: 5 + m_Name: LoginPanel + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &224718936248725256 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1988411968899274} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 6142360791741512961} + - {fileID: 7974149656338911424} + - {fileID: 1592072733947156768} + - {fileID: 8187989918829261433} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 800, y: 480} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &222194775545726812 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1988411968899274} + m_CullTransparentMesh: 1 +--- !u!114 &114158668541600830 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1988411968899274} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 86b9e58454341479496cd09b34eb515a, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!114 &1329868199737064244 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1988411968899274} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: cfabb0440166ab443bba8876756fdfa9, type: 3} + m_Name: + m_EditorClassIdentifier: + m_EffectColor: {r: 0, g: 0, b: 0, a: 0.078431375} + m_EffectDistance: {x: -1, y: -2} + m_UseGraphicAlpha: 1 +--- !u!114 &7345694189827681648 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1988411968899274} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: cfabb0440166ab443bba8876756fdfa9, type: 3} + m_Name: + m_EditorClassIdentifier: + m_EffectColor: {r: 0, g: 0, b: 0, a: 0.078431375} + m_EffectDistance: {x: 1, y: 1} + m_UseGraphicAlpha: 1 +--- !u!1 &8710324469925805941 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1592072733947156768} + - component: {fileID: 1287205194081041748} + - component: {fileID: 945199783146882795} + m_Layer: 5 + m_Name: Divider + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1592072733947156768 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8710324469925805941} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 224718936248725256} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 1, y: 340} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &1287205194081041748 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8710324469925805941} + m_CullTransparentMesh: 1 +--- !u!114 &945199783146882795 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8710324469925805941} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 8dd7a6f3160e348049a949bc78ef0b29, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!1001 &1078484264839115353 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 224718936248725256} + m_Modifications: + - target: {fileID: 1384447095859190488, guid: 7ac7d7b1557f242f2b33c811a7857e6c, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2735868708447112056, guid: 7ac7d7b1557f242f2b33c811a7857e6c, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3589193167517764676, guid: 7ac7d7b1557f242f2b33c811a7857e6c, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3589193167517764676, guid: 7ac7d7b1557f242f2b33c811a7857e6c, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5287822639921967063, guid: 7ac7d7b1557f242f2b33c811a7857e6c, + type: 3} + propertyPath: m_Name + value: Web + objectReference: {fileID: 0} + - target: {fileID: 9175555145991798816, guid: 7ac7d7b1557f242f2b33c811a7857e6c, + type: 3} + propertyPath: m_Pivot.x + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9175555145991798816, guid: 7ac7d7b1557f242f2b33c811a7857e6c, + type: 3} + propertyPath: m_Pivot.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9175555145991798816, guid: 7ac7d7b1557f242f2b33c811a7857e6c, + type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 9175555145991798816, guid: 7ac7d7b1557f242f2b33c811a7857e6c, + type: 3} + propertyPath: m_AnchorMax.x + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9175555145991798816, guid: 7ac7d7b1557f242f2b33c811a7857e6c, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9175555145991798816, guid: 7ac7d7b1557f242f2b33c811a7857e6c, + type: 3} + propertyPath: m_AnchorMin.x + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9175555145991798816, guid: 7ac7d7b1557f242f2b33c811a7857e6c, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9175555145991798816, guid: 7ac7d7b1557f242f2b33c811a7857e6c, + type: 3} + propertyPath: m_SizeDelta.x + value: 400 + objectReference: {fileID: 0} + - target: {fileID: 9175555145991798816, guid: 7ac7d7b1557f242f2b33c811a7857e6c, + type: 3} + propertyPath: m_SizeDelta.y + value: 358 + objectReference: {fileID: 0} + - target: {fileID: 9175555145991798816, guid: 7ac7d7b1557f242f2b33c811a7857e6c, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9175555145991798816, guid: 7ac7d7b1557f242f2b33c811a7857e6c, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9175555145991798816, guid: 7ac7d7b1557f242f2b33c811a7857e6c, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9175555145991798816, guid: 7ac7d7b1557f242f2b33c811a7857e6c, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9175555145991798816, guid: 7ac7d7b1557f242f2b33c811a7857e6c, + type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9175555145991798816, guid: 7ac7d7b1557f242f2b33c811a7857e6c, + type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9175555145991798816, guid: 7ac7d7b1557f242f2b33c811a7857e6c, + type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9175555145991798816, guid: 7ac7d7b1557f242f2b33c811a7857e6c, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9175555145991798816, guid: 7ac7d7b1557f242f2b33c811a7857e6c, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -90 + objectReference: {fileID: 0} + - target: {fileID: 9175555145991798816, guid: 7ac7d7b1557f242f2b33c811a7857e6c, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9175555145991798816, guid: 7ac7d7b1557f242f2b33c811a7857e6c, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9175555145991798816, guid: 7ac7d7b1557f242f2b33c811a7857e6c, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 7ac7d7b1557f242f2b33c811a7857e6c, type: 3} +--- !u!224 &8187989918829261433 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 9175555145991798816, guid: 7ac7d7b1557f242f2b33c811a7857e6c, + type: 3} + m_PrefabInstance: {fileID: 1078484264839115353} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &3255390327551418362 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 224718936248725256} + m_Modifications: + - target: {fileID: 99502398186357137, guid: 20bff45f800234dcfbe4867cd53e8167, + type: 3} + propertyPath: m_Name + value: TopBar + objectReference: {fileID: 0} + - target: {fileID: 308840432917240632, guid: 20bff45f800234dcfbe4867cd53e8167, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 308840432917240632, guid: 20bff45f800234dcfbe4867cd53e8167, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 308840432917240632, guid: 20bff45f800234dcfbe4867cd53e8167, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 308840432917240632, guid: 20bff45f800234dcfbe4867cd53e8167, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4392112088652323784, guid: 20bff45f800234dcfbe4867cd53e8167, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6822569783385562254, guid: 20bff45f800234dcfbe4867cd53e8167, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6822569783385562254, guid: 20bff45f800234dcfbe4867cd53e8167, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6822569783385562254, guid: 20bff45f800234dcfbe4867cd53e8167, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6822569783385562254, guid: 20bff45f800234dcfbe4867cd53e8167, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 6822569783385562254, guid: 20bff45f800234dcfbe4867cd53e8167, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8652387788709946107, guid: 20bff45f800234dcfbe4867cd53e8167, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8652387788709946107, guid: 20bff45f800234dcfbe4867cd53e8167, + type: 3} + propertyPath: m_Pivot.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8652387788709946107, guid: 20bff45f800234dcfbe4867cd53e8167, + type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8652387788709946107, guid: 20bff45f800234dcfbe4867cd53e8167, + type: 3} + propertyPath: m_AnchorMax.x + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8652387788709946107, guid: 20bff45f800234dcfbe4867cd53e8167, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8652387788709946107, guid: 20bff45f800234dcfbe4867cd53e8167, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8652387788709946107, guid: 20bff45f800234dcfbe4867cd53e8167, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8652387788709946107, guid: 20bff45f800234dcfbe4867cd53e8167, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8652387788709946107, guid: 20bff45f800234dcfbe4867cd53e8167, + type: 3} + propertyPath: m_SizeDelta.y + value: 48 + objectReference: {fileID: 0} + - target: {fileID: 8652387788709946107, guid: 20bff45f800234dcfbe4867cd53e8167, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8652387788709946107, guid: 20bff45f800234dcfbe4867cd53e8167, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8652387788709946107, guid: 20bff45f800234dcfbe4867cd53e8167, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8652387788709946107, guid: 20bff45f800234dcfbe4867cd53e8167, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8652387788709946107, guid: 20bff45f800234dcfbe4867cd53e8167, + type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8652387788709946107, guid: 20bff45f800234dcfbe4867cd53e8167, + type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8652387788709946107, guid: 20bff45f800234dcfbe4867cd53e8167, + type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8652387788709946107, guid: 20bff45f800234dcfbe4867cd53e8167, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8652387788709946107, guid: 20bff45f800234dcfbe4867cd53e8167, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8652387788709946107, guid: 20bff45f800234dcfbe4867cd53e8167, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8652387788709946107, guid: 20bff45f800234dcfbe4867cd53e8167, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8652387788709946107, guid: 20bff45f800234dcfbe4867cd53e8167, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8778926112679427783, guid: 20bff45f800234dcfbe4867cd53e8167, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8778926112679427783, guid: 20bff45f800234dcfbe4867cd53e8167, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8778926112679427783, guid: 20bff45f800234dcfbe4867cd53e8167, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8778926112679427783, guid: 20bff45f800234dcfbe4867cd53e8167, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 122 + objectReference: {fileID: 0} + - target: {fileID: 8778926112679427783, guid: 20bff45f800234dcfbe4867cd53e8167, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 20bff45f800234dcfbe4867cd53e8167, type: 3} +--- !u!224 &6142360791741512961 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 8652387788709946107, guid: 20bff45f800234dcfbe4867cd53e8167, + type: 3} + m_PrefabInstance: {fileID: 3255390327551418362} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &6850143555824902485 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 224718936248725256} + m_Modifications: + - target: {fileID: 1001323885729415042, guid: 4761a087892084df5acddfa125244e46, + type: 3} + propertyPath: m_Name + value: QRCode + objectReference: {fileID: 0} + - target: {fileID: 1023697920494227107, guid: 4761a087892084df5acddfa125244e46, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1023697920494227107, guid: 4761a087892084df5acddfa125244e46, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1023697920494227107, guid: 4761a087892084df5acddfa125244e46, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1023697920494227107, guid: 4761a087892084df5acddfa125244e46, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1527282711617957479, guid: 4761a087892084df5acddfa125244e46, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1527282711617957479, guid: 4761a087892084df5acddfa125244e46, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1527282711617957479, guid: 4761a087892084df5acddfa125244e46, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1527282711617957479, guid: 4761a087892084df5acddfa125244e46, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2284691356582526614, guid: 4761a087892084df5acddfa125244e46, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2284691356582526614, guid: 4761a087892084df5acddfa125244e46, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2284691356582526614, guid: 4761a087892084df5acddfa125244e46, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2284691356582526614, guid: 4761a087892084df5acddfa125244e46, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3582973697427616149, guid: 4761a087892084df5acddfa125244e46, + type: 3} + propertyPath: m_Pivot.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3582973697427616149, guid: 4761a087892084df5acddfa125244e46, + type: 3} + propertyPath: m_Pivot.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3582973697427616149, guid: 4761a087892084df5acddfa125244e46, + type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3582973697427616149, guid: 4761a087892084df5acddfa125244e46, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3582973697427616149, guid: 4761a087892084df5acddfa125244e46, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3582973697427616149, guid: 4761a087892084df5acddfa125244e46, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3582973697427616149, guid: 4761a087892084df5acddfa125244e46, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3582973697427616149, guid: 4761a087892084df5acddfa125244e46, + type: 3} + propertyPath: m_SizeDelta.x + value: 400 + objectReference: {fileID: 0} + - target: {fileID: 3582973697427616149, guid: 4761a087892084df5acddfa125244e46, + type: 3} + propertyPath: m_SizeDelta.y + value: 358 + objectReference: {fileID: 0} + - target: {fileID: 3582973697427616149, guid: 4761a087892084df5acddfa125244e46, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3582973697427616149, guid: 4761a087892084df5acddfa125244e46, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3582973697427616149, guid: 4761a087892084df5acddfa125244e46, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3582973697427616149, guid: 4761a087892084df5acddfa125244e46, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3582973697427616149, guid: 4761a087892084df5acddfa125244e46, + type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3582973697427616149, guid: 4761a087892084df5acddfa125244e46, + type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3582973697427616149, guid: 4761a087892084df5acddfa125244e46, + type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3582973697427616149, guid: 4761a087892084df5acddfa125244e46, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3582973697427616149, guid: 4761a087892084df5acddfa125244e46, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -90 + objectReference: {fileID: 0} + - target: {fileID: 3582973697427616149, guid: 4761a087892084df5acddfa125244e46, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3582973697427616149, guid: 4761a087892084df5acddfa125244e46, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3582973697427616149, guid: 4761a087892084df5acddfa125244e46, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4669660408746506745, guid: 4761a087892084df5acddfa125244e46, + type: 3} + propertyPath: m_Transition + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4753084159018331740, guid: 4761a087892084df5acddfa125244e46, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6851115631369491375, guid: 4761a087892084df5acddfa125244e46, + type: 3} + propertyPath: m_IsActive + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6851549909175271595, guid: 4761a087892084df5acddfa125244e46, + type: 3} + propertyPath: m_Name + value: QRCode + objectReference: {fileID: 0} + - target: {fileID: 8232671660890830842, guid: 4761a087892084df5acddfa125244e46, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8232671660890830842, guid: 4761a087892084df5acddfa125244e46, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8232671660890830842, guid: 4761a087892084df5acddfa125244e46, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8232671660890830842, guid: 4761a087892084df5acddfa125244e46, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 4761a087892084df5acddfa125244e46, type: 3} +--- !u!224 &7974149656338911424 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 3582973697427616149, guid: 4761a087892084df5acddfa125244e46, + type: 3} + m_PrefabInstance: {fileID: 6850143555824902485} + m_PrefabAsset: {fileID: 0} diff --git a/Standalone/Resources/Prefabs/TapLogin/LoginPanel.prefab.meta b/Standalone/Resources/Prefabs/TapLogin/LoginPanel.prefab.meta new file mode 100644 index 0000000..f0f85a8 --- /dev/null +++ b/Standalone/Resources/Prefabs/TapLogin/LoginPanel.prefab.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8ad3bf804e86c4c7b9cbd32c3a64123f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 100100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Standalone/Resources/Prefabs/TapLogin/LoginWithPermissionPanel.prefab b/Standalone/Resources/Prefabs/TapLogin/LoginWithPermissionPanel.prefab new file mode 100644 index 0000000..7c127c8 --- /dev/null +++ b/Standalone/Resources/Prefabs/TapLogin/LoginWithPermissionPanel.prefab @@ -0,0 +1,754 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &1988411968899274 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 224718936248725256} + - component: {fileID: 222194775545726812} + - component: {fileID: 114158668541600830} + m_Layer: 5 + m_Name: TapLoginWithAuthorizationPanel + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &224718936248725256 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1988411968899274} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 2623335023565741531} + - {fileID: 7974149656338911424} + - {fileID: 1592072733947156768} + - {fileID: 8187989918829261433} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 800, y: 480} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &222194775545726812 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1988411968899274} + m_CullTransparentMesh: 1 +--- !u!114 &114158668541600830 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1988411968899274} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 86b9e58454341479496cd09b34eb515a, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!1 &8710324469925805941 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1592072733947156768} + - component: {fileID: 1287205194081041748} + - component: {fileID: 945199783146882795} + m_Layer: 5 + m_Name: Divider + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1592072733947156768 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8710324469925805941} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 224718936248725256} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 1, y: 340} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &1287205194081041748 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8710324469925805941} + m_CullTransparentMesh: 1 +--- !u!114 &945199783146882795 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8710324469925805941} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 8dd7a6f3160e348049a949bc78ef0b29, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!1001 &5233933223435314715 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 224718936248725256} + m_Modifications: + - target: {fileID: 95145862890651760, guid: 38d4f6f2b47d74afdbc80e01106231c0, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 95145862890651760, guid: 38d4f6f2b47d74afdbc80e01106231c0, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 95145862890651760, guid: 38d4f6f2b47d74afdbc80e01106231c0, + type: 3} + propertyPath: m_SizeDelta.x + value: 322 + objectReference: {fileID: 0} + - target: {fileID: 95145862890651760, guid: 38d4f6f2b47d74afdbc80e01106231c0, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 161 + objectReference: {fileID: 0} + - target: {fileID: 95145862890651760, guid: 38d4f6f2b47d74afdbc80e01106231c0, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -39 + objectReference: {fileID: 0} + - target: {fileID: 1096414973715708821, guid: 38d4f6f2b47d74afdbc80e01106231c0, + type: 3} + propertyPath: m_Name + value: Web + objectReference: {fileID: 0} + - target: {fileID: 1235409854735982334, guid: 38d4f6f2b47d74afdbc80e01106231c0, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1235409854735982334, guid: 38d4f6f2b47d74afdbc80e01106231c0, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1235409854735982334, guid: 38d4f6f2b47d74afdbc80e01106231c0, + type: 3} + propertyPath: m_SizeDelta.x + value: 322 + objectReference: {fileID: 0} + - target: {fileID: 1235409854735982334, guid: 38d4f6f2b47d74afdbc80e01106231c0, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 161 + objectReference: {fileID: 0} + - target: {fileID: 1235409854735982334, guid: 38d4f6f2b47d74afdbc80e01106231c0, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -11 + objectReference: {fileID: 0} + - target: {fileID: 4108197629286290530, guid: 38d4f6f2b47d74afdbc80e01106231c0, + type: 3} + propertyPath: m_Pivot.x + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4108197629286290530, guid: 38d4f6f2b47d74afdbc80e01106231c0, + type: 3} + propertyPath: m_Pivot.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4108197629286290530, guid: 38d4f6f2b47d74afdbc80e01106231c0, + type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 4108197629286290530, guid: 38d4f6f2b47d74afdbc80e01106231c0, + type: 3} + propertyPath: m_AnchorMax.x + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4108197629286290530, guid: 38d4f6f2b47d74afdbc80e01106231c0, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4108197629286290530, guid: 38d4f6f2b47d74afdbc80e01106231c0, + type: 3} + propertyPath: m_AnchorMin.x + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4108197629286290530, guid: 38d4f6f2b47d74afdbc80e01106231c0, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4108197629286290530, guid: 38d4f6f2b47d74afdbc80e01106231c0, + type: 3} + propertyPath: m_SizeDelta.x + value: 400 + objectReference: {fileID: 0} + - target: {fileID: 4108197629286290530, guid: 38d4f6f2b47d74afdbc80e01106231c0, + type: 3} + propertyPath: m_SizeDelta.y + value: 358 + objectReference: {fileID: 0} + - target: {fileID: 4108197629286290530, guid: 38d4f6f2b47d74afdbc80e01106231c0, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4108197629286290530, guid: 38d4f6f2b47d74afdbc80e01106231c0, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4108197629286290530, guid: 38d4f6f2b47d74afdbc80e01106231c0, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4108197629286290530, guid: 38d4f6f2b47d74afdbc80e01106231c0, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4108197629286290530, guid: 38d4f6f2b47d74afdbc80e01106231c0, + type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4108197629286290530, guid: 38d4f6f2b47d74afdbc80e01106231c0, + type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4108197629286290530, guid: 38d4f6f2b47d74afdbc80e01106231c0, + type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4108197629286290530, guid: 38d4f6f2b47d74afdbc80e01106231c0, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4108197629286290530, guid: 38d4f6f2b47d74afdbc80e01106231c0, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -90 + objectReference: {fileID: 0} + - target: {fileID: 4108197629286290530, guid: 38d4f6f2b47d74afdbc80e01106231c0, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4108197629286290530, guid: 38d4f6f2b47d74afdbc80e01106231c0, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4108197629286290530, guid: 38d4f6f2b47d74afdbc80e01106231c0, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6152948968195968666, guid: 38d4f6f2b47d74afdbc80e01106231c0, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6940192191177956295, guid: 38d4f6f2b47d74afdbc80e01106231c0, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7179550519511719738, guid: 38d4f6f2b47d74afdbc80e01106231c0, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7975670886627220650, guid: 38d4f6f2b47d74afdbc80e01106231c0, + type: 3} + propertyPath: m_ChildForceExpandWidth + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8618272423986894854, guid: 38d4f6f2b47d74afdbc80e01106231c0, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8618272423986894854, guid: 38d4f6f2b47d74afdbc80e01106231c0, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9044993220712097846, guid: 38d4f6f2b47d74afdbc80e01106231c0, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9044993220712097846, guid: 38d4f6f2b47d74afdbc80e01106231c0, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9044993220712097846, guid: 38d4f6f2b47d74afdbc80e01106231c0, + type: 3} + propertyPath: m_SizeDelta.x + value: 322 + objectReference: {fileID: 0} + - target: {fileID: 9044993220712097846, guid: 38d4f6f2b47d74afdbc80e01106231c0, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 161 + objectReference: {fileID: 0} + - target: {fileID: 9044993220712097846, guid: 38d4f6f2b47d74afdbc80e01106231c0, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -67 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 38d4f6f2b47d74afdbc80e01106231c0, type: 3} +--- !u!224 &8187989918829261433 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 4108197629286290530, guid: 38d4f6f2b47d74afdbc80e01106231c0, + type: 3} + m_PrefabInstance: {fileID: 5233933223435314715} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &6662092238396456736 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 224718936248725256} + m_Modifications: + - target: {fileID: 99502398186357137, guid: 20bff45f800234dcfbe4867cd53e8167, + type: 3} + propertyPath: m_Name + value: TopBar + objectReference: {fileID: 0} + - target: {fileID: 308840432917240632, guid: 20bff45f800234dcfbe4867cd53e8167, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 308840432917240632, guid: 20bff45f800234dcfbe4867cd53e8167, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 308840432917240632, guid: 20bff45f800234dcfbe4867cd53e8167, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 308840432917240632, guid: 20bff45f800234dcfbe4867cd53e8167, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4392112088652323784, guid: 20bff45f800234dcfbe4867cd53e8167, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6822569783385562254, guid: 20bff45f800234dcfbe4867cd53e8167, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6822569783385562254, guid: 20bff45f800234dcfbe4867cd53e8167, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6822569783385562254, guid: 20bff45f800234dcfbe4867cd53e8167, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6822569783385562254, guid: 20bff45f800234dcfbe4867cd53e8167, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 6822569783385562254, guid: 20bff45f800234dcfbe4867cd53e8167, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8652387788709946107, guid: 20bff45f800234dcfbe4867cd53e8167, + type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8652387788709946107, guid: 20bff45f800234dcfbe4867cd53e8167, + type: 3} + propertyPath: m_Pivot.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8652387788709946107, guid: 20bff45f800234dcfbe4867cd53e8167, + type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8652387788709946107, guid: 20bff45f800234dcfbe4867cd53e8167, + type: 3} + propertyPath: m_AnchorMax.x + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8652387788709946107, guid: 20bff45f800234dcfbe4867cd53e8167, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8652387788709946107, guid: 20bff45f800234dcfbe4867cd53e8167, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8652387788709946107, guid: 20bff45f800234dcfbe4867cd53e8167, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8652387788709946107, guid: 20bff45f800234dcfbe4867cd53e8167, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8652387788709946107, guid: 20bff45f800234dcfbe4867cd53e8167, + type: 3} + propertyPath: m_SizeDelta.y + value: 48 + objectReference: {fileID: 0} + - target: {fileID: 8652387788709946107, guid: 20bff45f800234dcfbe4867cd53e8167, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8652387788709946107, guid: 20bff45f800234dcfbe4867cd53e8167, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8652387788709946107, guid: 20bff45f800234dcfbe4867cd53e8167, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8652387788709946107, guid: 20bff45f800234dcfbe4867cd53e8167, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8652387788709946107, guid: 20bff45f800234dcfbe4867cd53e8167, + type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8652387788709946107, guid: 20bff45f800234dcfbe4867cd53e8167, + type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8652387788709946107, guid: 20bff45f800234dcfbe4867cd53e8167, + type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8652387788709946107, guid: 20bff45f800234dcfbe4867cd53e8167, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8652387788709946107, guid: 20bff45f800234dcfbe4867cd53e8167, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8652387788709946107, guid: 20bff45f800234dcfbe4867cd53e8167, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8652387788709946107, guid: 20bff45f800234dcfbe4867cd53e8167, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8652387788709946107, guid: 20bff45f800234dcfbe4867cd53e8167, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8778926112679427783, guid: 20bff45f800234dcfbe4867cd53e8167, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8778926112679427783, guid: 20bff45f800234dcfbe4867cd53e8167, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8778926112679427783, guid: 20bff45f800234dcfbe4867cd53e8167, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8778926112679427783, guid: 20bff45f800234dcfbe4867cd53e8167, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 122 + objectReference: {fileID: 0} + - target: {fileID: 8778926112679427783, guid: 20bff45f800234dcfbe4867cd53e8167, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 20bff45f800234dcfbe4867cd53e8167, type: 3} +--- !u!224 &2623335023565741531 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 8652387788709946107, guid: 20bff45f800234dcfbe4867cd53e8167, + type: 3} + m_PrefabInstance: {fileID: 6662092238396456736} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &6850143555824902485 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 224718936248725256} + m_Modifications: + - target: {fileID: 1001323885729415042, guid: 4761a087892084df5acddfa125244e46, + type: 3} + propertyPath: m_Name + value: QRCode + objectReference: {fileID: 0} + - target: {fileID: 1527282711617957479, guid: 4761a087892084df5acddfa125244e46, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1527282711617957479, guid: 4761a087892084df5acddfa125244e46, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1527282711617957479, guid: 4761a087892084df5acddfa125244e46, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1527282711617957479, guid: 4761a087892084df5acddfa125244e46, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2284691356582526614, guid: 4761a087892084df5acddfa125244e46, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2284691356582526614, guid: 4761a087892084df5acddfa125244e46, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2284691356582526614, guid: 4761a087892084df5acddfa125244e46, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2284691356582526614, guid: 4761a087892084df5acddfa125244e46, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3582973697427616149, guid: 4761a087892084df5acddfa125244e46, + type: 3} + propertyPath: m_Pivot.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3582973697427616149, guid: 4761a087892084df5acddfa125244e46, + type: 3} + propertyPath: m_Pivot.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3582973697427616149, guid: 4761a087892084df5acddfa125244e46, + type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3582973697427616149, guid: 4761a087892084df5acddfa125244e46, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3582973697427616149, guid: 4761a087892084df5acddfa125244e46, + type: 3} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3582973697427616149, guid: 4761a087892084df5acddfa125244e46, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3582973697427616149, guid: 4761a087892084df5acddfa125244e46, + type: 3} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3582973697427616149, guid: 4761a087892084df5acddfa125244e46, + type: 3} + propertyPath: m_SizeDelta.x + value: 400 + objectReference: {fileID: 0} + - target: {fileID: 3582973697427616149, guid: 4761a087892084df5acddfa125244e46, + type: 3} + propertyPath: m_SizeDelta.y + value: 358 + objectReference: {fileID: 0} + - target: {fileID: 3582973697427616149, guid: 4761a087892084df5acddfa125244e46, + type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3582973697427616149, guid: 4761a087892084df5acddfa125244e46, + type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3582973697427616149, guid: 4761a087892084df5acddfa125244e46, + type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3582973697427616149, guid: 4761a087892084df5acddfa125244e46, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3582973697427616149, guid: 4761a087892084df5acddfa125244e46, + type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3582973697427616149, guid: 4761a087892084df5acddfa125244e46, + type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3582973697427616149, guid: 4761a087892084df5acddfa125244e46, + type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3582973697427616149, guid: 4761a087892084df5acddfa125244e46, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3582973697427616149, guid: 4761a087892084df5acddfa125244e46, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -90 + objectReference: {fileID: 0} + - target: {fileID: 3582973697427616149, guid: 4761a087892084df5acddfa125244e46, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3582973697427616149, guid: 4761a087892084df5acddfa125244e46, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3582973697427616149, guid: 4761a087892084df5acddfa125244e46, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4753084159018331740, guid: 4761a087892084df5acddfa125244e46, + type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 4761a087892084df5acddfa125244e46, type: 3} +--- !u!224 &7974149656338911424 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 3582973697427616149, guid: 4761a087892084df5acddfa125244e46, + type: 3} + m_PrefabInstance: {fileID: 6850143555824902485} + m_PrefabAsset: {fileID: 0} diff --git a/Standalone/Resources/Prefabs/TapLogin/LoginWithPermissionPanel.prefab.meta b/Standalone/Resources/Prefabs/TapLogin/LoginWithPermissionPanel.prefab.meta new file mode 100644 index 0000000..768c651 --- /dev/null +++ b/Standalone/Resources/Prefabs/TapLogin/LoginWithPermissionPanel.prefab.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6018ad09f0d1942ce88a9d619457b3ab +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 100100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Standalone/Resources/Prefabs/TapLogin/PermissionItem.prefab b/Standalone/Resources/Prefabs/TapLogin/PermissionItem.prefab new file mode 100644 index 0000000..898aa56 --- /dev/null +++ b/Standalone/Resources/Prefabs/TapLogin/PermissionItem.prefab @@ -0,0 +1,314 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &2625169232233875455 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4629246513846156148} + - component: {fileID: 3695950292847725408} + - component: {fileID: 4330261114053498586} + m_Layer: 5 + m_Name: Background + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &4629246513846156148 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2625169232233875455} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 6289054345611098131} + m_Father: {fileID: 5713541945011671847} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.5} + m_AnchorMax: {x: 0, y: 0.5} + m_AnchoredPosition: {x: 2, y: 0} + m_SizeDelta: {x: 16, y: 16} + m_Pivot: {x: 0, y: 0.5} +--- !u!222 &3695950292847725408 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2625169232233875455} + m_CullTransparentMesh: 0 +--- !u!114 &4330261114053498586 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2625169232233875455} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: d0c874c718d73412e810bf38013d67e5, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!1 &3382617566495285768 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6289054345611098131} + - component: {fileID: 8207931337329790779} + - component: {fileID: 3418050001273312895} + m_Layer: 5 + m_Name: Checkmark + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &6289054345611098131 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3382617566495285768} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4629246513846156148} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 16, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &8207931337329790779 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3382617566495285768} + m_CullTransparentMesh: 0 +--- !u!114 &3418050001273312895 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3382617566495285768} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: d6e4a2129bcb64978a3af15f2def57bf, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!1 &6754920826495791247 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5713541945011671847} + - component: {fileID: 2413813591454161656} + m_Layer: 5 + m_Name: TapLoginAuthorizationItem + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &5713541945011671847 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6754920826495791247} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 4629246513846156148} + - {fileID: 6778673443055496571} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 161, y: -11} + m_SizeDelta: {x: 322, y: 22} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &2413813591454161656 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6754920826495791247} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 4330261114053498586} + toggleTransition: 1 + graphic: {fileID: 3418050001273312895} + m_Group: {fileID: 0} + onValueChanged: + m_PersistentCalls: + m_Calls: [] + m_IsOn: 1 +--- !u!1 &8321987553712810537 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6778673443055496571} + - component: {fileID: 6084817826076384683} + - component: {fileID: 3073349599482965323} + m_Layer: 5 + m_Name: Label + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &6778673443055496571 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8321987553712810537} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 5713541945011671847} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.5} + m_AnchorMax: {x: 0, y: 0.5} + m_AnchoredPosition: {x: 170, y: 0} + m_SizeDelta: {x: 293, y: 18} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &6084817826076384683 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8321987553712810537} + m_CullTransparentMesh: 0 +--- !u!114 &3073349599482965323 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8321987553712810537} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 3 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: "\u83B7\u5F97\u60A8\u7684 TapTap \u5934\u50CF\u3001\u6635\u79F0" diff --git a/Standalone/Resources/Prefabs/TapLogin/PermissionItem.prefab.meta b/Standalone/Resources/Prefabs/TapLogin/PermissionItem.prefab.meta new file mode 100644 index 0000000..28633f2 --- /dev/null +++ b/Standalone/Resources/Prefabs/TapLogin/PermissionItem.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 2c73663028c374b0b8d9a0fc62fe391a +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Standalone/Resources/Prefabs/TapLogin/QRCodeContainer.prefab b/Standalone/Resources/Prefabs/TapLogin/QRCodeContainer.prefab new file mode 100644 index 0000000..da7133a --- /dev/null +++ b/Standalone/Resources/Prefabs/TapLogin/QRCodeContainer.prefab @@ -0,0 +1,1501 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &625083708303073297 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8806601345297423454} + - component: {fileID: 2091269438517613265} + - component: {fileID: 2006217477706675763} + m_Layer: 5 + m_Name: DemoImage + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &8806601345297423454 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 625083708303073297} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 2690524198534270533} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 350, y: 417} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &2091269438517613265 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 625083708303073297} + m_CullTransparentMesh: 0 +--- !u!114 &2006217477706675763 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 625083708303073297} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 1344c3c82d62a2a41a3576d8abb8e3ea, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Texture: {fileID: 0} + m_UVRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 +--- !u!1 &1001323885729415042 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3582973697427616149} + m_Layer: 5 + m_Name: QRCodeContainer + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &3582973697427616149 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1001323885729415042} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 4753084159018331740} + - {fileID: 6632690815685979685} + - {fileID: 4978475783880798720} + - {fileID: 6591623127590156040} + - {fileID: 2690524198534270533} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: -90} + m_SizeDelta: {x: 400, y: 358} + m_Pivot: {x: 0, y: 1} +--- !u!1 &2382269796511909719 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5214048774975924606} + - component: {fileID: 3653126998460224502} + - component: {fileID: 8325994296021826699} + m_Layer: 5 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &5214048774975924606 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2382269796511909719} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 8232671660890830842} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.5} + m_AnchorMax: {x: 0, y: 0.5} + m_AnchoredPosition: {x: 3, y: 0} + m_SizeDelta: {x: 18, y: 18} + m_Pivot: {x: 0, y: 0.5} +--- !u!222 &3653126998460224502 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2382269796511909719} + m_CullTransparentMesh: 0 +--- !u!114 &8325994296021826699 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2382269796511909719} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 4ac762c2f07fc4c668e1259044839c97, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!1 &4865635543551801232 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4978475783880798720} + - component: {fileID: 7101760030503683782} + - component: {fileID: 4238803995031818752} + m_Layer: 5 + m_Name: Tips + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &4978475783880798720 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4865635543551801232} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 3582973697427616149} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 1} + m_AnchorMax: {x: 0.5, y: 1} + m_AnchoredPosition: {x: 0, y: -262} + m_SizeDelta: {x: 220, y: 43} + m_Pivot: {x: 0.5, y: 1} +--- !u!222 &7101760030503683782 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4865635543551801232} + m_CullTransparentMesh: 0 +--- !u!114 &4238803995031818752 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4865635543551801232} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 12800000, guid: 922f25809659d41b4b23147484bd150d, type: 3} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1.2 + m_Text: "\u8BF7\u4F7F\u7528 TapTap \u5BA2\u6237\u7AEF\u626B\u63CF\u4E8C\u7EF4\u7801 + \u767B\u5F55 & \u6388\u6743" +--- !u!1 &4879955498360528010 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8232671660890830842} + - component: {fileID: 7149433750228486049} + - component: {fileID: 4516441654309000640} + - component: {fileID: 7362449977831319197} + - component: {fileID: 2729986125694643249} + m_Layer: 5 + m_Name: iOSButton + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &8232671660890830842 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4879955498360528010} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 5214048774975924606} + - {fileID: 242365128163784803} + m_Father: {fileID: 6591623127590156040} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 84, y: 24} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &7149433750228486049 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4879955498360528010} + m_CullTransparentMesh: 0 +--- !u!114 &4516441654309000640 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4879955498360528010} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 5c5d445c23d41413ca3e8f84740a0729, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!114 &7362449977831319197 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4879955498360528010} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9098039, g: 0.9764706, b: 0.98039216, a: 1} + m_PressedColor: {r: 0.9098039, g: 0.9764706, b: 0.98039216, a: 1} + m_SelectedColor: {r: 0.9098039, g: 0.9764706, b: 0.98039216, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 4516441654309000640} + m_OnClick: + m_PersistentCalls: + m_Calls: [] +--- !u!114 &2729986125694643249 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4879955498360528010} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4c22895152b984269a88e5f572f5c372, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &5399851501927921657 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 242365128163784803} + - component: {fileID: 80383044445034006} + - component: {fileID: 1244145735886045791} + m_Layer: 5 + m_Name: Label + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &242365128163784803 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5399851501927921657} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 8232671660890830842} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 6, y: -0.5} + m_SizeDelta: {x: -36, y: -3} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &80383044445034006 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5399851501927921657} + m_CullTransparentMesh: 0 +--- !u!114 &1244145735886045791 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5399851501927921657} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 12800000, guid: 922f25809659d41b4b23147484bd150d, type: 3} + m_FontSize: 12 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 1 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: iOS +--- !u!1 &5799145691663348277 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3749546355763310804} + - component: {fileID: 7637209882954040316} + - component: {fileID: 4099927871930314293} + m_Layer: 5 + m_Name: Label + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &3749546355763310804 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5799145691663348277} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1023697920494227107} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 6, y: -0.5} + m_SizeDelta: {x: -36, y: -3} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &7637209882954040316 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5799145691663348277} + m_CullTransparentMesh: 0 +--- !u!114 &4099927871930314293 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5799145691663348277} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 12800000, guid: 922f25809659d41b4b23147484bd150d, type: 3} + m_FontSize: 12 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 1 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: Android +--- !u!1 &6664580564867348010 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4753084159018331740} + - component: {fileID: 8140753876958501573} + - component: {fileID: 3599319006823947795} + - component: {fileID: 3986673802490322999} + m_Layer: 0 + m_Name: Title + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &4753084159018331740 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6664580564867348010} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 3582973697427616149} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 1} + m_AnchorMax: {x: 0.5, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 24} + m_Pivot: {x: 0.5, y: 1} +--- !u!222 &8140753876958501573 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6664580564867348010} + m_CullTransparentMesh: 1 +--- !u!114 &3599319006823947795 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6664580564867348010} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.2, g: 0.2, b: 0.2, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 12800000, guid: 922f25809659d41b4b23147484bd150d, type: 3} + m_FontSize: 16 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 1 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: "\u5B89\u5168\u626B\u7801\u767B\u5F55" +--- !u!114 &3986673802490322999 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6664580564867348010} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3245ec927659c4140ac4f8d17403cc18, type: 3} + m_Name: + m_EditorClassIdentifier: + m_HorizontalFit: 2 + m_VerticalFit: 0 +--- !u!1 &6851112856950962025 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6633061973416248495} + - component: {fileID: 6630554494124181711} + - component: {fileID: 6811199726563881727} + m_Layer: 5 + m_Name: Background + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &6633061973416248495 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6851112856950962025} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 6632690815685979685} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 100, y: -10} + m_SizeDelta: {x: 180, y: 180} + m_Pivot: {x: 0.5, y: 1} +--- !u!222 &6630554494124181711 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6851112856950962025} + m_CullTransparentMesh: 1 +--- !u!114 &6811199726563881727 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6851112856950962025} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: e566f05a80791430ebad8154cf2e0153, type: 3} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!1 &6851115631369491375 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6633253465350154601} + - component: {fileID: 6630744728638912973} + - component: {fileID: 6810957585653380031} + - component: {fileID: 6811555829344900991} + m_Layer: 5 + m_Name: RefreshButton + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &6633253465350154601 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6851115631369491375} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 6633437774384491867} + - {fileID: 6633762795810649477} + m_Father: {fileID: 6632690815685979685} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 100, y: 110} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &6630744728638912973 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6851115631369491375} + m_CullTransparentMesh: 1 +--- !u!114 &6810957585653380031 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6851115631369491375} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: a60d2c639f46d4ce894ac9c1faf81e86, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!114 &6811555829344900991 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6851115631369491375} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Highlighted + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 6810957585653380031} + m_OnClick: + m_PersistentCalls: + m_Calls: [] +--- !u!1 &6851153481663703973 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6633762795810649477} + - component: {fileID: 6630512809547513923} + - component: {fileID: 6811087148944197821} + m_Layer: 5 + m_Name: Image + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &6633762795810649477 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6851153481663703973} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 6633253465350154601} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 1} + m_AnchorMax: {x: 0.5, y: 1} + m_AnchoredPosition: {x: 0, y: -20} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 1} +--- !u!222 &6630512809547513923 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6851153481663703973} + m_CullTransparentMesh: 1 +--- !u!114 &6811087148944197821 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6851153481663703973} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 13199a88a311149089187eea28606a3f, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!1 &6851549909175271595 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6632690815685979685} + - component: {fileID: 6631459692831114081} + - component: {fileID: 6811428771458922987} + m_Layer: 5 + m_Name: QRCode + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &6632690815685979685 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6851549909175271595} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 6633061973416248495} + - {fileID: 6633031803484019571} + - {fileID: 6633253465350154601} + m_Father: {fileID: 3582973697427616149} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 200, y: -46} + m_SizeDelta: {x: 200, y: 200} + m_Pivot: {x: 0.5, y: 1} +--- !u!222 &6631459692831114081 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6851549909175271595} + m_CullTransparentMesh: 1 +--- !u!114 &6811428771458922987 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6851549909175271595} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 063ea801346ec4ee6a70131557a1b5f7, type: 3} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!1 &6851707203920254731 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6633437774384491867} + - component: {fileID: 6630737155565046937} + - component: {fileID: 6811352803537591365} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &6633437774384491867 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6851707203920254731} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 6633253465350154601} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 1} + m_AnchorMax: {x: 0.5, y: 1} + m_AnchoredPosition: {x: 0, y: -60} + m_SizeDelta: {x: 75, y: 25} + m_Pivot: {x: 0.5, y: 1} +--- !u!222 &6630737155565046937 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6851707203920254731} + m_CullTransparentMesh: 1 +--- !u!114 &6811352803537591365 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6851707203920254731} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.078431375, g: 0.7254902, b: 0.78431374, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 12800000, guid: 922f25809659d41b4b23147484bd150d, type: 3} + m_FontSize: 12 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 1 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: "\uE904\uE909\uE918\uE91B" +--- !u!1 &6851779325939596717 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6633031803484019571} + - component: {fileID: 6630847992087991811} + - component: {fileID: 6811866914019250629} + m_Layer: 5 + m_Name: Image + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &6633031803484019571 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6851779325939596717} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 6632690815685979685} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 100, y: -20} + m_SizeDelta: {x: 160, y: 160} + m_Pivot: {x: 0.5, y: 1} +--- !u!222 &6630847992087991811 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6851779325939596717} + m_CullTransparentMesh: 1 +--- !u!114 &6811866914019250629 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6851779325939596717} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 1344c3c82d62a2a41a3576d8abb8e3ea, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Texture: {fileID: 0} + m_UVRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 +--- !u!1 &7086445410849682046 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2690524198534270533} + - component: {fileID: 2016581044661071156} + - component: {fileID: 6601532834587930627} + m_Layer: 5 + m_Name: ScanTips + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &2690524198534270533 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7086445410849682046} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 8806601345297423454} + m_Father: {fileID: 3582973697427616149} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: -345, y: 74} + m_SizeDelta: {x: 445, y: 503} + m_Pivot: {x: 0, y: 1} +--- !u!222 &2016581044661071156 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7086445410849682046} + m_CullTransparentMesh: 0 +--- !u!114 &6601532834587930627 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7086445410849682046} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 8e6163ad8ed60437b982cd543861741a, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!1 &7763546185773497163 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1723400420913864736} + - component: {fileID: 4661161455194876568} + - component: {fileID: 826114724050945752} + m_Layer: 5 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1723400420913864736 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7763546185773497163} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1023697920494227107} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.5} + m_AnchorMax: {x: 0, y: 0.5} + m_AnchoredPosition: {x: 3, y: 0} + m_SizeDelta: {x: 18, y: 18} + m_Pivot: {x: 0, y: 0.5} +--- !u!222 &4661161455194876568 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7763546185773497163} + m_CullTransparentMesh: 0 +--- !u!114 &826114724050945752 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7763546185773497163} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 4ac762c2f07fc4c668e1259044839c97, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!1 &8680633867264774415 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1023697920494227107} + - component: {fileID: 8876984195151363080} + - component: {fileID: 6985215464873894841} + - component: {fileID: 4427666391416563674} + - component: {fileID: 5937436823760097567} + m_Layer: 5 + m_Name: AndroidButton + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1023697920494227107 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8680633867264774415} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1723400420913864736} + - {fileID: 3749546355763310804} + m_Father: {fileID: 6591623127590156040} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 84, y: 24} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &8876984195151363080 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8680633867264774415} + m_CullTransparentMesh: 0 +--- !u!114 &6985215464873894841 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8680633867264774415} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 5c5d445c23d41413ca3e8f84740a0729, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!114 &4427666391416563674 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8680633867264774415} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9098039, g: 0.9764706, b: 0.98039216, a: 1} + m_PressedColor: {r: 0.9098039, g: 0.9764706, b: 0.98039216, a: 1} + m_SelectedColor: {r: 0.9098039, g: 0.9764706, b: 0.98039216, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 6985215464873894841} + m_OnClick: + m_PersistentCalls: + m_Calls: [] +--- !u!114 &5937436823760097567 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8680633867264774415} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4c22895152b984269a88e5f572f5c372, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &8807336831822462967 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6591623127590156040} + - component: {fileID: 632171401447174161} + - component: {fileID: 1323243597677689985} + m_Layer: 5 + m_Name: Clients + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &6591623127590156040 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8807336831822462967} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 8232671660890830842} + - {fileID: 1023697920494227107} + m_Father: {fileID: 3582973697427616149} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 1} + m_AnchorMax: {x: 0.5, y: 1} + m_AnchoredPosition: {x: 0, y: -313} + m_SizeDelta: {x: 306, y: 24} + m_Pivot: {x: 0.5, y: 1} +--- !u!114 &632171401447174161 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8807336831822462967} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 4 + m_Spacing: 16 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 +--- !u!114 &1323243597677689985 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8807336831822462967} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2fafe2cfe61f6974895a912c3755e8f1, type: 3} + m_Name: + m_EditorClassIdentifier: + m_AllowSwitchOff: 1 diff --git a/Standalone/Resources/Prefabs/TapLogin/QRCodeContainer.prefab.meta b/Standalone/Resources/Prefabs/TapLogin/QRCodeContainer.prefab.meta new file mode 100644 index 0000000..5b0d7d5 --- /dev/null +++ b/Standalone/Resources/Prefabs/TapLogin/QRCodeContainer.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 4761a087892084df5acddfa125244e46 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Standalone/Resources/Prefabs/TapLogin/Tips.prefab b/Standalone/Resources/Prefabs/TapLogin/Tips.prefab new file mode 100644 index 0000000..d7a2347 --- /dev/null +++ b/Standalone/Resources/Prefabs/TapLogin/Tips.prefab @@ -0,0 +1,286 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &2437117834208057050 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3249878323437828961} + - component: {fileID: 6197212382672205485} + - component: {fileID: 4258608661667970000} + - component: {fileID: 7126820138671827516} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &3249878323437828961 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2437117834208057050} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 3506591237399545621} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 142, y: 0} + m_SizeDelta: {x: 0, y: 22} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &6197212382672205485 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2437117834208057050} + m_CullTransparentMesh: 0 +--- !u!114 &4258608661667970000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2437117834208057050} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 3 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: "\u60A8\u5DF2\u53D6\u6D88\u6B64\u6B21\u767B\u5F55\uFF0C\u8BF7\u91CD\u65B0\u626B\u7801" +--- !u!114 &7126820138671827516 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2437117834208057050} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3245ec927659c4140ac4f8d17403cc18, type: 3} + m_Name: + m_EditorClassIdentifier: + m_HorizontalFit: 2 + m_VerticalFit: 0 +--- !u!1 &3346767704511934435 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3506591237399545621} + - component: {fileID: 6380299764200392691} + - component: {fileID: 109708550535834736} + - component: {fileID: 8425830709075641392} + - component: {fileID: 1052088219415579083} + m_Layer: 5 + m_Name: Tips + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &3506591237399545621 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3346767704511934435} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 8303714305956204046} + - {fileID: 3249878323437828961} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 389} + m_SizeDelta: {x: 0, y: 38} + m_Pivot: {x: 0.5, y: 0} +--- !u!222 &6380299764200392691 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3346767704511934435} + m_CullTransparentMesh: 0 +--- !u!114 &109708550535834736 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3346767704511934435} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: f3028d07e7b714468af0e6fff8003c46, type: 3} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!114 &8425830709075641392 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3346767704511934435} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 16 + m_Right: 16 + m_Top: 8 + m_Bottom: 8 + m_ChildAlignment: 0 + m_Spacing: 8 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 +--- !u!114 &1052088219415579083 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3346767704511934435} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3245ec927659c4140ac4f8d17403cc18, type: 3} + m_Name: + m_EditorClassIdentifier: + m_HorizontalFit: 2 + m_VerticalFit: 0 +--- !u!1 &5113505305588790304 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8303714305956204046} + - component: {fileID: 5908321689226045324} + - component: {fileID: 8379043369882829846} + m_Layer: 5 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &8303714305956204046 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5113505305588790304} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 3506591237399545621} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 20, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &5908321689226045324 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5113505305588790304} + m_CullTransparentMesh: 0 +--- !u!114 &8379043369882829846 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5113505305588790304} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: b220b7c52556d4627a175132f0bd50ab, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 diff --git a/Standalone/Resources/Prefabs/TapLogin/Tips.prefab.meta b/Standalone/Resources/Prefabs/TapLogin/Tips.prefab.meta new file mode 100644 index 0000000..593a3b0 --- /dev/null +++ b/Standalone/Resources/Prefabs/TapLogin/Tips.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 7f688bfb98dac40479a520e509512cf3 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Standalone/Resources/Prefabs/TapLogin/TopBar.prefab b/Standalone/Resources/Prefabs/TapLogin/TopBar.prefab new file mode 100644 index 0000000..45193d1 --- /dev/null +++ b/Standalone/Resources/Prefabs/TapLogin/TopBar.prefab @@ -0,0 +1,541 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &99502398186357137 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8652387788709946107} + m_Layer: 5 + m_Name: TopBar + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &8652387788709946107 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 99502398186357137} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 4392112088652323784} + - {fileID: 3328221869622257374} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 48} + m_Pivot: {x: 0.5, y: 1} +--- !u!1 &1161302213090356657 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6965420636349416736} + - component: {fileID: 5759880405481256628} + - component: {fileID: 4122680495296455865} + m_Layer: 5 + m_Name: Image + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &6965420636349416736 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1161302213090356657} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 3328221869622257374} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 22, y: 22} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &5759880405481256628 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1161302213090356657} + m_CullTransparentMesh: 1 +--- !u!114 &4122680495296455865 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1161302213090356657} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 362d3f2c5cb32453383f03bdcaf75f76, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!1 &2596650792000308616 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 308840432917240632} + - component: {fileID: 8738327048452883} + - component: {fileID: 2851649204305374573} + m_Layer: 5 + m_Name: Logo + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &308840432917240632 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2596650792000308616} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4392112088652323784} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 52, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &8738327048452883 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2596650792000308616} + m_CullTransparentMesh: 0 +--- !u!114 &2851649204305374573 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2596650792000308616} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: cec9725b4221741949f3a4539a94c8cf, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!1 &3253853167370113160 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3328221869622257374} + - component: {fileID: 3331000286688627464} + - component: {fileID: 3221495115651529624} + m_Layer: 5 + m_Name: CloseButton + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &3328221869622257374 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3253853167370113160} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 6965420636349416736} + m_Father: {fileID: 8652387788709946107} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 1, y: 1} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 48, y: 48} + m_Pivot: {x: 1, y: 1} +--- !u!222 &3331000286688627464 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3253853167370113160} + m_CullTransparentMesh: 1 +--- !u!114 &3221495115651529624 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3253853167370113160} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Highlighted + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 0} + m_OnClick: + m_PersistentCalls: + m_Calls: [] +--- !u!1 &4402484479484058020 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4392112088652323784} + - component: {fileID: 7948943651808477615} + - component: {fileID: 7977704872724810480} + m_Layer: 5 + m_Name: Title + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &4392112088652323784 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4402484479484058020} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 6822569783385562254} + - {fileID: 308840432917240632} + - {fileID: 8778926112679427783} + m_Father: {fileID: 8652387788709946107} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 1} + m_AnchorMax: {x: 0.5, y: 1} + m_AnchoredPosition: {x: 0, y: -25} + m_SizeDelta: {x: 0, y: 24} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &7948943651808477615 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4402484479484058020} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 4 + m_Spacing: 3 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 +--- !u!114 &7977704872724810480 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4402484479484058020} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3245ec927659c4140ac4f8d17403cc18, type: 3} + m_Name: + m_EditorClassIdentifier: + m_HorizontalFit: 2 + m_VerticalFit: 0 +--- !u!1 &6555694508139780591 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6822569783385562254} + - component: {fileID: 2380297714084264940} + - component: {fileID: 6143495847287498701} + - component: {fileID: 1555945950288497478} + m_Layer: 5 + m_Name: LeftText + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &6822569783385562254 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6555694508139780591} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4392112088652323784} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 16, y: 0} + m_SizeDelta: {x: 0, y: 18} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &2380297714084264940 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6555694508139780591} + m_CullTransparentMesh: 1 +--- !u!114 &6143495847287498701 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6555694508139780591} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.13333334, g: 0.13333334, b: 0.13333334, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 12800000, guid: 3b1c92b10dde9426cbbccfbbd9c05cb1, type: 3} + m_FontSize: 16 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 1 + m_MaxSize: 40 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: "\u4F7F\u7528" +--- !u!114 &1555945950288497478 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6555694508139780591} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3245ec927659c4140ac4f8d17403cc18, type: 3} + m_Name: + m_EditorClassIdentifier: + m_HorizontalFit: 2 + m_VerticalFit: 0 +--- !u!1 &6593511823187355966 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8778926112679427783} + - component: {fileID: 2296966803680046163} + - component: {fileID: 3337483717634011490} + - component: {fileID: 5329462900916040598} + m_Layer: 5 + m_Name: RightText + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &8778926112679427783 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6593511823187355966} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4392112088652323784} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 122, y: 0} + m_SizeDelta: {x: 0, y: 18} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &2296966803680046163 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6593511823187355966} + m_CullTransparentMesh: 1 +--- !u!114 &3337483717634011490 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6593511823187355966} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.13333334, g: 0.13333334, b: 0.13333334, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 12800000, guid: 3b1c92b10dde9426cbbccfbbd9c05cb1, type: 3} + m_FontSize: 16 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 1 + m_MaxSize: 40 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: "\u8D26\u53F7\u767B\u5F55" +--- !u!114 &5329462900916040598 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6593511823187355966} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3245ec927659c4140ac4f8d17403cc18, type: 3} + m_Name: + m_EditorClassIdentifier: + m_HorizontalFit: 2 + m_VerticalFit: 0 diff --git a/Standalone/Resources/Prefabs/TapLogin/TopBar.prefab.meta b/Standalone/Resources/Prefabs/TapLogin/TopBar.prefab.meta new file mode 100644 index 0000000..230ff1a --- /dev/null +++ b/Standalone/Resources/Prefabs/TapLogin/TopBar.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 20bff45f800234dcfbe4867cd53e8167 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Standalone/Resources/Prefabs/TapLogin/WebContainer.prefab b/Standalone/Resources/Prefabs/TapLogin/WebContainer.prefab new file mode 100644 index 0000000..eab3e13 --- /dev/null +++ b/Standalone/Resources/Prefabs/TapLogin/WebContainer.prefab @@ -0,0 +1,514 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &928372350644581938 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1503687201753749342} + - component: {fileID: 2719538188061072812} + - component: {fileID: 1180142608281713243} + m_Layer: 5 + m_Name: WebIcon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1503687201753749342 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 928372350644581938} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 9175555145991798816} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 200, y: -59} + m_SizeDelta: {x: 141, y: 93} + m_Pivot: {x: 0.5, y: 1} +--- !u!222 &2719538188061072812 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 928372350644581938} + m_CullTransparentMesh: 1 +--- !u!114 &1180142608281713243 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 928372350644581938} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 6ff29f3c4d2094e9ea0aac708e036b23, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!1 &1378672524579539423 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2735868708447112056} + - component: {fileID: 7347912750492173947} + - component: {fileID: 2242973471941438007} + - component: {fileID: 2132050452850144038} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2735868708447112056 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1378672524579539423} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 8568104287785893020} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &7347912750492173947 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1378672524579539423} + m_CullTransparentMesh: 1 +--- !u!114 &2242973471941438007 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1378672524579539423} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 12800000, guid: 3b1c92b10dde9426cbbccfbbd9c05cb1, type: 3} + m_FontSize: 14 + m_FontStyle: 1 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: "\u8DF3\u8F6C\u81F3 TapTap" +--- !u!114 &2132050452850144038 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1378672524579539423} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3245ec927659c4140ac4f8d17403cc18, type: 3} + m_Name: + m_EditorClassIdentifier: + m_HorizontalFit: 2 + m_VerticalFit: 0 +--- !u!1 &2399892717942445390 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8568104287785893020} + - component: {fileID: 6238446374515337288} + - component: {fileID: 4665755432709458141} + - component: {fileID: 8868938413691544480} + m_Layer: 5 + m_Name: JumpButton + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &8568104287785893020 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2399892717942445390} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 2735868708447112056} + m_Father: {fileID: 9175555145991798816} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 1} + m_AnchorMax: {x: 0.5, y: 1} + m_AnchoredPosition: {x: 0, y: -188} + m_SizeDelta: {x: 230, y: 40} + m_Pivot: {x: 0.5, y: 1} +--- !u!222 &6238446374515337288 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2399892717942445390} + m_CullTransparentMesh: 1 +--- !u!114 &4665755432709458141 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2399892717942445390} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.08235294, g: 0.77254903, b: 0.80784315, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: d4bf6907f783440f29cfb1127747cd0e, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!114 &8868938413691544480 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2399892717942445390} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 4665755432709458141} + m_OnClick: + m_PersistentCalls: + m_Calls: [] +--- !u!1 &3103684215951976248 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3589193167517764676} + - component: {fileID: 7706390659813872357} + - component: {fileID: 7595029457186457172} + - component: {fileID: 23646345030970845} + m_Layer: 5 + m_Name: Description + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &3589193167517764676 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3103684215951976248} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 9175555145991798816} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 1} + m_AnchorMax: {x: 0.5, y: 1} + m_AnchoredPosition: {x: 0, y: -240} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 1} +--- !u!222 &7706390659813872357 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3103684215951976248} + m_CullTransparentMesh: 1 +--- !u!114 &7595029457186457172 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3103684215951976248} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.7254902, g: 0.74509805, b: 0.75686276, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 12800000, guid: 922f25809659d41b4b23147484bd150d, type: 3} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 1 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1.6 + m_Text: "\u70B9\u51FB\u4E0B\u65B9\u6309\u94AE\u524D\u5F80\u7F51\u9875\u6D4F\u89C8\u5668\uFF0C\n\u6388\u6743 + TapTap \u8D26\u53F7\uFF0C\u5B8C\u6210\u540E\u5C06\u81EA\u52A8\u8FD4\u56DE\u6E38\u620F\u3002" +--- !u!114 &23646345030970845 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3103684215951976248} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3245ec927659c4140ac4f8d17403cc18, type: 3} + m_Name: + m_EditorClassIdentifier: + m_HorizontalFit: 2 + m_VerticalFit: 2 +--- !u!1 &5287822639921967063 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 9175555145991798816} + m_Layer: 5 + m_Name: TapLoginWebContainer + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &9175555145991798816 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5287822639921967063} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1384447095859190488} + - {fileID: 1503687201753749342} + - {fileID: 8568104287785893020} + - {fileID: 3589193167517764676} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 1, y: 1} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: -90} + m_SizeDelta: {x: 400, y: 358} + m_Pivot: {x: 1, y: 1} +--- !u!1 &8140390293227046825 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1384447095859190488} + - component: {fileID: 7925738886636313858} + - component: {fileID: 9098562089587102228} + - component: {fileID: 7577868704272765004} + m_Layer: 0 + m_Name: Title + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1384447095859190488 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8140390293227046825} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 9175555145991798816} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 200, y: 0} + m_SizeDelta: {x: 0, y: 24} + m_Pivot: {x: 0.5, y: 1} +--- !u!222 &7925738886636313858 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8140390293227046825} + m_CullTransparentMesh: 1 +--- !u!114 &9098562089587102228 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8140390293227046825} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.2, g: 0.2, b: 0.2, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 12800000, guid: 922f25809659d41b4b23147484bd150d, type: 3} + m_FontSize: 16 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 1 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: "\u4F7F\u7528\u7F51\u9875\u6D4F\u89C8\u5668\u5B8C\u6210\u6388\u6743" +--- !u!114 &7577868704272765004 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8140390293227046825} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3245ec927659c4140ac4f8d17403cc18, type: 3} + m_Name: + m_EditorClassIdentifier: + m_HorizontalFit: 2 + m_VerticalFit: 0 diff --git a/Standalone/Resources/Prefabs/TapLogin/WebContainer.prefab.meta b/Standalone/Resources/Prefabs/TapLogin/WebContainer.prefab.meta new file mode 100644 index 0000000..8a23ec0 --- /dev/null +++ b/Standalone/Resources/Prefabs/TapLogin/WebContainer.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 7ac7d7b1557f242f2b33c811a7857e6c +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Standalone/Resources/Prefabs/TapLogin/WebWithPermissionContainer.prefab b/Standalone/Resources/Prefabs/TapLogin/WebWithPermissionContainer.prefab new file mode 100644 index 0000000..e2f19d7 --- /dev/null +++ b/Standalone/Resources/Prefabs/TapLogin/WebWithPermissionContainer.prefab @@ -0,0 +1,913 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &343699657278104051 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3848990288322469437} + - component: {fileID: 5075966910022883045} + - component: {fileID: 6994504019320447314} + - component: {fileID: 633241479578012807} + m_Layer: 5 + m_Name: Title + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &3848990288322469437 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 343699657278104051} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 6112082383671296502} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 160.5, y: 0} + m_SizeDelta: {x: 321, y: 0} + m_Pivot: {x: 0.5, y: 1} +--- !u!222 &5075966910022883045 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 343699657278104051} + m_CullTransparentMesh: 0 +--- !u!114 &6994504019320447314 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 343699657278104051} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 3 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 1 + m_LineSpacing: 1.2 + m_Text: "\u767B\u5F55\u6388\u6743\u540E \u539F\u795E \u5C06\u83B7\u5F97\u60A8 TapTap + \u8D26\u53F7\u4EE5\u4E0B\u4FE1\u606F\uFF1A" +--- !u!114 &633241479578012807 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 343699657278104051} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3245ec927659c4140ac4f8d17403cc18, type: 3} + m_Name: + m_EditorClassIdentifier: + m_HorizontalFit: 0 + m_VerticalFit: 2 +--- !u!1 &1032794678879116334 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3644471015128099167} + - component: {fileID: 5233623516802049321} + - component: {fileID: 8523515686621254335} + m_Layer: 5 + m_Name: Permission + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &3644471015128099167 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1032794678879116334} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 6112082383671296502} + m_Father: {fileID: 4108197629286290530} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 1} + m_AnchorMax: {x: 0.5, y: 1} + m_AnchoredPosition: {x: 0, y: -189} + m_SizeDelta: {x: 354, y: 169} + m_Pivot: {x: 0.5, y: 1} +--- !u!222 &5233623516802049321 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1032794678879116334} + m_CullTransparentMesh: 0 +--- !u!114 &8523515686621254335 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1032794678879116334} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 8567042d473004ed19b5e2c8aae9aab8, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!1 &1096414973715708821 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4108197629286290530} + m_Layer: 5 + m_Name: WebWithPermissionContainer + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &4108197629286290530 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1096414973715708821} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 6152948968195968666} + - {fileID: 3512003163099359454} + - {fileID: 8618272423986894854} + - {fileID: 3644471015128099167} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 1, y: 1} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: -90} + m_SizeDelta: {x: 400, y: 358} + m_Pivot: {x: 1, y: 1} +--- !u!1 &3403195872095250922 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2058036518436650967} + - component: {fileID: 7972714765805424626} + - component: {fileID: 2462920706790552483} + - component: {fileID: 8324078316440389214} + m_Layer: 5 + m_Name: Viewport + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2058036518436650967 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3403195872095250922} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 6940192191177956295} + m_Father: {fileID: 6898753327484702446} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} +--- !u!222 &7972714765805424626 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3403195872095250922} + m_CullTransparentMesh: 0 +--- !u!114 &2462920706790552483 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3403195872095250922} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 10917, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!114 &8324078316440389214 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3403195872095250922} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 31a19414c41e5ae4aae2af33fee712f6, type: 3} + m_Name: + m_EditorClassIdentifier: + m_ShowMaskGraphic: 0 +--- !u!1 &3939902999752168427 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6152948968195968666} + - component: {fileID: 3145976230404835648} + - component: {fileID: 4040211772173682262} + - component: {fileID: 3421854317535364110} + m_Layer: 0 + m_Name: Title + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &6152948968195968666 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3939902999752168427} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4108197629286290530} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 200, y: 0} + m_SizeDelta: {x: 0, y: 24} + m_Pivot: {x: 0.5, y: 1} +--- !u!222 &3145976230404835648 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3939902999752168427} + m_CullTransparentMesh: 1 +--- !u!114 &4040211772173682262 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3939902999752168427} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.2, g: 0.2, b: 0.2, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 12800000, guid: 922f25809659d41b4b23147484bd150d, type: 3} + m_FontSize: 16 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 1 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: "\u4F7F\u7528\u7F51\u9875\u6D4F\u89C8\u5668\u5B8C\u6210\u6388\u6743" +--- !u!114 &3421854317535364110 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3939902999752168427} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3245ec927659c4140ac4f8d17403cc18, type: 3} + m_Name: + m_EditorClassIdentifier: + m_HorizontalFit: 2 + m_VerticalFit: 0 +--- !u!1 &4184812682474685471 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6940192191177956295} + - component: {fileID: 7975670886627220650} + - component: {fileID: 3932905584182207714} + m_Layer: 5 + m_Name: Content + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &6940192191177956295 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4184812682474685471} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 2058036518436650967} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} +--- !u!114 &7975670886627220650 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4184812682474685471} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 6 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 1 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 +--- !u!114 &3932905584182207714 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4184812682474685471} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3245ec927659c4140ac4f8d17403cc18, type: 3} + m_Name: + m_EditorClassIdentifier: + m_HorizontalFit: 0 + m_VerticalFit: 2 +--- !u!1 &6106500780904195909 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6898753327484702446} + - component: {fileID: 5879865846022476879} + - component: {fileID: 4369200571662725905} + m_Layer: 5 + m_Name: Permissions + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &6898753327484702446 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6106500780904195909} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 2058036518436650967} + m_Father: {fileID: 6112082383671296502} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 100} + m_Pivot: {x: 0.5, y: 1} +--- !u!222 &5879865846022476879 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6106500780904195909} + m_CullTransparentMesh: 0 +--- !u!114 &4369200571662725905 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6106500780904195909} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 1aa08ab6e0800fa44ae55d278d1423e3, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Content: {fileID: 6940192191177956295} + m_Horizontal: 0 + m_Vertical: 1 + m_MovementType: 1 + m_Elasticity: 0.1 + m_Inertia: 1 + m_DecelerationRate: 0.135 + m_ScrollSensitivity: 1 + m_Viewport: {fileID: 2058036518436650967} + m_HorizontalScrollbar: {fileID: 0} + m_VerticalScrollbar: {fileID: 0} + m_HorizontalScrollbarVisibility: 2 + m_VerticalScrollbarVisibility: 2 + m_HorizontalScrollbarSpacing: -3 + m_VerticalScrollbarSpacing: -3 + m_OnValueChanged: + m_PersistentCalls: + m_Calls: [] +--- !u!1 &6158433258675166621 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7179550519511719738} + - component: {fileID: 2570471852758078009} + - component: {fileID: 6446205011283082869} + - component: {fileID: 6612324012757919588} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &7179550519511719738 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6158433258675166621} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 3512003163099359454} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &2570471852758078009 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6158433258675166621} + m_CullTransparentMesh: 1 +--- !u!114 &6446205011283082869 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6158433258675166621} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 12800000, guid: 3b1c92b10dde9426cbbccfbbd9c05cb1, type: 3} + m_FontSize: 14 + m_FontStyle: 1 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: "\u8DF3\u8F6C\u81F3 TapTap" +--- !u!114 &6612324012757919588 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6158433258675166621} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3245ec927659c4140ac4f8d17403cc18, type: 3} + m_Name: + m_EditorClassIdentifier: + m_HorizontalFit: 2 + m_VerticalFit: 0 +--- !u!1 &7011797994543880016 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6112082383671296502} + - component: {fileID: 5464077482918919629} + m_Layer: 5 + m_Name: Content + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &6112082383671296502 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7011797994543880016} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 3848990288322469437} + - {fileID: 6898753327484702446} + m_Father: {fileID: 3644471015128099167} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 321, y: 130} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &5464077482918919629 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7011797994543880016} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 10 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 1 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 +--- !u!1 &7429532589921059084 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3512003163099359454} + - component: {fileID: 1208733659895446538} + - component: {fileID: 474345707060354207} + - component: {fileID: 4414070036303050722} + m_Layer: 5 + m_Name: JumpButton + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &3512003163099359454 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7429532589921059084} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 7179550519511719738} + m_Father: {fileID: 4108197629286290530} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 1} + m_AnchorMax: {x: 0.5, y: 1} + m_AnchoredPosition: {x: 0, y: -79} + m_SizeDelta: {x: 230, y: 40} + m_Pivot: {x: 0.5, y: 1} +--- !u!222 &1208733659895446538 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7429532589921059084} + m_CullTransparentMesh: 1 +--- !u!114 &474345707060354207 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7429532589921059084} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.08235294, g: 0.77254903, b: 0.80784315, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: d4bf6907f783440f29cfb1127747cd0e, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!114 &4414070036303050722 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7429532589921059084} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 474345707060354207} + m_OnClick: + m_PersistentCalls: + m_Calls: [] +--- !u!1 &7874439947965608826 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8618272423986894854} + - component: {fileID: 3217743084061673127} + - component: {fileID: 3401297704756007446} + - component: {fileID: 5044351581183670687} + m_Layer: 5 + m_Name: Description + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &8618272423986894854 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7874439947965608826} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4108197629286290530} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 1} + m_AnchorMax: {x: 0.5, y: 1} + m_AnchoredPosition: {x: 0, y: -131} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 1} +--- !u!222 &3217743084061673127 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7874439947965608826} + m_CullTransparentMesh: 1 +--- !u!114 &3401297704756007446 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7874439947965608826} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.7254902, g: 0.74509805, b: 0.75686276, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 12800000, guid: 922f25809659d41b4b23147484bd150d, type: 3} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 1 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1.6 + m_Text: "\u70B9\u51FB\u4E0B\u65B9\u6309\u94AE\u524D\u5F80\u7F51\u9875\u6D4F\u89C8\u5668\uFF0C\n\u6388\u6743 + TapTap \u8D26\u53F7\uFF0C\u5B8C\u6210\u540E\u5C06\u81EA\u52A8\u8FD4\u56DE\u6E38\u620F\u3002" +--- !u!114 &5044351581183670687 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7874439947965608826} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3245ec927659c4140ac4f8d17403cc18, type: 3} + m_Name: + m_EditorClassIdentifier: + m_HorizontalFit: 2 + m_VerticalFit: 2 diff --git a/Standalone/Resources/Prefabs/TapLogin/WebWithPermissionContainer.prefab.meta b/Standalone/Resources/Prefabs/TapLogin/WebWithPermissionContainer.prefab.meta new file mode 100644 index 0000000..82ae893 --- /dev/null +++ b/Standalone/Resources/Prefabs/TapLogin/WebWithPermissionContainer.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 38d4f6f2b47d74afdbc80e01106231c0 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Standalone/Resources/Prefabs/TapTapSdkQRCodeWindow.prefab b/Standalone/Resources/Prefabs/TapTapSdkQRCodeWindow.prefab new file mode 100644 index 0000000..9f67f47 --- /dev/null +++ b/Standalone/Resources/Prefabs/TapTapSdkQRCodeWindow.prefab @@ -0,0 +1,2731 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &1056244519764904 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 224001354146292790} + - component: {fileID: 222481293561095608} + - component: {fileID: 114554977022300202} + - component: {fileID: 114568000997432188} + - component: {fileID: 4171343356862956612} + m_Layer: 5 + m_Name: Logo + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &224001354146292790 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1056244519764904} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 224076888652929146} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 38, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} +--- !u!222 &222481293561095608 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1056244519764904} + m_CullTransparentMesh: 1 +--- !u!114 &114554977022300202 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1056244519764904} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 12800000, guid: 922f25809659d41b4b23147484bd150d, type: 3} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 1 + m_MaxSize: 40 + m_Alignment: 3 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: "\uE920" +--- !u!114 &114568000997432188 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1056244519764904} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 0 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Highlighted + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 114554977022300202} + m_OnClick: + m_PersistentCalls: + m_Calls: [] +--- !u!114 &4171343356862956612 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1056244519764904} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3245ec927659c4140ac4f8d17403cc18, type: 3} + m_Name: + m_EditorClassIdentifier: + m_HorizontalFit: 2 + m_VerticalFit: 2 +--- !u!1 &1193215591612352 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 224208046306343802} + - component: {fileID: 222083448071919468} + - component: {fileID: 114135413614373290} + - component: {fileID: 1007499618560969334} + m_Layer: 5 + m_Name: Status + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &224208046306343802 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1193215591612352} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 224718936248725256} + m_RootOrder: 14 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 1} + m_AnchorMax: {x: 0.5, y: 1} + m_AnchoredPosition: {x: 0, y: -390} + m_SizeDelta: {x: 0, y: 30} + m_Pivot: {x: 0.5, y: 1} +--- !u!222 &222083448071919468 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1193215591612352} + m_CullTransparentMesh: 1 +--- !u!114 &114135413614373290 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1193215591612352} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.2, g: 0.2, b: 0.2, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 12800000, guid: 922f25809659d41b4b23147484bd150d, type: 3} + m_FontSize: 12 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 0 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: +--- !u!114 &1007499618560969334 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1193215591612352} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3245ec927659c4140ac4f8d17403cc18, type: 3} + m_Name: + m_EditorClassIdentifier: + m_HorizontalFit: 2 + m_VerticalFit: 0 +--- !u!1 &1223405102646914 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 224349194079863330} + - component: {fileID: 222180531317380510} + - component: {fileID: 114094418602330432} + - component: {fileID: 114138526812747854} + - component: {fileID: 1413082019910608536} + m_Layer: 5 + m_Name: Notice2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &224349194079863330 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1223405102646914} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 224076888652929146} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 82, y: 0} + m_SizeDelta: {x: 0, y: 14} + m_Pivot: {x: 0, y: 1} +--- !u!222 &222180531317380510 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1223405102646914} + m_CullTransparentMesh: 1 +--- !u!114 &114094418602330432 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1223405102646914} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.078431375, g: 0.7254902, b: 0.78431374, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 12800000, guid: 3b1c92b10dde9426cbbccfbbd9c05cb1, type: 3} + m_FontSize: 12 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 1 + m_MaxSize: 40 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: "\uE902\uE901\uE900" +--- !u!114 &114138526812747854 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1223405102646914} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 0 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Highlighted + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 114094418602330432} + m_OnClick: + m_PersistentCalls: + m_Calls: [] +--- !u!114 &1413082019910608536 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1223405102646914} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3245ec927659c4140ac4f8d17403cc18, type: 3} + m_Name: + m_EditorClassIdentifier: + m_HorizontalFit: 2 + m_VerticalFit: 0 +--- !u!1 &1288202492286524 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 224555448362034682} + - component: {fileID: 222065527164217754} + - component: {fileID: 114462825623851946} + m_Layer: 5 + m_Name: QRCodeSmallBackground + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &224555448362034682 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1288202492286524} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 224718936248725256} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 200, y: -146} + m_SizeDelta: {x: 180, y: 180} + m_Pivot: {x: 0.5, y: 1} +--- !u!222 &222065527164217754 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1288202492286524} + m_CullTransparentMesh: 1 +--- !u!114 &114462825623851946 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1288202492286524} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: e566f05a80791430ebad8154cf2e0153, type: 3} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!1 &1288743788507898 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 224781566814767164} + - component: {fileID: 222288773324413080} + - component: {fileID: 114270678634517226} + - component: {fileID: 114587482238481962} + m_Layer: 5 + m_Name: RefreshButton + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &224781566814767164 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1288743788507898} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 224667366762974222} + - {fileID: 224974753354552528} + m_Father: {fileID: 224208115287414650} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 100, y: 110} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &222288773324413080 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1288743788507898} + m_CullTransparentMesh: 1 +--- !u!114 &114270678634517226 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1288743788507898} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: a60d2c639f46d4ce894ac9c1faf81e86, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!114 &114587482238481962 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1288743788507898} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Highlighted + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 114270678634517226} + m_OnClick: + m_PersistentCalls: + m_Calls: [] +--- !u!1 &1326628716219120 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 224974753354552528} + - component: {fileID: 222023283663315222} + - component: {fileID: 114084132066421224} + m_Layer: 5 + m_Name: Image + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &224974753354552528 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1326628716219120} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 224781566814767164} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 1} + m_AnchorMax: {x: 0.5, y: 1} + m_AnchoredPosition: {x: 0, y: -20} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 1} +--- !u!222 &222023283663315222 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1326628716219120} + m_CullTransparentMesh: 1 +--- !u!114 &114084132066421224 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1326628716219120} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 13199a88a311149089187eea28606a3f, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!1 &1343215775437582 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 224952865744259402} + - component: {fileID: 222589036224298850} + - component: {fileID: 114524267162324766} + - component: {fileID: 114182425307715978} + - component: {fileID: 5363505065118244905} + m_Layer: 5 + m_Name: Notice3 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &224952865744259402 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1343215775437582} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 224718936248725256} + m_RootOrder: 8 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 200, y: 100} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 1} +--- !u!222 &222589036224298850 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1343215775437582} + m_CullTransparentMesh: 1 +--- !u!114 &114524267162324766 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1343215775437582} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.2, g: 0.2, b: 0.2, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 12800000, guid: 922f25809659d41b4b23147484bd150d, type: 3} + m_FontSize: 12 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 1 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: "\uE914\uE90E\uE906\uE919\uE90D\uE903\uE90C" +--- !u!114 &114182425307715978 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1343215775437582} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 0 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Highlighted + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 114524267162324766} + m_OnClick: + m_PersistentCalls: + m_Calls: [] +--- !u!114 &5363505065118244905 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1343215775437582} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3245ec927659c4140ac4f8d17403cc18, type: 3} + m_Name: + m_EditorClassIdentifier: + m_HorizontalFit: 2 + m_VerticalFit: 2 +--- !u!1 &1364272316567620 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 224076888652929146} + - component: {fileID: 222094947316534824} + - component: {fileID: 114942796211385600} + - component: {fileID: 8501268884808308792} + - component: {fileID: 5939079889981415535} + m_Layer: 5 + m_Name: Notice + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &224076888652929146 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1364272316567620} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 224403132933707118} + - {fileID: 224001354146292790} + - {fileID: 224349194079863330} + m_Father: {fileID: 224718936248725256} + m_RootOrder: 7 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 200, y: 120} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 1} +--- !u!222 &222094947316534824 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1364272316567620} + m_CullTransparentMesh: 1 +--- !u!114 &114942796211385600 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1364272316567620} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!114 &8501268884808308792 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1364272316567620} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 7 + m_Spacing: 2 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 +--- !u!114 &5939079889981415535 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1364272316567620} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3245ec927659c4140ac4f8d17403cc18, type: 3} + m_Name: + m_EditorClassIdentifier: + m_HorizontalFit: 2 + m_VerticalFit: 2 +--- !u!1 &1408553183044094 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 224217234328424304} + - component: {fileID: 222704094267761204} + - component: {fileID: 114726497317607614} + m_Layer: 5 + m_Name: QRCodeBackground + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &224217234328424304 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1408553183044094} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 224718936248725256} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 200, y: -136} + m_SizeDelta: {x: 200, y: 200} + m_Pivot: {x: 0.5, y: 1} +--- !u!222 &222704094267761204 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1408553183044094} + m_CullTransparentMesh: 1 +--- !u!114 &114726497317607614 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1408553183044094} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 063ea801346ec4ee6a70131557a1b5f7, type: 3} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!1 &1542022621155186 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 224406378007279908} + - component: {fileID: 222769154153583858} + - component: {fileID: 114970416193299554} + m_Layer: 5 + m_Name: Close + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &224406378007279908 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1542022621155186} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 5586536578432998106} + m_Father: {fileID: 224718936248725256} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 48, y: 0} + m_SizeDelta: {x: 48, y: 48} + m_Pivot: {x: 1, y: 1} +--- !u!222 &222769154153583858 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1542022621155186} + m_CullTransparentMesh: 1 +--- !u!114 &114970416193299554 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1542022621155186} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Highlighted + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 0} + m_OnClick: + m_PersistentCalls: + m_Calls: [] +--- !u!1 &1662798478929992 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 224403132933707118} + - component: {fileID: 222522478928618218} + - component: {fileID: 114826673492036608} + - component: {fileID: 114488611853214532} + - component: {fileID: 1308144289790743758} + m_Layer: 5 + m_Name: Notice1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &224403132933707118 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1662798478929992} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 224076888652929146} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 14} + m_Pivot: {x: 0, y: 1} +--- !u!222 &222522478928618218 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1662798478929992} + m_CullTransparentMesh: 1 +--- !u!114 &114826673492036608 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1662798478929992} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.2, g: 0.2, b: 0.2, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 12800000, guid: 922f25809659d41b4b23147484bd150d, type: 3} + m_FontSize: 12 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 1 + m_MaxSize: 40 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: "\uE910\uE916\uE91D" +--- !u!114 &114488611853214532 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1662798478929992} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 0 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Highlighted + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 114826673492036608} + m_OnClick: + m_PersistentCalls: + m_Calls: [] +--- !u!114 &1308144289790743758 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1662798478929992} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3245ec927659c4140ac4f8d17403cc18, type: 3} + m_Name: + m_EditorClassIdentifier: + m_HorizontalFit: 2 + m_VerticalFit: 0 +--- !u!1 &1749708743928082 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 224144653408527664} + - component: {fileID: 222272988310271742} + - component: {fileID: 114650273804705212} + - component: {fileID: 3993069767099736763} + m_Layer: 5 + m_Name: SubStatus + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &224144653408527664 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1749708743928082} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 224718936248725256} + m_RootOrder: 15 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 1} + m_AnchorMax: {x: 0.5, y: 1} + m_AnchoredPosition: {x: 0, y: -420} + m_SizeDelta: {x: 0, y: 30} + m_Pivot: {x: 0.5, y: 1} +--- !u!222 &222272988310271742 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1749708743928082} + m_CullTransparentMesh: 1 +--- !u!114 &114650273804705212 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1749708743928082} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.6, g: 0.6, b: 0.6, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 12800000, guid: 922f25809659d41b4b23147484bd150d, type: 3} + m_FontSize: 12 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 0 + m_MaxSize: 40 + m_Alignment: 1 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: +--- !u!114 &3993069767099736763 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1749708743928082} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3245ec927659c4140ac4f8d17403cc18, type: 3} + m_Name: + m_EditorClassIdentifier: + m_HorizontalFit: 2 + m_VerticalFit: 0 +--- !u!1 &1897706071416842 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 224208115287414650} + - component: {fileID: 222514976122377968} + - component: {fileID: 114795113803725366} + m_Layer: 5 + m_Name: Refresh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &224208115287414650 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1897706071416842} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 224781566814767164} + m_Father: {fileID: 224718936248725256} + m_RootOrder: 6 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 200, y: -156} + m_SizeDelta: {x: 160, y: 160} + m_Pivot: {x: 0.5, y: 1} +--- !u!222 &222514976122377968 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1897706071416842} + m_CullTransparentMesh: 1 +--- !u!114 &114795113803725366 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1897706071416842} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 0.9529412} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!1 &1897908802238046 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 224667366762974222} + - component: {fileID: 222230038600199628} + - component: {fileID: 114366854623395088} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &224667366762974222 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1897908802238046} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 224781566814767164} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 1} + m_AnchorMax: {x: 0.5, y: 1} + m_AnchoredPosition: {x: 0, y: -60} + m_SizeDelta: {x: 75, y: 25} + m_Pivot: {x: 0.5, y: 1} +--- !u!222 &222230038600199628 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1897908802238046} + m_CullTransparentMesh: 1 +--- !u!114 &114366854623395088 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1897908802238046} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.078431375, g: 0.7254902, b: 0.78431374, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 12800000, guid: 922f25809659d41b4b23147484bd150d, type: 3} + m_FontSize: 12 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 1 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: "\uE904\uE909\uE918\uE91B" +--- !u!1 &1954637882154232 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 224575306207820326} + - component: {fileID: 222110526104909654} + - component: {fileID: 114847954481016976} + m_Layer: 5 + m_Name: QRImage + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &224575306207820326 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1954637882154232} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 224718936248725256} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 200, y: -156} + m_SizeDelta: {x: 160, y: 160} + m_Pivot: {x: 0.5, y: 1} +--- !u!222 &222110526104909654 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1954637882154232} + m_CullTransparentMesh: 1 +--- !u!114 &114847954481016976 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1954637882154232} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 1344c3c82d62a2a41a3576d8abb8e3ea, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Texture: {fileID: 0} + m_UVRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 +--- !u!1 &1988411968899274 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 224718936248725256} + - component: {fileID: 222194775545726812} + - component: {fileID: 114158668541600830} + m_Layer: 5 + m_Name: TapTapSdkQRCodeWindow + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &224718936248725256 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1988411968899274} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 224406378007279908} + - {fileID: 1287628093688890418} + - {fileID: 2226679929402887945} + - {fileID: 224217234328424304} + - {fileID: 224555448362034682} + - {fileID: 224575306207820326} + - {fileID: 224208115287414650} + - {fileID: 224076888652929146} + - {fileID: 224952865744259402} + - {fileID: 1592072733947156768} + - {fileID: 2143995953673627777} + - {fileID: 1885214057858868487} + - {fileID: 4555650039303814685} + - {fileID: 8655794023076712133} + - {fileID: 224208046306343802} + - {fileID: 224144653408527664} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 800, y: 480} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &222194775545726812 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1988411968899274} + m_CullTransparentMesh: 1 +--- !u!114 &114158668541600830 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1988411968899274} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 86b9e58454341479496cd09b34eb515a, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!1 &150226284421809259 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1885214057858868487} + - component: {fileID: 3119365251458936821} + - component: {fileID: 2204299582533945346} + m_Layer: 5 + m_Name: WebIcon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1885214057858868487 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 150226284421809259} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 224718936248725256} + m_RootOrder: 11 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 1, y: 1} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: -200, y: -170} + m_SizeDelta: {x: 56, y: 56} + m_Pivot: {x: 0.5, y: 1} +--- !u!222 &3119365251458936821 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 150226284421809259} + m_CullTransparentMesh: 1 +--- !u!114 &2204299582533945346 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 150226284421809259} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 24984427533904e829daf33cf945d740, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!1 &247066806693140351 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2226679929402887945} + - component: {fileID: 3452393676198722448} + - component: {fileID: 7990442181361041222} + - component: {fileID: 7512879347860324706} + m_Layer: 0 + m_Name: ScanLogin + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2226679929402887945 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 247066806693140351} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 224718936248725256} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 200, y: -90} + m_SizeDelta: {x: 0, y: 22} + m_Pivot: {x: 0.5, y: 1} +--- !u!222 &3452393676198722448 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 247066806693140351} + m_CullTransparentMesh: 1 +--- !u!114 &7990442181361041222 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 247066806693140351} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.2, g: 0.2, b: 0.2, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 12800000, guid: 922f25809659d41b4b23147484bd150d, type: 3} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 3 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: "\u5B89\u5168\u626B\u7801\u767B\u5F55" +--- !u!114 &7512879347860324706 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 247066806693140351} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3245ec927659c4140ac4f8d17403cc18, type: 3} + m_Name: + m_EditorClassIdentifier: + m_HorizontalFit: 2 + m_VerticalFit: 0 +--- !u!1 &658739829220809330 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2982580310857647298} + - component: {fileID: 3256792160625140969} + - component: {fileID: 774178880156365463} + m_Layer: 5 + m_Name: Logo + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2982580310857647298 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 658739829220809330} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1287628093688890418} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 52, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &3256792160625140969 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 658739829220809330} + m_CullTransparentMesh: 0 +--- !u!114 &774178880156365463 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 658739829220809330} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: cec9725b4221741949f3a4539a94c8cf, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!1 &1168046447864612446 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1287628093688890418} + - component: {fileID: 4863089779993337429} + - component: {fileID: 4871760174556878090} + m_Layer: 5 + m_Name: TitleContent + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1287628093688890418 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1168046447864612446} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 8323737686996370292} + - {fileID: 3628082805042060876} + - {fileID: 2982580310857647298} + - {fileID: 6122778418638070077} + m_Father: {fileID: 224718936248725256} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 1} + m_AnchorMax: {x: 0.5, y: 1} + m_AnchoredPosition: {x: 0, y: -25} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &4863089779993337429 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1168046447864612446} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 7 + m_Spacing: 3 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 +--- !u!114 &4871760174556878090 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1168046447864612446} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3245ec927659c4140ac4f8d17403cc18, type: 3} + m_Name: + m_EditorClassIdentifier: + m_HorizontalFit: 2 + m_VerticalFit: 2 +--- !u!1 &2149779302729841542 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3098557503136184609} + - component: {fileID: 7714257206580032546} + - component: {fileID: 1285548740285093998} + - component: {fileID: 1396427246809547135} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &3098557503136184609 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2149779302729841542} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 8655794023076712133} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &7714257206580032546 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2149779302729841542} + m_CullTransparentMesh: 1 +--- !u!114 &1285548740285093998 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2149779302729841542} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 12800000, guid: 3b1c92b10dde9426cbbccfbbd9c05cb1, type: 3} + m_FontSize: 14 + m_FontStyle: 1 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: "\u8DF3\u8F6C\u81F3 TapTap" +--- !u!114 &1396427246809547135 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2149779302729841542} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3245ec927659c4140ac4f8d17403cc18, type: 3} + m_Name: + m_EditorClassIdentifier: + m_HorizontalFit: 2 + m_VerticalFit: 0 +--- !u!1 &2454279924397193051 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3628082805042060876} + - component: {fileID: 7115468023948664980} + - component: {fileID: 1471356546683235396} + m_Layer: 5 + m_Name: TitleLogo + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &3628082805042060876 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2454279924397193051} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1287628093688890418} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 35, y: -15} + m_SizeDelta: {x: 54, y: 18} + m_Pivot: {x: 0, y: 1} +--- !u!222 &7115468023948664980 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2454279924397193051} + m_CullTransparentMesh: 1 +--- !u!114 &1471356546683235396 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2454279924397193051} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 12800000, guid: 922f25809659d41b4b23147484bd150d, type: 3} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 1 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: "\uE920" +--- !u!1 &2730601806833423713 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4555650039303814685} + - component: {fileID: 7207187395040338108} + - component: {fileID: 7462883172677547021} + - component: {fileID: 1054837921495637892} + m_Layer: 5 + m_Name: WebDescription + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &4555650039303814685 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2730601806833423713} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 224718936248725256} + m_RootOrder: 12 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 1, y: 1} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: -200, y: -244} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 1} +--- !u!222 &7207187395040338108 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2730601806833423713} + m_CullTransparentMesh: 1 +--- !u!114 &7462883172677547021 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2730601806833423713} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.53333336, g: 0.53333336, b: 0.53333336, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 12800000, guid: 922f25809659d41b4b23147484bd150d, type: 3} + m_FontSize: 12 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 1 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1.6 + m_Text: "\u70B9\u51FB\u4E0B\u65B9\u6309\u94AE\u524D\u5F80\u7F51\u9875\u6D4F\u89C8\u5668\uFF0C\n\u6388\u6743 + TapTap \u8D26\u53F7\uFF0C\u5B8C\u6210\u540E\u5C06\u81EA\u52A8\u8FD4\u56DE\u6E38\u620F\u3002" +--- !u!114 &1054837921495637892 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2730601806833423713} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3245ec927659c4140ac4f8d17403cc18, type: 3} + m_Name: + m_EditorClassIdentifier: + m_HorizontalFit: 2 + m_VerticalFit: 2 +--- !u!1 &3438966774921750295 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8655794023076712133} + - component: {fileID: 6369464628964629009} + - component: {fileID: 5636145399286364804} + - component: {fileID: 8494712241897329145} + m_Layer: 5 + m_Name: WebLoginButton + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &8655794023076712133 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3438966774921750295} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 3098557503136184609} + m_Father: {fileID: 224718936248725256} + m_RootOrder: 13 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 1, y: 1} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: -200, y: -320} + m_SizeDelta: {x: 200, y: 36} + m_Pivot: {x: 0.5, y: 1} +--- !u!222 &6369464628964629009 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3438966774921750295} + m_CullTransparentMesh: 1 +--- !u!114 &5636145399286364804 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3438966774921750295} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: c40d5e66443dd4ee892103750b8d2d5f, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!114 &8494712241897329145 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3438966774921750295} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 5636145399286364804} + m_OnClick: + m_PersistentCalls: + m_Calls: [] +--- !u!1 &4409233443017323083 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5586536578432998106} + - component: {fileID: 7116334986608814414} + - component: {fileID: 1448976349139204931} + m_Layer: 5 + m_Name: Image + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &5586536578432998106 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4409233443017323083} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 224406378007279908} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 22, y: 22} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &7116334986608814414 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4409233443017323083} + m_CullTransparentMesh: 1 +--- !u!114 &1448976349139204931 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4409233443017323083} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 362d3f2c5cb32453383f03bdcaf75f76, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!1 &8551671935071319748 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6122778418638070077} + - component: {fileID: 3660598986051908521} + - component: {fileID: 251189493305470616} + - component: {fileID: 7267532186503933036} + m_Layer: 5 + m_Name: TitleAccount + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &6122778418638070077 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8551671935071319748} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1287628093688890418} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 122, y: 0} + m_SizeDelta: {x: 0, y: 18} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &3660598986051908521 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8551671935071319748} + m_CullTransparentMesh: 1 +--- !u!114 &251189493305470616 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8551671935071319748} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.13333334, g: 0.13333334, b: 0.13333334, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 12800000, guid: 3b1c92b10dde9426cbbccfbbd9c05cb1, type: 3} + m_FontSize: 16 + m_FontStyle: 1 + m_BestFit: 0 + m_MinSize: 1 + m_MaxSize: 40 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: "\u8D26\u53F7\u767B\u5F55" +--- !u!114 &7267532186503933036 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8551671935071319748} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3245ec927659c4140ac4f8d17403cc18, type: 3} + m_Name: + m_EditorClassIdentifier: + m_HorizontalFit: 2 + m_VerticalFit: 0 +--- !u!1 &8635644772030563861 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8323737686996370292} + - component: {fileID: 875383233000989718} + - component: {fileID: 8678274497894774839} + - component: {fileID: 4087769656953574588} + m_Layer: 5 + m_Name: TitleUse + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &8323737686996370292 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8635644772030563861} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1287628093688890418} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 16, y: 0} + m_SizeDelta: {x: 0, y: 18} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &875383233000989718 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8635644772030563861} + m_CullTransparentMesh: 1 +--- !u!114 &8678274497894774839 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8635644772030563861} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.13333334, g: 0.13333334, b: 0.13333334, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 12800000, guid: 3b1c92b10dde9426cbbccfbbd9c05cb1, type: 3} + m_FontSize: 16 + m_FontStyle: 1 + m_BestFit: 0 + m_MinSize: 1 + m_MaxSize: 40 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: "\u4F7F\u7528" +--- !u!114 &4087769656953574588 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8635644772030563861} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3245ec927659c4140ac4f8d17403cc18, type: 3} + m_Name: + m_EditorClassIdentifier: + m_HorizontalFit: 2 + m_VerticalFit: 0 +--- !u!1 &8710324469925805941 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1592072733947156768} + - component: {fileID: 1287205194081041748} + - component: {fileID: 945199783146882795} + m_Layer: 5 + m_Name: Divider + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1592072733947156768 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8710324469925805941} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 224718936248725256} + m_RootOrder: 9 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 1, y: 128} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &1287205194081041748 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8710324469925805941} + m_CullTransparentMesh: 1 +--- !u!114 &945199783146882795 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8710324469925805941} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 8dd7a6f3160e348049a949bc78ef0b29, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!1 &9083745528180864496 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2143995953673627777} + - component: {fileID: 7136633382194147163} + - component: {fileID: 8120867238471901261} + - component: {fileID: 7484548095308407317} + m_Layer: 0 + m_Name: WebLogin + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2143995953673627777 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9083745528180864496} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 224718936248725256} + m_RootOrder: 10 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 1, y: 1} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: -200, y: -90} + m_SizeDelta: {x: 0, y: 22} + m_Pivot: {x: 0.5, y: 1} +--- !u!222 &7136633382194147163 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9083745528180864496} + m_CullTransparentMesh: 1 +--- !u!114 &8120867238471901261 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9083745528180864496} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.2, g: 0.2, b: 0.2, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 12800000, guid: 922f25809659d41b4b23147484bd150d, type: 3} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 3 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: "\u4F7F\u7528\u7F51\u9875\u6D4F\u89C8\u5668\u5B8C\u6210\u6388\u6743" +--- !u!114 &7484548095308407317 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9083745528180864496} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3245ec927659c4140ac4f8d17403cc18, type: 3} + m_Name: + m_EditorClassIdentifier: + m_HorizontalFit: 2 + m_VerticalFit: 0 diff --git a/Standalone/Resources/Prefabs/TapTapSdkQRCodeWindow.prefab.meta b/Standalone/Resources/Prefabs/TapTapSdkQRCodeWindow.prefab.meta new file mode 100644 index 0000000..3ca5a5e --- /dev/null +++ b/Standalone/Resources/Prefabs/TapTapSdkQRCodeWindow.prefab.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 03b946f54c2794e90ab154839c962f56 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 100100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Standalone/Resources/Prefabs/TapTapSdkWindow.prefab b/Standalone/Resources/Prefabs/TapTapSdkWindow.prefab new file mode 100644 index 0000000..ef00a62 --- /dev/null +++ b/Standalone/Resources/Prefabs/TapTapSdkWindow.prefab @@ -0,0 +1,175 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1001 &100100000 +Prefab: + m_ObjectHideFlags: 1 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: [] + m_RemovedComponents: [] + m_ParentPrefab: {fileID: 0} + m_RootGameObject: {fileID: 1031941377632642} + m_IsPrefabParent: 1 +--- !u!1 &1031941377632642 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 224567297738835210} + - component: {fileID: 223422782340899786} + - component: {fileID: 114902123778189970} + - component: {fileID: 114432939870885212} + m_Layer: 5 + m_Name: TapTapSdkWindow + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1423954524948538 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 224285659638788426} + - component: {fileID: 222279289448157226} + - component: {fileID: 114126610965858720} + m_Layer: 5 + m_Name: Background + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &114126610965858720 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1423954524948538} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0.2} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!114 &114432939870885212 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1031941377632642} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1301386320, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!114 &114902123778189970 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1031941377632642} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1980459831, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_UiScaleMode: 1 + m_ReferencePixelsPerUnit: 100 + m_ScaleFactor: 1 + m_ReferenceResolution: {x: 1920, y: 1080} + m_ScreenMatchMode: 0 + m_MatchWidthOrHeight: 0 + m_PhysicalUnit: 3 + m_FallbackScreenDPI: 96 + m_DefaultSpriteDPI: 96 + m_DynamicPixelsPerUnit: 1 +--- !u!222 &222279289448157226 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1423954524948538} +--- !u!223 &223422782340899786 +Canvas: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1031941377632642} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 0 + m_Camera: {fileID: 0} + m_PlaneDistance: 100 + m_PixelPerfect: 1 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_AdditionalShaderChannelsFlag: 0 + m_SortingLayerID: 0 + m_SortingOrder: 999 + m_TargetDisplay: 0 +--- !u!224 &224285659638788426 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1423954524948538} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 224567297738835210} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &224567297738835210 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1031941377632642} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 224285659638788426} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0, y: 0} diff --git a/Standalone/Resources/Prefabs/TapTapSdkWindow.prefab.meta b/Standalone/Resources/Prefabs/TapTapSdkWindow.prefab.meta new file mode 100644 index 0000000..4fd6012 --- /dev/null +++ b/Standalone/Resources/Prefabs/TapTapSdkWindow.prefab.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 62f7af8ce2d8344679afeac4a9e1c3fc +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 100100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Standalone/Resources/Sprites.meta b/Standalone/Resources/Sprites.meta new file mode 100644 index 0000000..9ec0210 --- /dev/null +++ b/Standalone/Resources/Sprites.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c612e60660b1144d38798652ede11791 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Standalone/Resources/Sprites/taptap-client-bg.png b/Standalone/Resources/Sprites/taptap-client-bg.png new file mode 100644 index 0000000..bc094a9 Binary files /dev/null and b/Standalone/Resources/Sprites/taptap-client-bg.png differ diff --git a/Standalone/Resources/Sprites/taptap-client-bg.png.meta b/Standalone/Resources/Sprites/taptap-client-bg.png.meta new file mode 100644 index 0000000..dc0ffca --- /dev/null +++ b/Standalone/Resources/Sprites/taptap-client-bg.png.meta @@ -0,0 +1,92 @@ +fileFormatVersion: 2 +guid: 5c5d445c23d41413ca3e8f84740a0729 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Standalone/Resources/Sprites/taptap-divider.png b/Standalone/Resources/Sprites/taptap-divider.png new file mode 100644 index 0000000..230d960 Binary files /dev/null and b/Standalone/Resources/Sprites/taptap-divider.png differ diff --git a/Standalone/Resources/Sprites/taptap-divider.png.meta b/Standalone/Resources/Sprites/taptap-divider.png.meta new file mode 100644 index 0000000..c869fe1 --- /dev/null +++ b/Standalone/Resources/Sprites/taptap-divider.png.meta @@ -0,0 +1,146 @@ +fileFormatVersion: 2 +guid: 8dd7a6f3160e348049a949bc78ef0b29 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 300 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: iPhone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Standalone/Resources/Sprites/taptap-login-android-client.png b/Standalone/Resources/Sprites/taptap-login-android-client.png new file mode 100644 index 0000000..b4ccf12 Binary files /dev/null and b/Standalone/Resources/Sprites/taptap-login-android-client.png differ diff --git a/Standalone/Resources/Sprites/taptap-login-android-client.png.meta b/Standalone/Resources/Sprites/taptap-login-android-client.png.meta new file mode 100644 index 0000000..b369502 --- /dev/null +++ b/Standalone/Resources/Sprites/taptap-login-android-client.png.meta @@ -0,0 +1,128 @@ +fileFormatVersion: 2 +guid: 4b5153c44d44441ab840b57d857ccb66 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: iPhone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Standalone/Resources/Sprites/taptap-login-auth-bg.png b/Standalone/Resources/Sprites/taptap-login-auth-bg.png new file mode 100644 index 0000000..398e170 Binary files /dev/null and b/Standalone/Resources/Sprites/taptap-login-auth-bg.png differ diff --git a/Standalone/Resources/Sprites/taptap-login-auth-bg.png.meta b/Standalone/Resources/Sprites/taptap-login-auth-bg.png.meta new file mode 100644 index 0000000..c8db9f8 --- /dev/null +++ b/Standalone/Resources/Sprites/taptap-login-auth-bg.png.meta @@ -0,0 +1,128 @@ +fileFormatVersion: 2 +guid: 8567042d473004ed19b5e2c8aae9aab8 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: iPhone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Standalone/Resources/Sprites/taptap-login-auth-checked.png b/Standalone/Resources/Sprites/taptap-login-auth-checked.png new file mode 100644 index 0000000..d73c386 Binary files /dev/null and b/Standalone/Resources/Sprites/taptap-login-auth-checked.png differ diff --git a/Standalone/Resources/Sprites/taptap-login-auth-checked.png.meta b/Standalone/Resources/Sprites/taptap-login-auth-checked.png.meta new file mode 100644 index 0000000..f22b5aa --- /dev/null +++ b/Standalone/Resources/Sprites/taptap-login-auth-checked.png.meta @@ -0,0 +1,128 @@ +fileFormatVersion: 2 +guid: d6e4a2129bcb64978a3af15f2def57bf +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: iPhone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Standalone/Resources/Sprites/taptap-login-auth-unchecked.png b/Standalone/Resources/Sprites/taptap-login-auth-unchecked.png new file mode 100644 index 0000000..e894a9c Binary files /dev/null and b/Standalone/Resources/Sprites/taptap-login-auth-unchecked.png differ diff --git a/Standalone/Resources/Sprites/taptap-login-auth-unchecked.png.meta b/Standalone/Resources/Sprites/taptap-login-auth-unchecked.png.meta new file mode 100644 index 0000000..8a474c4 --- /dev/null +++ b/Standalone/Resources/Sprites/taptap-login-auth-unchecked.png.meta @@ -0,0 +1,128 @@ +fileFormatVersion: 2 +guid: d0c874c718d73412e810bf38013d67e5 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: iPhone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Standalone/Resources/Sprites/taptap-login-button-bg.png b/Standalone/Resources/Sprites/taptap-login-button-bg.png new file mode 100755 index 0000000..20700f8 Binary files /dev/null and b/Standalone/Resources/Sprites/taptap-login-button-bg.png differ diff --git a/Standalone/Resources/Sprites/taptap-login-button-bg.png.meta b/Standalone/Resources/Sprites/taptap-login-button-bg.png.meta new file mode 100644 index 0000000..316a743 --- /dev/null +++ b/Standalone/Resources/Sprites/taptap-login-button-bg.png.meta @@ -0,0 +1,128 @@ +fileFormatVersion: 2 +guid: d4bf6907f783440f29cfb1127747cd0e +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: iPhone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Standalone/Resources/Sprites/taptap-login-ios-client.png b/Standalone/Resources/Sprites/taptap-login-ios-client.png new file mode 100644 index 0000000..0250527 Binary files /dev/null and b/Standalone/Resources/Sprites/taptap-login-ios-client.png differ diff --git a/Standalone/Resources/Sprites/taptap-login-ios-client.png.meta b/Standalone/Resources/Sprites/taptap-login-ios-client.png.meta new file mode 100644 index 0000000..7dd0d81 --- /dev/null +++ b/Standalone/Resources/Sprites/taptap-login-ios-client.png.meta @@ -0,0 +1,128 @@ +fileFormatVersion: 2 +guid: d0d91238b4da84ff39e0ba9920b1a022 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: iPhone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Standalone/Resources/Sprites/taptap-login-tips-bg.png b/Standalone/Resources/Sprites/taptap-login-tips-bg.png new file mode 100644 index 0000000..4b000a7 Binary files /dev/null and b/Standalone/Resources/Sprites/taptap-login-tips-bg.png differ diff --git a/Standalone/Resources/Sprites/taptap-login-tips-bg.png.meta b/Standalone/Resources/Sprites/taptap-login-tips-bg.png.meta new file mode 100644 index 0000000..3b7bff0 --- /dev/null +++ b/Standalone/Resources/Sprites/taptap-login-tips-bg.png.meta @@ -0,0 +1,128 @@ +fileFormatVersion: 2 +guid: f3028d07e7b714468af0e6fff8003c46 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 18, y: 18, z: 18, w: 18} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: iPhone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Standalone/Resources/Sprites/taptap-logo.png b/Standalone/Resources/Sprites/taptap-logo.png new file mode 100644 index 0000000..519b3a5 Binary files /dev/null and b/Standalone/Resources/Sprites/taptap-logo.png differ diff --git a/Standalone/Resources/Sprites/taptap-logo.png.meta b/Standalone/Resources/Sprites/taptap-logo.png.meta new file mode 100644 index 0000000..1b6199d --- /dev/null +++ b/Standalone/Resources/Sprites/taptap-logo.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: cec9725b4221741949f3a4539a94c8cf +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: 1 + wrapV: 1 + wrapW: -1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 300 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: iPhone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Standalone/Resources/Sprites/taptap-scan-tips-bg.png b/Standalone/Resources/Sprites/taptap-scan-tips-bg.png new file mode 100644 index 0000000..b64a2a5 Binary files /dev/null and b/Standalone/Resources/Sprites/taptap-scan-tips-bg.png differ diff --git a/Standalone/Resources/Sprites/taptap-scan-tips-bg.png.meta b/Standalone/Resources/Sprites/taptap-scan-tips-bg.png.meta new file mode 100644 index 0000000..44239b3 --- /dev/null +++ b/Standalone/Resources/Sprites/taptap-scan-tips-bg.png.meta @@ -0,0 +1,128 @@ +fileFormatVersion: 2 +guid: 8e6163ad8ed60437b982cd543861741a +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: iPhone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Standalone/Resources/Sprites/taptap-scan-tips-error.png b/Standalone/Resources/Sprites/taptap-scan-tips-error.png new file mode 100755 index 0000000..59307f0 Binary files /dev/null and b/Standalone/Resources/Sprites/taptap-scan-tips-error.png differ diff --git a/Standalone/Resources/Sprites/taptap-scan-tips-error.png.meta b/Standalone/Resources/Sprites/taptap-scan-tips-error.png.meta new file mode 100644 index 0000000..8573722 --- /dev/null +++ b/Standalone/Resources/Sprites/taptap-scan-tips-error.png.meta @@ -0,0 +1,128 @@ +fileFormatVersion: 2 +guid: 277a02229b39b426b9901df1b07a3e4f +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: iPhone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Standalone/Resources/Sprites/taptap-scan-tips-info.png b/Standalone/Resources/Sprites/taptap-scan-tips-info.png new file mode 100755 index 0000000..d553405 Binary files /dev/null and b/Standalone/Resources/Sprites/taptap-scan-tips-info.png differ diff --git a/Standalone/Resources/Sprites/taptap-scan-tips-info.png.meta b/Standalone/Resources/Sprites/taptap-scan-tips-info.png.meta new file mode 100644 index 0000000..4951232 --- /dev/null +++ b/Standalone/Resources/Sprites/taptap-scan-tips-info.png.meta @@ -0,0 +1,128 @@ +fileFormatVersion: 2 +guid: 27dda4a8114984976acba5d5de6c8633 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: iPhone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Standalone/Resources/Sprites/taptap-scan-tips-success.png b/Standalone/Resources/Sprites/taptap-scan-tips-success.png new file mode 100644 index 0000000..c40819f Binary files /dev/null and b/Standalone/Resources/Sprites/taptap-scan-tips-success.png differ diff --git a/Standalone/Resources/Sprites/taptap-scan-tips-success.png.meta b/Standalone/Resources/Sprites/taptap-scan-tips-success.png.meta new file mode 100644 index 0000000..2ed10cc --- /dev/null +++ b/Standalone/Resources/Sprites/taptap-scan-tips-success.png.meta @@ -0,0 +1,128 @@ +fileFormatVersion: 2 +guid: 60e2966c37f1e4d16a7befc7f0483f12 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: iPhone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Standalone/Resources/Sprites/taptap-scan-tips-warning.png b/Standalone/Resources/Sprites/taptap-scan-tips-warning.png new file mode 100644 index 0000000..aa6f95d Binary files /dev/null and b/Standalone/Resources/Sprites/taptap-scan-tips-warning.png differ diff --git a/Standalone/Resources/Sprites/taptap-scan-tips-warning.png.meta b/Standalone/Resources/Sprites/taptap-scan-tips-warning.png.meta new file mode 100644 index 0000000..901d05e --- /dev/null +++ b/Standalone/Resources/Sprites/taptap-scan-tips-warning.png.meta @@ -0,0 +1,128 @@ +fileFormatVersion: 2 +guid: b220b7c52556d4627a175132f0bd50ab +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: iPhone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Standalone/Resources/Sprites/taptap-sdk-bg.png b/Standalone/Resources/Sprites/taptap-sdk-bg.png new file mode 100644 index 0000000..857c3da Binary files /dev/null and b/Standalone/Resources/Sprites/taptap-sdk-bg.png differ diff --git a/Standalone/Resources/Sprites/taptap-sdk-bg.png.meta b/Standalone/Resources/Sprites/taptap-sdk-bg.png.meta new file mode 100644 index 0000000..5420b38 --- /dev/null +++ b/Standalone/Resources/Sprites/taptap-sdk-bg.png.meta @@ -0,0 +1,128 @@ +fileFormatVersion: 2 +guid: 009e83026f1ef4783a2be66036de3008 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 2 + aniso: -1 + mipBias: -100 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 9 + spritePivot: {x: 0.5, y: 0.51} + spritePixelsToUnits: 300 + spriteBorder: {x: 96, y: 108, z: 96, w: 103} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 1 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 1 + - serializedVersion: 3 + buildTarget: iPhone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 1 + - serializedVersion: 3 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 1 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Standalone/Resources/Sprites/taptap-sdk-cancel.png b/Standalone/Resources/Sprites/taptap-sdk-cancel.png new file mode 100644 index 0000000..397d159 Binary files /dev/null and b/Standalone/Resources/Sprites/taptap-sdk-cancel.png differ diff --git a/Standalone/Resources/Sprites/taptap-sdk-cancel.png.meta b/Standalone/Resources/Sprites/taptap-sdk-cancel.png.meta new file mode 100644 index 0000000..34ca143 --- /dev/null +++ b/Standalone/Resources/Sprites/taptap-sdk-cancel.png.meta @@ -0,0 +1,128 @@ +fileFormatVersion: 2 +guid: b4fd27620171d4d6b9243c0122efa3c9 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 2 + aniso: -1 + mipBias: -100 + wrapU: 1 + wrapV: 1 + wrapW: -1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 300 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 1 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 1 + - serializedVersion: 3 + buildTarget: iPhone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 1 + - serializedVersion: 3 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 1 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Standalone/Resources/Sprites/taptap-sdk-guide.png b/Standalone/Resources/Sprites/taptap-sdk-guide.png new file mode 100644 index 0000000..11c48ea Binary files /dev/null and b/Standalone/Resources/Sprites/taptap-sdk-guide.png differ diff --git a/Standalone/Resources/Sprites/taptap-sdk-guide.png.meta b/Standalone/Resources/Sprites/taptap-sdk-guide.png.meta new file mode 100644 index 0000000..1e6ea18 --- /dev/null +++ b/Standalone/Resources/Sprites/taptap-sdk-guide.png.meta @@ -0,0 +1,128 @@ +fileFormatVersion: 2 +guid: 09fe4f8199c4e4778946b67579db5075 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 2 + aniso: -1 + mipBias: -100 + wrapU: 1 + wrapV: 1 + wrapW: -1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 300 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 1 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 1 + - serializedVersion: 3 + buildTarget: iPhone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 1 + - serializedVersion: 3 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 1 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Standalone/Resources/Sprites/taptap-sdk-logo.png b/Standalone/Resources/Sprites/taptap-sdk-logo.png new file mode 100644 index 0000000..f195259 Binary files /dev/null and b/Standalone/Resources/Sprites/taptap-sdk-logo.png differ diff --git a/Standalone/Resources/Sprites/taptap-sdk-logo.png.meta b/Standalone/Resources/Sprites/taptap-sdk-logo.png.meta new file mode 100644 index 0000000..49bfa36 --- /dev/null +++ b/Standalone/Resources/Sprites/taptap-sdk-logo.png.meta @@ -0,0 +1,128 @@ +fileFormatVersion: 2 +guid: d29af1bc897ea49a88506d84c81b1392 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 2 + aniso: -1 + mipBias: -100 + wrapU: 1 + wrapV: 1 + wrapW: -1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 300 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 1 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 1 + - serializedVersion: 3 + buildTarget: iPhone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 1 + - serializedVersion: 3 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 1 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Standalone/Resources/Sprites/taptap-sdk-qrcode-bg-grey.png b/Standalone/Resources/Sprites/taptap-sdk-qrcode-bg-grey.png new file mode 100644 index 0000000..2723d52 Binary files /dev/null and b/Standalone/Resources/Sprites/taptap-sdk-qrcode-bg-grey.png differ diff --git a/Standalone/Resources/Sprites/taptap-sdk-qrcode-bg-grey.png.meta b/Standalone/Resources/Sprites/taptap-sdk-qrcode-bg-grey.png.meta new file mode 100644 index 0000000..dcddcac --- /dev/null +++ b/Standalone/Resources/Sprites/taptap-sdk-qrcode-bg-grey.png.meta @@ -0,0 +1,128 @@ +fileFormatVersion: 2 +guid: 063ea801346ec4ee6a70131557a1b5f7 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 2 + aniso: -1 + mipBias: -100 + wrapU: 1 + wrapV: 1 + wrapW: -1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 300 + spriteBorder: {x: 61, y: 61, z: 61, w: 61} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 1 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 1 + - serializedVersion: 3 + buildTarget: iPhone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 1 + - serializedVersion: 3 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 1 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Standalone/Resources/Sprites/taptap-sdk-qrcode-bg.png b/Standalone/Resources/Sprites/taptap-sdk-qrcode-bg.png new file mode 100644 index 0000000..71c52a4 Binary files /dev/null and b/Standalone/Resources/Sprites/taptap-sdk-qrcode-bg.png differ diff --git a/Standalone/Resources/Sprites/taptap-sdk-qrcode-bg.png.meta b/Standalone/Resources/Sprites/taptap-sdk-qrcode-bg.png.meta new file mode 100644 index 0000000..8259b01 --- /dev/null +++ b/Standalone/Resources/Sprites/taptap-sdk-qrcode-bg.png.meta @@ -0,0 +1,128 @@ +fileFormatVersion: 2 +guid: e566f05a80791430ebad8154cf2e0153 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 2 + aniso: -1 + mipBias: -100 + wrapU: 1 + wrapV: 1 + wrapW: -1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 300 + spriteBorder: {x: 42, y: 42, z: 42, w: 42} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 1 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 1 + - serializedVersion: 3 + buildTarget: iPhone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 1 + - serializedVersion: 3 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 1 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Standalone/Resources/Sprites/taptap-sdk-refresh-btn-bg.png b/Standalone/Resources/Sprites/taptap-sdk-refresh-btn-bg.png new file mode 100644 index 0000000..ae7900d Binary files /dev/null and b/Standalone/Resources/Sprites/taptap-sdk-refresh-btn-bg.png differ diff --git a/Standalone/Resources/Sprites/taptap-sdk-refresh-btn-bg.png.meta b/Standalone/Resources/Sprites/taptap-sdk-refresh-btn-bg.png.meta new file mode 100644 index 0000000..4e88c33 --- /dev/null +++ b/Standalone/Resources/Sprites/taptap-sdk-refresh-btn-bg.png.meta @@ -0,0 +1,128 @@ +fileFormatVersion: 2 +guid: a60d2c639f46d4ce894ac9c1faf81e86 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 2 + aniso: -1 + mipBias: -100 + wrapU: 1 + wrapV: 1 + wrapW: -1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 1 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 1 + - serializedVersion: 3 + buildTarget: iPhone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 1 + - serializedVersion: 3 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 1 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Standalone/Resources/Sprites/taptap-sdk-refresh.png b/Standalone/Resources/Sprites/taptap-sdk-refresh.png new file mode 100644 index 0000000..36ae8b1 Binary files /dev/null and b/Standalone/Resources/Sprites/taptap-sdk-refresh.png differ diff --git a/Standalone/Resources/Sprites/taptap-sdk-refresh.png.meta b/Standalone/Resources/Sprites/taptap-sdk-refresh.png.meta new file mode 100644 index 0000000..084f38a --- /dev/null +++ b/Standalone/Resources/Sprites/taptap-sdk-refresh.png.meta @@ -0,0 +1,128 @@ +fileFormatVersion: 2 +guid: 13199a88a311149089187eea28606a3f +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 2 + aniso: -1 + mipBias: -100 + wrapU: 1 + wrapV: 1 + wrapW: -1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 1 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 1 + - serializedVersion: 3 + buildTarget: iPhone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 1 + - serializedVersion: 3 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 1 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Standalone/Resources/Sprites/taptap-tap-logo.png b/Standalone/Resources/Sprites/taptap-tap-logo.png new file mode 100644 index 0000000..d595ca4 Binary files /dev/null and b/Standalone/Resources/Sprites/taptap-tap-logo.png differ diff --git a/Standalone/Resources/Sprites/taptap-tap-logo.png.meta b/Standalone/Resources/Sprites/taptap-tap-logo.png.meta new file mode 100644 index 0000000..6ec1d73 --- /dev/null +++ b/Standalone/Resources/Sprites/taptap-tap-logo.png.meta @@ -0,0 +1,128 @@ +fileFormatVersion: 2 +guid: 4ac762c2f07fc4c668e1259044839c97 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 1 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: iPhone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Standalone/Resources/Sprites/taptap-web-login-icon.png b/Standalone/Resources/Sprites/taptap-web-login-icon.png new file mode 100644 index 0000000..2f1723d Binary files /dev/null and b/Standalone/Resources/Sprites/taptap-web-login-icon.png differ diff --git a/Standalone/Resources/Sprites/taptap-web-login-icon.png.meta b/Standalone/Resources/Sprites/taptap-web-login-icon.png.meta new file mode 100644 index 0000000..6d4cdcc --- /dev/null +++ b/Standalone/Resources/Sprites/taptap-web-login-icon.png.meta @@ -0,0 +1,128 @@ +fileFormatVersion: 2 +guid: 6ff29f3c4d2094e9ea0aac708e036b23 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: iPhone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Standalone/Resources/Sprites/taptap-web-login.png b/Standalone/Resources/Sprites/taptap-web-login.png new file mode 100644 index 0000000..b2ef9ff Binary files /dev/null and b/Standalone/Resources/Sprites/taptap-web-login.png differ diff --git a/Standalone/Resources/Sprites/taptap-web-login.png.meta b/Standalone/Resources/Sprites/taptap-web-login.png.meta new file mode 100644 index 0000000..df7d028 --- /dev/null +++ b/Standalone/Resources/Sprites/taptap-web-login.png.meta @@ -0,0 +1,146 @@ +fileFormatVersion: 2 +guid: 24984427533904e829daf33cf945d740 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 300 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: iPhone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Standalone/Runtime.meta b/Standalone/Runtime.meta new file mode 100644 index 0000000..080db22 --- /dev/null +++ b/Standalone/Runtime.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5acf9bcf0b16a4b3591280321c8968db +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Standalone/Runtime/Internal.meta b/Standalone/Runtime/Internal.meta new file mode 100644 index 0000000..7e429d1 --- /dev/null +++ b/Standalone/Runtime/Internal.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3a139438399ae49efa0c5a9f7786c340 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Standalone/Runtime/Internal/ContainerWindow.cs b/Standalone/Runtime/Internal/ContainerWindow.cs new file mode 100644 index 0000000..cc99436 --- /dev/null +++ b/Standalone/Runtime/Internal/ContainerWindow.cs @@ -0,0 +1,67 @@ +using System.Collections; +using UnityEngine; +using UnityEngine.UI; + +namespace TapTap.Login.Internal +{ + internal class ContainerWindow : UIElement + { + + void Awake() + { + transitionDurationTime = 0.1f; + CanvasScaler scaler = GetComponent(); + if (Screen.height > 1080) + { + scaler.uiScaleMode = CanvasScaler.ScaleMode.ScaleWithScreenSize; + } + else + { + scaler.uiScaleMode = CanvasScaler.ScaleMode.ConstantPixelSize; + } + + } + + public override IEnumerator PlayExit() + { + if (!animationLaunched) + { + animationLaunched = true; + float startTime = Time.time; + float endTime = startTime + transitionDurationTime; + CanvasGroup canvasGroup = UIOperation.GetComponent(gameObject); + canvasGroup.alpha = 1f; + while (Time.time < endTime) + { + yield return new WaitForEndOfFrame(); + float delta = (Time.time - startTime) / transitionDurationTime; + canvasGroup.alpha = 1 - delta; + } + } + animationLaunched = false; + yield return null; + } + + public override IEnumerator PlayEnter() + { + if (!animationLaunched) + { + animationLaunched = true; + float startTime = Time.time; + float endTime = startTime + transitionDurationTime; + CanvasGroup canvasGroup = UIOperation.GetComponent(gameObject); + canvasGroup.alpha = 0f; + while (Time.time < endTime) + { + yield return new WaitForEndOfFrame(); + float delta = (Time.time - startTime) / transitionDurationTime; + canvasGroup.alpha = delta; + } + } + animationLaunched = false; + yield return null; + } + + } + +} diff --git a/Standalone/Runtime/Internal/ContainerWindow.cs.meta b/Standalone/Runtime/Internal/ContainerWindow.cs.meta new file mode 100644 index 0000000..d34631e --- /dev/null +++ b/Standalone/Runtime/Internal/ContainerWindow.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 13ad06faee0934d22b8ddbe5ef50e13a +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Standalone/Runtime/Internal/LoginHelper.cs b/Standalone/Runtime/Internal/LoginHelper.cs new file mode 100644 index 0000000..6774708 --- /dev/null +++ b/Standalone/Runtime/Internal/LoginHelper.cs @@ -0,0 +1,156 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using LC.Newtonsoft.Json; +using TapTap.Common; +using TapTap.Common.Internal.Utils; +using UnityEngine; + +namespace TapTap.Login.Internal +{ + internal class LoginHelper + { + private static readonly string _accessToken = "taptapsdk_accesstoken"; + + private static readonly string _profile = "taptapsdk_profile"; + + public static Task Login() + { + return Login(new[] { TapLogin.TAP_LOGIN_SCOPE_PUBLIC_PROFILE }); + } + + public static Task> Authorize(string[] permissions) { + return InternalAuthorize(permissions, false); + } + + public static Task Login(string[] permissions) { + var pl = permissions.ToList(); + + // // 如果是海外版,移除合规权限 + // bool isCn = !TapLoginStandalone.IsOverseas; + // if (!isCn) { + // pl.Remove(TapLogin.TAP_LOGIN_SCOPE_COMPLIANCE); + // } + permissions = pl.ToArray(); + var task = InternalAuthorize(permissions, true); + return task.ContinueWith(t => { + + if (t.IsFaulted) { + throw t.Exception; + } + + var result = t.Result; + return result.Item1; + }); + } + + private static async void ShowLoginToast(Profile profile, bool isLogin) { + if (!isLogin) return; + var content = LoginLanguage.GetCurrentLang().LoginNotice(); + var str = string.Format(content, profile.name); + Texture userAvatar = null; + try { + userAvatar = await ImageUtils.LoadImage(profile.avatar); + } + finally { + if (userAvatar == null){ + userAvatar = UI.UIManager.TapTapToastIcon; + } + string message = string.Format(LoginLanguage.GetCurrentLang().LoginNotice(), profile.name); + UI.UIManager.Instance.OpenToast(false, str, 3, icon: userAvatar); + } + } + + private static Task> InternalAuthorize(string[] permissions, bool isLogin) { + var tcs = new TaskCompletionSource>(); + + LoginManager.AuthorizeWithReadPermissions(permissions, isLogin,result => + { + if (result == null) + { + tcs.TrySetException(new TapException((int) TapErrorCode.ERROR_CODE_UNDEFINED, "UnKnow Error")); + return; + } + + if (result.IsCanceled) + { + tcs.TrySetException( + new TapException((int) TapErrorCode.ERROR_CODE_LOGIN_CANCEL, "Login Cancel")); + return; + } + + if (result.IsFaulted) + { + var str = result.Exception.Message; + if (str == "unknown") + { + tcs.TrySetException(new TapException((int) TapErrorCode.ERROR_CODE_UNDEFINED, + "UnKnow Error")); + } + else + { + var dict = Json.Deserialize(str) as Dictionary; + var data = SafeDictionary.GetValue(dict, "data") as Dictionary; + tcs.TrySetException(new TapException(SafeDictionary.GetValue(data, "code"), + SafeDictionary.GetValue(data, "error_description"))); + } + + return; + } + ShowLoginToast(result.Profile, isLogin); + tcs.TrySetResult(new Tuple(result.Token, result.Profile)); + }); + return tcs.Task; + } + + public static Task GetProfile() + { + var tcs = new TaskCompletionSource(); + try + { + var profileStr = DataStorage.LoadString(_profile); + if (!string.IsNullOrEmpty(profileStr)) + { + var profile = JsonConvert.DeserializeObject(profileStr); + tcs.TrySetResult(profile); + } + else { + tcs.TrySetResult(null); + } + } + catch (Exception e) + { + tcs.TrySetException(e); + } + + return tcs.Task; + } + + public static Task GetAccessToken() + { + var tcs = new TaskCompletionSource(); + try + { + var accessTokenStr = DataStorage.LoadString(_accessToken); + if (accessTokenStr != null) + { + var accessToken = JsonConvert.DeserializeObject(accessTokenStr); + tcs.TrySetResult(accessToken); + } + } + catch (Exception e) + { + tcs.TrySetException(e); + } + + return tcs.Task; + } + + public static void Logout() + { + DataStorage.SaveString(_profile, null); + DataStorage.SaveString(_accessToken, null); + } + } +} \ No newline at end of file diff --git a/Standalone/Runtime/Internal/LoginHelper.cs.meta b/Standalone/Runtime/Internal/LoginHelper.cs.meta new file mode 100644 index 0000000..05eabe3 --- /dev/null +++ b/Standalone/Runtime/Internal/LoginHelper.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 95d96a84af34d4b27bf43d62870f67ad +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Standalone/Runtime/Internal/LoginLanguage.cs b/Standalone/Runtime/Internal/LoginLanguage.cs new file mode 100644 index 0000000..9a82821 --- /dev/null +++ b/Standalone/Runtime/Internal/LoginLanguage.cs @@ -0,0 +1,1172 @@ +using TapTap.Common; + +namespace TapTap.Login.Internal +{ + public class LoginLanguage + { + private static volatile LoginLanguage _instance; + private static readonly object ObjLock = new object(); + private readonly LoginLangZH zh; + private readonly LoginLangEN en; + private readonly LoginLangID id; + private readonly LoginLangJA ja; + private readonly LoginLangKO ko; + private readonly LoginLangTH th; + private readonly LoginLangZHTW tw; + + private readonly LoginLangDE de; + private readonly LoginLangES es; + private readonly LoginLangFR fr; + private readonly LoginLangPT pt; + private readonly LoginLangRU ru; + private readonly LoginLangTR tr; + private readonly LoginLangVI vi; + + private static LoginLanguage Instance + { + get + { + if (_instance != null) return _instance; + lock (ObjLock) + { + if (_instance == null) + { + _instance = new LoginLanguage(); + } + } + + return _instance; + } + } + + private LoginLanguage() + { + zh = new LoginLangZH(); + en = new LoginLangEN(); + id = new LoginLangID(); + ja = new LoginLangJA(); + ko = new LoginLangKO(); + th = new LoginLangTH(); + tw = new LoginLangZHTW(); + + de = new LoginLangDE(); + es = new LoginLangES(); + fr = new LoginLangFR(); + pt = new LoginLangPT(); + ru = new LoginLangRU(); + tr = new LoginLangTR(); + vi = new LoginLangVI(); + } + + public static ILoginLang GetCurrentLang() + { + switch (TapLocalizeManager.GetCurrentLanguage()) + { + case TapLanguage.ZH_HANS: + return Instance.zh; + case TapLanguage.EN: + return Instance.en; + case TapLanguage.ID: + return Instance.id; + case TapLanguage.JA: + return Instance.ja; + case TapLanguage.KO: + return Instance.ko; + case TapLanguage.TH: + return Instance.th; + case TapLanguage.ZH_HANT: + return Instance.tw; + case TapLanguage.DE: + return Instance.de; + case TapLanguage.ES: + return Instance.es; + case TapLanguage.FR: + return Instance.fr; + case TapLanguage.PT: + return Instance.pt; + case TapLanguage.RU: + return Instance.ru; + case TapLanguage.TR: + return Instance.tr; + case TapLanguage.VI: + return Instance.vi; + default: + return Instance.en; + } + } + } + + public class LoginLangZH : ILoginLang { + public string TitleUse() { + return "使用"; + } + + public string TitleLogin() { + return "账号登录"; + } + + public string QrTitleLogin() { + return "安全扫码登录"; + } + + public string QrRefresh() { + return "点击刷新"; + } + + public string QrNoticeUse() { + return "请使用"; + } + + public string QrNoticeClient() { + return "客户端"; + } + + public string QrNoticeScanToLogin() { + return "扫描二维码登录"; + } + + public string WebLogin() { + return "使用网页浏览器完成授权"; + } + + public string WebNotice() { + return "点击下方按钮前往网页浏览器,\n授权 TapTap 账号,完成后将自动返回游戏。"; + } + + public string WebButtonJumpToWeb() { + return "跳转至 TapTap"; + } + + public string QrNoticeCancel() { + return "您已取消此次登录"; + } + + public string QrNoticeCancel2() { + return "请重新扫码"; + } + + public string QrnNoticeSuccess() { + return "扫码成功"; + } + + public string QrnNoticeSuccess2() { + return "请在手机上确认"; + } + + public string WebNoticeLogin() { + return "正在登录中,请稍后"; + } + + public string WebNoticeFail() { + return "登录失败"; + } + + public string WebNoticeFail2() { + return "请重新点击打开网页进行授权"; + } + + public string LoginNotice() { + return "已登录账号:{0}"; + } + } + + public class LoginLangEN : ILoginLang { + public string TitleUse() { + return "Log In with"; + } + + public string TitleLogin() { + return ""; + } + + public string QrTitleLogin() { + return "Via QR Code"; + } + + public string QrRefresh() { + return "Refresh"; + } + + public string QrNoticeUse() { + return "Use"; + } + + public string QrNoticeClient() { + return "App"; + } + + public string QrNoticeScanToLogin() { + return "to scan the code"; + } + + public string WebLogin() { + return "Via Web Browser"; + } + + public string WebNotice() { + return "Allow permission to log in with TapTap,\nYou'll be redirected back after login."; + } + + public string WebButtonJumpToWeb() { + return "Go to TapTap"; + } + + public string QrNoticeCancel() { + return "Failed to log in"; + } + + public string QrNoticeCancel2() { + return "Please try again"; + } + + public string QrnNoticeSuccess() { + return "Success"; + } + + public string QrnNoticeSuccess2() { + return "Please confirm login on your phone"; + } + + public string WebNoticeLogin() { + return "Logging in"; + } + + public string WebNoticeFail() { + return "Failed to log in"; + } + + public string WebNoticeFail2() { + return "Please try again"; + } + + public string LoginNotice() { + return "Logged-in account: {0}"; + } + } + + public class LoginLangID : ILoginLang { + public string TitleUse() { + return "Log In dengan "; + } + + public string TitleLogin() { + return ""; + } + + public string QrTitleLogin() { + return "Melalui Kode QR"; + } + + public string QrRefresh() { + return "Refresh"; + } + + public string QrNoticeUse() { + return ""; + } + + public string QrNoticeClient() { + return ""; + } + + public string QrNoticeScanToLogin() { + return "Pindai kode QR \n dengan apliaksi TapTap"; + } + + public string WebLogin() { + return "Melalui Browser Web"; + } + + public string WebNotice() { + return "Berikan izin untuk log in dengan TapTap. \nKamu akan diarahkan kembali setelah log in."; + } + + public string WebButtonJumpToWeb() { + return "Buka TapTap"; + } + + public string QrNoticeCancel() { + return "Gagal log in"; + } + + public string QrNoticeCancel2() { + return "Silakan coba lagi."; + } + + public string QrnNoticeSuccess() { + return "Berhasil"; + } + + public string QrnNoticeSuccess2() { + return "Silakan konfirmasi log in di ponselmu."; + } + + public string WebNoticeLogin() { + return "Sedang log in..."; + } + + public string WebNoticeFail() { + return "Gagal log in"; + } + + public string WebNoticeFail2() { + return "Silakan coba lagi."; + } + + public string LoginNotice() { + return "Akun yang login: {0}"; + } + } + + public class LoginLangJA : ILoginLang { + public string TitleUse() { + return ""; + } + + public string TitleLogin() { + return "でログイン"; + } + + public string QrTitleLogin() { + return "QRコードを使う"; + } + + public string QrRefresh() { + return "更新"; + } + + public string QrNoticeUse() { + return ""; + } + + public string QrNoticeClient() { + return "アプリで"; + } + + public string QrNoticeScanToLogin() { + return "QRコードをスキャン"; + } + + public string WebLogin() { + return "ウェブブラウザを使う"; + } + + public string WebNotice() { + return "TapTapへのログインを許可します。\nログイン後にリダイレクトされます。"; + } + + public string WebButtonJumpToWeb() { + return "TapTapを開く"; + } + + public string QrNoticeCancel() { + return "ログインに失敗しました"; + } + + public string QrNoticeCancel2() { + return "もう一度お試しください。"; + } + + public string QrnNoticeSuccess() { + return "成功"; + } + + public string QrnNoticeSuccess2() { + return "お使いの携帯電話でログインを確認してください。"; + } + + public string WebNoticeLogin() { + return "ログイン中…"; + } + + public string WebNoticeFail() { + return "ログインに失敗しました"; + } + + public string WebNoticeFail2() { + return "もう一度お試しください。"; + } + + public string LoginNotice() { + return "ログイン済みのアカウント:{0}"; + } + } + + public class LoginLangKO : ILoginLang { + public string TitleUse() { + return ""; + } + + public string TitleLogin() { + return "으로 로그인"; + } + + public string QrTitleLogin() { + return "QR 코드 사용"; + } + + public string QrRefresh() { + return "새로 고치기"; + } + + public string QrNoticeUse() { + return ""; + } + + public string QrNoticeClient() { + return "앱으로"; + } + + public string QrNoticeScanToLogin() { + return "QR 코드를 스캔하세요"; + } + + public string WebLogin() { + return "웹 브라우저 사용"; + } + + public string WebNotice() { + return "Taptap으로 로그인하는 권한을 허락하세요.\n로그인 후에 원래 화면으로 돌아갑니다."; + } + + public string WebButtonJumpToWeb() { + return "Taptap으로 이동"; + } + + public string QrNoticeCancel() { + return "로그인 실패"; + } + + public string QrNoticeCancel2() { + return "다시 시도하세요."; + } + + public string QrnNoticeSuccess() { + return "성공"; + } + + public string QrnNoticeSuccess2() { + return "스마트폰에서 로그인을 확인하세요."; + } + + public string WebNoticeLogin() { + return "로그인 중..."; + } + + public string WebNoticeFail() { + return "로그인 실패"; + } + + public string WebNoticeFail2() { + return "다시 시도하세요."; + } + + public string LoginNotice() { + return "로그인한 계정: {0}"; + } + } + + public class LoginLangTH : ILoginLang { + public string TitleUse() { + return "ล็อกอินด้วย "; + } + + public string TitleLogin() { + return ""; + } + + public string QrTitleLogin() { + return "ผ่าน QR โค้ด"; + } + + public string QrRefresh() { + return "รีเฟรช"; + } + + public string QrNoticeUse() { + return ""; + } + + public string QrNoticeClient() { + return ""; + } + + public string QrNoticeScanToLogin() { + return "สแกน QR โค้ด \n ด้วยแอป TapTap"; + } + + public string WebLogin() { + return "ผ่านเว็บเบราว์เซอร์"; + } + + public string WebNotice() { + return "อนุญาตให้ล็อกอินด้วย TapTap \nคุณจะถูกเปลี่ยนเส้นทางกลับหลังจากล็อกอิน"; + } + + public string WebButtonJumpToWeb() { + return "ไปที่ TapTap"; + } + + public string QrNoticeCancel() { + return "ไม่สามารถล็อกอินได้"; + } + + public string QrNoticeCancel2() { + return "โปรดลองอีกครั้ง"; + } + + public string QrnNoticeSuccess() { + return "สำเร็จ"; + } + + public string QrnNoticeSuccess2() { + return "โปรดยืนยันการล็อกอินบนโทรศัพท์ของคุณ"; + } + + public string WebNoticeLogin() { + return "กำลังล็อกอิน..."; + } + + public string WebNoticeFail() { + return "ไม่สามารถล็อกอินได้"; + } + + public string WebNoticeFail2() { + return "โปรดลองอีกครั้ง"; + } + + public string LoginNotice() { + return "บัญชีที่ล็อกอิน: {0}"; + } + } + + public class LoginLangZHTW : ILoginLang { + public string TitleUse() { + return "使用"; + } + + public string TitleLogin() { + return "登入"; + } + + public string QrTitleLogin() { + return "透過 QR 碼"; + } + + public string QrRefresh() { + return "重新整理"; + } + + public string QrNoticeUse() { + return "使用"; + } + + public string QrNoticeClient() { + return "應用程式"; + } + + public string QrNoticeScanToLogin() { + return "掃描 QR 碼"; + } + + public string WebLogin() { + return "透過網路瀏覽器"; + } + + public string WebNotice() { + return "請允許使用 TapTap 登入。\n登入後系統會將你重新導回此頁面。"; + } + + public string WebButtonJumpToWeb() { + return "前往 TapTap"; + } + + public string QrNoticeCancel() { + return "登入失敗"; + } + + public string QrNoticeCancel2() { + return "請再試一次。"; + } + + public string QrnNoticeSuccess() { + return "成功"; + } + + public string QrnNoticeSuccess2() { + return "請在您的手機上確認登入。"; + } + + public string WebNoticeLogin() { + return "正在登入……"; + } + + public string WebNoticeFail() { + return "登入失敗"; + } + + public string WebNoticeFail2() { + return "請再試一次。"; + } + + public string LoginNotice() { + return "已登入帳號:{0}"; + } + } + + public class LoginLangDE : ILoginLang { + public string TitleUse() { + return "Anmeldung mit"; + } + + public string TitleLogin() { + return ""; + } + + public string QrTitleLogin() { + return "Per QR-Code"; + } + + public string QrRefresh() { + return "Aktualisierung"; + } + + public string QrNoticeUse() { + return ""; + } + + public string QrNoticeClient() { + return ""; + } + + public string QrNoticeScanToLogin() { + return "Scanne den QR-Code\nmit der \"TapTap\"-App"; + } + + public string WebLogin() { + return "Per Webbrowser"; + } + + public string WebNotice() { + return "Erlaube die Anmeldung mit TapTap.\nDu wirst nach der Anmeldung zurückgeleitet."; + } + + public string WebButtonJumpToWeb() { + return "Gehe zu TapTap"; + } + + public string QrNoticeCancel() { + return "Anmeldung fehlgeschlagen"; + } + + public string QrNoticeCancel2() { + return "Versuche es bitte erneut."; + } + + public string QrnNoticeSuccess() { + return "Erfolgreich"; + } + + public string QrnNoticeSuccess2() { + return "Bitte bestätige die Anmeldung mit deinem Handy."; + } + + public string WebNoticeLogin() { + return "Ameldung..."; + } + + public string WebNoticeFail() { + return "Anmeldung fehlgeschlagen"; + } + + public string WebNoticeFail2() { + return "Versuche es bitte erneut."; + } + + public string LoginNotice() { + return "Logged-in account: {0}"; + } + } + + public class LoginLangES : ILoginLang { + public string TitleUse() { + return "Iniciar sesión con"; + } + + public string TitleLogin() { + return ""; + } + + public string QrTitleLogin() { + return "Mediante código QR"; + } + + public string QrRefresh() { + return "Actualizar"; + } + + public string QrNoticeUse() { + return ""; + } + + public string QrNoticeClient() { + return ""; + } + + public string QrNoticeScanToLogin() { + return "Escanee el código QR\ncon la aplicación TapTap"; + } + + public string WebLogin() { + return "A través del navegador web"; + } + + public string WebNotice() { + return "Permita iniciar sesión con TapTap.\nSerá redirigido de vuelta después de iniciar sesión."; + } + + public string WebButtonJumpToWeb() { + return "Ir a TapTap"; + } + + public string QrNoticeCancel() { + return "Error al iniciar sesión"; + } + + public string QrNoticeCancel2() { + return "Por favor, inténtelo de nuevo."; + } + + public string QrnNoticeSuccess() { + return "Éxito"; + } + + public string QrnNoticeSuccess2() { + return "Por favor, confirme el inicio de sesión en su teléfono."; + } + + public string WebNoticeLogin() { + return "Iniciando sesión..."; + } + + public string WebNoticeFail() { + return "Error al iniciar sesión"; + } + + public string WebNoticeFail2() { + return "Por favor, inténtalo de nuevo."; + } + + public string LoginNotice() { + return "Logged-in account: {0}"; + } + } + + public class LoginLangFR : ILoginLang { + public string TitleUse() { + return "Se connecter avec"; + } + + public string TitleLogin() { + return ""; + } + + public string QrTitleLogin() { + return "Via le Code QR"; + } + + public string QrRefresh() { + return "Actualisé"; + } + + public string QrNoticeUse() { + return ""; + } + + public string QrNoticeClient() { + return ""; + } + + public string QrNoticeScanToLogin() { + return "Scanner le Code QR\navec l'application TapTap"; + } + + public string WebLogin() { + return "Via le Navigateur Web"; + } + + public string WebNotice() { + return "Autoriser la connexion avec TapTap.\nVous serez redirigé après la connexion."; + } + + public string WebButtonJumpToWeb() { + return "Aller à TapTap"; + } + + public string QrNoticeCancel() { + return "Échec de connexion"; + } + + public string QrNoticeCancel2() { + return "Veuillez réessayer."; + } + + public string QrnNoticeSuccess() { + return "Réussi"; + } + + public string QrnNoticeSuccess2() { + return "Veuillez confirmer votre connexion sur votre téléphone."; + } + + public string WebNoticeLogin() { + return "Connexion..."; + } + + public string WebNoticeFail() { + return "Échec de connexion"; + } + + public string WebNoticeFail2() { + return "Veuillez réessayer."; + } + + public string LoginNotice() { + return "Logged-in account: {0}"; + } + } + + public class LoginLangPT : ILoginLang { + public string TitleUse() { + return "Entrar com"; + } + + public string TitleLogin() { + return ""; + } + + public string QrTitleLogin() { + return "Via QR Code"; + } + + public string QrRefresh() { + return "Atualizar"; + } + + public string QrNoticeUse() { + return ""; + } + + public string QrNoticeClient() { + return ""; + } + + public string QrNoticeScanToLogin() { + return "Escaneie o QR code\ncom o aplicativo TapTap"; + } + + public string WebLogin() { + return "Através do Navegador da Web"; + } + + public string WebNotice() { + return "Conceder permissão para fazer login com o TapTap.\nVocê será redirecionado de volta após o login."; + } + + public string WebButtonJumpToWeb() { + return "Ir para TapTap"; + } + + public string QrNoticeCancel() { + return "Falha ao fazer login"; + } + + public string QrNoticeCancel2() { + return "Por favor, tente novamente."; + } + + public string QrnNoticeSuccess() { + return "Sucesso"; + } + + public string QrnNoticeSuccess2() { + return "Por favor, confirme o login no seu telefone."; + } + + public string WebNoticeLogin() { + return "Fazendo login..."; + } + + public string WebNoticeFail() { + return "Falha ao fazer login"; + } + + public string WebNoticeFail2() { + return "Por favor, tente novamente."; + } + + public string LoginNotice() { + return "Logged-in account: {0}"; + } + } + + public class LoginLangRU : ILoginLang { + public string TitleUse() { + return "Войти с"; + } + + public string TitleLogin() { + return ""; + } + + public string QrTitleLogin() { + return "Через QR-код"; + } + + public string QrRefresh() { + return "Обновить"; + } + + public string QrNoticeUse() { + return ""; + } + + public string QrNoticeClient() { + return ""; + } + + public string QrNoticeScanToLogin() { + return "Просканируйте QR-код\nприложением TapTap"; + } + + public string WebLogin() { + return "Через браузер"; + } + + public string WebNotice() { + return "Разрешите входить с TapTap.\nВы будете перенаправлены после входа."; + } + + public string WebButtonJumpToWeb() { + return "Перейти в TapTap"; + } + + public string QrNoticeCancel() { + return "Не удалось войти"; + } + + public string QrNoticeCancel2() { + return "Попробуйте снова."; + } + + public string QrnNoticeSuccess() { + return "Успешно"; + } + + public string QrnNoticeSuccess2() { + return "Подтвердите вход на своем телефоне."; + } + + public string WebNoticeLogin() { + return "Входите..."; + } + + public string WebNoticeFail() { + return "Не удалось войти"; + } + + public string WebNoticeFail2() { + return "Попробуйте снова."; + } + + public string LoginNotice() { + return "Logged-in account: {0}"; + } + } + + public class LoginLangTR : ILoginLang { + public string TitleUse() { + return ""; + } + + public string TitleLogin() { + return "ile Giriş Yap"; + } + + public string QrTitleLogin() { + return "QR Kodu"; + } + + public string QrRefresh() { + return "Yenile"; + } + + public string QrNoticeUse() { + return ""; + } + + public string QrNoticeClient() { + return "uygulamasını kullanarak"; + } + + public string QrNoticeScanToLogin() { + return "QR kodunu tara"; + } + + public string WebLogin() { + return "İnternet Tarayıcısı"; + } + + public string WebNotice() { + return "TapTap ile giriş yapmak için izin ver.\nGirişten sonra yeniden yönlendirileceksiniz."; + } + + public string WebButtonJumpToWeb() { + return "TapTap"; + } + + public string QrNoticeCancel() { + return "Giriş yapılamadı"; + } + + public string QrNoticeCancel2() { + return "Lütfen tekrar deneyin."; + } + + public string QrnNoticeSuccess() { + return "Başarılı"; + } + + public string QrnNoticeSuccess2() { + return "Lütfen girişi telefonunuzdan onaylayın."; + } + + public string WebNoticeLogin() { + return "Giriş yapılıyor…"; + } + + public string WebNoticeFail() { + return "Giriş yapılamadı"; + } + + public string WebNoticeFail2() { + return "Lütfen tekrar deneyin."; + } + + public string LoginNotice() { + return "Logged-in account: {0}"; + } + } + + public class LoginLangVI : ILoginLang { + public string TitleUse() { + return "Đăng nhập bằng"; + } + + public string TitleLogin() { + return ""; + } + + public string QrTitleLogin() { + return "Dùng mã QR"; + } + + public string QrRefresh() { + return "Làm mới"; + } + + public string QrNoticeUse() { + return ""; + } + + public string QrNoticeClient() { + return ""; + } + + public string QrNoticeScanToLogin() { + return "Quét mã QR\nbằng app TapTap"; + } + + public string WebLogin() { + return "Dùng Trình duyệt Web"; + } + + public string WebNotice() { + return "Cho phép đăng nhập bằng TapTap.\nBạn sẽ tự động quay lại sau khi đăng nhập."; + } + + public string WebButtonJumpToWeb() { + return "Đến TapTap"; + } + + public string QrNoticeCancel() { + return "Đăng nhập thất bại"; + } + + public string QrNoticeCancel2() { + return "Vui lòng thử lại."; + } + + public string QrnNoticeSuccess() { + return "Thành công"; + } + + public string QrnNoticeSuccess2() { + return "Vui lòng xác nhận đăng nhập trên điện thoại của bạn."; + } + + public string WebNoticeLogin() { + return "Đang đăng nhập…"; + } + + public string WebNoticeFail() { + return "Đăng nhập thất bại"; + } + + public string WebNoticeFail2() { + return "Vui lòng thử lại."; + } + + public string LoginNotice() { + return "Logged-in account: {0}"; + } + } + + public interface ILoginLang + { + string TitleUse(); + + string TitleLogin(); + + string QrTitleLogin(); + + string QrRefresh(); + + string QrNoticeUse(); + + string QrNoticeClient(); + + string QrNoticeScanToLogin(); + + string WebLogin(); + + string WebNotice(); + + string WebButtonJumpToWeb(); + + string QrNoticeCancel(); + + string QrNoticeCancel2(); + + string QrnNoticeSuccess(); + string QrnNoticeSuccess2(); + + string WebNoticeLogin(); + + string WebNoticeFail(); + + string WebNoticeFail2(); + + string LoginNotice(); + } +} \ No newline at end of file diff --git a/Standalone/Runtime/Internal/LoginLanguage.cs.meta b/Standalone/Runtime/Internal/LoginLanguage.cs.meta new file mode 100644 index 0000000..3dadcf5 --- /dev/null +++ b/Standalone/Runtime/Internal/LoginLanguage.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 00074d76cff9b4125b2d5820b194d5a4 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Standalone/Runtime/Internal/LoginManager.cs b/Standalone/Runtime/Internal/LoginManager.cs new file mode 100644 index 0000000..e9c67ba --- /dev/null +++ b/Standalone/Runtime/Internal/LoginManager.cs @@ -0,0 +1,96 @@ +using System; +using System.Collections.Generic; +using TapTap.Common; +using UnityEngine; +using Object = UnityEngine.Object; + +namespace TapTap.Login.Internal +{ + internal class LoginManager + { + public delegate void OnLoginResult(LoginResult result); + + private static LoginManager _instance; + private static readonly object objlock = new object(); + + public static LoginManager Instance + { + get + { + if (_instance == null) + { + lock (objlock) + { + if (_instance == null) + { + _instance = new LoginManager(); + } + } + } + return _instance; + } + } + + public static void AuthorizeWithReadPermissions(string[] permissions, bool isLogin, + OnLoginResult onLoginResult) + { + GameObject managerObject = new GameObject + { + name = "TapTapSDKUIManager" + }; + Object.DontDestroyOnLoad(managerObject); + UIManager manager = managerObject.GetComponent(); + if (manager == null) + { + managerObject.AddComponent(); + } + manager = managerObject.GetComponent(); + + Dictionary configs = new Dictionary + { + { "client_id", TapTapSdk.ClientId }, + { "permissions", permissions }, + { "isLogin", isLogin}, + }; + manager.ShowQRCodeLogin(configs, (code, data) => + { + if (onLoginResult != null) + { + if (code == UIManager.RESULT_CLOSE) + { + LoginResult result = new LoginResult(); + result.IsCanceled = true; + onLoginResult(result); + } else if (code == UIManager.RESULT_SUCCESS && data != null & data is Tuple) + { + LoginResult result = new LoginResult(); + var tup = data as Tuple; + result.Token = tup.Item1; + result.Profile = tup.Item2; + onLoginResult(result); + } else + { + LoginResult result = new LoginResult(); + result.IsFaulted = true; + if (data != null) + { + result.Exception = new Exception(data.ToString()); + } else + { + result.Exception = new Exception("unknown"); + } + + onLoginResult(result); + } + } + }); + } + + public void Logout() + { + DataStorage.SaveString("taptapsdk_accesstoken", null); + DataStorage.SaveString("taptapsdk_profile", null); + } + } + +} diff --git a/Standalone/Runtime/Internal/LoginManager.cs.meta b/Standalone/Runtime/Internal/LoginManager.cs.meta new file mode 100644 index 0000000..f3c6cc9 --- /dev/null +++ b/Standalone/Runtime/Internal/LoginManager.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: ca4288e410e844450865b5bf27559c6d +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Standalone/Runtime/Internal/LoginResult.cs b/Standalone/Runtime/Internal/LoginResult.cs new file mode 100644 index 0000000..974a2ee --- /dev/null +++ b/Standalone/Runtime/Internal/LoginResult.cs @@ -0,0 +1,17 @@ +using System; + +namespace TapTap.Login.Internal +{ + internal class LoginResult + { + public bool IsCanceled { get; set; } + + public bool IsFaulted { get; set; } + + public Exception Exception { get; set; } + + public AccessToken Token { get; set; } + + public Profile Profile { get; set; } + } +} \ No newline at end of file diff --git a/Standalone/Runtime/Internal/LoginResult.cs.meta b/Standalone/Runtime/Internal/LoginResult.cs.meta new file mode 100644 index 0000000..da52cbc --- /dev/null +++ b/Standalone/Runtime/Internal/LoginResult.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: aca4cec4d440941049b7f3d28b3f1bb0 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Standalone/Runtime/Internal/Net.cs b/Standalone/Runtime/Internal/Net.cs new file mode 100644 index 0000000..9376862 --- /dev/null +++ b/Standalone/Runtime/Internal/Net.cs @@ -0,0 +1,291 @@ +using System; +using System.Collections; +using System.Collections.Generic; +using System.Collections.Specialized; +using System.Text; +using System.Text.RegularExpressions; +using TapTap.Common; +using UnityEngine; + +namespace TapTap.Login.Internal +{ + public class Net : MonoBehaviour + { + public delegate void Action(); + + // ReSharper disable Unity.PerformanceAnalysis + public void PostAsync(string url, Dictionary queryParams, Dictionary formParams, Action methodForResult, Action methodForError) + { + if (string.IsNullOrEmpty(url)) + { + methodForError(-1, "empty url"); + return; + } + StartCoroutine(Post(url, queryParams, formParams, methodForResult, methodForError)); + } + + // ReSharper disable Unity.PerformanceAnalysis + public void GetAsync(string url, string authorization, Dictionary queryParams, Action methodForResult, Action methodForError) + { + if (string.IsNullOrEmpty(url)) + { + methodForError(-1, "empty url"); + return; + } + StartCoroutine(Get(url, authorization, queryParams, methodForResult, methodForError)); + } + + // ReSharper disable Unity.PerformanceAnalysis + private IEnumerator Get(string url, string authorization, Dictionary queryParams, Action methodForResult, Action methodForError) + { + string baseUrl; + Dictionary finalQueryParams = queryParams ?? new Dictionary(); + NameValueCollection collection = new NameValueCollection(); + ParseUrl(url, out baseUrl, out collection); + foreach (string key in collection.AllKeys) + { + foreach (string value in collection.GetValues(key)) + { + finalQueryParams.Add(key, value); + } + } + string finalUrl; + if (finalQueryParams.Count == 0) + { + finalUrl = baseUrl; + } + else + { + finalUrl = baseUrl + "?" + DictToQueryString(finalQueryParams); + } + + + Dictionary headers = new Dictionary(); + headers.Add("User-Agent", "TapTapUnitySDK/" + TapTapSdk.Version + " " + "UnityPlayer/" + Application.unityVersion); + headers.Add("Authorization", authorization); + WWW w = new WWW(finalUrl, null, headers); + PrintRequest(w, "GET", null, headers); + yield return w; + PrintResponse(w); + if (!string.IsNullOrEmpty(w.error)) + { + string data = w.text; + if (data != null) + { + methodForError(GetResponseCode(w), data); + } + else + { + methodForError(GetResponseCode(w), w.error); + } + + w.Dispose(); + yield break; + } + else + { + string data = w.text; + if (data != null) + { + methodForResult(w.text); + yield break; + } + else + { + methodForError(GetResponseCode(w), "Empyt response from server : " + url); + } + } + } + + // ReSharper disable Unity.PerformanceAnalysis + private IEnumerator Post(string url, Dictionary queryParams, Dictionary formParams, Action methodForResult, Action methodForError) + { + string baseUrl; + Dictionary finalQueryParams = queryParams ?? new Dictionary(); + NameValueCollection collection = new NameValueCollection(); + ParseUrl(url, out baseUrl, out collection); + foreach (string key in collection.AllKeys) + { + foreach (string value in collection.GetValues(key)) + { + finalQueryParams.Add(key, value); + } + } + string finalUrl; + if(finalQueryParams.Count == 0) + { + finalUrl = baseUrl; + } else + { + finalUrl = baseUrl + "?" + DictToQueryString(finalQueryParams); + } + WWWForm wwwForm = new WWWForm(); + Dictionary finalFormParams = formParams ?? new Dictionary(); + foreach (KeyValuePair kv in finalFormParams) + { + // Debug.Log($"kv.key:{kv.Key} value:{kv.Value}"); + wwwForm.AddField(kv.Key, kv.Value); +; } + + + Dictionary headers = new Dictionary(); + headers.Add("User-Agent", "TapTapUnitySDK/1.0 " + "UnityPlayer/" + Application.unityVersion); + WWW w = new WWW(finalUrl, wwwForm.data, headers); + PrintRequest(w, "POST", wwwForm, headers); + yield return w; + PrintResponse(w); + if (!string.IsNullOrEmpty(w.error)) + { + string data = w.text; + if (data != null) + { + methodForError(GetResponseCode(w), data); + } + else + { + methodForError(GetResponseCode(w), w.error); + } + + w.Dispose(); + yield break; + } + else + { + string data = w.text; + if (data != null) + { + methodForResult(w.text); + yield break; + } + else + { + methodForError(GetResponseCode(w), "Empyt response from server : " + url); + } + } + } + public static void PrintRequest(WWW request, string method, WWWForm wwwFrom, Dictionary headers) { + if (TapLogger.LogDelegate == null) { + return; + } + if (request == null) { + return; + } + StringBuilder sb = new StringBuilder(); + sb.AppendLine("=== HTTP Request Start ==="); + sb.AppendLine($"URL: {request.url}"); + sb.AppendLine($"Method: {method}"); + + sb.AppendLine($"Headers: \t"); + if (wwwFrom?.headers != null) + { + foreach (var header in wwwFrom.headers) { + sb.AppendLine($"{header.Key}: {header.Value}"); + } + } + + if (headers != null) + { + foreach (var header in headers) { + sb.AppendLine($"{header.Key}: {header.Value}"); + } + } + sb.AppendLine("=== HTTP Request End ==="); + TapLogger.Debug(sb.ToString()); + } + + private static void PrintResponse(WWW response) { + if (TapLogger.LogDelegate == null) { + return; + } + StringBuilder sb = new StringBuilder(); + sb.AppendLine("=== HTTP Response Start ==="); + sb.AppendLine($"URL: {response.url}"); + sb.AppendLine($"Status Code: {GetResponseCode(response)}"); + sb.AppendLine($"error: {response.error}"); + if (!string.IsNullOrEmpty(response.text)) { + sb.AppendLine($"Content: {response.text}"); + } + sb.AppendLine("=== HTTP Response End ==="); + TapLogger.Debug(sb.ToString()); + } + + public static int GetResponseCode(WWW request) + { + int ret = 0; + if (request.responseHeaders == null) + { + Debug.LogError("no response headers."); + } + else + { + if (!request.responseHeaders.ContainsKey("STATUS")) + { + Debug.LogError("response headers has no STATUS."); + } + else + { + ret = ParseResponseCode(request.responseHeaders["STATUS"]); + } + } + + return ret; + } + + public static int ParseResponseCode(string statusLine) + { + int ret = 0; + + string[] components = statusLine.Split(' '); + if (components.Length < 3) + { + Debug.LogError("invalid response status: " + statusLine); + } + else + { + if (!int.TryParse(components[1], out ret)) + { + Debug.LogError("invalid response code: " + components[1]); + } + } + + return ret; + } + + public static string DictToQueryString(IDictionary dict) + { + List list = new List(); + foreach (var item in dict) + { + list.Add(item.Key + "=" + item.Value); + } + return string.Join("&", list.ToArray()); + } + + public static void ParseUrl(string url, out string baseUrl, out NameValueCollection nvc) + { + if (url == null) + throw new ArgumentNullException("url"); + nvc = new NameValueCollection(); + baseUrl = ""; + if (url == "") + return; + int questionMarkIndex = url.IndexOf('?'); + if (questionMarkIndex == -1) + { + baseUrl = url; + return; + } + baseUrl = url.Substring(0, questionMarkIndex); + if (questionMarkIndex == url.Length - 1) + return; + string ps = url.Substring(questionMarkIndex + 1); + Regex re = new Regex(@"(^|&)?(\w+)=([^&]+)(&|$)?", RegexOptions.None); + MatchCollection mc = re.Matches(ps); + foreach (Match m in mc) + { + nvc.Add(m.Result("$2").ToLower(), m.Result("$3")); + } + } + + } +} \ No newline at end of file diff --git a/Standalone/Runtime/Internal/Net.cs.meta b/Standalone/Runtime/Internal/Net.cs.meta new file mode 100644 index 0000000..0cd5642 --- /dev/null +++ b/Standalone/Runtime/Internal/Net.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: cdf561f46b3c346708bd7de2f21c56da +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Standalone/Runtime/Internal/QRCodeWindow.cs b/Standalone/Runtime/Internal/QRCodeWindow.cs new file mode 100644 index 0000000..2ef644b --- /dev/null +++ b/Standalone/Runtime/Internal/QRCodeWindow.cs @@ -0,0 +1,797 @@ +using System; +using System.Collections; +using System.Collections.Generic; +using System.Diagnostics; +using System.Linq; +using System.Net; +using System.Security.Cryptography; +using System.Text; +using System.Threading.Tasks; +using TapTap.Common; +using UnityEngine; +using UnityEngine.UI; +using ZXing; +using ZXing.Common; +using ZXing.QrCode.Internal; +using Debug = UnityEngine.Debug; +using Random = System.Random; + +namespace TapTap.Login.Internal +{ + internal class QRCodeWindow : UIElement + { + // // \ue90f\ue91c\ue911\ue91a\ue901\ue902\ue903\ue90c 您已取消此次登录 + // private static readonly string TEXT_CANCEL_LOGIN = ""; + // + // // \ue910\ue91f\ue91b\ue914\ue90d 请重新扫码 + // private static readonly string TEXT_PLEASE_RESCRAN = ""; + // + // // \ue914\ue90d\ue900\ue907 扫码成功 + // private static readonly string TEXT_SCAN_SUCCESS = ""; + // + // // \ue910\ue91e\ue917\ue90a\ue915\ue912\ue913 请在手机上确认 + // private static readonly string TEXT_CONFIRM_ON_PHONE = ""; + + public RawImage QRCodeRawImage; + public Text StatusText; + public Text SubStatusText; + public Image RefreshImage; + public Button RefreshButton; + public Button CloseButton; + + public Button WebLoginButton; + + private string clientId; + private string[] permissions; + private bool isLogin; + + private string deviceCode; + private long expireAt = 0; + private long lastCheckAt = 0; + private long interval = 5; + + private Net net; + private HttpListener _httpListener; + + private long lastWebRequestTime = 0; + private string webRequestMode = ""; + + public override Dictionary Extra + { + get => extra; + set + { + extra = value; + if (extra != null) + { + if (extra.ContainsKey("client_id")) + { + clientId = extra["client_id"] as string; + permissions = extra["permissions"] as string[]; + isLogin = (bool)extra["isLogin"]; + } + } + } + } + + private void SetObjectText(string parentName, string objectName, string text) + { + try + { + var targetTransform = transform; + if (!string.IsNullOrEmpty(parentName)) + { + targetTransform = transform.Find(parentName).gameObject.transform; + } + + var targetObject = targetTransform.Find(objectName).gameObject; + var gameText = targetObject.GetComponent(); + gameText.text = text; + } + catch (Exception e) + { + Debug.Log("SetObjectText fail" + parentName + " " + objectName); + Debug.Log("SetObjectText fail\n" + e); + } + } + + void Awake() + { + var qrImageObject = transform.Find("QRImage").gameObject; + QRCodeRawImage = qrImageObject.GetComponent(); + var statusObject = transform.Find("Status").gameObject; + StatusText = statusObject.GetComponent(); + var subStatusObject = transform.Find("SubStatus").gameObject; + SubStatusText = subStatusObject.GetComponent(); + var refreshObject = transform.Find("Refresh").gameObject; + RefreshImage = refreshObject.GetComponent(); + var refreshButtonObject = refreshObject.transform.Find("RefreshButton").gameObject; + RefreshButton = refreshButtonObject.GetComponent