├── .github └── FUNDING.yml ├── LICENSE ├── README.md ├── Unity ├── .gitignore ├── Assets │ ├── BridgeJsCore.meta │ ├── BridgeJsCore │ │ ├── BridgeJsCore.asmdef │ │ ├── BridgeJsCore.asmdef.meta │ │ ├── BridgeJsCore.mm │ │ ├── BridgeJsCore.mm.meta │ │ ├── BridgeJsCoreNoArc.mm │ │ ├── BridgeJsCoreNoArc.mm.meta │ │ ├── Engine.cs │ │ ├── Engine.cs.meta │ │ ├── JsValue.cs │ │ ├── JsValue.cs.meta │ │ ├── LICENSE.txt │ │ ├── LICENSE.txt.meta │ │ ├── README.txt │ │ ├── README.txt.meta │ │ ├── bridgejscore-mac.bundle.meta │ │ ├── bridgejscore-mac.bundle │ │ │ ├── Contents.meta │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ ├── Info.plist.meta │ │ │ │ ├── MacOS.meta │ │ │ │ ├── MacOS │ │ │ │ ├── bridgejscore-mac │ │ │ │ └── bridgejscore-mac.meta │ │ │ │ ├── _CodeSignature.meta │ │ │ │ └── _CodeSignature │ │ │ │ ├── CodeResources │ │ │ │ └── CodeResources.meta │ │ ├── package.json │ │ └── package.json.meta │ ├── Editor.meta │ ├── Editor │ │ ├── PackageExporter.cs │ │ └── PackageExporter.cs.meta │ ├── Scenes.meta │ ├── Scenes │ │ ├── Sample.cs │ │ ├── Sample.cs.meta │ │ ├── SampleScene.unity │ │ └── SampleScene.unity.meta │ ├── Tests.meta │ └── Tests │ │ ├── BridgeJsCoreTest.cs │ │ ├── BridgeJsCoreTest.cs.meta │ │ ├── Tests.asmdef │ │ └── Tests.asmdef.meta ├── Packages │ ├── manifest.json │ └── packages-lock.json └── ProjectSettings │ ├── AudioManager.asset │ ├── ClusterInputManager.asset │ ├── DynamicsManager.asset │ ├── EditorBuildSettings.asset │ ├── EditorSettings.asset │ ├── GraphicsSettings.asset │ ├── InputManager.asset │ ├── NavMeshAreas.asset │ ├── NetworkManager.asset │ ├── Physics2DSettings.asset │ ├── PresetManager.asset │ ├── ProjectSettings.asset │ ├── ProjectVersion.txt │ ├── QualitySettings.asset │ ├── TagManager.asset │ ├── TimeManager.asset │ ├── UnityConnectSettings.asset │ ├── VFXManager.asset │ └── XRSettings.asset └── bridgejscore-mac ├── .gitignore ├── bridgejscore-mac.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ └── bridgejscore-mac.xcscheme └── bridgejscore-mac └── Info.plist /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [kyubuns] 4 | patreon: # Replace with a single Patreon username 5 | open_collective: # Replace with a single Open Collective username 6 | ko_fi: # Replace with a single Ko-fi username 7 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel 8 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry 9 | liberapay: # Replace with a single Liberapay username 10 | issuehunt: # Replace with a single IssueHunt username 11 | otechie: # Replace with a single Otechie username 12 | custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] 13 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 kyubuns 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # BridgeJsCoreUnity 2 | 3 | The fast JavaScript executor for Unity iOS, macOS by using [JavaScriptCore](https://developer.apple.com/documentation/javascriptcore). 4 | 5 | ## Compare 6 | 7 | | | BridgeJsCoreUnity | Native(C#) | [jint(js)](https://github.com/sebastienros/jint) | [xLua](https://github.com/Tencent/xLua) | 8 | | --- | --- | --- | --- | --- | 9 | | Factory * 1000Times | 0.40s | 0.00s | 0.09s | 1.00s | 10 | | [Sum1-10000 * 10000Times](https://github.com/kyubuns/HaxeUnityBenchmark/blob/master/Haxe/src/bench/Main.hx#L10) | 1.56s | 0.00s | 36.50s | 2.30s | 11 | 12 | The same code is generated in C#, JavaScript and Lua using Haxe. 13 | 14 | - [HaxeUnityBenchmark](https://github.com/kyubuns/HaxeUnityBenchmark) 15 | - on iPhone11Pro 16 | 17 | ## Instructions 18 | 19 | - via UnityPackage 20 | - [See Releases](https://github.com/kyubuns/BridgeJsCoreUnity/releases) 21 | - via Unity Package Manager 22 | - `https://github.com/kyubuns/BridgeJsCoreUnity.git?path=Unity/Assets/BridgeJsCore` 23 | - `git@github.com/kyubuns/BridgeJsCoreUnity.git?path=Unity/Assets/BridgeJsCore` 24 | 25 | ## Getting started 26 | 27 | ```csharp 28 | var engine = new Engine(); 29 | engine.EvaluateScript(@" 30 | function fib(num) { 31 | if (num <= 2) return 1; 32 | return fib(num - 1) + fib(num - 2); 33 | }"); 34 | 35 | var (result, error) = engine.EvaluateScript(@"fib(10);"); 36 | Debug.Log(result); // -> 55 37 | ``` 38 | 39 | Supported primitive types, object and array. 40 | 41 | ```csharp 42 | var (result, error) = engine.EvaluateScript(@" 43 | var obj = new Object(); 44 | obj.var1 = ""abc""; 45 | obj.var2 = 123; 46 | obj 47 | "); 48 | 49 | var jsObject = (JsObject) result; 50 | var var1 = jsObject.ForProperty("var1"); 51 | Debug.Log(var1); // -> abc 52 | ``` 53 | 54 | see [Test Code](https://github.com/kyubuns/BridgeJsCoreUnity/blob/master/Unity/Assets/Tests/BridgeJsCoreTest.cs) 55 | 56 | ## Requirements 57 | 58 | - Requires Unity2019.4 or later 59 | 60 | ## License 61 | 62 | MIT License (see [LICENSE](LICENSE)) 63 | 64 | -------------------------------------------------------------------------------- /Unity/.gitignore: -------------------------------------------------------------------------------- 1 | [Ll]ibrary/ 2 | [Tt]emp/ 3 | [Oo]bj/ 4 | [Bb]uild/ 5 | [Bb]uilds/ 6 | [Ll]ogs/ 7 | Assets/AssetStoreTools* 8 | 9 | # Visual Studio cache directory 10 | .vs/ 11 | 12 | # Autogenerated VS/MD/Consulo solution and project files 13 | ExportedObj/ 14 | .consulo/ 15 | *.csproj 16 | *.unityproj 17 | *.sln 18 | *.suo 19 | *.tmp 20 | *.user 21 | *.userprefs 22 | *.pidb 23 | *.booproj 24 | *.svd 25 | *.pdb 26 | *.opendb 27 | 28 | # Unity3D generated meta files 29 | *.pidb.meta 30 | *.pdb.meta 31 | 32 | # Unity3D Generated File On Crash Reports 33 | sysinfo.txt 34 | 35 | # Builds 36 | *.apk 37 | *.unitypackage 38 | 39 | Recordings 40 | .idea 41 | -------------------------------------------------------------------------------- /Unity/Assets/BridgeJsCore.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f5efd3dff04f4497a908b803e2929c50 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Unity/Assets/BridgeJsCore/BridgeJsCore.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "BridgeJsCore", 3 | "references": [], 4 | "includePlatforms": [ 5 | "Editor", 6 | "iOS", 7 | "macOSStandalone", 8 | "tvOS" 9 | ], 10 | "excludePlatforms": [], 11 | "allowUnsafeCode": false, 12 | "overrideReferences": false, 13 | "precompiledReferences": [], 14 | "autoReferenced": true, 15 | "defineConstraints": [], 16 | "versionDefines": [], 17 | "noEngineReferences": false 18 | } -------------------------------------------------------------------------------- /Unity/Assets/BridgeJsCore/BridgeJsCore.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fb1f1958d60dd4370a80f928ed509366 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Unity/Assets/BridgeJsCore/BridgeJsCore.mm: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | NSString* BridgeJsCore_CreateNSString(const char* string) 4 | { 5 | return [NSString stringWithUTF8String: string ? string : ""]; 6 | } 7 | 8 | char* BridgeJsCore_MakeStringCopy(const char* string) 9 | { 10 | if (string == NULL) return NULL; 11 | char* res = (char*) malloc(strlen(string) + 1); 12 | strcpy(res, string); 13 | return res; 14 | } 15 | 16 | struct SerializedJsValue 17 | { 18 | char *Value; 19 | bool Bool; 20 | JSValue *Ptr; 21 | bool IsUndefined; 22 | bool IsNull; 23 | bool IsBoolean; 24 | bool IsNumber; 25 | bool IsString; 26 | bool IsObject; 27 | bool IsArray; 28 | }; 29 | 30 | SerializedJsValue *BridgeJsCore_MakeSerializedJsValue(JSValue *original) 31 | { 32 | SerializedJsValue *serialized = new SerializedJsValue(); 33 | serialized->Value = BridgeJsCore_MakeStringCopy([original.toString UTF8String]); 34 | serialized->Bool = original.toBool; 35 | serialized->Ptr = original; 36 | serialized->IsUndefined = original.isUndefined; 37 | serialized->IsNull = original.isNull; 38 | serialized->IsBoolean = original.isBoolean; 39 | serialized->IsNumber = original.isNumber; 40 | serialized->IsString = original.isString; 41 | serialized->IsObject = original.isObject; 42 | serialized->IsArray = original.isArray; 43 | return serialized; 44 | } 45 | 46 | extern "C" 47 | { 48 | SerializedJsValue *_BridgeJsCore_EvaluateScript(JSContext *context, const char *text, char *&error) 49 | { 50 | __block NSString *exceptionString = @""; 51 | context.exceptionHandler = ^(JSContext *context, JSValue *exception) { 52 | exceptionString = [exception toString]; 53 | }; 54 | 55 | JSValue *original = [context evaluateScript: BridgeJsCore_CreateNSString(text)]; 56 | error = BridgeJsCore_MakeStringCopy([exceptionString UTF8String]); 57 | return BridgeJsCore_MakeSerializedJsValue(original); 58 | } 59 | 60 | void _BridgeJsCore_FreeJsValue(SerializedJsValue *serialized) 61 | { 62 | delete serialized; 63 | } 64 | 65 | bool _BridgeJsCore_JsValue_HasProperty(JSValue *jsValue, const char *property) 66 | { 67 | return [jsValue hasProperty: BridgeJsCore_CreateNSString(property)]; 68 | } 69 | 70 | SerializedJsValue *_BridgeJsCore_JsValue_AtIndex(JSValue *jsValue, int index) 71 | { 72 | JSValue *original = [jsValue valueAtIndex: index]; 73 | return BridgeJsCore_MakeSerializedJsValue(original); 74 | } 75 | 76 | SerializedJsValue *_BridgeJsCore_JsValue_ForProperty(JSValue *jsValue, const char *property) 77 | { 78 | JSValue *original = [jsValue valueForProperty: BridgeJsCore_CreateNSString(property)]; 79 | return BridgeJsCore_MakeSerializedJsValue(original); 80 | } 81 | } 82 | -------------------------------------------------------------------------------- /Unity/Assets/BridgeJsCore/BridgeJsCore.mm.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 46969fa3dc9a04dd587d9ffc8a24b75c 3 | PluginImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | iconMap: {} 7 | executionOrder: {} 8 | defineConstraints: [] 9 | isPreloaded: 0 10 | isOverridable: 0 11 | isExplicitlyReferenced: 0 12 | validateReferences: 1 13 | platformData: 14 | - first: 15 | : Any 16 | second: 17 | enabled: 0 18 | settings: 19 | Exclude Editor: 1 20 | Exclude Linux64: 1 21 | Exclude OSXUniversal: 1 22 | Exclude Win: 1 23 | Exclude Win64: 1 24 | Exclude iOS: 0 25 | - first: 26 | Any: 27 | second: 28 | enabled: 0 29 | settings: {} 30 | - first: 31 | Editor: Editor 32 | second: 33 | enabled: 0 34 | settings: 35 | CPU: AnyCPU 36 | DefaultValueInitialized: true 37 | OS: AnyOS 38 | - first: 39 | Standalone: Linux64 40 | second: 41 | enabled: 0 42 | settings: 43 | CPU: AnyCPU 44 | - first: 45 | Standalone: OSXUniversal 46 | second: 47 | enabled: 0 48 | settings: 49 | CPU: x86_64 50 | - first: 51 | Standalone: Win 52 | second: 53 | enabled: 0 54 | settings: 55 | CPU: x86 56 | - first: 57 | Standalone: Win64 58 | second: 59 | enabled: 0 60 | settings: 61 | CPU: x86_64 62 | - first: 63 | iPhone: iOS 64 | second: 65 | enabled: 1 66 | settings: 67 | AddToEmbeddedBinaries: false 68 | CPU: AnyCPU 69 | CompileFlags: 70 | FrameworkDependencies: JavaScriptCore; 71 | - first: 72 | tvOS: tvOS 73 | second: 74 | enabled: 1 75 | settings: {} 76 | userData: 77 | assetBundleName: 78 | assetBundleVariant: 79 | -------------------------------------------------------------------------------- /Unity/Assets/BridgeJsCore/BridgeJsCoreNoArc.mm: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | extern "C" 4 | { 5 | JSContext *_BridgeJsCore_New() 6 | { 7 | JSContext *context = [[JSContext alloc] init]; 8 | return context; 9 | } 10 | 11 | void _BridgeJsCore_Dispose(JSContext *context) 12 | { 13 | [context release]; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Unity/Assets/BridgeJsCore/BridgeJsCoreNoArc.mm.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a87c3d72bd684ca4a70012234b5896e0 3 | PluginImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | iconMap: {} 7 | executionOrder: {} 8 | defineConstraints: [] 9 | isPreloaded: 0 10 | isOverridable: 0 11 | isExplicitlyReferenced: 0 12 | validateReferences: 1 13 | platformData: 14 | - first: 15 | : Any 16 | second: 17 | enabled: 0 18 | settings: 19 | Exclude Editor: 1 20 | Exclude Linux64: 1 21 | Exclude OSXUniversal: 1 22 | Exclude Win: 1 23 | Exclude Win64: 1 24 | Exclude iOS: 0 25 | - first: 26 | Any: 27 | second: 28 | enabled: 0 29 | settings: {} 30 | - first: 31 | Editor: Editor 32 | second: 33 | enabled: 0 34 | settings: 35 | CPU: AnyCPU 36 | DefaultValueInitialized: true 37 | OS: OSX 38 | - first: 39 | Standalone: Linux64 40 | second: 41 | enabled: 0 42 | settings: 43 | CPU: None 44 | - first: 45 | Standalone: OSXUniversal 46 | second: 47 | enabled: 0 48 | settings: 49 | CPU: None 50 | - first: 51 | Standalone: Win 52 | second: 53 | enabled: 0 54 | settings: 55 | CPU: None 56 | - first: 57 | Standalone: Win64 58 | second: 59 | enabled: 0 60 | settings: 61 | CPU: None 62 | - first: 63 | iPhone: iOS 64 | second: 65 | enabled: 1 66 | settings: 67 | AddToEmbeddedBinaries: false 68 | CPU: AnyCPU 69 | CompileFlags: -fno-objc-arc 70 | FrameworkDependencies: JavaScriptCore; 71 | - first: 72 | tvOS: tvOS 73 | second: 74 | enabled: 1 75 | settings: {} 76 | userData: 77 | assetBundleName: 78 | assetBundleVariant: 79 | -------------------------------------------------------------------------------- /Unity/Assets/BridgeJsCore/Engine.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Runtime.InteropServices; 3 | using UnityEngine.Scripting; 4 | 5 | namespace BridgeJsCore 6 | { 7 | public class Engine : IDisposable 8 | { 9 | [DllImport("__Internal")] 10 | private static extern IntPtr _BridgeJsCore_New(); 11 | 12 | [DllImport("__Internal")] 13 | private static extern void _BridgeJsCore_Dispose(IntPtr context); 14 | 15 | [DllImport("__Internal")] 16 | private static extern IntPtr _BridgeJsCore_EvaluateScript(IntPtr context, string script, out string error); 17 | 18 | [DllImport("__Internal")] 19 | private static extern void _BridgeJsCore_FreeJsValue(IntPtr value); 20 | 21 | [Preserve] 22 | [StructLayout(LayoutKind.Sequential)] 23 | private class RawJsValue 24 | { 25 | public string Value; 26 | [MarshalAs(UnmanagedType.U1)] public bool Bool; 27 | public IntPtr Ptr; 28 | [MarshalAs(UnmanagedType.U1)] public bool IsUndefined; 29 | [MarshalAs(UnmanagedType.U1)] public bool IsNull; 30 | [MarshalAs(UnmanagedType.U1)] public bool IsBoolean; 31 | [MarshalAs(UnmanagedType.U1)] public bool IsNumber; 32 | [MarshalAs(UnmanagedType.U1)] public bool IsString; 33 | [MarshalAs(UnmanagedType.U1)] public bool IsObject; 34 | [MarshalAs(UnmanagedType.U1)] public bool IsArray; 35 | } 36 | 37 | private readonly IntPtr context; 38 | private bool disposed; 39 | 40 | public Engine() 41 | { 42 | context = _BridgeJsCore_New(); 43 | } 44 | 45 | public void Dispose() 46 | { 47 | if (disposed) return; 48 | disposed = true; 49 | _BridgeJsCore_Dispose(context); 50 | } 51 | 52 | public (IJsValue, string Error) EvaluateScript(string script) 53 | { 54 | if (disposed) throw new InvalidOperationException("engine is disposed"); 55 | var rawJsValuePtr = _BridgeJsCore_EvaluateScript(context, script, out var error); 56 | var jsValue = ToJsValue(rawJsValuePtr); 57 | return (jsValue, error); 58 | } 59 | 60 | public static IJsValue ToJsValue(IntPtr rawJsValuePtr) 61 | { 62 | var rawJsValue = (RawJsValue) Marshal.PtrToStructure(rawJsValuePtr, typeof(RawJsValue)); 63 | 64 | IJsValue jsValue; 65 | if (rawJsValue.IsUndefined) jsValue = new JsUndefined(); 66 | else if (rawJsValue.IsNull) jsValue = new JsNull(); 67 | else if (rawJsValue.IsBoolean) jsValue = new JsBoolean(rawJsValue.Bool); 68 | else if (rawJsValue.IsNumber) jsValue = new JsNumber(rawJsValue.Value); 69 | else if (rawJsValue.IsString) jsValue = new JsString(rawJsValue.Value); 70 | else if (rawJsValue.IsArray) jsValue = new JsArray(rawJsValue.Ptr, rawJsValue.Value); 71 | else if (rawJsValue.IsObject) jsValue = new JsObject(rawJsValue.Ptr, rawJsValue.Value); 72 | else jsValue = new JsUnknown(rawJsValue.Value); 73 | 74 | _BridgeJsCore_FreeJsValue(rawJsValuePtr); 75 | 76 | return jsValue; 77 | } 78 | } 79 | } 80 | -------------------------------------------------------------------------------- /Unity/Assets/BridgeJsCore/Engine.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1820fb93b42674250b216fc0f0587d81 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Unity/Assets/BridgeJsCore/JsValue.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Runtime.InteropServices; 3 | 4 | namespace BridgeJsCore 5 | { 6 | public interface IJsValue 7 | { 8 | } 9 | 10 | public class JsUndefined : IJsValue 11 | { 12 | public override string ToString() => "undefined"; 13 | } 14 | 15 | public class JsNull : IJsValue 16 | { 17 | public override string ToString() => "null"; 18 | } 19 | 20 | public class JsBoolean : IJsValue 21 | { 22 | public JsBoolean(bool value) 23 | { 24 | Value = value; 25 | } 26 | 27 | public bool Value { get; } 28 | public override string ToString() => Value.ToString(); 29 | } 30 | 31 | public class JsNumber : IJsValue 32 | { 33 | public JsNumber(string rawValue) 34 | { 35 | this.rawValue = rawValue; 36 | } 37 | 38 | private string rawValue; 39 | public Int32 ToInt32() => Int32.Parse(rawValue); 40 | public UInt32 ToUInt32() => UInt32.Parse(rawValue); 41 | public double ToDouble() => double.Parse(rawValue); 42 | public float ToFloat() => (float) ToDouble(); 43 | public override string ToString() => rawValue; 44 | } 45 | 46 | public class JsString : IJsValue 47 | { 48 | public JsString(string value) 49 | { 50 | Value = value; 51 | } 52 | 53 | public string Value { get; } 54 | public override string ToString() => Value; 55 | } 56 | 57 | public class JsObject : IJsValue 58 | { 59 | [DllImport("__Internal")] 60 | [return: MarshalAs(UnmanagedType.U1)] 61 | private static extern bool _BridgeJsCore_JsValue_HasProperty(IntPtr value, string property); 62 | 63 | [DllImport("__Internal")] 64 | private static extern IntPtr _BridgeJsCore_JsValue_ForProperty(IntPtr value, string property); 65 | 66 | [DllImport("__Internal")] 67 | private static extern IntPtr _BridgeJsCore_JsValue_AtIndex(IntPtr value, int index); 68 | 69 | public JsObject(IntPtr ptr, string rawValue) 70 | { 71 | this.ptr = ptr; 72 | this.rawValue = rawValue; 73 | } 74 | 75 | private readonly IntPtr ptr; 76 | private readonly string rawValue; 77 | public override string ToString() => rawValue; 78 | 79 | public bool HasProperty(string property) => _BridgeJsCore_JsValue_HasProperty(ptr, property); 80 | 81 | public IJsValue ForProperty(string property) 82 | { 83 | var rawJsValuePtr = _BridgeJsCore_JsValue_ForProperty(ptr, property); 84 | var jsValue = Engine.ToJsValue(rawJsValuePtr); 85 | return jsValue; 86 | } 87 | 88 | public IJsValue AtIndex(int index) 89 | { 90 | var rawJsValuePtr = _BridgeJsCore_JsValue_AtIndex(ptr, index); 91 | var jsValue = Engine.ToJsValue(rawJsValuePtr); 92 | return jsValue; 93 | } 94 | } 95 | 96 | public class JsArray : JsObject 97 | { 98 | public JsArray(IntPtr ptr, string rawValue) : base(ptr, rawValue) 99 | { 100 | } 101 | 102 | public int Length => ((JsNumber) ForProperty("length")).ToInt32(); 103 | } 104 | 105 | public class JsUnknown : IJsValue 106 | { 107 | public JsUnknown(string value) 108 | { 109 | Value = value; 110 | } 111 | 112 | public string Value { get; } 113 | public override string ToString() => Value; 114 | } 115 | } 116 | -------------------------------------------------------------------------------- /Unity/Assets/BridgeJsCore/JsValue.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 60443e65cd58435db3cc8bea808e19b4 3 | timeCreated: 1594568880 -------------------------------------------------------------------------------- /Unity/Assets/BridgeJsCore/LICENSE.txt: -------------------------------------------------------------------------------- 1 | BridgeJsCoreUnity 2 | 3 | MIT License 4 | 5 | Copyright (c) 2020 kyubuns 6 | 7 | Permission is hereby granted, free of charge, to any person obtaining a copy 8 | of this software and associated documentation files (the "Software"), to deal 9 | in the Software without restriction, including without limitation the rights 10 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 11 | copies of the Software, and to permit persons to whom the Software is 12 | furnished to do so, subject to the following conditions: 13 | 14 | The above copyright notice and this permission notice shall be included in all 15 | copies or substantial portions of the Software. 16 | 17 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 18 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 19 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 20 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 21 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 22 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 23 | SOFTWARE. 24 | -------------------------------------------------------------------------------- /Unity/Assets/BridgeJsCore/LICENSE.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3d52a1cc06cff486f82c8a3cd66dc0d7 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Unity/Assets/BridgeJsCore/README.txt: -------------------------------------------------------------------------------- 1 | # BridgeJsCoreUnity 2 | 3 | - Version 1.0.0 4 | - Created by kyubuns 5 | - https://github.com/kyubuns/BridgeJsCoreUnity/ 6 | -------------------------------------------------------------------------------- /Unity/Assets/BridgeJsCore/README.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d04849e05605e424ab7e76b9f7d7869f 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Unity/Assets/BridgeJsCore/bridgejscore-mac.bundle.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 049293d0aba1e43d798499ae354cf978 3 | folderAsset: yes 4 | PluginImporter: 5 | externalObjects: {} 6 | serializedVersion: 2 7 | iconMap: {} 8 | executionOrder: {} 9 | defineConstraints: [] 10 | isPreloaded: 1 11 | isOverridable: 0 12 | isExplicitlyReferenced: 0 13 | validateReferences: 1 14 | platformData: 15 | - first: 16 | : Any 17 | second: 18 | enabled: 0 19 | settings: 20 | Exclude Editor: 0 21 | Exclude Linux64: 1 22 | Exclude OSXUniversal: 0 23 | Exclude Win: 1 24 | Exclude Win64: 1 25 | Exclude iOS: 1 26 | - first: 27 | Any: 28 | second: 29 | enabled: 0 30 | settings: {} 31 | - first: 32 | Editor: Editor 33 | second: 34 | enabled: 1 35 | settings: 36 | CPU: AnyCPU 37 | DefaultValueInitialized: true 38 | OS: OSX 39 | - first: 40 | Standalone: Linux64 41 | second: 42 | enabled: 0 43 | settings: 44 | CPU: x86_64 45 | - first: 46 | Standalone: OSXUniversal 47 | second: 48 | enabled: 1 49 | settings: 50 | CPU: x86_64 51 | - first: 52 | Standalone: Win 53 | second: 54 | enabled: 0 55 | settings: 56 | CPU: x86 57 | - first: 58 | Standalone: Win64 59 | second: 60 | enabled: 0 61 | settings: 62 | CPU: x86_64 63 | - first: 64 | iPhone: iOS 65 | second: 66 | enabled: 0 67 | settings: 68 | AddToEmbeddedBinaries: false 69 | CPU: AnyCPU 70 | CompileFlags: 71 | FrameworkDependencies: 72 | userData: 73 | assetBundleName: 74 | assetBundleVariant: 75 | -------------------------------------------------------------------------------- /Unity/Assets/BridgeJsCore/bridgejscore-mac.bundle/Contents.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cbdeb0947e0f348cb952026ccb4397b0 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Unity/Assets/BridgeJsCore/bridgejscore-mac.bundle/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19F101 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | bridgejscore-mac 11 | CFBundleIdentifier 12 | dev.kyubuns.bridgejscore-mac 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | bridgejscore-mac 17 | CFBundlePackageType 18 | BNDL 19 | CFBundleShortVersionString 20 | 1.0 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 1 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 11E608c 31 | DTPlatformVersion 32 | GM 33 | DTSDKBuild 34 | 19E258 35 | DTSDKName 36 | macosx10.15 37 | DTXcode 38 | 1150 39 | DTXcodeBuild 40 | 11E608c 41 | LSMinimumSystemVersion 42 | 10.15 43 | NSHumanReadableCopyright 44 | Copyright © 2020 kyubuns. All rights reserved. 45 | 46 | 47 | -------------------------------------------------------------------------------- /Unity/Assets/BridgeJsCore/bridgejscore-mac.bundle/Contents/Info.plist.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b0fb6d36d04ee4ec388cebf7abf4d127 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Unity/Assets/BridgeJsCore/bridgejscore-mac.bundle/Contents/MacOS.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3a7a76e1e4d74437285bc4f4e5fd3554 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Unity/Assets/BridgeJsCore/bridgejscore-mac.bundle/Contents/MacOS/bridgejscore-mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyubuns/BridgeJsCoreUnity/265774ad178e09165a5453aecde1af4397f9f661/Unity/Assets/BridgeJsCore/bridgejscore-mac.bundle/Contents/MacOS/bridgejscore-mac -------------------------------------------------------------------------------- /Unity/Assets/BridgeJsCore/bridgejscore-mac.bundle/Contents/MacOS/bridgejscore-mac.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1be06c50c90a84be996ccbee367bf757 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Unity/Assets/BridgeJsCore/bridgejscore-mac.bundle/Contents/_CodeSignature.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8c27e9ea8d7d1485199b104bae8000bf 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Unity/Assets/BridgeJsCore/bridgejscore-mac.bundle/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | files 6 | 7 | files2 8 | 9 | rules 10 | 11 | ^Resources/ 12 | 13 | ^Resources/.*\.lproj/ 14 | 15 | optional 16 | 17 | weight 18 | 1000 19 | 20 | ^Resources/.*\.lproj/locversion.plist$ 21 | 22 | omit 23 | 24 | weight 25 | 1100 26 | 27 | ^Resources/Base\.lproj/ 28 | 29 | weight 30 | 1010 31 | 32 | ^version.plist$ 33 | 34 | 35 | rules2 36 | 37 | .*\.dSYM($|/) 38 | 39 | weight 40 | 11 41 | 42 | ^(.*/)?\.DS_Store$ 43 | 44 | omit 45 | 46 | weight 47 | 2000 48 | 49 | ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ 50 | 51 | nested 52 | 53 | weight 54 | 10 55 | 56 | ^.* 57 | 58 | ^Info\.plist$ 59 | 60 | omit 61 | 62 | weight 63 | 20 64 | 65 | ^PkgInfo$ 66 | 67 | omit 68 | 69 | weight 70 | 20 71 | 72 | ^Resources/ 73 | 74 | weight 75 | 20 76 | 77 | ^Resources/.*\.lproj/ 78 | 79 | optional 80 | 81 | weight 82 | 1000 83 | 84 | ^Resources/.*\.lproj/locversion.plist$ 85 | 86 | omit 87 | 88 | weight 89 | 1100 90 | 91 | ^Resources/Base\.lproj/ 92 | 93 | weight 94 | 1010 95 | 96 | ^[^/]+$ 97 | 98 | nested 99 | 100 | weight 101 | 10 102 | 103 | ^embedded\.provisionprofile$ 104 | 105 | weight 106 | 20 107 | 108 | ^version\.plist$ 109 | 110 | weight 111 | 20 112 | 113 | 114 | 115 | 116 | -------------------------------------------------------------------------------- /Unity/Assets/BridgeJsCore/bridgejscore-mac.bundle/Contents/_CodeSignature/CodeResources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d211f413da5414561b7a55065a023227 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Unity/Assets/BridgeJsCore/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "dev.kyubuns.bridgejscore", 3 | "displayName": "BridgeJsCore", 4 | "version": "1.0.0", 5 | "unity": "2019.4", 6 | "description": "Run JavaScript on Unity iOS, macOS", 7 | "documentationUrl": "https://github.com/kyubuns/BridgeJsCoreUnity", 8 | "dependencies": { 9 | }, 10 | "author": { 11 | "name": "kyubuns", 12 | "email": "kyubuns@gmail.com", 13 | "url": "https://kyubuns.dev/" 14 | }, 15 | "type": "library" 16 | } 17 | -------------------------------------------------------------------------------- /Unity/Assets/BridgeJsCore/package.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5d18d69c6ee2f47d38602c143ce53dac 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Unity/Assets/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: db0e946df41e048efa180a56be9c9b09 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Unity/Assets/Editor/PackageExporter.cs: -------------------------------------------------------------------------------- 1 | using System.IO; 2 | using UnityEditor; 3 | using UnityEngine; 4 | 5 | namespace Development 6 | { 7 | public static class PackageExporter 8 | { 9 | [MenuItem("Dev/Export Package")] 10 | public static void Export() 11 | { 12 | var directories = new[] 13 | { 14 | "Assets/BridgeJsCore", 15 | }; 16 | 17 | // ReSharper disable once AssignNullToNotNullAttribute 18 | var outputPath = Path.Combine(Path.GetDirectoryName(Application.dataPath), "BridgeJsCore.unitypackage"); 19 | 20 | AssetDatabase.ExportPackage(directories, outputPath, ExportPackageOptions.Recurse); 21 | 22 | Debug.LogFormat("ExportPackage {0}", outputPath); 23 | } 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /Unity/Assets/Editor/PackageExporter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8e2907c6987bb4bed9cc06916140f39c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Unity/Assets/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 82ccfe718e734418fb1d4b23ff868083 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Unity/Assets/Scenes/Sample.cs: -------------------------------------------------------------------------------- 1 | using System.Diagnostics; 2 | using UnityEngine; 3 | using UnityEngine.UI; 4 | using Debug = UnityEngine.Debug; 5 | 6 | namespace BridgeJsCore.Sample 7 | { 8 | public class Sample : MonoBehaviour 9 | { 10 | [SerializeField] private InputField inputField = default; 11 | [SerializeField] private Button runButton = default; 12 | [SerializeField] private Text resultText = default; 13 | 14 | private Engine engine; 15 | 16 | public void Start() 17 | { 18 | engine = new Engine(); 19 | 20 | inputField.text = @"function fib(n) { 21 | return n <= 1 ? n : fib(n - 1) + fib(n - 2); 22 | } 23 | 24 | fib(10);"; 25 | 26 | resultText.text = ""; 27 | 28 | runButton.onClick.AddListener(() => Run()); 29 | 30 | Log("Initialize Finished."); 31 | } 32 | 33 | private void Run() 34 | { 35 | var inputFieldText = inputField.text; 36 | if (inputFieldText == "dispose") 37 | { 38 | Log("Dispose"); 39 | engine.Dispose(); 40 | engine = new Engine(); 41 | return; 42 | } 43 | 44 | var stopWatch = Stopwatch.StartNew(); 45 | var (value, error) = engine.EvaluateScript(inputFieldText); 46 | if (!string.IsNullOrWhiteSpace(error)) Log($"Error! {error}"); 47 | 48 | if (value is JsArray jsArray) 49 | { 50 | for (var i = 0; i < jsArray.Length; ++i) 51 | { 52 | Debug.Log($"{i} = {jsArray.AtIndex(i)}"); 53 | } 54 | } 55 | 56 | Log($"{stopWatch.ElapsedMilliseconds}ms | {value} ({value.GetType()})"); 57 | } 58 | 59 | private void Log(string message) 60 | { 61 | Debug.Log(message); 62 | resultText.text = $"{message}\n{resultText.text}"; 63 | } 64 | } 65 | } 66 | 67 | -------------------------------------------------------------------------------- /Unity/Assets/Scenes/Sample.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3f6fa97642709455ca20cc822a81707e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Unity/Assets/Scenes/SampleScene.unity: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!29 &1 4 | OcclusionCullingSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_OcclusionBakeSettings: 8 | smallestOccluder: 5 9 | smallestHole: 0.25 10 | backfaceThreshold: 100 11 | m_SceneGUID: 00000000000000000000000000000000 12 | m_OcclusionCullingData: {fileID: 0} 13 | --- !u!104 &2 14 | RenderSettings: 15 | m_ObjectHideFlags: 0 16 | serializedVersion: 9 17 | m_Fog: 0 18 | m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} 19 | m_FogMode: 3 20 | m_FogDensity: 0.01 21 | m_LinearFogStart: 0 22 | m_LinearFogEnd: 300 23 | m_AmbientSkyColor: {r: 0.212, g: 0.227, b: 0.259, a: 1} 24 | m_AmbientEquatorColor: {r: 0.114, g: 0.125, b: 0.133, a: 1} 25 | m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1} 26 | m_AmbientIntensity: 1 27 | m_AmbientMode: 3 28 | m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} 29 | m_SkyboxMaterial: {fileID: 0} 30 | m_HaloStrength: 0.5 31 | m_FlareStrength: 1 32 | m_FlareFadeSpeed: 3 33 | m_HaloTexture: {fileID: 0} 34 | m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0} 35 | m_DefaultReflectionMode: 0 36 | m_DefaultReflectionResolution: 128 37 | m_ReflectionBounces: 1 38 | m_ReflectionIntensity: 1 39 | m_CustomReflection: {fileID: 0} 40 | m_Sun: {fileID: 0} 41 | m_IndirectSpecularColor: {r: 0, g: 0, b: 0, a: 1} 42 | m_UseRadianceAmbientProbe: 0 43 | --- !u!157 &3 44 | LightmapSettings: 45 | m_ObjectHideFlags: 0 46 | serializedVersion: 11 47 | m_GIWorkflowMode: 1 48 | m_GISettings: 49 | serializedVersion: 2 50 | m_BounceScale: 1 51 | m_IndirectOutputScale: 1 52 | m_AlbedoBoost: 1 53 | m_EnvironmentLightingMode: 0 54 | m_EnableBakedLightmaps: 0 55 | m_EnableRealtimeLightmaps: 0 56 | m_LightmapEditorSettings: 57 | serializedVersion: 12 58 | m_Resolution: 2 59 | m_BakeResolution: 40 60 | m_AtlasSize: 1024 61 | m_AO: 0 62 | m_AOMaxDistance: 1 63 | m_CompAOExponent: 1 64 | m_CompAOExponentDirect: 0 65 | m_ExtractAmbientOcclusion: 0 66 | m_Padding: 2 67 | m_LightmapParameters: {fileID: 0} 68 | m_LightmapsBakeMode: 1 69 | m_TextureCompression: 1 70 | m_FinalGather: 0 71 | m_FinalGatherFiltering: 1 72 | m_FinalGatherRayCount: 256 73 | m_ReflectionCompression: 2 74 | m_MixedBakeMode: 2 75 | m_BakeBackend: 0 76 | m_PVRSampling: 1 77 | m_PVRDirectSampleCount: 32 78 | m_PVRSampleCount: 500 79 | m_PVRBounces: 2 80 | m_PVREnvironmentSampleCount: 500 81 | m_PVREnvironmentReferencePointCount: 2048 82 | m_PVRFilteringMode: 2 83 | m_PVRDenoiserTypeDirect: 0 84 | m_PVRDenoiserTypeIndirect: 0 85 | m_PVRDenoiserTypeAO: 0 86 | m_PVRFilterTypeDirect: 0 87 | m_PVRFilterTypeIndirect: 0 88 | m_PVRFilterTypeAO: 0 89 | m_PVREnvironmentMIS: 0 90 | m_PVRCulling: 1 91 | m_PVRFilteringGaussRadiusDirect: 1 92 | m_PVRFilteringGaussRadiusIndirect: 5 93 | m_PVRFilteringGaussRadiusAO: 2 94 | m_PVRFilteringAtrousPositionSigmaDirect: 0.5 95 | m_PVRFilteringAtrousPositionSigmaIndirect: 2 96 | m_PVRFilteringAtrousPositionSigmaAO: 1 97 | m_ExportTrainingData: 0 98 | m_TrainingDataDestination: TrainingData 99 | m_LightProbeSampleCountMultiplier: 4 100 | m_LightingDataAsset: {fileID: 0} 101 | m_UseShadowmask: 1 102 | --- !u!196 &4 103 | NavMeshSettings: 104 | serializedVersion: 2 105 | m_ObjectHideFlags: 0 106 | m_BuildSettings: 107 | serializedVersion: 2 108 | agentTypeID: 0 109 | agentRadius: 0.5 110 | agentHeight: 2 111 | agentSlope: 45 112 | agentClimb: 0.4 113 | ledgeDropHeight: 0 114 | maxJumpAcrossDistance: 0 115 | minRegionArea: 2 116 | manualCellSize: 0 117 | cellSize: 0.16666667 118 | manualTileSize: 0 119 | tileSize: 256 120 | accuratePlacement: 0 121 | debug: 122 | m_Flags: 0 123 | m_NavMeshData: {fileID: 0} 124 | --- !u!1 &83437322 125 | GameObject: 126 | m_ObjectHideFlags: 0 127 | m_CorrespondingSourceObject: {fileID: 0} 128 | m_PrefabInstance: {fileID: 0} 129 | m_PrefabAsset: {fileID: 0} 130 | serializedVersion: 6 131 | m_Component: 132 | - component: {fileID: 83437323} 133 | - component: {fileID: 83437326} 134 | - component: {fileID: 83437325} 135 | - component: {fileID: 83437324} 136 | m_Layer: 5 137 | m_Name: Button 138 | m_TagString: Untagged 139 | m_Icon: {fileID: 0} 140 | m_NavMeshLayer: 0 141 | m_StaticEditorFlags: 0 142 | m_IsActive: 1 143 | --- !u!224 &83437323 144 | RectTransform: 145 | m_ObjectHideFlags: 0 146 | m_CorrespondingSourceObject: {fileID: 0} 147 | m_PrefabInstance: {fileID: 0} 148 | m_PrefabAsset: {fileID: 0} 149 | m_GameObject: {fileID: 83437322} 150 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 151 | m_LocalPosition: {x: 0, y: 0, z: 0} 152 | m_LocalScale: {x: 1, y: 1, z: 1} 153 | m_Children: 154 | - {fileID: 1565183257} 155 | m_Father: {fileID: 963344395} 156 | m_RootOrder: 1 157 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 158 | m_AnchorMin: {x: 0, y: 1} 159 | m_AnchorMax: {x: 1, y: 1} 160 | m_AnchoredPosition: {x: 0, y: -400} 161 | m_SizeDelta: {x: -6, y: 50} 162 | m_Pivot: {x: 0.5, y: 1} 163 | --- !u!114 &83437324 164 | MonoBehaviour: 165 | m_ObjectHideFlags: 0 166 | m_CorrespondingSourceObject: {fileID: 0} 167 | m_PrefabInstance: {fileID: 0} 168 | m_PrefabAsset: {fileID: 0} 169 | m_GameObject: {fileID: 83437322} 170 | m_Enabled: 1 171 | m_EditorHideFlags: 0 172 | m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} 173 | m_Name: 174 | m_EditorClassIdentifier: 175 | m_Navigation: 176 | m_Mode: 3 177 | m_SelectOnUp: {fileID: 0} 178 | m_SelectOnDown: {fileID: 0} 179 | m_SelectOnLeft: {fileID: 0} 180 | m_SelectOnRight: {fileID: 0} 181 | m_Transition: 1 182 | m_Colors: 183 | m_NormalColor: {r: 1, g: 1, b: 1, a: 1} 184 | m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} 185 | m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} 186 | m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} 187 | m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} 188 | m_ColorMultiplier: 1 189 | m_FadeDuration: 0.1 190 | m_SpriteState: 191 | m_HighlightedSprite: {fileID: 0} 192 | m_PressedSprite: {fileID: 0} 193 | m_SelectedSprite: {fileID: 0} 194 | m_DisabledSprite: {fileID: 0} 195 | m_AnimationTriggers: 196 | m_NormalTrigger: Normal 197 | m_HighlightedTrigger: Highlighted 198 | m_PressedTrigger: Pressed 199 | m_SelectedTrigger: Selected 200 | m_DisabledTrigger: Disabled 201 | m_Interactable: 1 202 | m_TargetGraphic: {fileID: 83437325} 203 | m_OnClick: 204 | m_PersistentCalls: 205 | m_Calls: [] 206 | --- !u!114 &83437325 207 | MonoBehaviour: 208 | m_ObjectHideFlags: 0 209 | m_CorrespondingSourceObject: {fileID: 0} 210 | m_PrefabInstance: {fileID: 0} 211 | m_PrefabAsset: {fileID: 0} 212 | m_GameObject: {fileID: 83437322} 213 | m_Enabled: 1 214 | m_EditorHideFlags: 0 215 | m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} 216 | m_Name: 217 | m_EditorClassIdentifier: 218 | m_Material: {fileID: 0} 219 | m_Color: {r: 1, g: 1, b: 1, a: 1} 220 | m_RaycastTarget: 1 221 | m_Maskable: 1 222 | m_OnCullStateChanged: 223 | m_PersistentCalls: 224 | m_Calls: [] 225 | m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} 226 | m_Type: 1 227 | m_PreserveAspect: 0 228 | m_FillCenter: 1 229 | m_FillMethod: 4 230 | m_FillAmount: 1 231 | m_FillClockwise: 1 232 | m_FillOrigin: 0 233 | m_UseSpriteMesh: 0 234 | m_PixelsPerUnitMultiplier: 1 235 | --- !u!222 &83437326 236 | CanvasRenderer: 237 | m_ObjectHideFlags: 0 238 | m_CorrespondingSourceObject: {fileID: 0} 239 | m_PrefabInstance: {fileID: 0} 240 | m_PrefabAsset: {fileID: 0} 241 | m_GameObject: {fileID: 83437322} 242 | m_CullTransparentMesh: 0 243 | --- !u!1 &292121984 244 | GameObject: 245 | m_ObjectHideFlags: 0 246 | m_CorrespondingSourceObject: {fileID: 0} 247 | m_PrefabInstance: {fileID: 0} 248 | m_PrefabAsset: {fileID: 0} 249 | serializedVersion: 6 250 | m_Component: 251 | - component: {fileID: 292121987} 252 | - component: {fileID: 292121986} 253 | - component: {fileID: 292121985} 254 | m_Layer: 0 255 | m_Name: EventSystem 256 | m_TagString: Untagged 257 | m_Icon: {fileID: 0} 258 | m_NavMeshLayer: 0 259 | m_StaticEditorFlags: 0 260 | m_IsActive: 1 261 | --- !u!114 &292121985 262 | MonoBehaviour: 263 | m_ObjectHideFlags: 0 264 | m_CorrespondingSourceObject: {fileID: 0} 265 | m_PrefabInstance: {fileID: 0} 266 | m_PrefabAsset: {fileID: 0} 267 | m_GameObject: {fileID: 292121984} 268 | m_Enabled: 1 269 | m_EditorHideFlags: 0 270 | m_Script: {fileID: 11500000, guid: 4f231c4fb786f3946a6b90b886c48677, type: 3} 271 | m_Name: 272 | m_EditorClassIdentifier: 273 | m_HorizontalAxis: Horizontal 274 | m_VerticalAxis: Vertical 275 | m_SubmitButton: Submit 276 | m_CancelButton: Cancel 277 | m_InputActionsPerSecond: 10 278 | m_RepeatDelay: 0.5 279 | m_ForceModuleActive: 0 280 | --- !u!114 &292121986 281 | MonoBehaviour: 282 | m_ObjectHideFlags: 0 283 | m_CorrespondingSourceObject: {fileID: 0} 284 | m_PrefabInstance: {fileID: 0} 285 | m_PrefabAsset: {fileID: 0} 286 | m_GameObject: {fileID: 292121984} 287 | m_Enabled: 1 288 | m_EditorHideFlags: 0 289 | m_Script: {fileID: 11500000, guid: 76c392e42b5098c458856cdf6ecaaaa1, type: 3} 290 | m_Name: 291 | m_EditorClassIdentifier: 292 | m_FirstSelected: {fileID: 0} 293 | m_sendNavigationEvents: 1 294 | m_DragThreshold: 10 295 | --- !u!4 &292121987 296 | Transform: 297 | m_ObjectHideFlags: 0 298 | m_CorrespondingSourceObject: {fileID: 0} 299 | m_PrefabInstance: {fileID: 0} 300 | m_PrefabAsset: {fileID: 0} 301 | m_GameObject: {fileID: 292121984} 302 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 303 | m_LocalPosition: {x: 0, y: 0, z: 0} 304 | m_LocalScale: {x: 1, y: 1, z: 1} 305 | m_Children: [] 306 | m_Father: {fileID: 0} 307 | m_RootOrder: 3 308 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 309 | --- !u!1 &519420028 310 | GameObject: 311 | m_ObjectHideFlags: 0 312 | m_CorrespondingSourceObject: {fileID: 0} 313 | m_PrefabInstance: {fileID: 0} 314 | m_PrefabAsset: {fileID: 0} 315 | serializedVersion: 6 316 | m_Component: 317 | - component: {fileID: 519420032} 318 | - component: {fileID: 519420031} 319 | - component: {fileID: 519420029} 320 | m_Layer: 0 321 | m_Name: Main Camera 322 | m_TagString: MainCamera 323 | m_Icon: {fileID: 0} 324 | m_NavMeshLayer: 0 325 | m_StaticEditorFlags: 0 326 | m_IsActive: 1 327 | --- !u!81 &519420029 328 | AudioListener: 329 | m_ObjectHideFlags: 0 330 | m_CorrespondingSourceObject: {fileID: 0} 331 | m_PrefabInstance: {fileID: 0} 332 | m_PrefabAsset: {fileID: 0} 333 | m_GameObject: {fileID: 519420028} 334 | m_Enabled: 1 335 | --- !u!20 &519420031 336 | Camera: 337 | m_ObjectHideFlags: 0 338 | m_CorrespondingSourceObject: {fileID: 0} 339 | m_PrefabInstance: {fileID: 0} 340 | m_PrefabAsset: {fileID: 0} 341 | m_GameObject: {fileID: 519420028} 342 | m_Enabled: 1 343 | serializedVersion: 2 344 | m_ClearFlags: 2 345 | m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0} 346 | m_projectionMatrixMode: 1 347 | m_GateFitMode: 2 348 | m_FOVAxisMode: 0 349 | m_SensorSize: {x: 36, y: 24} 350 | m_LensShift: {x: 0, y: 0} 351 | m_FocalLength: 50 352 | m_NormalizedViewPortRect: 353 | serializedVersion: 2 354 | x: 0 355 | y: 0 356 | width: 1 357 | height: 1 358 | near clip plane: 0.3 359 | far clip plane: 1000 360 | field of view: 60 361 | orthographic: 1 362 | orthographic size: 5 363 | m_Depth: -1 364 | m_CullingMask: 365 | serializedVersion: 2 366 | m_Bits: 4294967295 367 | m_RenderingPath: -1 368 | m_TargetTexture: {fileID: 0} 369 | m_TargetDisplay: 0 370 | m_TargetEye: 0 371 | m_HDR: 1 372 | m_AllowMSAA: 0 373 | m_AllowDynamicResolution: 0 374 | m_ForceIntoRT: 0 375 | m_OcclusionCulling: 0 376 | m_StereoConvergence: 10 377 | m_StereoSeparation: 0.022 378 | --- !u!4 &519420032 379 | Transform: 380 | m_ObjectHideFlags: 0 381 | m_CorrespondingSourceObject: {fileID: 0} 382 | m_PrefabInstance: {fileID: 0} 383 | m_PrefabAsset: {fileID: 0} 384 | m_GameObject: {fileID: 519420028} 385 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 386 | m_LocalPosition: {x: 0, y: 0, z: -10} 387 | m_LocalScale: {x: 1, y: 1, z: 1} 388 | m_Children: [] 389 | m_Father: {fileID: 0} 390 | m_RootOrder: 0 391 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 392 | --- !u!1 &963344391 393 | GameObject: 394 | m_ObjectHideFlags: 0 395 | m_CorrespondingSourceObject: {fileID: 0} 396 | m_PrefabInstance: {fileID: 0} 397 | m_PrefabAsset: {fileID: 0} 398 | serializedVersion: 6 399 | m_Component: 400 | - component: {fileID: 963344395} 401 | - component: {fileID: 963344394} 402 | - component: {fileID: 963344393} 403 | - component: {fileID: 963344392} 404 | m_Layer: 5 405 | m_Name: Canvas 406 | m_TagString: Untagged 407 | m_Icon: {fileID: 0} 408 | m_NavMeshLayer: 0 409 | m_StaticEditorFlags: 0 410 | m_IsActive: 1 411 | --- !u!114 &963344392 412 | MonoBehaviour: 413 | m_ObjectHideFlags: 0 414 | m_CorrespondingSourceObject: {fileID: 0} 415 | m_PrefabInstance: {fileID: 0} 416 | m_PrefabAsset: {fileID: 0} 417 | m_GameObject: {fileID: 963344391} 418 | m_Enabled: 1 419 | m_EditorHideFlags: 0 420 | m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3} 421 | m_Name: 422 | m_EditorClassIdentifier: 423 | m_IgnoreReversedGraphics: 1 424 | m_BlockingObjects: 0 425 | m_BlockingMask: 426 | serializedVersion: 2 427 | m_Bits: 4294967295 428 | --- !u!114 &963344393 429 | MonoBehaviour: 430 | m_ObjectHideFlags: 0 431 | m_CorrespondingSourceObject: {fileID: 0} 432 | m_PrefabInstance: {fileID: 0} 433 | m_PrefabAsset: {fileID: 0} 434 | m_GameObject: {fileID: 963344391} 435 | m_Enabled: 1 436 | m_EditorHideFlags: 0 437 | m_Script: {fileID: 11500000, guid: 0cd44c1031e13a943bb63640046fad76, type: 3} 438 | m_Name: 439 | m_EditorClassIdentifier: 440 | m_UiScaleMode: 1 441 | m_ReferencePixelsPerUnit: 100 442 | m_ScaleFactor: 1 443 | m_ReferenceResolution: {x: 800, y: 600} 444 | m_ScreenMatchMode: 0 445 | m_MatchWidthOrHeight: 1 446 | m_PhysicalUnit: 3 447 | m_FallbackScreenDPI: 96 448 | m_DefaultSpriteDPI: 96 449 | m_DynamicPixelsPerUnit: 1 450 | --- !u!223 &963344394 451 | Canvas: 452 | m_ObjectHideFlags: 0 453 | m_CorrespondingSourceObject: {fileID: 0} 454 | m_PrefabInstance: {fileID: 0} 455 | m_PrefabAsset: {fileID: 0} 456 | m_GameObject: {fileID: 963344391} 457 | m_Enabled: 1 458 | serializedVersion: 3 459 | m_RenderMode: 0 460 | m_Camera: {fileID: 0} 461 | m_PlaneDistance: 100 462 | m_PixelPerfect: 0 463 | m_ReceivesEvents: 1 464 | m_OverrideSorting: 0 465 | m_OverridePixelPerfect: 0 466 | m_SortingBucketNormalizedSize: 0 467 | m_AdditionalShaderChannelsFlag: 0 468 | m_SortingLayerID: 0 469 | m_SortingOrder: 0 470 | m_TargetDisplay: 0 471 | --- !u!224 &963344395 472 | RectTransform: 473 | m_ObjectHideFlags: 0 474 | m_CorrespondingSourceObject: {fileID: 0} 475 | m_PrefabInstance: {fileID: 0} 476 | m_PrefabAsset: {fileID: 0} 477 | m_GameObject: {fileID: 963344391} 478 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 479 | m_LocalPosition: {x: 0, y: 0, z: 0} 480 | m_LocalScale: {x: 0, y: 0, z: 0} 481 | m_Children: 482 | - {fileID: 1847727509} 483 | - {fileID: 83437323} 484 | - {fileID: 1751609382} 485 | m_Father: {fileID: 0} 486 | m_RootOrder: 2 487 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 488 | m_AnchorMin: {x: 0, y: 0} 489 | m_AnchorMax: {x: 0, y: 0} 490 | m_AnchoredPosition: {x: 0, y: 0} 491 | m_SizeDelta: {x: 0, y: 0} 492 | m_Pivot: {x: 0, y: 0} 493 | --- !u!1 &1190574824 494 | GameObject: 495 | m_ObjectHideFlags: 0 496 | m_CorrespondingSourceObject: {fileID: 0} 497 | m_PrefabInstance: {fileID: 0} 498 | m_PrefabAsset: {fileID: 0} 499 | serializedVersion: 6 500 | m_Component: 501 | - component: {fileID: 1190574826} 502 | - component: {fileID: 1190574825} 503 | m_Layer: 0 504 | m_Name: Sample 505 | m_TagString: Untagged 506 | m_Icon: {fileID: 0} 507 | m_NavMeshLayer: 0 508 | m_StaticEditorFlags: 0 509 | m_IsActive: 1 510 | --- !u!114 &1190574825 511 | MonoBehaviour: 512 | m_ObjectHideFlags: 0 513 | m_CorrespondingSourceObject: {fileID: 0} 514 | m_PrefabInstance: {fileID: 0} 515 | m_PrefabAsset: {fileID: 0} 516 | m_GameObject: {fileID: 1190574824} 517 | m_Enabled: 1 518 | m_EditorHideFlags: 0 519 | m_Script: {fileID: 11500000, guid: 3f6fa97642709455ca20cc822a81707e, type: 3} 520 | m_Name: 521 | m_EditorClassIdentifier: 522 | inputField: {fileID: 1847727510} 523 | runButton: {fileID: 83437324} 524 | resultText: {fileID: 1751609383} 525 | --- !u!4 &1190574826 526 | Transform: 527 | m_ObjectHideFlags: 0 528 | m_CorrespondingSourceObject: {fileID: 0} 529 | m_PrefabInstance: {fileID: 0} 530 | m_PrefabAsset: {fileID: 0} 531 | m_GameObject: {fileID: 1190574824} 532 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 533 | m_LocalPosition: {x: 0, y: 0, z: 0} 534 | m_LocalScale: {x: 1, y: 1, z: 1} 535 | m_Children: [] 536 | m_Father: {fileID: 0} 537 | m_RootOrder: 1 538 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 539 | --- !u!1 &1400148682 540 | GameObject: 541 | m_ObjectHideFlags: 0 542 | m_CorrespondingSourceObject: {fileID: 0} 543 | m_PrefabInstance: {fileID: 0} 544 | m_PrefabAsset: {fileID: 0} 545 | serializedVersion: 6 546 | m_Component: 547 | - component: {fileID: 1400148683} 548 | - component: {fileID: 1400148685} 549 | - component: {fileID: 1400148684} 550 | m_Layer: 5 551 | m_Name: Placeholder 552 | m_TagString: Untagged 553 | m_Icon: {fileID: 0} 554 | m_NavMeshLayer: 0 555 | m_StaticEditorFlags: 0 556 | m_IsActive: 1 557 | --- !u!224 &1400148683 558 | RectTransform: 559 | m_ObjectHideFlags: 0 560 | m_CorrespondingSourceObject: {fileID: 0} 561 | m_PrefabInstance: {fileID: 0} 562 | m_PrefabAsset: {fileID: 0} 563 | m_GameObject: {fileID: 1400148682} 564 | m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} 565 | m_LocalPosition: {x: 0, y: 0, z: 0} 566 | m_LocalScale: {x: 1, y: 1, z: 1} 567 | m_Children: [] 568 | m_Father: {fileID: 1847727509} 569 | m_RootOrder: 0 570 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 571 | m_AnchorMin: {x: 0, y: 0} 572 | m_AnchorMax: {x: 1, y: 1} 573 | m_AnchoredPosition: {x: 0, y: -0.5} 574 | m_SizeDelta: {x: -20, y: -13} 575 | m_Pivot: {x: 0.5, y: 0.5} 576 | --- !u!114 &1400148684 577 | MonoBehaviour: 578 | m_ObjectHideFlags: 0 579 | m_CorrespondingSourceObject: {fileID: 0} 580 | m_PrefabInstance: {fileID: 0} 581 | m_PrefabAsset: {fileID: 0} 582 | m_GameObject: {fileID: 1400148682} 583 | m_Enabled: 1 584 | m_EditorHideFlags: 0 585 | m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} 586 | m_Name: 587 | m_EditorClassIdentifier: 588 | m_Material: {fileID: 0} 589 | m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 0.5} 590 | m_RaycastTarget: 1 591 | m_Maskable: 1 592 | m_OnCullStateChanged: 593 | m_PersistentCalls: 594 | m_Calls: [] 595 | m_FontData: 596 | m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} 597 | m_FontSize: 14 598 | m_FontStyle: 2 599 | m_BestFit: 0 600 | m_MinSize: 10 601 | m_MaxSize: 40 602 | m_Alignment: 0 603 | m_AlignByGeometry: 0 604 | m_RichText: 1 605 | m_HorizontalOverflow: 0 606 | m_VerticalOverflow: 0 607 | m_LineSpacing: 1 608 | m_Text: Enter text... 609 | --- !u!222 &1400148685 610 | CanvasRenderer: 611 | m_ObjectHideFlags: 0 612 | m_CorrespondingSourceObject: {fileID: 0} 613 | m_PrefabInstance: {fileID: 0} 614 | m_PrefabAsset: {fileID: 0} 615 | m_GameObject: {fileID: 1400148682} 616 | m_CullTransparentMesh: 0 617 | --- !u!1 &1565183256 618 | GameObject: 619 | m_ObjectHideFlags: 0 620 | m_CorrespondingSourceObject: {fileID: 0} 621 | m_PrefabInstance: {fileID: 0} 622 | m_PrefabAsset: {fileID: 0} 623 | serializedVersion: 6 624 | m_Component: 625 | - component: {fileID: 1565183257} 626 | - component: {fileID: 1565183259} 627 | - component: {fileID: 1565183258} 628 | m_Layer: 5 629 | m_Name: Text 630 | m_TagString: Untagged 631 | m_Icon: {fileID: 0} 632 | m_NavMeshLayer: 0 633 | m_StaticEditorFlags: 0 634 | m_IsActive: 1 635 | --- !u!224 &1565183257 636 | RectTransform: 637 | m_ObjectHideFlags: 0 638 | m_CorrespondingSourceObject: {fileID: 0} 639 | m_PrefabInstance: {fileID: 0} 640 | m_PrefabAsset: {fileID: 0} 641 | m_GameObject: {fileID: 1565183256} 642 | m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} 643 | m_LocalPosition: {x: 0, y: 0, z: 0} 644 | m_LocalScale: {x: 1, y: 1, z: 1} 645 | m_Children: [] 646 | m_Father: {fileID: 83437323} 647 | m_RootOrder: 0 648 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 649 | m_AnchorMin: {x: 0, y: 0} 650 | m_AnchorMax: {x: 1, y: 1} 651 | m_AnchoredPosition: {x: 0, y: 0} 652 | m_SizeDelta: {x: 0, y: 0} 653 | m_Pivot: {x: 0.5, y: 0.5} 654 | --- !u!114 &1565183258 655 | MonoBehaviour: 656 | m_ObjectHideFlags: 0 657 | m_CorrespondingSourceObject: {fileID: 0} 658 | m_PrefabInstance: {fileID: 0} 659 | m_PrefabAsset: {fileID: 0} 660 | m_GameObject: {fileID: 1565183256} 661 | m_Enabled: 1 662 | m_EditorHideFlags: 0 663 | m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} 664 | m_Name: 665 | m_EditorClassIdentifier: 666 | m_Material: {fileID: 0} 667 | m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} 668 | m_RaycastTarget: 1 669 | m_Maskable: 1 670 | m_OnCullStateChanged: 671 | m_PersistentCalls: 672 | m_Calls: [] 673 | m_FontData: 674 | m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} 675 | m_FontSize: 14 676 | m_FontStyle: 0 677 | m_BestFit: 0 678 | m_MinSize: 10 679 | m_MaxSize: 40 680 | m_Alignment: 4 681 | m_AlignByGeometry: 0 682 | m_RichText: 1 683 | m_HorizontalOverflow: 0 684 | m_VerticalOverflow: 0 685 | m_LineSpacing: 1 686 | m_Text: Run 687 | --- !u!222 &1565183259 688 | CanvasRenderer: 689 | m_ObjectHideFlags: 0 690 | m_CorrespondingSourceObject: {fileID: 0} 691 | m_PrefabInstance: {fileID: 0} 692 | m_PrefabAsset: {fileID: 0} 693 | m_GameObject: {fileID: 1565183256} 694 | m_CullTransparentMesh: 0 695 | --- !u!1 &1751609381 696 | GameObject: 697 | m_ObjectHideFlags: 0 698 | m_CorrespondingSourceObject: {fileID: 0} 699 | m_PrefabInstance: {fileID: 0} 700 | m_PrefabAsset: {fileID: 0} 701 | serializedVersion: 6 702 | m_Component: 703 | - component: {fileID: 1751609382} 704 | - component: {fileID: 1751609384} 705 | - component: {fileID: 1751609383} 706 | m_Layer: 5 707 | m_Name: Text 708 | m_TagString: Untagged 709 | m_Icon: {fileID: 0} 710 | m_NavMeshLayer: 0 711 | m_StaticEditorFlags: 0 712 | m_IsActive: 1 713 | --- !u!224 &1751609382 714 | RectTransform: 715 | m_ObjectHideFlags: 0 716 | m_CorrespondingSourceObject: {fileID: 0} 717 | m_PrefabInstance: {fileID: 0} 718 | m_PrefabAsset: {fileID: 0} 719 | m_GameObject: {fileID: 1751609381} 720 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 721 | m_LocalPosition: {x: 0, y: 0, z: 0} 722 | m_LocalScale: {x: 1, y: 1, z: 1} 723 | m_Children: [] 724 | m_Father: {fileID: 963344395} 725 | m_RootOrder: 2 726 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 727 | m_AnchorMin: {x: 0, y: 0} 728 | m_AnchorMax: {x: 1, y: 0} 729 | m_AnchoredPosition: {x: 0, y: 0} 730 | m_SizeDelta: {x: -10, y: 140} 731 | m_Pivot: {x: 0.5, y: 0} 732 | --- !u!114 &1751609383 733 | MonoBehaviour: 734 | m_ObjectHideFlags: 0 735 | m_CorrespondingSourceObject: {fileID: 0} 736 | m_PrefabInstance: {fileID: 0} 737 | m_PrefabAsset: {fileID: 0} 738 | m_GameObject: {fileID: 1751609381} 739 | m_Enabled: 1 740 | m_EditorHideFlags: 0 741 | m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} 742 | m_Name: 743 | m_EditorClassIdentifier: 744 | m_Material: {fileID: 0} 745 | m_Color: {r: 1, g: 1, b: 1, a: 1} 746 | m_RaycastTarget: 1 747 | m_Maskable: 1 748 | m_OnCullStateChanged: 749 | m_PersistentCalls: 750 | m_Calls: [] 751 | m_FontData: 752 | m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} 753 | m_FontSize: 14 754 | m_FontStyle: 0 755 | m_BestFit: 0 756 | m_MinSize: 10 757 | m_MaxSize: 40 758 | m_Alignment: 0 759 | m_AlignByGeometry: 0 760 | m_RichText: 1 761 | m_HorizontalOverflow: 0 762 | m_VerticalOverflow: 0 763 | m_LineSpacing: 1 764 | m_Text: New Text 765 | --- !u!222 &1751609384 766 | CanvasRenderer: 767 | m_ObjectHideFlags: 0 768 | m_CorrespondingSourceObject: {fileID: 0} 769 | m_PrefabInstance: {fileID: 0} 770 | m_PrefabAsset: {fileID: 0} 771 | m_GameObject: {fileID: 1751609381} 772 | m_CullTransparentMesh: 0 773 | --- !u!1 &1847727508 774 | GameObject: 775 | m_ObjectHideFlags: 0 776 | m_CorrespondingSourceObject: {fileID: 0} 777 | m_PrefabInstance: {fileID: 0} 778 | m_PrefabAsset: {fileID: 0} 779 | serializedVersion: 6 780 | m_Component: 781 | - component: {fileID: 1847727509} 782 | - component: {fileID: 1847727512} 783 | - component: {fileID: 1847727511} 784 | - component: {fileID: 1847727510} 785 | m_Layer: 5 786 | m_Name: InputField 787 | m_TagString: Untagged 788 | m_Icon: {fileID: 0} 789 | m_NavMeshLayer: 0 790 | m_StaticEditorFlags: 0 791 | m_IsActive: 1 792 | --- !u!224 &1847727509 793 | RectTransform: 794 | m_ObjectHideFlags: 0 795 | m_CorrespondingSourceObject: {fileID: 0} 796 | m_PrefabInstance: {fileID: 0} 797 | m_PrefabAsset: {fileID: 0} 798 | m_GameObject: {fileID: 1847727508} 799 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 800 | m_LocalPosition: {x: 0, y: 0, z: 0} 801 | m_LocalScale: {x: 1, y: 1, z: 1} 802 | m_Children: 803 | - {fileID: 1400148683} 804 | - {fileID: 1925656193} 805 | m_Father: {fileID: 963344395} 806 | m_RootOrder: 0 807 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 808 | m_AnchorMin: {x: 0, y: 1} 809 | m_AnchorMax: {x: 1, y: 1} 810 | m_AnchoredPosition: {x: 0, y: -30} 811 | m_SizeDelta: {x: -6, y: 370} 812 | m_Pivot: {x: 0.5, y: 1} 813 | --- !u!114 &1847727510 814 | MonoBehaviour: 815 | m_ObjectHideFlags: 0 816 | m_CorrespondingSourceObject: {fileID: 0} 817 | m_PrefabInstance: {fileID: 0} 818 | m_PrefabAsset: {fileID: 0} 819 | m_GameObject: {fileID: 1847727508} 820 | m_Enabled: 1 821 | m_EditorHideFlags: 0 822 | m_Script: {fileID: 11500000, guid: d199490a83bb2b844b9695cbf13b01ef, type: 3} 823 | m_Name: 824 | m_EditorClassIdentifier: 825 | m_Navigation: 826 | m_Mode: 3 827 | m_SelectOnUp: {fileID: 0} 828 | m_SelectOnDown: {fileID: 0} 829 | m_SelectOnLeft: {fileID: 0} 830 | m_SelectOnRight: {fileID: 0} 831 | m_Transition: 1 832 | m_Colors: 833 | m_NormalColor: {r: 1, g: 1, b: 1, a: 1} 834 | m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} 835 | m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} 836 | m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} 837 | m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} 838 | m_ColorMultiplier: 1 839 | m_FadeDuration: 0.1 840 | m_SpriteState: 841 | m_HighlightedSprite: {fileID: 0} 842 | m_PressedSprite: {fileID: 0} 843 | m_SelectedSprite: {fileID: 0} 844 | m_DisabledSprite: {fileID: 0} 845 | m_AnimationTriggers: 846 | m_NormalTrigger: Normal 847 | m_HighlightedTrigger: Highlighted 848 | m_PressedTrigger: Pressed 849 | m_SelectedTrigger: Selected 850 | m_DisabledTrigger: Disabled 851 | m_Interactable: 1 852 | m_TargetGraphic: {fileID: 1847727511} 853 | m_TextComponent: {fileID: 1925656194} 854 | m_Placeholder: {fileID: 1400148684} 855 | m_ContentType: 0 856 | m_InputType: 0 857 | m_AsteriskChar: 42 858 | m_KeyboardType: 0 859 | m_LineType: 2 860 | m_HideMobileInput: 0 861 | m_CharacterValidation: 0 862 | m_CharacterLimit: 0 863 | m_OnEndEdit: 864 | m_PersistentCalls: 865 | m_Calls: [] 866 | m_OnValueChanged: 867 | m_PersistentCalls: 868 | m_Calls: [] 869 | m_CaretColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} 870 | m_CustomCaretColor: 0 871 | m_SelectionColor: {r: 0.65882355, g: 0.80784315, b: 1, a: 0.7529412} 872 | m_Text: 873 | m_CaretBlinkRate: 0.85 874 | m_CaretWidth: 1 875 | m_ReadOnly: 0 876 | --- !u!114 &1847727511 877 | MonoBehaviour: 878 | m_ObjectHideFlags: 0 879 | m_CorrespondingSourceObject: {fileID: 0} 880 | m_PrefabInstance: {fileID: 0} 881 | m_PrefabAsset: {fileID: 0} 882 | m_GameObject: {fileID: 1847727508} 883 | m_Enabled: 1 884 | m_EditorHideFlags: 0 885 | m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} 886 | m_Name: 887 | m_EditorClassIdentifier: 888 | m_Material: {fileID: 0} 889 | m_Color: {r: 1, g: 1, b: 1, a: 1} 890 | m_RaycastTarget: 1 891 | m_Maskable: 1 892 | m_OnCullStateChanged: 893 | m_PersistentCalls: 894 | m_Calls: [] 895 | m_Sprite: {fileID: 10911, guid: 0000000000000000f000000000000000, type: 0} 896 | m_Type: 1 897 | m_PreserveAspect: 0 898 | m_FillCenter: 1 899 | m_FillMethod: 4 900 | m_FillAmount: 1 901 | m_FillClockwise: 1 902 | m_FillOrigin: 0 903 | m_UseSpriteMesh: 0 904 | m_PixelsPerUnitMultiplier: 1 905 | --- !u!222 &1847727512 906 | CanvasRenderer: 907 | m_ObjectHideFlags: 0 908 | m_CorrespondingSourceObject: {fileID: 0} 909 | m_PrefabInstance: {fileID: 0} 910 | m_PrefabAsset: {fileID: 0} 911 | m_GameObject: {fileID: 1847727508} 912 | m_CullTransparentMesh: 0 913 | --- !u!1 &1925656192 914 | GameObject: 915 | m_ObjectHideFlags: 0 916 | m_CorrespondingSourceObject: {fileID: 0} 917 | m_PrefabInstance: {fileID: 0} 918 | m_PrefabAsset: {fileID: 0} 919 | serializedVersion: 6 920 | m_Component: 921 | - component: {fileID: 1925656193} 922 | - component: {fileID: 1925656195} 923 | - component: {fileID: 1925656194} 924 | m_Layer: 5 925 | m_Name: Text 926 | m_TagString: Untagged 927 | m_Icon: {fileID: 0} 928 | m_NavMeshLayer: 0 929 | m_StaticEditorFlags: 0 930 | m_IsActive: 1 931 | --- !u!224 &1925656193 932 | RectTransform: 933 | m_ObjectHideFlags: 0 934 | m_CorrespondingSourceObject: {fileID: 0} 935 | m_PrefabInstance: {fileID: 0} 936 | m_PrefabAsset: {fileID: 0} 937 | m_GameObject: {fileID: 1925656192} 938 | m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} 939 | m_LocalPosition: {x: 0, y: 0, z: 0} 940 | m_LocalScale: {x: 1, y: 1, z: 1} 941 | m_Children: [] 942 | m_Father: {fileID: 1847727509} 943 | m_RootOrder: 1 944 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 945 | m_AnchorMin: {x: 0, y: 0} 946 | m_AnchorMax: {x: 1, y: 1} 947 | m_AnchoredPosition: {x: 0, y: -0.5} 948 | m_SizeDelta: {x: -20, y: -13} 949 | m_Pivot: {x: 0.5, y: 0.5} 950 | --- !u!114 &1925656194 951 | MonoBehaviour: 952 | m_ObjectHideFlags: 0 953 | m_CorrespondingSourceObject: {fileID: 0} 954 | m_PrefabInstance: {fileID: 0} 955 | m_PrefabAsset: {fileID: 0} 956 | m_GameObject: {fileID: 1925656192} 957 | m_Enabled: 1 958 | m_EditorHideFlags: 0 959 | m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} 960 | m_Name: 961 | m_EditorClassIdentifier: 962 | m_Material: {fileID: 0} 963 | m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} 964 | m_RaycastTarget: 1 965 | m_Maskable: 1 966 | m_OnCullStateChanged: 967 | m_PersistentCalls: 968 | m_Calls: [] 969 | m_FontData: 970 | m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} 971 | m_FontSize: 14 972 | m_FontStyle: 0 973 | m_BestFit: 0 974 | m_MinSize: 10 975 | m_MaxSize: 40 976 | m_Alignment: 0 977 | m_AlignByGeometry: 0 978 | m_RichText: 0 979 | m_HorizontalOverflow: 0 980 | m_VerticalOverflow: 0 981 | m_LineSpacing: 1 982 | m_Text: 983 | --- !u!222 &1925656195 984 | CanvasRenderer: 985 | m_ObjectHideFlags: 0 986 | m_CorrespondingSourceObject: {fileID: 0} 987 | m_PrefabInstance: {fileID: 0} 988 | m_PrefabAsset: {fileID: 0} 989 | m_GameObject: {fileID: 1925656192} 990 | m_CullTransparentMesh: 0 991 | -------------------------------------------------------------------------------- /Unity/Assets/Scenes/SampleScene.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2cda990e2423bbf4892e6590ba056729 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Unity/Assets/Tests.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d05a3bf72d5eb4b3ea95dc6a7f94f6ef 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Unity/Assets/Tests/BridgeJsCoreTest.cs: -------------------------------------------------------------------------------- 1 | using BridgeJsCore; 2 | using NUnit.Framework; 3 | 4 | namespace BridgeJsCoreTests 5 | { 6 | public class SimpleMethodTest 7 | { 8 | private Engine engine; 9 | 10 | [SetUp] 11 | public void Setup() 12 | { 13 | engine = new Engine(); 14 | var (_, error) = engine.EvaluateScript(@" 15 | function fib(num) { 16 | if (num <= 2) return 1; 17 | return fib(num - 1) + fib(num - 2); 18 | }"); 19 | Assert.IsEmpty(error); 20 | } 21 | 22 | [TearDown] 23 | public void TearDown() 24 | { 25 | engine.Dispose(); 26 | } 27 | 28 | [Test] 29 | public void Calc10() 30 | { 31 | var (result, error) = engine.EvaluateScript(@"fib(10);"); 32 | Assert.IsEmpty(error); 33 | Assert.AreEqual(typeof(JsNumber), result.GetType()); 34 | Assert.AreEqual(55, ((JsNumber) result).ToInt32()); 35 | } 36 | } 37 | 38 | public class StringTest 39 | { 40 | [Test] 41 | public void Japanese() 42 | { 43 | using (var engine = new Engine()) 44 | { 45 | var (result, error) = engine.EvaluateScript(@" 46 | function test() { 47 | return ""あいう"" + ""えお""; 48 | } 49 | 50 | test(); 51 | "); 52 | Assert.IsEmpty(error); 53 | Assert.AreEqual(typeof(JsString), result.GetType()); 54 | Assert.AreEqual("あいうえお", ((JsString) result).ToString()); 55 | } 56 | } 57 | } 58 | 59 | public class ObjectTest 60 | { 61 | [Test] 62 | public void GetProperties() 63 | { 64 | using (var engine = new Engine()) 65 | { 66 | var (result, error) = engine.EvaluateScript(@" 67 | var obj = new Object(); 68 | obj.var1 = ""abc""; 69 | obj.var2 = 123; 70 | obj 71 | "); 72 | Assert.IsEmpty(error); 73 | Assert.AreEqual(typeof(JsObject), result.GetType()); 74 | 75 | var jsObject = (JsObject) result; 76 | 77 | Assert.IsTrue(jsObject.HasProperty("var1")); 78 | var var1 = jsObject.ForProperty("var1"); 79 | Assert.AreEqual(typeof(JsString), var1.GetType()); 80 | Assert.AreEqual("abc", ((JsString) var1).ToString()); 81 | 82 | Assert.IsTrue(jsObject.HasProperty("var2")); 83 | var var2 = jsObject.ForProperty("var2"); 84 | Assert.AreEqual(typeof(JsNumber), var2.GetType()); 85 | Assert.AreEqual(123, ((JsNumber) var2).ToInt32()); 86 | } 87 | } 88 | } 89 | } 90 | -------------------------------------------------------------------------------- /Unity/Assets/Tests/BridgeJsCoreTest.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4e9b2d0eabb5b4659a68a994b3b4e7c5 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Unity/Assets/Tests/Tests.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Tests", 3 | "references": [ 4 | "UnityEngine.TestRunner", 5 | "UnityEditor.TestRunner", 6 | "BridgeJsCore" 7 | ], 8 | "includePlatforms": [ 9 | "Editor", 10 | "iOS", 11 | "macOSStandalone", 12 | "tvOS" 13 | ], 14 | "excludePlatforms": [], 15 | "allowUnsafeCode": false, 16 | "overrideReferences": true, 17 | "precompiledReferences": [ 18 | "nunit.framework.dll" 19 | ], 20 | "autoReferenced": false, 21 | "defineConstraints": [ 22 | "UNITY_INCLUDE_TESTS" 23 | ], 24 | "versionDefines": [], 25 | "noEngineReferences": false 26 | } -------------------------------------------------------------------------------- /Unity/Assets/Tests/Tests.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ece7cdf442ce843b58a97de14581112c 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Unity/Packages/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "com.unity.2d.animation": "3.2.2", 4 | "com.unity.2d.pixel-perfect": "2.0.4", 5 | "com.unity.2d.psdimporter": "2.1.4", 6 | "com.unity.2d.sprite": "1.0.0", 7 | "com.unity.2d.spriteshape": "3.0.11", 8 | "com.unity.2d.tilemap": "1.0.0", 9 | "com.unity.collab-proxy": "1.2.16", 10 | "com.unity.ide.rider": "1.1.4", 11 | "com.unity.ide.vscode": "1.2.1", 12 | "com.unity.test-framework": "1.1.14", 13 | "com.unity.textmeshpro": "2.0.1", 14 | "com.unity.timeline": "1.2.15", 15 | "com.unity.ugui": "1.0.0", 16 | "com.unity.modules.ai": "1.0.0", 17 | "com.unity.modules.androidjni": "1.0.0", 18 | "com.unity.modules.animation": "1.0.0", 19 | "com.unity.modules.assetbundle": "1.0.0", 20 | "com.unity.modules.audio": "1.0.0", 21 | "com.unity.modules.cloth": "1.0.0", 22 | "com.unity.modules.director": "1.0.0", 23 | "com.unity.modules.imageconversion": "1.0.0", 24 | "com.unity.modules.imgui": "1.0.0", 25 | "com.unity.modules.jsonserialize": "1.0.0", 26 | "com.unity.modules.particlesystem": "1.0.0", 27 | "com.unity.modules.physics": "1.0.0", 28 | "com.unity.modules.physics2d": "1.0.0", 29 | "com.unity.modules.screencapture": "1.0.0", 30 | "com.unity.modules.terrain": "1.0.0", 31 | "com.unity.modules.terrainphysics": "1.0.0", 32 | "com.unity.modules.tilemap": "1.0.0", 33 | "com.unity.modules.ui": "1.0.0", 34 | "com.unity.modules.uielements": "1.0.0", 35 | "com.unity.modules.umbra": "1.0.0", 36 | "com.unity.modules.unityanalytics": "1.0.0", 37 | "com.unity.modules.unitywebrequest": "1.0.0", 38 | "com.unity.modules.unitywebrequestassetbundle": "1.0.0", 39 | "com.unity.modules.unitywebrequestaudio": "1.0.0", 40 | "com.unity.modules.unitywebrequesttexture": "1.0.0", 41 | "com.unity.modules.unitywebrequestwww": "1.0.0", 42 | "com.unity.modules.vehicles": "1.0.0", 43 | "com.unity.modules.video": "1.0.0", 44 | "com.unity.modules.vr": "1.0.0", 45 | "com.unity.modules.wind": "1.0.0", 46 | "com.unity.modules.xr": "1.0.0" 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /Unity/Packages/packages-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "com.unity.2d.animation": { 4 | "version": "3.2.2", 5 | "depth": 0, 6 | "source": "registry", 7 | "dependencies": { 8 | "com.unity.2d.common": "2.0.2", 9 | "com.unity.mathematics": "1.1.0", 10 | "com.unity.2d.sprite": "1.0.0" 11 | }, 12 | "url": "https://packages.unity.com" 13 | }, 14 | "com.unity.2d.common": { 15 | "version": "2.0.2", 16 | "depth": 1, 17 | "source": "registry", 18 | "dependencies": { 19 | "com.unity.2d.sprite": "1.0.0" 20 | }, 21 | "url": "https://packages.unity.com" 22 | }, 23 | "com.unity.2d.path": { 24 | "version": "2.0.4", 25 | "depth": 1, 26 | "source": "registry", 27 | "dependencies": {}, 28 | "url": "https://packages.unity.com" 29 | }, 30 | "com.unity.2d.pixel-perfect": { 31 | "version": "2.0.4", 32 | "depth": 0, 33 | "source": "registry", 34 | "dependencies": {}, 35 | "url": "https://packages.unity.com" 36 | }, 37 | "com.unity.2d.psdimporter": { 38 | "version": "2.1.4", 39 | "depth": 0, 40 | "source": "registry", 41 | "dependencies": { 42 | "com.unity.2d.common": "2.0.2", 43 | "com.unity.2d.animation": "3.2.2", 44 | "com.unity.2d.sprite": "1.0.0" 45 | }, 46 | "url": "https://packages.unity.com" 47 | }, 48 | "com.unity.2d.sprite": { 49 | "version": "1.0.0", 50 | "depth": 0, 51 | "source": "builtin", 52 | "dependencies": {} 53 | }, 54 | "com.unity.2d.spriteshape": { 55 | "version": "3.0.11", 56 | "depth": 0, 57 | "source": "registry", 58 | "dependencies": { 59 | "com.unity.mathematics": "1.1.0", 60 | "com.unity.2d.common": "2.0.2", 61 | "com.unity.2d.path": "2.0.4" 62 | }, 63 | "url": "https://packages.unity.com" 64 | }, 65 | "com.unity.2d.tilemap": { 66 | "version": "1.0.0", 67 | "depth": 0, 68 | "source": "builtin", 69 | "dependencies": {} 70 | }, 71 | "com.unity.collab-proxy": { 72 | "version": "1.2.16", 73 | "depth": 0, 74 | "source": "registry", 75 | "dependencies": {}, 76 | "url": "https://packages.unity.com" 77 | }, 78 | "com.unity.ext.nunit": { 79 | "version": "1.0.0", 80 | "depth": 1, 81 | "source": "registry", 82 | "dependencies": {}, 83 | "url": "https://packages.unity.com" 84 | }, 85 | "com.unity.ide.rider": { 86 | "version": "1.1.4", 87 | "depth": 0, 88 | "source": "registry", 89 | "dependencies": { 90 | "com.unity.test-framework": "1.1.1" 91 | }, 92 | "url": "https://packages.unity.com" 93 | }, 94 | "com.unity.ide.vscode": { 95 | "version": "1.2.1", 96 | "depth": 0, 97 | "source": "registry", 98 | "dependencies": {}, 99 | "url": "https://packages.unity.com" 100 | }, 101 | "com.unity.mathematics": { 102 | "version": "1.1.0", 103 | "depth": 1, 104 | "source": "registry", 105 | "dependencies": {}, 106 | "url": "https://packages.unity.com" 107 | }, 108 | "com.unity.test-framework": { 109 | "version": "1.1.14", 110 | "depth": 0, 111 | "source": "registry", 112 | "dependencies": { 113 | "com.unity.ext.nunit": "1.0.0", 114 | "com.unity.modules.imgui": "1.0.0", 115 | "com.unity.modules.jsonserialize": "1.0.0" 116 | }, 117 | "url": "https://packages.unity.com" 118 | }, 119 | "com.unity.textmeshpro": { 120 | "version": "2.0.1", 121 | "depth": 0, 122 | "source": "registry", 123 | "dependencies": { 124 | "com.unity.ugui": "1.0.0" 125 | }, 126 | "url": "https://packages.unity.com" 127 | }, 128 | "com.unity.timeline": { 129 | "version": "1.2.15", 130 | "depth": 0, 131 | "source": "registry", 132 | "dependencies": {}, 133 | "url": "https://packages.unity.com" 134 | }, 135 | "com.unity.ugui": { 136 | "version": "1.0.0", 137 | "depth": 0, 138 | "source": "builtin", 139 | "dependencies": { 140 | "com.unity.modules.ui": "1.0.0" 141 | } 142 | }, 143 | "com.unity.modules.ai": { 144 | "version": "1.0.0", 145 | "depth": 0, 146 | "source": "builtin", 147 | "dependencies": {} 148 | }, 149 | "com.unity.modules.androidjni": { 150 | "version": "1.0.0", 151 | "depth": 0, 152 | "source": "builtin", 153 | "dependencies": {} 154 | }, 155 | "com.unity.modules.animation": { 156 | "version": "1.0.0", 157 | "depth": 0, 158 | "source": "builtin", 159 | "dependencies": {} 160 | }, 161 | "com.unity.modules.assetbundle": { 162 | "version": "1.0.0", 163 | "depth": 0, 164 | "source": "builtin", 165 | "dependencies": {} 166 | }, 167 | "com.unity.modules.audio": { 168 | "version": "1.0.0", 169 | "depth": 0, 170 | "source": "builtin", 171 | "dependencies": {} 172 | }, 173 | "com.unity.modules.cloth": { 174 | "version": "1.0.0", 175 | "depth": 0, 176 | "source": "builtin", 177 | "dependencies": { 178 | "com.unity.modules.physics": "1.0.0" 179 | } 180 | }, 181 | "com.unity.modules.director": { 182 | "version": "1.0.0", 183 | "depth": 0, 184 | "source": "builtin", 185 | "dependencies": { 186 | "com.unity.modules.audio": "1.0.0", 187 | "com.unity.modules.animation": "1.0.0" 188 | } 189 | }, 190 | "com.unity.modules.imageconversion": { 191 | "version": "1.0.0", 192 | "depth": 0, 193 | "source": "builtin", 194 | "dependencies": {} 195 | }, 196 | "com.unity.modules.imgui": { 197 | "version": "1.0.0", 198 | "depth": 0, 199 | "source": "builtin", 200 | "dependencies": {} 201 | }, 202 | "com.unity.modules.jsonserialize": { 203 | "version": "1.0.0", 204 | "depth": 0, 205 | "source": "builtin", 206 | "dependencies": {} 207 | }, 208 | "com.unity.modules.particlesystem": { 209 | "version": "1.0.0", 210 | "depth": 0, 211 | "source": "builtin", 212 | "dependencies": {} 213 | }, 214 | "com.unity.modules.physics": { 215 | "version": "1.0.0", 216 | "depth": 0, 217 | "source": "builtin", 218 | "dependencies": {} 219 | }, 220 | "com.unity.modules.physics2d": { 221 | "version": "1.0.0", 222 | "depth": 0, 223 | "source": "builtin", 224 | "dependencies": {} 225 | }, 226 | "com.unity.modules.screencapture": { 227 | "version": "1.0.0", 228 | "depth": 0, 229 | "source": "builtin", 230 | "dependencies": { 231 | "com.unity.modules.imageconversion": "1.0.0" 232 | } 233 | }, 234 | "com.unity.modules.subsystems": { 235 | "version": "1.0.0", 236 | "depth": 1, 237 | "source": "builtin", 238 | "dependencies": { 239 | "com.unity.modules.jsonserialize": "1.0.0" 240 | } 241 | }, 242 | "com.unity.modules.terrain": { 243 | "version": "1.0.0", 244 | "depth": 0, 245 | "source": "builtin", 246 | "dependencies": {} 247 | }, 248 | "com.unity.modules.terrainphysics": { 249 | "version": "1.0.0", 250 | "depth": 0, 251 | "source": "builtin", 252 | "dependencies": { 253 | "com.unity.modules.physics": "1.0.0", 254 | "com.unity.modules.terrain": "1.0.0" 255 | } 256 | }, 257 | "com.unity.modules.tilemap": { 258 | "version": "1.0.0", 259 | "depth": 0, 260 | "source": "builtin", 261 | "dependencies": { 262 | "com.unity.modules.physics2d": "1.0.0" 263 | } 264 | }, 265 | "com.unity.modules.ui": { 266 | "version": "1.0.0", 267 | "depth": 0, 268 | "source": "builtin", 269 | "dependencies": {} 270 | }, 271 | "com.unity.modules.uielements": { 272 | "version": "1.0.0", 273 | "depth": 0, 274 | "source": "builtin", 275 | "dependencies": { 276 | "com.unity.modules.imgui": "1.0.0", 277 | "com.unity.modules.jsonserialize": "1.0.0" 278 | } 279 | }, 280 | "com.unity.modules.umbra": { 281 | "version": "1.0.0", 282 | "depth": 0, 283 | "source": "builtin", 284 | "dependencies": {} 285 | }, 286 | "com.unity.modules.unityanalytics": { 287 | "version": "1.0.0", 288 | "depth": 0, 289 | "source": "builtin", 290 | "dependencies": { 291 | "com.unity.modules.unitywebrequest": "1.0.0", 292 | "com.unity.modules.jsonserialize": "1.0.0" 293 | } 294 | }, 295 | "com.unity.modules.unitywebrequest": { 296 | "version": "1.0.0", 297 | "depth": 0, 298 | "source": "builtin", 299 | "dependencies": {} 300 | }, 301 | "com.unity.modules.unitywebrequestassetbundle": { 302 | "version": "1.0.0", 303 | "depth": 0, 304 | "source": "builtin", 305 | "dependencies": { 306 | "com.unity.modules.assetbundle": "1.0.0", 307 | "com.unity.modules.unitywebrequest": "1.0.0" 308 | } 309 | }, 310 | "com.unity.modules.unitywebrequestaudio": { 311 | "version": "1.0.0", 312 | "depth": 0, 313 | "source": "builtin", 314 | "dependencies": { 315 | "com.unity.modules.unitywebrequest": "1.0.0", 316 | "com.unity.modules.audio": "1.0.0" 317 | } 318 | }, 319 | "com.unity.modules.unitywebrequesttexture": { 320 | "version": "1.0.0", 321 | "depth": 0, 322 | "source": "builtin", 323 | "dependencies": { 324 | "com.unity.modules.unitywebrequest": "1.0.0", 325 | "com.unity.modules.imageconversion": "1.0.0" 326 | } 327 | }, 328 | "com.unity.modules.unitywebrequestwww": { 329 | "version": "1.0.0", 330 | "depth": 0, 331 | "source": "builtin", 332 | "dependencies": { 333 | "com.unity.modules.unitywebrequest": "1.0.0", 334 | "com.unity.modules.unitywebrequestassetbundle": "1.0.0", 335 | "com.unity.modules.unitywebrequestaudio": "1.0.0", 336 | "com.unity.modules.audio": "1.0.0", 337 | "com.unity.modules.assetbundle": "1.0.0", 338 | "com.unity.modules.imageconversion": "1.0.0" 339 | } 340 | }, 341 | "com.unity.modules.vehicles": { 342 | "version": "1.0.0", 343 | "depth": 0, 344 | "source": "builtin", 345 | "dependencies": { 346 | "com.unity.modules.physics": "1.0.0" 347 | } 348 | }, 349 | "com.unity.modules.video": { 350 | "version": "1.0.0", 351 | "depth": 0, 352 | "source": "builtin", 353 | "dependencies": { 354 | "com.unity.modules.audio": "1.0.0", 355 | "com.unity.modules.ui": "1.0.0", 356 | "com.unity.modules.unitywebrequest": "1.0.0" 357 | } 358 | }, 359 | "com.unity.modules.vr": { 360 | "version": "1.0.0", 361 | "depth": 0, 362 | "source": "builtin", 363 | "dependencies": { 364 | "com.unity.modules.jsonserialize": "1.0.0", 365 | "com.unity.modules.physics": "1.0.0", 366 | "com.unity.modules.xr": "1.0.0" 367 | } 368 | }, 369 | "com.unity.modules.wind": { 370 | "version": "1.0.0", 371 | "depth": 0, 372 | "source": "builtin", 373 | "dependencies": {} 374 | }, 375 | "com.unity.modules.xr": { 376 | "version": "1.0.0", 377 | "depth": 0, 378 | "source": "builtin", 379 | "dependencies": { 380 | "com.unity.modules.physics": "1.0.0", 381 | "com.unity.modules.jsonserialize": "1.0.0", 382 | "com.unity.modules.subsystems": "1.0.0" 383 | } 384 | } 385 | } 386 | } 387 | -------------------------------------------------------------------------------- /Unity/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!11 &1 4 | AudioManager: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_Volume: 1 8 | Rolloff Scale: 1 9 | Doppler Factor: 1 10 | Default Speaker Mode: 2 11 | m_SampleRate: 0 12 | m_DSPBufferSize: 1024 13 | m_VirtualVoiceCount: 512 14 | m_RealVoiceCount: 32 15 | m_SpatializerPlugin: 16 | m_AmbisonicDecoderPlugin: 17 | m_DisableAudio: 0 18 | m_VirtualizeEffects: 1 19 | m_RequestedDSPBufferSize: 1024 20 | -------------------------------------------------------------------------------- /Unity/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!236 &1 4 | ClusterInputManager: 5 | m_ObjectHideFlags: 0 6 | m_Inputs: [] 7 | -------------------------------------------------------------------------------- /Unity/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!55 &1 4 | PhysicsManager: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 11 7 | m_Gravity: {x: 0, y: -9.81, z: 0} 8 | m_DefaultMaterial: {fileID: 0} 9 | m_BounceThreshold: 2 10 | m_SleepThreshold: 0.005 11 | m_DefaultContactOffset: 0.01 12 | m_DefaultSolverIterations: 6 13 | m_DefaultSolverVelocityIterations: 1 14 | m_QueriesHitBackfaces: 0 15 | m_QueriesHitTriggers: 1 16 | m_EnableAdaptiveForce: 0 17 | m_ClothInterCollisionDistance: 0 18 | m_ClothInterCollisionStiffness: 0 19 | m_ContactsGeneration: 1 20 | m_LayerCollisionMatrix: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff 21 | m_AutoSimulation: 1 22 | m_AutoSyncTransforms: 0 23 | m_ReuseCollisionCallbacks: 1 24 | m_ClothInterCollisionSettingsToggle: 0 25 | m_ContactPairsMode: 0 26 | m_BroadphaseType: 0 27 | m_WorldBounds: 28 | m_Center: {x: 0, y: 0, z: 0} 29 | m_Extent: {x: 250, y: 250, z: 250} 30 | m_WorldSubdivisions: 8 31 | m_FrictionType: 0 32 | m_EnableEnhancedDeterminism: 0 33 | m_EnableUnifiedHeightmaps: 1 34 | m_DefaultMaxAngluarSpeed: 7 35 | -------------------------------------------------------------------------------- /Unity/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1045 &1 4 | EditorBuildSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_Scenes: 8 | - enabled: 1 9 | path: Assets/Scenes/SampleScene.unity 10 | guid: 2cda990e2423bbf4892e6590ba056729 11 | m_configObjects: {} 12 | -------------------------------------------------------------------------------- /Unity/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!159 &1 4 | EditorSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 9 7 | m_ExternalVersionControlSupport: Visible Meta Files 8 | m_SerializationMode: 2 9 | m_LineEndingsForNewScripts: 0 10 | m_DefaultBehaviorMode: 1 11 | m_PrefabRegularEnvironment: {fileID: 0} 12 | m_PrefabUIEnvironment: {fileID: 0} 13 | m_SpritePackerMode: 4 14 | m_SpritePackerPaddingPower: 1 15 | m_EtcTextureCompressorBehavior: 1 16 | m_EtcTextureFastCompressor: 1 17 | m_EtcTextureNormalCompressor: 2 18 | m_EtcTextureBestCompressor: 4 19 | m_ProjectGenerationIncludedExtensions: txt;xml;fnt;cd;asmdef;rsp;asmref 20 | m_ProjectGenerationRootNamespace: 21 | m_CollabEditorSettings: 22 | inProgressEnabled: 1 23 | m_EnableTextureStreamingInEditMode: 1 24 | m_EnableTextureStreamingInPlayMode: 1 25 | m_AsyncShaderCompilation: 1 26 | m_EnterPlayModeOptionsEnabled: 0 27 | m_EnterPlayModeOptions: 3 28 | m_ShowLightmapResolutionOverlay: 1 29 | m_UseLegacyProbeSampleCount: 1 30 | m_AssetPipelineMode: 1 31 | m_CacheServerMode: 0 32 | m_CacheServerEndpoint: 33 | m_CacheServerNamespacePrefix: default 34 | m_CacheServerEnableDownload: 1 35 | m_CacheServerEnableUpload: 1 36 | -------------------------------------------------------------------------------- /Unity/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!30 &1 4 | GraphicsSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 13 7 | m_Deferred: 8 | m_Mode: 1 9 | m_Shader: {fileID: 69, guid: 0000000000000000f000000000000000, type: 0} 10 | m_DeferredReflections: 11 | m_Mode: 1 12 | m_Shader: {fileID: 74, guid: 0000000000000000f000000000000000, type: 0} 13 | m_ScreenSpaceShadows: 14 | m_Mode: 1 15 | m_Shader: {fileID: 64, guid: 0000000000000000f000000000000000, type: 0} 16 | m_LegacyDeferred: 17 | m_Mode: 1 18 | m_Shader: {fileID: 63, guid: 0000000000000000f000000000000000, type: 0} 19 | m_DepthNormals: 20 | m_Mode: 1 21 | m_Shader: {fileID: 62, guid: 0000000000000000f000000000000000, type: 0} 22 | m_MotionVectors: 23 | m_Mode: 1 24 | m_Shader: {fileID: 75, guid: 0000000000000000f000000000000000, type: 0} 25 | m_LightHalo: 26 | m_Mode: 1 27 | m_Shader: {fileID: 105, guid: 0000000000000000f000000000000000, type: 0} 28 | m_LensFlare: 29 | m_Mode: 1 30 | m_Shader: {fileID: 102, guid: 0000000000000000f000000000000000, type: 0} 31 | m_AlwaysIncludedShaders: 32 | - {fileID: 10753, guid: 0000000000000000f000000000000000, type: 0} 33 | - {fileID: 10770, guid: 0000000000000000f000000000000000, type: 0} 34 | - {fileID: 16000, guid: 0000000000000000f000000000000000, type: 0} 35 | - {fileID: 16001, guid: 0000000000000000f000000000000000, type: 0} 36 | - {fileID: 17000, guid: 0000000000000000f000000000000000, type: 0} 37 | m_PreloadedShaders: [] 38 | m_SpritesDefaultMaterial: {fileID: 10754, guid: 0000000000000000f000000000000000, 39 | type: 0} 40 | m_CustomRenderPipeline: {fileID: 0} 41 | m_TransparencySortMode: 0 42 | m_TransparencySortAxis: {x: 0, y: 0, z: 1} 43 | m_DefaultRenderingPath: 1 44 | m_DefaultMobileRenderingPath: 1 45 | m_TierSettings: [] 46 | m_LightmapStripping: 0 47 | m_FogStripping: 0 48 | m_InstancingStripping: 0 49 | m_LightmapKeepPlain: 1 50 | m_LightmapKeepDirCombined: 1 51 | m_LightmapKeepDynamicPlain: 1 52 | m_LightmapKeepDynamicDirCombined: 1 53 | m_LightmapKeepShadowMask: 1 54 | m_LightmapKeepSubtractive: 1 55 | m_FogKeepLinear: 1 56 | m_FogKeepExp: 1 57 | m_FogKeepExp2: 1 58 | m_AlbedoSwatchInfos: [] 59 | m_LightsUseLinearIntensity: 0 60 | m_LightsUseColorTemperature: 0 61 | m_LogWhenShaderIsCompiled: 0 62 | m_AllowEnlightenSupportForUpgradedProject: 1 63 | -------------------------------------------------------------------------------- /Unity/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!13 &1 4 | InputManager: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_Axes: 8 | - serializedVersion: 3 9 | m_Name: Horizontal 10 | descriptiveName: 11 | descriptiveNegativeName: 12 | negativeButton: left 13 | positiveButton: right 14 | altNegativeButton: a 15 | altPositiveButton: d 16 | gravity: 3 17 | dead: 0.001 18 | sensitivity: 3 19 | snap: 1 20 | invert: 0 21 | type: 0 22 | axis: 0 23 | joyNum: 0 24 | - serializedVersion: 3 25 | m_Name: Vertical 26 | descriptiveName: 27 | descriptiveNegativeName: 28 | negativeButton: down 29 | positiveButton: up 30 | altNegativeButton: s 31 | altPositiveButton: w 32 | gravity: 3 33 | dead: 0.001 34 | sensitivity: 3 35 | snap: 1 36 | invert: 0 37 | type: 0 38 | axis: 0 39 | joyNum: 0 40 | - serializedVersion: 3 41 | m_Name: Fire1 42 | descriptiveName: 43 | descriptiveNegativeName: 44 | negativeButton: 45 | positiveButton: left ctrl 46 | altNegativeButton: 47 | altPositiveButton: mouse 0 48 | gravity: 1000 49 | dead: 0.001 50 | sensitivity: 1000 51 | snap: 0 52 | invert: 0 53 | type: 0 54 | axis: 0 55 | joyNum: 0 56 | - serializedVersion: 3 57 | m_Name: Fire2 58 | descriptiveName: 59 | descriptiveNegativeName: 60 | negativeButton: 61 | positiveButton: left alt 62 | altNegativeButton: 63 | altPositiveButton: mouse 1 64 | gravity: 1000 65 | dead: 0.001 66 | sensitivity: 1000 67 | snap: 0 68 | invert: 0 69 | type: 0 70 | axis: 0 71 | joyNum: 0 72 | - serializedVersion: 3 73 | m_Name: Fire3 74 | descriptiveName: 75 | descriptiveNegativeName: 76 | negativeButton: 77 | positiveButton: left shift 78 | altNegativeButton: 79 | altPositiveButton: mouse 2 80 | gravity: 1000 81 | dead: 0.001 82 | sensitivity: 1000 83 | snap: 0 84 | invert: 0 85 | type: 0 86 | axis: 0 87 | joyNum: 0 88 | - serializedVersion: 3 89 | m_Name: Jump 90 | descriptiveName: 91 | descriptiveNegativeName: 92 | negativeButton: 93 | positiveButton: space 94 | altNegativeButton: 95 | altPositiveButton: 96 | gravity: 1000 97 | dead: 0.001 98 | sensitivity: 1000 99 | snap: 0 100 | invert: 0 101 | type: 0 102 | axis: 0 103 | joyNum: 0 104 | - serializedVersion: 3 105 | m_Name: Mouse X 106 | descriptiveName: 107 | descriptiveNegativeName: 108 | negativeButton: 109 | positiveButton: 110 | altNegativeButton: 111 | altPositiveButton: 112 | gravity: 0 113 | dead: 0 114 | sensitivity: 0.1 115 | snap: 0 116 | invert: 0 117 | type: 1 118 | axis: 0 119 | joyNum: 0 120 | - serializedVersion: 3 121 | m_Name: Mouse Y 122 | descriptiveName: 123 | descriptiveNegativeName: 124 | negativeButton: 125 | positiveButton: 126 | altNegativeButton: 127 | altPositiveButton: 128 | gravity: 0 129 | dead: 0 130 | sensitivity: 0.1 131 | snap: 0 132 | invert: 0 133 | type: 1 134 | axis: 1 135 | joyNum: 0 136 | - serializedVersion: 3 137 | m_Name: Mouse ScrollWheel 138 | descriptiveName: 139 | descriptiveNegativeName: 140 | negativeButton: 141 | positiveButton: 142 | altNegativeButton: 143 | altPositiveButton: 144 | gravity: 0 145 | dead: 0 146 | sensitivity: 0.1 147 | snap: 0 148 | invert: 0 149 | type: 1 150 | axis: 2 151 | joyNum: 0 152 | - serializedVersion: 3 153 | m_Name: Horizontal 154 | descriptiveName: 155 | descriptiveNegativeName: 156 | negativeButton: 157 | positiveButton: 158 | altNegativeButton: 159 | altPositiveButton: 160 | gravity: 0 161 | dead: 0.19 162 | sensitivity: 1 163 | snap: 0 164 | invert: 0 165 | type: 2 166 | axis: 0 167 | joyNum: 0 168 | - serializedVersion: 3 169 | m_Name: Vertical 170 | descriptiveName: 171 | descriptiveNegativeName: 172 | negativeButton: 173 | positiveButton: 174 | altNegativeButton: 175 | altPositiveButton: 176 | gravity: 0 177 | dead: 0.19 178 | sensitivity: 1 179 | snap: 0 180 | invert: 1 181 | type: 2 182 | axis: 1 183 | joyNum: 0 184 | - serializedVersion: 3 185 | m_Name: Fire1 186 | descriptiveName: 187 | descriptiveNegativeName: 188 | negativeButton: 189 | positiveButton: joystick button 0 190 | altNegativeButton: 191 | altPositiveButton: 192 | gravity: 1000 193 | dead: 0.001 194 | sensitivity: 1000 195 | snap: 0 196 | invert: 0 197 | type: 0 198 | axis: 0 199 | joyNum: 0 200 | - serializedVersion: 3 201 | m_Name: Fire2 202 | descriptiveName: 203 | descriptiveNegativeName: 204 | negativeButton: 205 | positiveButton: joystick button 1 206 | altNegativeButton: 207 | altPositiveButton: 208 | gravity: 1000 209 | dead: 0.001 210 | sensitivity: 1000 211 | snap: 0 212 | invert: 0 213 | type: 0 214 | axis: 0 215 | joyNum: 0 216 | - serializedVersion: 3 217 | m_Name: Fire3 218 | descriptiveName: 219 | descriptiveNegativeName: 220 | negativeButton: 221 | positiveButton: joystick button 2 222 | altNegativeButton: 223 | altPositiveButton: 224 | gravity: 1000 225 | dead: 0.001 226 | sensitivity: 1000 227 | snap: 0 228 | invert: 0 229 | type: 0 230 | axis: 0 231 | joyNum: 0 232 | - serializedVersion: 3 233 | m_Name: Jump 234 | descriptiveName: 235 | descriptiveNegativeName: 236 | negativeButton: 237 | positiveButton: joystick button 3 238 | altNegativeButton: 239 | altPositiveButton: 240 | gravity: 1000 241 | dead: 0.001 242 | sensitivity: 1000 243 | snap: 0 244 | invert: 0 245 | type: 0 246 | axis: 0 247 | joyNum: 0 248 | - serializedVersion: 3 249 | m_Name: Submit 250 | descriptiveName: 251 | descriptiveNegativeName: 252 | negativeButton: 253 | positiveButton: return 254 | altNegativeButton: 255 | altPositiveButton: joystick button 0 256 | gravity: 1000 257 | dead: 0.001 258 | sensitivity: 1000 259 | snap: 0 260 | invert: 0 261 | type: 0 262 | axis: 0 263 | joyNum: 0 264 | - serializedVersion: 3 265 | m_Name: Submit 266 | descriptiveName: 267 | descriptiveNegativeName: 268 | negativeButton: 269 | positiveButton: enter 270 | altNegativeButton: 271 | altPositiveButton: space 272 | gravity: 1000 273 | dead: 0.001 274 | sensitivity: 1000 275 | snap: 0 276 | invert: 0 277 | type: 0 278 | axis: 0 279 | joyNum: 0 280 | - serializedVersion: 3 281 | m_Name: Cancel 282 | descriptiveName: 283 | descriptiveNegativeName: 284 | negativeButton: 285 | positiveButton: escape 286 | altNegativeButton: 287 | altPositiveButton: joystick button 1 288 | gravity: 1000 289 | dead: 0.001 290 | sensitivity: 1000 291 | snap: 0 292 | invert: 0 293 | type: 0 294 | axis: 0 295 | joyNum: 0 296 | -------------------------------------------------------------------------------- /Unity/ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!126 &1 4 | NavMeshProjectSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | areas: 8 | - name: Walkable 9 | cost: 1 10 | - name: Not Walkable 11 | cost: 1 12 | - name: Jump 13 | cost: 2 14 | - name: 15 | cost: 1 16 | - name: 17 | cost: 1 18 | - name: 19 | cost: 1 20 | - name: 21 | cost: 1 22 | - name: 23 | cost: 1 24 | - name: 25 | cost: 1 26 | - name: 27 | cost: 1 28 | - name: 29 | cost: 1 30 | - name: 31 | cost: 1 32 | - name: 33 | cost: 1 34 | - name: 35 | cost: 1 36 | - name: 37 | cost: 1 38 | - name: 39 | cost: 1 40 | - name: 41 | cost: 1 42 | - name: 43 | cost: 1 44 | - name: 45 | cost: 1 46 | - name: 47 | cost: 1 48 | - name: 49 | cost: 1 50 | - name: 51 | cost: 1 52 | - name: 53 | cost: 1 54 | - name: 55 | cost: 1 56 | - name: 57 | cost: 1 58 | - name: 59 | cost: 1 60 | - name: 61 | cost: 1 62 | - name: 63 | cost: 1 64 | - name: 65 | cost: 1 66 | - name: 67 | cost: 1 68 | - name: 69 | cost: 1 70 | - name: 71 | cost: 1 72 | m_LastAgentTypeID: -887442657 73 | m_Settings: 74 | - serializedVersion: 2 75 | agentTypeID: 0 76 | agentRadius: 0.5 77 | agentHeight: 2 78 | agentSlope: 45 79 | agentClimb: 0.75 80 | ledgeDropHeight: 0 81 | maxJumpAcrossDistance: 0 82 | minRegionArea: 2 83 | manualCellSize: 0 84 | cellSize: 0.16666667 85 | manualTileSize: 0 86 | tileSize: 256 87 | accuratePlacement: 0 88 | debug: 89 | m_Flags: 0 90 | m_SettingNames: 91 | - Humanoid 92 | -------------------------------------------------------------------------------- /Unity/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!149 &1 4 | NetworkManager: 5 | m_ObjectHideFlags: 0 6 | m_DebugLevel: 0 7 | m_Sendrate: 15 8 | m_AssetToPrefab: {} 9 | -------------------------------------------------------------------------------- /Unity/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!19 &1 4 | Physics2DSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 4 7 | m_Gravity: {x: 0, y: -9.81} 8 | m_DefaultMaterial: {fileID: 0} 9 | m_VelocityIterations: 8 10 | m_PositionIterations: 3 11 | m_VelocityThreshold: 1 12 | m_MaxLinearCorrection: 0.2 13 | m_MaxAngularCorrection: 8 14 | m_MaxTranslationSpeed: 100 15 | m_MaxRotationSpeed: 360 16 | m_BaumgarteScale: 0.2 17 | m_BaumgarteTimeOfImpactScale: 0.75 18 | m_TimeToSleep: 0.5 19 | m_LinearSleepTolerance: 0.01 20 | m_AngularSleepTolerance: 2 21 | m_DefaultContactOffset: 0.01 22 | m_JobOptions: 23 | serializedVersion: 2 24 | useMultithreading: 0 25 | useConsistencySorting: 0 26 | m_InterpolationPosesPerJob: 100 27 | m_NewContactsPerJob: 30 28 | m_CollideContactsPerJob: 100 29 | m_ClearFlagsPerJob: 200 30 | m_ClearBodyForcesPerJob: 200 31 | m_SyncDiscreteFixturesPerJob: 50 32 | m_SyncContinuousFixturesPerJob: 50 33 | m_FindNearestContactsPerJob: 100 34 | m_UpdateTriggerContactsPerJob: 100 35 | m_IslandSolverCostThreshold: 100 36 | m_IslandSolverBodyCostScale: 1 37 | m_IslandSolverContactCostScale: 10 38 | m_IslandSolverJointCostScale: 10 39 | m_IslandSolverBodiesPerJob: 50 40 | m_IslandSolverContactsPerJob: 50 41 | m_AutoSimulation: 1 42 | m_QueriesHitTriggers: 1 43 | m_QueriesStartInColliders: 1 44 | m_CallbacksOnDisable: 1 45 | m_ReuseCollisionCallbacks: 1 46 | m_AutoSyncTransforms: 0 47 | m_AlwaysShowColliders: 0 48 | m_ShowColliderSleep: 1 49 | m_ShowColliderContacts: 0 50 | m_ShowColliderAABB: 0 51 | m_ContactArrowScale: 0.2 52 | m_ColliderAwakeColor: {r: 0.5686275, g: 0.95686275, b: 0.54509807, a: 0.7529412} 53 | m_ColliderAsleepColor: {r: 0.5686275, g: 0.95686275, b: 0.54509807, a: 0.36078432} 54 | m_ColliderContactColor: {r: 1, g: 0, b: 1, a: 0.6862745} 55 | m_ColliderAABBColor: {r: 1, g: 1, b: 0, a: 0.2509804} 56 | m_LayerCollisionMatrix: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff 57 | -------------------------------------------------------------------------------- /Unity/ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1386491679 &1 4 | PresetManager: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_DefaultPresets: {} 8 | -------------------------------------------------------------------------------- /Unity/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!129 &1 4 | PlayerSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 20 7 | productGUID: a1b82b50ce30f4512a68e4ec75989257 8 | AndroidProfiler: 0 9 | AndroidFilterTouchesWhenObscured: 0 10 | AndroidEnableSustainedPerformanceMode: 0 11 | defaultScreenOrientation: 4 12 | targetDevice: 2 13 | useOnDemandResources: 0 14 | accelerometerFrequency: 60 15 | companyName: kyubuns 16 | productName: BridgeJsCore 17 | defaultCursor: {fileID: 0} 18 | cursorHotspot: {x: 0, y: 0} 19 | m_SplashScreenBackgroundColor: {r: 0.13725491, g: 0.12156863, b: 0.1254902, a: 1} 20 | m_ShowUnitySplashScreen: 1 21 | m_ShowUnitySplashLogo: 1 22 | m_SplashScreenOverlayOpacity: 1 23 | m_SplashScreenAnimation: 1 24 | m_SplashScreenLogoStyle: 1 25 | m_SplashScreenDrawMode: 0 26 | m_SplashScreenBackgroundAnimationZoom: 1 27 | m_SplashScreenLogoAnimationZoom: 1 28 | m_SplashScreenBackgroundLandscapeAspect: 1 29 | m_SplashScreenBackgroundPortraitAspect: 1 30 | m_SplashScreenBackgroundLandscapeUvs: 31 | serializedVersion: 2 32 | x: 0 33 | y: 0 34 | width: 1 35 | height: 1 36 | m_SplashScreenBackgroundPortraitUvs: 37 | serializedVersion: 2 38 | x: 0 39 | y: 0 40 | width: 1 41 | height: 1 42 | m_SplashScreenLogos: [] 43 | m_VirtualRealitySplashScreen: {fileID: 0} 44 | m_HolographicTrackingLossScreen: {fileID: 0} 45 | defaultScreenWidth: 1024 46 | defaultScreenHeight: 768 47 | defaultScreenWidthWeb: 960 48 | defaultScreenHeightWeb: 600 49 | m_StereoRenderingPath: 0 50 | m_ActiveColorSpace: 0 51 | m_MTRendering: 1 52 | m_StackTraceTypes: 010000000100000001000000010000000100000001000000 53 | iosShowActivityIndicatorOnLoading: -1 54 | androidShowActivityIndicatorOnLoading: -1 55 | iosUseCustomAppBackgroundBehavior: 0 56 | iosAllowHTTPDownload: 1 57 | allowedAutorotateToPortrait: 1 58 | allowedAutorotateToPortraitUpsideDown: 1 59 | allowedAutorotateToLandscapeRight: 1 60 | allowedAutorotateToLandscapeLeft: 1 61 | useOSAutorotation: 1 62 | use32BitDisplayBuffer: 1 63 | preserveFramebufferAlpha: 0 64 | disableDepthAndStencilBuffers: 0 65 | androidStartInFullscreen: 1 66 | androidRenderOutsideSafeArea: 1 67 | androidUseSwappy: 0 68 | androidBlitType: 0 69 | defaultIsNativeResolution: 1 70 | macRetinaSupport: 1 71 | runInBackground: 1 72 | captureSingleScreen: 0 73 | muteOtherAudioSources: 0 74 | Prepare IOS For Recording: 0 75 | Force IOS Speakers When Recording: 0 76 | deferSystemGesturesMode: 0 77 | hideHomeButton: 0 78 | submitAnalytics: 1 79 | usePlayerLog: 1 80 | bakeCollisionMeshes: 0 81 | forceSingleInstance: 0 82 | useFlipModelSwapchain: 1 83 | resizableWindow: 0 84 | useMacAppStoreValidation: 0 85 | macAppStoreCategory: public.app-category.games 86 | gpuSkinning: 0 87 | xboxPIXTextureCapture: 0 88 | xboxEnableAvatar: 0 89 | xboxEnableKinect: 0 90 | xboxEnableKinectAutoTracking: 0 91 | xboxEnableFitness: 0 92 | visibleInBackground: 1 93 | allowFullscreenSwitch: 1 94 | fullscreenMode: 1 95 | xboxSpeechDB: 0 96 | xboxEnableHeadOrientation: 0 97 | xboxEnableGuest: 0 98 | xboxEnablePIXSampling: 0 99 | metalFramebufferOnly: 0 100 | xboxOneResolution: 0 101 | xboxOneSResolution: 0 102 | xboxOneXResolution: 3 103 | xboxOneMonoLoggingLevel: 0 104 | xboxOneLoggingLevel: 1 105 | xboxOneDisableEsram: 0 106 | xboxOneEnableTypeOptimization: 0 107 | xboxOnePresentImmediateThreshold: 0 108 | switchQueueCommandMemory: 0 109 | switchQueueControlMemory: 16384 110 | switchQueueComputeMemory: 262144 111 | switchNVNShaderPoolsGranularity: 33554432 112 | switchNVNDefaultPoolsGranularity: 16777216 113 | switchNVNOtherPoolsGranularity: 16777216 114 | stadiaPresentMode: 0 115 | stadiaTargetFramerate: 0 116 | vulkanNumSwapchainBuffers: 3 117 | vulkanEnableSetSRGBWrite: 0 118 | m_SupportedAspectRatios: 119 | 4:3: 1 120 | 5:4: 1 121 | 16:10: 1 122 | 16:9: 1 123 | Others: 1 124 | bundleVersion: 0.0.1 125 | preloadedAssets: [] 126 | metroInputSource: 0 127 | wsaTransparentSwapchain: 0 128 | m_HolographicPauseOnTrackingLoss: 1 129 | xboxOneDisableKinectGpuReservation: 1 130 | xboxOneEnable7thCore: 1 131 | vrSettings: 132 | cardboard: 133 | depthFormat: 0 134 | enableTransitionView: 0 135 | daydream: 136 | depthFormat: 0 137 | useSustainedPerformanceMode: 0 138 | enableVideoLayer: 0 139 | useProtectedVideoMemory: 0 140 | minimumSupportedHeadTracking: 0 141 | maximumSupportedHeadTracking: 1 142 | hololens: 143 | depthFormat: 1 144 | depthBufferSharingEnabled: 1 145 | lumin: 146 | depthFormat: 0 147 | frameTiming: 2 148 | enableGLCache: 0 149 | glCacheMaxBlobSize: 524288 150 | glCacheMaxFileSize: 8388608 151 | oculus: 152 | sharedDepthBuffer: 1 153 | dashSupport: 1 154 | lowOverheadMode: 0 155 | protectedContext: 0 156 | v2Signing: 1 157 | enable360StereoCapture: 0 158 | isWsaHolographicRemotingEnabled: 0 159 | enableFrameTimingStats: 0 160 | useHDRDisplay: 0 161 | D3DHDRBitDepth: 0 162 | m_ColorGamuts: 00000000 163 | targetPixelDensity: 30 164 | resolutionScalingMode: 0 165 | androidSupportedAspectRatio: 1 166 | androidMaxAspectRatio: 2.1 167 | applicationIdentifier: 168 | Standalone: dev.kyubuns.bridgejscore 169 | iPhone: dev.kyubuns.bridgejscore 170 | buildNumber: {} 171 | AndroidBundleVersionCode: 1 172 | AndroidMinSdkVersion: 19 173 | AndroidTargetSdkVersion: 0 174 | AndroidPreferredInstallLocation: 1 175 | aotOptions: 176 | stripEngineCode: 1 177 | iPhoneStrippingLevel: 0 178 | iPhoneScriptCallOptimization: 0 179 | ForceInternetPermission: 0 180 | ForceSDCardPermission: 0 181 | CreateWallpaper: 0 182 | APKExpansionFiles: 0 183 | keepLoadedShadersAlive: 0 184 | StripUnusedMeshComponents: 1 185 | VertexChannelCompressionMask: 4054 186 | iPhoneSdkVersion: 988 187 | iOSTargetOSVersionString: 10.0 188 | tvOSSdkVersion: 0 189 | tvOSRequireExtendedGameController: 0 190 | tvOSTargetOSVersionString: 10.0 191 | uIPrerenderedIcon: 0 192 | uIRequiresPersistentWiFi: 0 193 | uIRequiresFullScreen: 1 194 | uIStatusBarHidden: 1 195 | uIExitOnSuspend: 0 196 | uIStatusBarStyle: 0 197 | appleTVSplashScreen: {fileID: 0} 198 | appleTVSplashScreen2x: {fileID: 0} 199 | tvOSSmallIconLayers: [] 200 | tvOSSmallIconLayers2x: [] 201 | tvOSLargeIconLayers: [] 202 | tvOSLargeIconLayers2x: [] 203 | tvOSTopShelfImageLayers: [] 204 | tvOSTopShelfImageLayers2x: [] 205 | tvOSTopShelfImageWideLayers: [] 206 | tvOSTopShelfImageWideLayers2x: [] 207 | iOSLaunchScreenType: 0 208 | iOSLaunchScreenPortrait: {fileID: 0} 209 | iOSLaunchScreenLandscape: {fileID: 0} 210 | iOSLaunchScreenBackgroundColor: 211 | serializedVersion: 2 212 | rgba: 0 213 | iOSLaunchScreenFillPct: 100 214 | iOSLaunchScreenSize: 100 215 | iOSLaunchScreenCustomXibPath: 216 | iOSLaunchScreeniPadType: 0 217 | iOSLaunchScreeniPadImage: {fileID: 0} 218 | iOSLaunchScreeniPadBackgroundColor: 219 | serializedVersion: 2 220 | rgba: 0 221 | iOSLaunchScreeniPadFillPct: 100 222 | iOSLaunchScreeniPadSize: 100 223 | iOSLaunchScreeniPadCustomXibPath: 224 | iOSUseLaunchScreenStoryboard: 0 225 | iOSLaunchScreenCustomStoryboardPath: 226 | iOSDeviceRequirements: [] 227 | iOSURLSchemes: [] 228 | iOSBackgroundModes: 0 229 | iOSMetalForceHardShadows: 0 230 | metalEditorSupport: 1 231 | metalAPIValidation: 1 232 | iOSRenderExtraFrameOnPause: 0 233 | appleDeveloperTeamID: 234 | iOSManualSigningProvisioningProfileID: 235 | tvOSManualSigningProvisioningProfileID: 236 | iOSManualSigningProvisioningProfileType: 0 237 | tvOSManualSigningProvisioningProfileType: 0 238 | appleEnableAutomaticSigning: 0 239 | iOSRequireARKit: 0 240 | iOSAutomaticallyDetectAndAddCapabilities: 1 241 | appleEnableProMotion: 0 242 | clonedFromGUID: 5f34be1353de5cf4398729fda238591b 243 | templatePackageId: com.unity.template.2d@3.3.0 244 | templateDefaultScene: Assets/Scenes/SampleScene.unity 245 | AndroidTargetArchitectures: 1 246 | AndroidSplashScreenScale: 0 247 | androidSplashScreen: {fileID: 0} 248 | AndroidKeystoreName: 249 | AndroidKeyaliasName: 250 | AndroidBuildApkPerCpuArchitecture: 0 251 | AndroidTVCompatibility: 0 252 | AndroidIsGame: 1 253 | AndroidEnableTango: 0 254 | androidEnableBanner: 1 255 | androidUseLowAccuracyLocation: 0 256 | androidUseCustomKeystore: 0 257 | m_AndroidBanners: 258 | - width: 320 259 | height: 180 260 | banner: {fileID: 0} 261 | androidGamepadSupportLevel: 0 262 | AndroidValidateAppBundleSize: 1 263 | AndroidAppBundleSizeToValidate: 150 264 | m_BuildTargetIcons: [] 265 | m_BuildTargetPlatformIcons: 266 | - m_BuildTarget: iPhone 267 | m_Icons: 268 | - m_Textures: [] 269 | m_Width: 180 270 | m_Height: 180 271 | m_Kind: 0 272 | m_SubKind: iPhone 273 | - m_Textures: [] 274 | m_Width: 120 275 | m_Height: 120 276 | m_Kind: 0 277 | m_SubKind: iPhone 278 | - m_Textures: [] 279 | m_Width: 167 280 | m_Height: 167 281 | m_Kind: 0 282 | m_SubKind: iPad 283 | - m_Textures: [] 284 | m_Width: 152 285 | m_Height: 152 286 | m_Kind: 0 287 | m_SubKind: iPad 288 | - m_Textures: [] 289 | m_Width: 76 290 | m_Height: 76 291 | m_Kind: 0 292 | m_SubKind: iPad 293 | - m_Textures: [] 294 | m_Width: 120 295 | m_Height: 120 296 | m_Kind: 3 297 | m_SubKind: iPhone 298 | - m_Textures: [] 299 | m_Width: 80 300 | m_Height: 80 301 | m_Kind: 3 302 | m_SubKind: iPhone 303 | - m_Textures: [] 304 | m_Width: 80 305 | m_Height: 80 306 | m_Kind: 3 307 | m_SubKind: iPad 308 | - m_Textures: [] 309 | m_Width: 40 310 | m_Height: 40 311 | m_Kind: 3 312 | m_SubKind: iPad 313 | - m_Textures: [] 314 | m_Width: 87 315 | m_Height: 87 316 | m_Kind: 1 317 | m_SubKind: iPhone 318 | - m_Textures: [] 319 | m_Width: 58 320 | m_Height: 58 321 | m_Kind: 1 322 | m_SubKind: iPhone 323 | - m_Textures: [] 324 | m_Width: 29 325 | m_Height: 29 326 | m_Kind: 1 327 | m_SubKind: iPhone 328 | - m_Textures: [] 329 | m_Width: 58 330 | m_Height: 58 331 | m_Kind: 1 332 | m_SubKind: iPad 333 | - m_Textures: [] 334 | m_Width: 29 335 | m_Height: 29 336 | m_Kind: 1 337 | m_SubKind: iPad 338 | - m_Textures: [] 339 | m_Width: 60 340 | m_Height: 60 341 | m_Kind: 2 342 | m_SubKind: iPhone 343 | - m_Textures: [] 344 | m_Width: 40 345 | m_Height: 40 346 | m_Kind: 2 347 | m_SubKind: iPhone 348 | - m_Textures: [] 349 | m_Width: 40 350 | m_Height: 40 351 | m_Kind: 2 352 | m_SubKind: iPad 353 | - m_Textures: [] 354 | m_Width: 20 355 | m_Height: 20 356 | m_Kind: 2 357 | m_SubKind: iPad 358 | - m_Textures: [] 359 | m_Width: 1024 360 | m_Height: 1024 361 | m_Kind: 4 362 | m_SubKind: App Store 363 | m_BuildTargetBatching: [] 364 | m_BuildTargetGraphicsJobs: 365 | - m_BuildTarget: MacStandaloneSupport 366 | m_GraphicsJobs: 0 367 | - m_BuildTarget: Switch 368 | m_GraphicsJobs: 0 369 | - m_BuildTarget: MetroSupport 370 | m_GraphicsJobs: 0 371 | - m_BuildTarget: AppleTVSupport 372 | m_GraphicsJobs: 0 373 | - m_BuildTarget: BJMSupport 374 | m_GraphicsJobs: 0 375 | - m_BuildTarget: LinuxStandaloneSupport 376 | m_GraphicsJobs: 0 377 | - m_BuildTarget: PS4Player 378 | m_GraphicsJobs: 0 379 | - m_BuildTarget: iOSSupport 380 | m_GraphicsJobs: 0 381 | - m_BuildTarget: WindowsStandaloneSupport 382 | m_GraphicsJobs: 0 383 | - m_BuildTarget: XboxOnePlayer 384 | m_GraphicsJobs: 0 385 | - m_BuildTarget: LuminSupport 386 | m_GraphicsJobs: 0 387 | - m_BuildTarget: AndroidPlayer 388 | m_GraphicsJobs: 0 389 | - m_BuildTarget: WebGLSupport 390 | m_GraphicsJobs: 0 391 | m_BuildTargetGraphicsJobMode: 392 | - m_BuildTarget: PS4Player 393 | m_GraphicsJobMode: 0 394 | - m_BuildTarget: XboxOnePlayer 395 | m_GraphicsJobMode: 0 396 | m_BuildTargetGraphicsAPIs: 397 | - m_BuildTarget: AndroidPlayer 398 | m_APIs: 150000000b000000 399 | m_Automatic: 0 400 | m_BuildTargetVRSettings: [] 401 | openGLRequireES31: 0 402 | openGLRequireES31AEP: 0 403 | openGLRequireES32: 0 404 | m_TemplateCustomTags: {} 405 | mobileMTRendering: 406 | Android: 1 407 | iPhone: 1 408 | tvOS: 1 409 | m_BuildTargetGroupLightmapEncodingQuality: [] 410 | m_BuildTargetGroupLightmapSettings: [] 411 | playModeTestRunnerEnabled: 0 412 | runPlayModeTestAsEditModeTest: 0 413 | actionOnDotNetUnhandledException: 1 414 | enableInternalProfiler: 0 415 | logObjCUncaughtExceptions: 1 416 | enableCrashReportAPI: 0 417 | cameraUsageDescription: 418 | locationUsageDescription: 419 | microphoneUsageDescription: 420 | switchNetLibKey: 421 | switchSocketMemoryPoolSize: 6144 422 | switchSocketAllocatorPoolSize: 128 423 | switchSocketConcurrencyLimit: 14 424 | switchScreenResolutionBehavior: 2 425 | switchUseCPUProfiler: 0 426 | switchApplicationID: 0x01004b9000490000 427 | switchNSODependencies: 428 | switchTitleNames_0: 429 | switchTitleNames_1: 430 | switchTitleNames_2: 431 | switchTitleNames_3: 432 | switchTitleNames_4: 433 | switchTitleNames_5: 434 | switchTitleNames_6: 435 | switchTitleNames_7: 436 | switchTitleNames_8: 437 | switchTitleNames_9: 438 | switchTitleNames_10: 439 | switchTitleNames_11: 440 | switchTitleNames_12: 441 | switchTitleNames_13: 442 | switchTitleNames_14: 443 | switchPublisherNames_0: 444 | switchPublisherNames_1: 445 | switchPublisherNames_2: 446 | switchPublisherNames_3: 447 | switchPublisherNames_4: 448 | switchPublisherNames_5: 449 | switchPublisherNames_6: 450 | switchPublisherNames_7: 451 | switchPublisherNames_8: 452 | switchPublisherNames_9: 453 | switchPublisherNames_10: 454 | switchPublisherNames_11: 455 | switchPublisherNames_12: 456 | switchPublisherNames_13: 457 | switchPublisherNames_14: 458 | switchIcons_0: {fileID: 0} 459 | switchIcons_1: {fileID: 0} 460 | switchIcons_2: {fileID: 0} 461 | switchIcons_3: {fileID: 0} 462 | switchIcons_4: {fileID: 0} 463 | switchIcons_5: {fileID: 0} 464 | switchIcons_6: {fileID: 0} 465 | switchIcons_7: {fileID: 0} 466 | switchIcons_8: {fileID: 0} 467 | switchIcons_9: {fileID: 0} 468 | switchIcons_10: {fileID: 0} 469 | switchIcons_11: {fileID: 0} 470 | switchIcons_12: {fileID: 0} 471 | switchIcons_13: {fileID: 0} 472 | switchIcons_14: {fileID: 0} 473 | switchSmallIcons_0: {fileID: 0} 474 | switchSmallIcons_1: {fileID: 0} 475 | switchSmallIcons_2: {fileID: 0} 476 | switchSmallIcons_3: {fileID: 0} 477 | switchSmallIcons_4: {fileID: 0} 478 | switchSmallIcons_5: {fileID: 0} 479 | switchSmallIcons_6: {fileID: 0} 480 | switchSmallIcons_7: {fileID: 0} 481 | switchSmallIcons_8: {fileID: 0} 482 | switchSmallIcons_9: {fileID: 0} 483 | switchSmallIcons_10: {fileID: 0} 484 | switchSmallIcons_11: {fileID: 0} 485 | switchSmallIcons_12: {fileID: 0} 486 | switchSmallIcons_13: {fileID: 0} 487 | switchSmallIcons_14: {fileID: 0} 488 | switchManualHTML: 489 | switchAccessibleURLs: 490 | switchLegalInformation: 491 | switchMainThreadStackSize: 1048576 492 | switchPresenceGroupId: 493 | switchLogoHandling: 0 494 | switchReleaseVersion: 0 495 | switchDisplayVersion: 1.0.0 496 | switchStartupUserAccount: 0 497 | switchTouchScreenUsage: 0 498 | switchSupportedLanguagesMask: 0 499 | switchLogoType: 0 500 | switchApplicationErrorCodeCategory: 501 | switchUserAccountSaveDataSize: 0 502 | switchUserAccountSaveDataJournalSize: 0 503 | switchApplicationAttribute: 0 504 | switchCardSpecSize: -1 505 | switchCardSpecClock: -1 506 | switchRatingsMask: 0 507 | switchRatingsInt_0: 0 508 | switchRatingsInt_1: 0 509 | switchRatingsInt_2: 0 510 | switchRatingsInt_3: 0 511 | switchRatingsInt_4: 0 512 | switchRatingsInt_5: 0 513 | switchRatingsInt_6: 0 514 | switchRatingsInt_7: 0 515 | switchRatingsInt_8: 0 516 | switchRatingsInt_9: 0 517 | switchRatingsInt_10: 0 518 | switchRatingsInt_11: 0 519 | switchRatingsInt_12: 0 520 | switchLocalCommunicationIds_0: 521 | switchLocalCommunicationIds_1: 522 | switchLocalCommunicationIds_2: 523 | switchLocalCommunicationIds_3: 524 | switchLocalCommunicationIds_4: 525 | switchLocalCommunicationIds_5: 526 | switchLocalCommunicationIds_6: 527 | switchLocalCommunicationIds_7: 528 | switchParentalControl: 0 529 | switchAllowsScreenshot: 1 530 | switchAllowsVideoCapturing: 1 531 | switchAllowsRuntimeAddOnContentInstall: 0 532 | switchDataLossConfirmation: 0 533 | switchUserAccountLockEnabled: 0 534 | switchSystemResourceMemory: 16777216 535 | switchSupportedNpadStyles: 22 536 | switchNativeFsCacheSize: 32 537 | switchIsHoldTypeHorizontal: 0 538 | switchSupportedNpadCount: 8 539 | switchSocketConfigEnabled: 0 540 | switchTcpInitialSendBufferSize: 32 541 | switchTcpInitialReceiveBufferSize: 64 542 | switchTcpAutoSendBufferSizeMax: 256 543 | switchTcpAutoReceiveBufferSizeMax: 256 544 | switchUdpSendBufferSize: 9 545 | switchUdpReceiveBufferSize: 42 546 | switchSocketBufferEfficiency: 4 547 | switchSocketInitializeEnabled: 1 548 | switchNetworkInterfaceManagerInitializeEnabled: 1 549 | switchPlayerConnectionEnabled: 1 550 | ps4NPAgeRating: 12 551 | ps4NPTitleSecret: 552 | ps4NPTrophyPackPath: 553 | ps4ParentalLevel: 11 554 | ps4ContentID: ED1633-NPXX51362_00-0000000000000000 555 | ps4Category: 0 556 | ps4MasterVersion: 01.00 557 | ps4AppVersion: 01.00 558 | ps4AppType: 0 559 | ps4ParamSfxPath: 560 | ps4VideoOutPixelFormat: 0 561 | ps4VideoOutInitialWidth: 1920 562 | ps4VideoOutBaseModeInitialWidth: 1920 563 | ps4VideoOutReprojectionRate: 60 564 | ps4PronunciationXMLPath: 565 | ps4PronunciationSIGPath: 566 | ps4BackgroundImagePath: 567 | ps4StartupImagePath: 568 | ps4StartupImagesFolder: 569 | ps4IconImagesFolder: 570 | ps4SaveDataImagePath: 571 | ps4SdkOverride: 572 | ps4BGMPath: 573 | ps4ShareFilePath: 574 | ps4ShareOverlayImagePath: 575 | ps4PrivacyGuardImagePath: 576 | ps4NPtitleDatPath: 577 | ps4RemotePlayKeyAssignment: -1 578 | ps4RemotePlayKeyMappingDir: 579 | ps4PlayTogetherPlayerCount: 0 580 | ps4EnterButtonAssignment: 1 581 | ps4ApplicationParam1: 0 582 | ps4ApplicationParam2: 0 583 | ps4ApplicationParam3: 0 584 | ps4ApplicationParam4: 0 585 | ps4DownloadDataSize: 0 586 | ps4GarlicHeapSize: 2048 587 | ps4ProGarlicHeapSize: 2560 588 | playerPrefsMaxSize: 32768 589 | ps4Passcode: frAQBc8Wsa1xVPfvJcrgRYwTiizs2trQ 590 | ps4pnSessions: 1 591 | ps4pnPresence: 1 592 | ps4pnFriends: 1 593 | ps4pnGameCustomData: 1 594 | playerPrefsSupport: 0 595 | enableApplicationExit: 0 596 | resetTempFolder: 1 597 | restrictedAudioUsageRights: 0 598 | ps4UseResolutionFallback: 0 599 | ps4ReprojectionSupport: 0 600 | ps4UseAudio3dBackend: 0 601 | ps4UseLowGarlicFragmentationMode: 1 602 | ps4SocialScreenEnabled: 0 603 | ps4ScriptOptimizationLevel: 0 604 | ps4Audio3dVirtualSpeakerCount: 14 605 | ps4attribCpuUsage: 0 606 | ps4PatchPkgPath: 607 | ps4PatchLatestPkgPath: 608 | ps4PatchChangeinfoPath: 609 | ps4PatchDayOne: 0 610 | ps4attribUserManagement: 0 611 | ps4attribMoveSupport: 0 612 | ps4attrib3DSupport: 0 613 | ps4attribShareSupport: 0 614 | ps4attribExclusiveVR: 0 615 | ps4disableAutoHideSplash: 0 616 | ps4videoRecordingFeaturesUsed: 0 617 | ps4contentSearchFeaturesUsed: 0 618 | ps4attribEyeToEyeDistanceSettingVR: 0 619 | ps4IncludedModules: [] 620 | ps4attribVROutputEnabled: 0 621 | monoEnv: 622 | splashScreenBackgroundSourceLandscape: {fileID: 0} 623 | splashScreenBackgroundSourcePortrait: {fileID: 0} 624 | blurSplashScreenBackground: 1 625 | spritePackerPolicy: 626 | webGLMemorySize: 16 627 | webGLExceptionSupport: 1 628 | webGLNameFilesAsHashes: 0 629 | webGLDataCaching: 1 630 | webGLDebugSymbols: 0 631 | webGLEmscriptenArgs: 632 | webGLModulesDirectory: 633 | webGLTemplate: APPLICATION:Default 634 | webGLAnalyzeBuildSize: 0 635 | webGLUseEmbeddedResources: 0 636 | webGLCompressionFormat: 1 637 | webGLLinkerTarget: 1 638 | webGLThreadsSupport: 0 639 | webGLWasmStreaming: 0 640 | scriptingDefineSymbols: {} 641 | platformArchitecture: 642 | iPhone: 1 643 | scriptingBackend: {} 644 | il2cppCompilerConfiguration: {} 645 | managedStrippingLevel: {} 646 | incrementalIl2cppBuild: {} 647 | allowUnsafeCode: 0 648 | additionalIl2CppArgs: 649 | scriptingRuntimeVersion: 1 650 | gcIncremental: 0 651 | gcWBarrierValidation: 0 652 | apiCompatibilityLevelPerPlatform: {} 653 | m_RenderingPath: 1 654 | m_MobileRenderingPath: 1 655 | metroPackageName: Template_2D 656 | metroPackageVersion: 657 | metroCertificatePath: 658 | metroCertificatePassword: 659 | metroCertificateSubject: 660 | metroCertificateIssuer: 661 | metroCertificateNotAfter: 0000000000000000 662 | metroApplicationDescription: Template_2D 663 | wsaImages: {} 664 | metroTileShortName: 665 | metroTileShowName: 0 666 | metroMediumTileShowName: 0 667 | metroLargeTileShowName: 0 668 | metroWideTileShowName: 0 669 | metroSupportStreamingInstall: 0 670 | metroLastRequiredScene: 0 671 | metroDefaultTileSize: 1 672 | metroTileForegroundText: 2 673 | metroTileBackgroundColor: {r: 0.13333334, g: 0.17254902, b: 0.21568628, a: 0} 674 | metroSplashScreenBackgroundColor: {r: 0.12941177, g: 0.17254902, b: 0.21568628, 675 | a: 1} 676 | metroSplashScreenUseBackgroundColor: 0 677 | platformCapabilities: {} 678 | metroTargetDeviceFamilies: {} 679 | metroFTAName: 680 | metroFTAFileTypes: [] 681 | metroProtocolName: 682 | XboxOneProductId: 683 | XboxOneUpdateKey: 684 | XboxOneSandboxId: 685 | XboxOneContentId: 686 | XboxOneTitleId: 687 | XboxOneSCId: 688 | XboxOneGameOsOverridePath: 689 | XboxOnePackagingOverridePath: 690 | XboxOneAppManifestOverridePath: 691 | XboxOneVersion: 1.0.0.0 692 | XboxOnePackageEncryption: 0 693 | XboxOnePackageUpdateGranularity: 2 694 | XboxOneDescription: 695 | XboxOneLanguage: 696 | - enus 697 | XboxOneCapability: [] 698 | XboxOneGameRating: {} 699 | XboxOneIsContentPackage: 0 700 | XboxOneEnableGPUVariability: 1 701 | XboxOneSockets: {} 702 | XboxOneSplashScreen: {fileID: 0} 703 | XboxOneAllowedProductIds: [] 704 | XboxOnePersistentLocalStorageSize: 0 705 | XboxOneXTitleMemory: 8 706 | XboxOneOverrideIdentityName: 707 | XboxOneOverrideIdentityPublisher: 708 | vrEditorSettings: 709 | daydream: 710 | daydreamIconForeground: {fileID: 0} 711 | daydreamIconBackground: {fileID: 0} 712 | cloudServicesEnabled: 713 | UNet: 1 714 | luminIcon: 715 | m_Name: 716 | m_ModelFolderPath: 717 | m_PortalFolderPath: 718 | luminCert: 719 | m_CertPath: 720 | m_SignPackage: 1 721 | luminIsChannelApp: 0 722 | luminVersion: 723 | m_VersionCode: 1 724 | m_VersionName: 725 | apiCompatibilityLevel: 6 726 | cloudProjectId: 727 | framebufferDepthMemorylessMode: 0 728 | projectName: 729 | organizationId: 730 | cloudEnabled: 0 731 | enableNativePlatformBackendsForNewInputSystem: 0 732 | disableOldInputManagerSupport: 0 733 | legacyClampBlendShapeWeights: 0 734 | -------------------------------------------------------------------------------- /Unity/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2019.4.2f1 2 | m_EditorVersionWithRevision: 2019.4.2f1 (20b4642a3455) 3 | -------------------------------------------------------------------------------- /Unity/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!47 &1 4 | QualitySettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 5 7 | m_CurrentQuality: 3 8 | m_QualitySettings: 9 | - serializedVersion: 2 10 | name: Very Low 11 | pixelLightCount: 0 12 | shadows: 0 13 | shadowResolution: 0 14 | shadowProjection: 1 15 | shadowCascades: 1 16 | shadowDistance: 15 17 | shadowNearPlaneOffset: 3 18 | shadowCascade2Split: 0.33333334 19 | shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} 20 | shadowmaskMode: 0 21 | blendWeights: 1 22 | textureQuality: 1 23 | anisotropicTextures: 0 24 | antiAliasing: 0 25 | softParticles: 0 26 | softVegetation: 0 27 | realtimeReflectionProbes: 0 28 | billboardsFaceCameraPosition: 0 29 | vSyncCount: 0 30 | lodBias: 0.3 31 | maximumLODLevel: 0 32 | particleRaycastBudget: 4 33 | asyncUploadTimeSlice: 2 34 | asyncUploadBufferSize: 16 35 | resolutionScalingFixedDPIFactor: 1 36 | excludedTargetPlatforms: [] 37 | - serializedVersion: 2 38 | name: Low 39 | pixelLightCount: 0 40 | shadows: 0 41 | shadowResolution: 0 42 | shadowProjection: 1 43 | shadowCascades: 1 44 | shadowDistance: 20 45 | shadowNearPlaneOffset: 3 46 | shadowCascade2Split: 0.33333334 47 | shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} 48 | shadowmaskMode: 0 49 | blendWeights: 2 50 | textureQuality: 0 51 | anisotropicTextures: 0 52 | antiAliasing: 0 53 | softParticles: 0 54 | softVegetation: 0 55 | realtimeReflectionProbes: 0 56 | billboardsFaceCameraPosition: 0 57 | vSyncCount: 0 58 | lodBias: 0.4 59 | maximumLODLevel: 0 60 | particleRaycastBudget: 16 61 | asyncUploadTimeSlice: 2 62 | asyncUploadBufferSize: 16 63 | resolutionScalingFixedDPIFactor: 1 64 | excludedTargetPlatforms: [] 65 | - serializedVersion: 2 66 | name: Medium 67 | pixelLightCount: 1 68 | shadows: 0 69 | shadowResolution: 0 70 | shadowProjection: 1 71 | shadowCascades: 1 72 | shadowDistance: 20 73 | shadowNearPlaneOffset: 3 74 | shadowCascade2Split: 0.33333334 75 | shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} 76 | shadowmaskMode: 0 77 | blendWeights: 2 78 | textureQuality: 0 79 | anisotropicTextures: 0 80 | antiAliasing: 0 81 | softParticles: 0 82 | softVegetation: 0 83 | realtimeReflectionProbes: 0 84 | billboardsFaceCameraPosition: 0 85 | vSyncCount: 1 86 | lodBias: 0.7 87 | maximumLODLevel: 0 88 | particleRaycastBudget: 64 89 | asyncUploadTimeSlice: 2 90 | asyncUploadBufferSize: 16 91 | resolutionScalingFixedDPIFactor: 1 92 | excludedTargetPlatforms: [] 93 | - serializedVersion: 2 94 | name: High 95 | pixelLightCount: 2 96 | shadows: 0 97 | shadowResolution: 1 98 | shadowProjection: 1 99 | shadowCascades: 2 100 | shadowDistance: 40 101 | shadowNearPlaneOffset: 3 102 | shadowCascade2Split: 0.33333334 103 | shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} 104 | shadowmaskMode: 1 105 | blendWeights: 2 106 | textureQuality: 0 107 | anisotropicTextures: 0 108 | antiAliasing: 0 109 | softParticles: 0 110 | softVegetation: 1 111 | realtimeReflectionProbes: 0 112 | billboardsFaceCameraPosition: 0 113 | vSyncCount: 1 114 | lodBias: 1 115 | maximumLODLevel: 0 116 | particleRaycastBudget: 256 117 | asyncUploadTimeSlice: 2 118 | asyncUploadBufferSize: 16 119 | resolutionScalingFixedDPIFactor: 1 120 | excludedTargetPlatforms: [] 121 | - serializedVersion: 2 122 | name: Very High 123 | pixelLightCount: 3 124 | shadows: 0 125 | shadowResolution: 2 126 | shadowProjection: 1 127 | shadowCascades: 2 128 | shadowDistance: 70 129 | shadowNearPlaneOffset: 3 130 | shadowCascade2Split: 0.33333334 131 | shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} 132 | shadowmaskMode: 1 133 | blendWeights: 4 134 | textureQuality: 0 135 | anisotropicTextures: 0 136 | antiAliasing: 0 137 | softParticles: 0 138 | softVegetation: 1 139 | realtimeReflectionProbes: 0 140 | billboardsFaceCameraPosition: 0 141 | vSyncCount: 1 142 | lodBias: 1.5 143 | maximumLODLevel: 0 144 | particleRaycastBudget: 1024 145 | asyncUploadTimeSlice: 2 146 | asyncUploadBufferSize: 16 147 | resolutionScalingFixedDPIFactor: 1 148 | excludedTargetPlatforms: [] 149 | - serializedVersion: 2 150 | name: Ultra 151 | pixelLightCount: 4 152 | shadows: 0 153 | shadowResolution: 0 154 | shadowProjection: 1 155 | shadowCascades: 4 156 | shadowDistance: 150 157 | shadowNearPlaneOffset: 3 158 | shadowCascade2Split: 0.33333334 159 | shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} 160 | shadowmaskMode: 1 161 | blendWeights: 4 162 | textureQuality: 0 163 | anisotropicTextures: 0 164 | antiAliasing: 0 165 | softParticles: 0 166 | softVegetation: 1 167 | realtimeReflectionProbes: 0 168 | billboardsFaceCameraPosition: 0 169 | vSyncCount: 1 170 | lodBias: 2 171 | maximumLODLevel: 0 172 | particleRaycastBudget: 4096 173 | asyncUploadTimeSlice: 2 174 | asyncUploadBufferSize: 16 175 | resolutionScalingFixedDPIFactor: 1 176 | excludedTargetPlatforms: [] 177 | m_PerPlatformDefaultQuality: 178 | Android: 2 179 | Nintendo 3DS: 5 180 | Nintendo Switch: 5 181 | PS4: 5 182 | PSM: 5 183 | PSP2: 2 184 | Stadia: 5 185 | Standalone: 5 186 | Tizen: 2 187 | WebGL: 3 188 | WiiU: 5 189 | Windows Store Apps: 5 190 | XboxOne: 5 191 | iPhone: 2 192 | tvOS: 2 193 | -------------------------------------------------------------------------------- /Unity/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!78 &1 4 | TagManager: 5 | serializedVersion: 2 6 | tags: [] 7 | layers: 8 | - Default 9 | - TransparentFX 10 | - Ignore Raycast 11 | - 12 | - Water 13 | - UI 14 | - 15 | - 16 | - 17 | - 18 | - 19 | - 20 | - 21 | - 22 | - 23 | - 24 | - 25 | - 26 | - 27 | - 28 | - 29 | - 30 | - 31 | - 32 | - 33 | - 34 | - 35 | - 36 | - 37 | - 38 | - 39 | - 40 | m_SortingLayers: 41 | - name: Default 42 | uniqueID: 0 43 | locked: 0 44 | -------------------------------------------------------------------------------- /Unity/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!5 &1 4 | TimeManager: 5 | m_ObjectHideFlags: 0 6 | Fixed Timestep: 0.02 7 | Maximum Allowed Timestep: 0.1 8 | m_TimeScale: 1 9 | Maximum Particle Timestep: 0.03 10 | -------------------------------------------------------------------------------- /Unity/ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!310 &1 4 | UnityConnectSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 1 7 | m_Enabled: 0 8 | m_TestMode: 0 9 | m_EventOldUrl: https://api.uca.cloud.unity3d.com/v1/events 10 | m_EventUrl: https://cdp.cloud.unity3d.com/v1/events 11 | m_ConfigUrl: https://config.uca.cloud.unity3d.com 12 | m_TestInitMode: 0 13 | CrashReportingSettings: 14 | m_EventUrl: https://perf-events.cloud.unity3d.com 15 | m_Enabled: 0 16 | m_LogBufferSize: 10 17 | m_CaptureEditorExceptions: 1 18 | UnityPurchasingSettings: 19 | m_Enabled: 0 20 | m_TestMode: 0 21 | UnityAnalyticsSettings: 22 | m_Enabled: 0 23 | m_TestMode: 0 24 | m_InitializeOnStartup: 1 25 | UnityAdsSettings: 26 | m_Enabled: 0 27 | m_InitializeOnStartup: 1 28 | m_TestMode: 0 29 | m_IosGameId: 30 | m_AndroidGameId: 31 | m_GameIds: {} 32 | m_GameId: 33 | PerformanceReportingSettings: 34 | m_Enabled: 0 35 | -------------------------------------------------------------------------------- /Unity/ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!937362698 &1 4 | VFXManager: 5 | m_ObjectHideFlags: 0 6 | m_IndirectShader: {fileID: 0} 7 | m_CopyBufferShader: {fileID: 0} 8 | m_SortShader: {fileID: 0} 9 | m_StripUpdateShader: {fileID: 0} 10 | m_RenderPipeSettingsPath: 11 | m_FixedTimeStep: 0.016666668 12 | m_MaxDeltaTime: 0.05 13 | -------------------------------------------------------------------------------- /Unity/ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- 1 | { 2 | "m_SettingKeys": [ 3 | "VR Device Disabled", 4 | "VR Device User Alert" 5 | ], 6 | "m_SettingValues": [ 7 | "False", 8 | "False" 9 | ] 10 | } -------------------------------------------------------------------------------- /bridgejscore-mac/.gitignore: -------------------------------------------------------------------------------- 1 | # Xcode 2 | # 3 | # gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore 4 | 5 | ## User settings 6 | xcuserdata/ 7 | 8 | ## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9) 9 | *.xcscmblueprint 10 | *.xccheckout 11 | 12 | ## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4) 13 | build/ 14 | DerivedData/ 15 | *.moved-aside 16 | *.pbxuser 17 | !default.pbxuser 18 | *.mode1v3 19 | !default.mode1v3 20 | *.mode2v3 21 | !default.mode2v3 22 | *.perspectivev3 23 | !default.perspectivev3 24 | 25 | ## Obj-C/Swift specific 26 | *.hmap 27 | 28 | ## App packaging 29 | *.ipa 30 | *.dSYM.zip 31 | *.dSYM 32 | 33 | # CocoaPods 34 | # 35 | # We recommend against adding the Pods directory to your .gitignore. However 36 | # you should judge for yourself, the pros and cons are mentioned at: 37 | # https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control 38 | # 39 | # Pods/ 40 | # 41 | # Add this line if you want to avoid checking in source code from the Xcode workspace 42 | # *.xcworkspace 43 | 44 | # Carthage 45 | # 46 | # Add this line if you want to avoid checking in source code from Carthage dependencies. 47 | # Carthage/Checkouts 48 | 49 | Carthage/Build/ 50 | 51 | # fastlane 52 | # 53 | # It is recommended to not store the screenshots in the git repo. 54 | # Instead, use fastlane to re-generate the screenshots whenever they are needed. 55 | # For more information about the recommended setup visit: 56 | # https://docs.fastlane.tools/best-practices/source-control/#source-control 57 | 58 | fastlane/report.xml 59 | fastlane/Preview.html 60 | fastlane/screenshots/**/*.png 61 | fastlane/test_output 62 | 63 | # Code Injection 64 | # 65 | # After new code Injection tools there's a generated folder /iOSInjectionProject 66 | # https://github.com/johnno1962/injectionforxcode 67 | 68 | iOSInjectionProject/ 69 | -------------------------------------------------------------------------------- /bridgejscore-mac/bridgejscore-mac.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 50; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 060015E624BB602D00D35D8E /* BridgeJsCore.mm in Sources */ = {isa = PBXBuildFile; fileRef = 060015E524BB602D00D35D8E /* BridgeJsCore.mm */; }; 11 | 060015E924BB607400D35D8E /* JavaScriptCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 060015E824BB607400D35D8E /* JavaScriptCore.framework */; }; 12 | 069FF44024BB95F100C6D41C /* BridgeJsCoreNoArc.mm in Sources */ = {isa = PBXBuildFile; fileRef = 069FF43F24BB95F100C6D41C /* BridgeJsCoreNoArc.mm */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; 13 | /* End PBXBuildFile section */ 14 | 15 | /* Begin PBXFileReference section */ 16 | 060015DC24BB5FFB00D35D8E /* bridgejscore-mac.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "bridgejscore-mac.bundle"; sourceTree = BUILT_PRODUCTS_DIR; }; 17 | 060015DF24BB5FFB00D35D8E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 18 | 060015E524BB602D00D35D8E /* BridgeJsCore.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = BridgeJsCore.mm; path = ../../Unity/Assets/BridgeJsCore/BridgeJsCore.mm; sourceTree = ""; }; 19 | 060015E824BB607400D35D8E /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; }; 20 | 069FF43F24BB95F100C6D41C /* BridgeJsCoreNoArc.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = BridgeJsCoreNoArc.mm; path = ../../Unity/Assets/BridgeJsCore/BridgeJsCoreNoArc.mm; sourceTree = ""; }; 21 | /* End PBXFileReference section */ 22 | 23 | /* Begin PBXFrameworksBuildPhase section */ 24 | 060015D924BB5FFB00D35D8E /* Frameworks */ = { 25 | isa = PBXFrameworksBuildPhase; 26 | buildActionMask = 2147483647; 27 | files = ( 28 | 060015E924BB607400D35D8E /* JavaScriptCore.framework in Frameworks */, 29 | ); 30 | runOnlyForDeploymentPostprocessing = 0; 31 | }; 32 | /* End PBXFrameworksBuildPhase section */ 33 | 34 | /* Begin PBXGroup section */ 35 | 060015D324BB5FFB00D35D8E = { 36 | isa = PBXGroup; 37 | children = ( 38 | 060015DE24BB5FFB00D35D8E /* bridgejscore-mac */, 39 | 060015DD24BB5FFB00D35D8E /* Products */, 40 | 060015E724BB607400D35D8E /* Frameworks */, 41 | ); 42 | sourceTree = ""; 43 | }; 44 | 060015DD24BB5FFB00D35D8E /* Products */ = { 45 | isa = PBXGroup; 46 | children = ( 47 | 060015DC24BB5FFB00D35D8E /* bridgejscore-mac.bundle */, 48 | ); 49 | name = Products; 50 | sourceTree = ""; 51 | }; 52 | 060015DE24BB5FFB00D35D8E /* bridgejscore-mac */ = { 53 | isa = PBXGroup; 54 | children = ( 55 | 069FF43F24BB95F100C6D41C /* BridgeJsCoreNoArc.mm */, 56 | 060015E524BB602D00D35D8E /* BridgeJsCore.mm */, 57 | 060015DF24BB5FFB00D35D8E /* Info.plist */, 58 | ); 59 | path = "bridgejscore-mac"; 60 | sourceTree = ""; 61 | }; 62 | 060015E724BB607400D35D8E /* Frameworks */ = { 63 | isa = PBXGroup; 64 | children = ( 65 | 060015E824BB607400D35D8E /* JavaScriptCore.framework */, 66 | ); 67 | name = Frameworks; 68 | sourceTree = ""; 69 | }; 70 | /* End PBXGroup section */ 71 | 72 | /* Begin PBXNativeTarget section */ 73 | 060015DB24BB5FFB00D35D8E /* bridgejscore-mac */ = { 74 | isa = PBXNativeTarget; 75 | buildConfigurationList = 060015E224BB5FFB00D35D8E /* Build configuration list for PBXNativeTarget "bridgejscore-mac" */; 76 | buildPhases = ( 77 | 060015D824BB5FFB00D35D8E /* Sources */, 78 | 060015D924BB5FFB00D35D8E /* Frameworks */, 79 | 060015DA24BB5FFB00D35D8E /* Resources */, 80 | ); 81 | buildRules = ( 82 | ); 83 | dependencies = ( 84 | ); 85 | name = "bridgejscore-mac"; 86 | productName = "bridgejscore-mac"; 87 | productReference = 060015DC24BB5FFB00D35D8E /* bridgejscore-mac.bundle */; 88 | productType = "com.apple.product-type.bundle"; 89 | }; 90 | /* End PBXNativeTarget section */ 91 | 92 | /* Begin PBXProject section */ 93 | 060015D424BB5FFB00D35D8E /* Project object */ = { 94 | isa = PBXProject; 95 | attributes = { 96 | LastUpgradeCheck = 1150; 97 | ORGANIZATIONNAME = kyubuns; 98 | TargetAttributes = { 99 | 060015DB24BB5FFB00D35D8E = { 100 | CreatedOnToolsVersion = 11.5; 101 | }; 102 | }; 103 | }; 104 | buildConfigurationList = 060015D724BB5FFB00D35D8E /* Build configuration list for PBXProject "bridgejscore-mac" */; 105 | compatibilityVersion = "Xcode 9.3"; 106 | developmentRegion = en; 107 | hasScannedForEncodings = 0; 108 | knownRegions = ( 109 | en, 110 | Base, 111 | ); 112 | mainGroup = 060015D324BB5FFB00D35D8E; 113 | productRefGroup = 060015DD24BB5FFB00D35D8E /* Products */; 114 | projectDirPath = ""; 115 | projectRoot = ""; 116 | targets = ( 117 | 060015DB24BB5FFB00D35D8E /* bridgejscore-mac */, 118 | ); 119 | }; 120 | /* End PBXProject section */ 121 | 122 | /* Begin PBXResourcesBuildPhase section */ 123 | 060015DA24BB5FFB00D35D8E /* Resources */ = { 124 | isa = PBXResourcesBuildPhase; 125 | buildActionMask = 2147483647; 126 | files = ( 127 | ); 128 | runOnlyForDeploymentPostprocessing = 0; 129 | }; 130 | /* End PBXResourcesBuildPhase section */ 131 | 132 | /* Begin PBXSourcesBuildPhase section */ 133 | 060015D824BB5FFB00D35D8E /* Sources */ = { 134 | isa = PBXSourcesBuildPhase; 135 | buildActionMask = 2147483647; 136 | files = ( 137 | 069FF44024BB95F100C6D41C /* BridgeJsCoreNoArc.mm in Sources */, 138 | 060015E624BB602D00D35D8E /* BridgeJsCore.mm in Sources */, 139 | ); 140 | runOnlyForDeploymentPostprocessing = 0; 141 | }; 142 | /* End PBXSourcesBuildPhase section */ 143 | 144 | /* Begin XCBuildConfiguration section */ 145 | 060015E024BB5FFB00D35D8E /* Debug */ = { 146 | isa = XCBuildConfiguration; 147 | buildSettings = { 148 | ALWAYS_SEARCH_USER_PATHS = NO; 149 | CLANG_ANALYZER_NONNULL = YES; 150 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 151 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 152 | CLANG_CXX_LIBRARY = "libc++"; 153 | CLANG_ENABLE_MODULES = YES; 154 | CLANG_ENABLE_OBJC_ARC = YES; 155 | CLANG_ENABLE_OBJC_WEAK = YES; 156 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 157 | CLANG_WARN_BOOL_CONVERSION = YES; 158 | CLANG_WARN_COMMA = YES; 159 | CLANG_WARN_CONSTANT_CONVERSION = YES; 160 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 161 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 162 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 163 | CLANG_WARN_EMPTY_BODY = YES; 164 | CLANG_WARN_ENUM_CONVERSION = YES; 165 | CLANG_WARN_INFINITE_RECURSION = YES; 166 | CLANG_WARN_INT_CONVERSION = YES; 167 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 168 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 169 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 170 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 171 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 172 | CLANG_WARN_STRICT_PROTOTYPES = YES; 173 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 174 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 175 | CLANG_WARN_UNREACHABLE_CODE = YES; 176 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 177 | COPY_PHASE_STRIP = NO; 178 | DEBUG_INFORMATION_FORMAT = dwarf; 179 | ENABLE_STRICT_OBJC_MSGSEND = YES; 180 | ENABLE_TESTABILITY = YES; 181 | GCC_C_LANGUAGE_STANDARD = gnu11; 182 | GCC_DYNAMIC_NO_PIC = NO; 183 | GCC_NO_COMMON_BLOCKS = YES; 184 | GCC_OPTIMIZATION_LEVEL = 0; 185 | GCC_PREPROCESSOR_DEFINITIONS = ( 186 | "DEBUG=1", 187 | "$(inherited)", 188 | ); 189 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 190 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 191 | GCC_WARN_UNDECLARED_SELECTOR = YES; 192 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 193 | GCC_WARN_UNUSED_FUNCTION = YES; 194 | GCC_WARN_UNUSED_VARIABLE = YES; 195 | MACOSX_DEPLOYMENT_TARGET = 10.15; 196 | MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; 197 | MTL_FAST_MATH = YES; 198 | ONLY_ACTIVE_ARCH = YES; 199 | SDKROOT = macosx; 200 | }; 201 | name = Debug; 202 | }; 203 | 060015E124BB5FFB00D35D8E /* Release */ = { 204 | isa = XCBuildConfiguration; 205 | buildSettings = { 206 | ALWAYS_SEARCH_USER_PATHS = NO; 207 | CLANG_ANALYZER_NONNULL = YES; 208 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 209 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 210 | CLANG_CXX_LIBRARY = "libc++"; 211 | CLANG_ENABLE_MODULES = YES; 212 | CLANG_ENABLE_OBJC_ARC = YES; 213 | CLANG_ENABLE_OBJC_WEAK = YES; 214 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 215 | CLANG_WARN_BOOL_CONVERSION = YES; 216 | CLANG_WARN_COMMA = YES; 217 | CLANG_WARN_CONSTANT_CONVERSION = YES; 218 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 219 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 220 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 221 | CLANG_WARN_EMPTY_BODY = YES; 222 | CLANG_WARN_ENUM_CONVERSION = YES; 223 | CLANG_WARN_INFINITE_RECURSION = YES; 224 | CLANG_WARN_INT_CONVERSION = YES; 225 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 226 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 227 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 228 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 229 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 230 | CLANG_WARN_STRICT_PROTOTYPES = YES; 231 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 232 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 233 | CLANG_WARN_UNREACHABLE_CODE = YES; 234 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 235 | COPY_PHASE_STRIP = NO; 236 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 237 | ENABLE_NS_ASSERTIONS = NO; 238 | ENABLE_STRICT_OBJC_MSGSEND = YES; 239 | GCC_C_LANGUAGE_STANDARD = gnu11; 240 | GCC_NO_COMMON_BLOCKS = YES; 241 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 242 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 243 | GCC_WARN_UNDECLARED_SELECTOR = YES; 244 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 245 | GCC_WARN_UNUSED_FUNCTION = YES; 246 | GCC_WARN_UNUSED_VARIABLE = YES; 247 | MACOSX_DEPLOYMENT_TARGET = 10.15; 248 | MTL_ENABLE_DEBUG_INFO = NO; 249 | MTL_FAST_MATH = YES; 250 | SDKROOT = macosx; 251 | }; 252 | name = Release; 253 | }; 254 | 060015E324BB5FFB00D35D8E /* Debug */ = { 255 | isa = XCBuildConfiguration; 256 | buildSettings = { 257 | CODE_SIGN_STYLE = Automatic; 258 | COMBINE_HIDPI_IMAGES = YES; 259 | DEVELOPMENT_TEAM = 24GCHF9EHJ; 260 | INFOPLIST_FILE = "bridgejscore-mac/Info.plist"; 261 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; 262 | PRODUCT_BUNDLE_IDENTIFIER = "dev.kyubuns.bridgejscore-mac"; 263 | PRODUCT_NAME = "$(TARGET_NAME)"; 264 | SKIP_INSTALL = YES; 265 | WRAPPER_EXTENSION = bundle; 266 | }; 267 | name = Debug; 268 | }; 269 | 060015E424BB5FFB00D35D8E /* Release */ = { 270 | isa = XCBuildConfiguration; 271 | buildSettings = { 272 | CODE_SIGN_STYLE = Automatic; 273 | COMBINE_HIDPI_IMAGES = YES; 274 | DEVELOPMENT_TEAM = 24GCHF9EHJ; 275 | INFOPLIST_FILE = "bridgejscore-mac/Info.plist"; 276 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; 277 | PRODUCT_BUNDLE_IDENTIFIER = "dev.kyubuns.bridgejscore-mac"; 278 | PRODUCT_NAME = "$(TARGET_NAME)"; 279 | SKIP_INSTALL = YES; 280 | WRAPPER_EXTENSION = bundle; 281 | }; 282 | name = Release; 283 | }; 284 | /* End XCBuildConfiguration section */ 285 | 286 | /* Begin XCConfigurationList section */ 287 | 060015D724BB5FFB00D35D8E /* Build configuration list for PBXProject "bridgejscore-mac" */ = { 288 | isa = XCConfigurationList; 289 | buildConfigurations = ( 290 | 060015E024BB5FFB00D35D8E /* Debug */, 291 | 060015E124BB5FFB00D35D8E /* Release */, 292 | ); 293 | defaultConfigurationIsVisible = 0; 294 | defaultConfigurationName = Release; 295 | }; 296 | 060015E224BB5FFB00D35D8E /* Build configuration list for PBXNativeTarget "bridgejscore-mac" */ = { 297 | isa = XCConfigurationList; 298 | buildConfigurations = ( 299 | 060015E324BB5FFB00D35D8E /* Debug */, 300 | 060015E424BB5FFB00D35D8E /* Release */, 301 | ); 302 | defaultConfigurationIsVisible = 0; 303 | defaultConfigurationName = Release; 304 | }; 305 | /* End XCConfigurationList section */ 306 | }; 307 | rootObject = 060015D424BB5FFB00D35D8E /* Project object */; 308 | } 309 | -------------------------------------------------------------------------------- /bridgejscore-mac/bridgejscore-mac.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /bridgejscore-mac/bridgejscore-mac.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /bridgejscore-mac/bridgejscore-mac.xcodeproj/xcshareddata/xcschemes/bridgejscore-mac.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 32 | 33 | 43 | 44 | 50 | 51 | 57 | 58 | 59 | 60 | 62 | 63 | 66 | 67 | 68 | -------------------------------------------------------------------------------- /bridgejscore-mac/bridgejscore-mac/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | $(PRODUCT_BUNDLE_PACKAGE_TYPE) 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleVersion 20 | 1 21 | NSHumanReadableCopyright 22 | Copyright © 2020 kyubuns. All rights reserved. 23 | NSPrincipalClass 24 | 25 | 26 | 27 | --------------------------------------------------------------------------------