diff --git a/sdkproject/Assets/Resources.meta b/sdkproject/Assets/Resources.meta new file mode 100644 index 000000000..3e846d071 --- /dev/null +++ b/sdkproject/Assets/Resources.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 27be8ba628f81af45b69ba7e9f10a023 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARInterface/ARRemote/Scripts/ARRemoteDevice.cs b/sdkproject/Assets/UnityARInterface/ARRemote/Scripts/ARRemoteDevice.cs index 5404eb423..05c8549ff 100644 --- a/sdkproject/Assets/UnityARInterface/ARRemote/Scripts/ARRemoteDevice.cs +++ b/sdkproject/Assets/UnityARInterface/ARRemote/Scripts/ARRemoteDevice.cs @@ -5,7 +5,7 @@ using UnityEngine; using UnityEngine.Events; using UnityEngine.Networking.PlayerConnection; -using Utils; +using UnityEngine.XR.iOS.Utils; // Runs on the remote device. Talks to the Editor. namespace UnityARInterface diff --git a/sdkproject/Assets/UnityARInterface/ARRemote/Scripts/ARRemoteEditorInterface.cs b/sdkproject/Assets/UnityARInterface/ARRemote/Scripts/ARRemoteEditorInterface.cs index db04d7dd8..052bf52d0 100644 --- a/sdkproject/Assets/UnityARInterface/ARRemote/Scripts/ARRemoteEditorInterface.cs +++ b/sdkproject/Assets/UnityARInterface/ARRemote/Scripts/ARRemoteEditorInterface.cs @@ -1,7 +1,7 @@ using System.Collections.Generic; using UnityEngine; using UnityEngine.Networking.PlayerConnection; -using Utils; +using UnityEngine.XR.iOS.Utils; using System.Collections; using UnityEngine.XR; diff --git a/sdkproject/Assets/UnityARInterface/ARRemote/Scripts/ARSerializableObjects.cs b/sdkproject/Assets/UnityARInterface/ARRemote/Scripts/ARSerializableObjects.cs index 908f9bd38..e662a27f7 100644 --- a/sdkproject/Assets/UnityARInterface/ARRemote/Scripts/ARSerializableObjects.cs +++ b/sdkproject/Assets/UnityARInterface/ARRemote/Scripts/ARSerializableObjects.cs @@ -2,7 +2,7 @@ using System.Collections.Generic; using System.Text; using UnityEngine; -using Utils; +using UnityEngine.XR.iOS.Utils; namespace UnityARInterface { diff --git a/sdkproject/Assets/UnityARInterface/Scripts/ARKitInterface.cs b/sdkproject/Assets/UnityARInterface/Scripts/ARKitInterface.cs index 3df57144a..5c428d7e3 100644 --- a/sdkproject/Assets/UnityARInterface/Scripts/ARKitInterface.cs +++ b/sdkproject/Assets/UnityARInterface/Scripts/ARKitInterface.cs @@ -9,6 +9,7 @@ namespace UnityARInterface { + #if !UNITY_EDITOR && UNITY_IOS public class ARKitInterface : ARInterface { private Material m_ClearMaterial; @@ -137,7 +138,7 @@ void UpdateFrame(UnityARCamera camera) m_TexturesInitialized = true; } - m_PointCloudData = camera.pointCloudData; + m_PointCloudData = camera.pointCloud.Points; m_LightEstimate.capabilities = LightEstimateCapabilities.AmbientColorTemperature | LightEstimateCapabilities.AmbientIntensity; m_LightEstimate.ambientColorTemperature = camera.lightData.arLightEstimate.ambientColorTemperature; @@ -240,7 +241,7 @@ public override bool TryGetUnscaledPose(ref Pose pose) public override bool TryGetCameraImage(ref CameraImage cameraImage) { ARTextureHandles handles = nativeInterface.GetARVideoTextureHandles(); - if (handles.textureY == System.IntPtr.Zero || handles.textureCbCr == System.IntPtr.Zero) + if (handles.TextureY == System.IntPtr.Zero || handles.TextureCbCr == System.IntPtr.Zero) return false; if (!m_TexturesInitialized) @@ -300,7 +301,7 @@ public override void UpdateCamera(Camera camera) return; ARTextureHandles handles = UnityARSessionNativeInterface.GetARSessionNativeInterface().GetARVideoTextureHandles(); - if (handles.textureY == System.IntPtr.Zero || handles.textureCbCr == System.IntPtr.Zero) + if (handles.TextureY == System.IntPtr.Zero || handles.TextureCbCr == System.IntPtr.Zero) { m_CanRenderBackground = false; return; @@ -315,7 +316,7 @@ public override void UpdateCamera(Camera camera) if (_videoTextureY == null) { _videoTextureY = Texture2D.CreateExternalTexture(currentResolution.width, currentResolution.height, - TextureFormat.R8, false, false, (System.IntPtr)handles.textureY); + TextureFormat.R8, false, false, (System.IntPtr)handles.TextureY); _videoTextureY.filterMode = FilterMode.Bilinear; _videoTextureY.wrapMode = TextureWrapMode.Repeat; m_ClearMaterial.SetTexture("_textureY", _videoTextureY); @@ -325,14 +326,14 @@ public override void UpdateCamera(Camera camera) if (_videoTextureCbCr == null) { _videoTextureCbCr = Texture2D.CreateExternalTexture(currentResolution.width, currentResolution.height, - TextureFormat.RG16, false, false, (System.IntPtr)handles.textureCbCr); + TextureFormat.RG16, false, false, (System.IntPtr)handles.TextureCbCr); _videoTextureCbCr.filterMode = FilterMode.Bilinear; _videoTextureCbCr.wrapMode = TextureWrapMode.Repeat; m_ClearMaterial.SetTexture("_textureCbCr", _videoTextureCbCr); } - _videoTextureY.UpdateExternalTexture(handles.textureY); - _videoTextureCbCr.UpdateExternalTexture(handles.textureCbCr); + _videoTextureY.UpdateExternalTexture(handles.TextureY); + _videoTextureCbCr.UpdateExternalTexture(handles.TextureCbCr); m_ClearMaterial.SetMatrix("_DisplayTransform", m_DisplayTransform); } @@ -377,4 +378,5 @@ public override void DestroyAnchor(ARAnchor arAnchor) } } } +#endif } \ No newline at end of file diff --git a/sdkproject/Assets/UnityARKitPlugin.meta b/sdkproject/Assets/UnityARKitPlugin.meta index 5e20ea92b..ed83225c1 100644 --- a/sdkproject/Assets/UnityARKitPlugin.meta +++ b/sdkproject/Assets/UnityARKitPlugin.meta @@ -1,10 +1,9 @@ fileFormatVersion: 2 -guid: 46ff32aeaba4bcc4eb384cdf7cf29456 +guid: df38125cf15df453a98ce2d798a5e954 folderAsset: yes -timeCreated: 1505872011 +timeCreated: 1501101795 licenseType: Pro DefaultImporter: - externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/ARKitRemote/ARKitFaceTrackingRemoteConnection.cs b/sdkproject/Assets/UnityARKitPlugin/ARKitRemote/ARKitFaceTrackingRemoteConnection.cs new file mode 100644 index 000000000..b52557856 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/ARKitRemote/ARKitFaceTrackingRemoteConnection.cs @@ -0,0 +1,215 @@ +using UnityEngine; +using UnityEngine.Networking.PlayerConnection; +using System.Text; +using UnityEngine.XR.iOS.Utils; + +#if UNITY_EDITOR + +using UnityEditor.Networking.PlayerConnection; + +namespace UnityEngine.XR.iOS +{ + public class ARKitFaceTrackingRemoteConnection : MonoBehaviour + { + [Header("AR FaceTracking Config Options")] + public bool enableLightEstimation = true; + + [Header("Run Options")] + public bool resetTracking = true; + public bool removeExistingAnchors = true; + + EditorConnection editorConnection ; + + int currentPlayerID = -1; + string guimessage = "none"; + + Texture2D remoteScreenYTex; + Texture2D remoteScreenUVTex; + + bool bTexturesInitialized; + + // Use this for initialization + void Start () { + + bTexturesInitialized = false; + + + editorConnection = EditorConnection.instance; + editorConnection.Initialize (); + editorConnection.RegisterConnection (PlayerConnected); + editorConnection.RegisterDisconnection (PlayerDisconnected); + editorConnection.Register (ConnectionMessageIds.updateCameraFrameMsgId, UpdateCameraFrame); + editorConnection.Register (ConnectionMessageIds.addFaceAnchorMsgeId, AddFaceAnchor); + editorConnection.Register (ConnectionMessageIds.updateFaceAnchorMsgeId, UpdateFaceAnchor); + editorConnection.Register (ConnectionMessageIds.removePlaneAnchorMsgeId, RemoveFaceAnchor); + editorConnection.Register (ConnectionMessageIds.screenCaptureYMsgId, ReceiveRemoteScreenYTex); + editorConnection.Register (ConnectionMessageIds.screenCaptureUVMsgId, ReceiveRemoteScreenUVTex); + + } + + void PlayerConnected(int playerID) + { + currentPlayerID = playerID; + + } + + void OnGUI() + { + + if (!bTexturesInitialized) + { + if (currentPlayerID != -1) { + guimessage = "Connected to ARKit Remote device : " + currentPlayerID.ToString (); + + if (GUI.Button (new Rect ((Screen.width / 2) - 200, (Screen.height / 2) - 200, 400, 100), "Start Remote ARKit FaceTracking Session")) + { + SendInitToPlayer (); + } + } + else + { + guimessage = "Please connect to player in the console menu"; + } + + GUI.Box (new Rect ((Screen.width / 2) - 200, (Screen.height / 2) + 100, 400, 50), guimessage); + } + + } + + void PlayerDisconnected(int playerID) + { + if (currentPlayerID == playerID) { + currentPlayerID = -1; + } + } + + void OnDestroy() + { +#if UNITY_2017_1_OR_NEWER + if(editorConnection != null) { + editorConnection.DisconnectAll (); + } +#endif + } + + + void InitializeTextures(UnityARCamera camera) + { + int yWidth = camera.videoParams.yWidth; + int yHeight = camera.videoParams.yHeight; + int uvWidth = yWidth / 2; + int uvHeight = yHeight / 2; + if (remoteScreenYTex == null || remoteScreenYTex.width != yWidth || remoteScreenYTex.height != yHeight) { + if (remoteScreenYTex) { + Destroy (remoteScreenYTex); + } + remoteScreenYTex = new Texture2D (yWidth, yHeight, TextureFormat.R8, false, true); + } + if (remoteScreenUVTex == null || remoteScreenUVTex.width != uvWidth || remoteScreenUVTex.height != uvHeight) { + if (remoteScreenUVTex) { + Destroy (remoteScreenUVTex); + } + remoteScreenUVTex = new Texture2D (uvWidth, uvHeight, TextureFormat.RG16, false, true); + } + + bTexturesInitialized = true; + } + + void UpdateCameraFrame(MessageEventArgs mea) + { + serializableUnityARCamera serCamera = mea.data.Deserialize (); + + UnityARCamera scamera = new UnityARCamera (); + scamera = serCamera; + + InitializeTextures (scamera); + + UnityARSessionNativeInterface.SetStaticCamera (scamera); + UnityARSessionNativeInterface.RunFrameUpdateCallbacks (); + } + + void AddFaceAnchor(MessageEventArgs mea) + { + serializableUnityARFaceAnchor serFaceAnchor = mea.data.Deserialize (); + + ARFaceAnchor arFaceAnchor = serFaceAnchor; + UnityARSessionNativeInterface.RunAddAnchorCallbacks (arFaceAnchor); + } + + void UpdateFaceAnchor(MessageEventArgs mea) + { + serializableUnityARFaceAnchor serFaceAnchor = mea.data.Deserialize (); + + ARFaceAnchor arFaceAnchor = serFaceAnchor; + UnityARSessionNativeInterface.RunUpdateAnchorCallbacks (arFaceAnchor); + } + + void RemoveFaceAnchor(MessageEventArgs mea) + { + serializableUnityARFaceAnchor serFaceAnchor = mea.data.Deserialize (); + + ARFaceAnchor arFaceAnchor = serFaceAnchor; + UnityARSessionNativeInterface.RunRemoveAnchorCallbacks (arFaceAnchor); + } + + void ReceiveRemoteScreenYTex(MessageEventArgs mea) + { + if (!bTexturesInitialized) + return; + remoteScreenYTex.LoadRawTextureData(CompressionHelper.ByteArrayDecompress(mea.data)); + remoteScreenYTex.Apply (); + UnityARVideo arVideo = Camera.main.GetComponent(); + if (arVideo) { + arVideo.SetYTexure(remoteScreenYTex); + } + + } + + void ReceiveRemoteScreenUVTex(MessageEventArgs mea) + { + if (!bTexturesInitialized) + return; + remoteScreenUVTex.LoadRawTextureData(CompressionHelper.ByteArrayDecompress(mea.data)); + remoteScreenUVTex.Apply (); + UnityARVideo arVideo = Camera.main.GetComponent(); + if (arVideo) { + arVideo.SetUVTexure(remoteScreenUVTex); + } + + } + + + void SendInitToPlayer() + { + + //we're going to reuse ARSessionConfiguration and only use its lightestimation field. + + serializableFromEditorMessage sfem = new serializableFromEditorMessage (); + sfem.subMessageId = SubMessageIds.editorInitARKitFaceTracking; + serializableARSessionConfiguration ssc = new serializableARSessionConfiguration (UnityARAlignment.UnityARAlignmentCamera, UnityARPlaneDetection.None, false, enableLightEstimation, true); + UnityARSessionRunOption roTracking = resetTracking ? UnityARSessionRunOption.ARSessionRunOptionResetTracking : 0; + UnityARSessionRunOption roAnchors = removeExistingAnchors ? UnityARSessionRunOption.ARSessionRunOptionRemoveExistingAnchors : 0; + sfem.arkitConfigMsg = new serializableARKitInit (ssc, roTracking | roAnchors); + SendToPlayer (ConnectionMessageIds.fromEditorARKitSessionMsgId, sfem); + } + + void SendToPlayer(System.Guid msgId, byte[] data) + { + editorConnection.Send (msgId, data); + } + + public void SendToPlayer(System.Guid msgId, object serializableObject) + { + byte[] arrayToSend = serializableObject.SerializeToByteArray (); + SendToPlayer (msgId, arrayToSend); + } + + + // Update is called once per frame + void Update () { + + } + + } +} +#endif \ No newline at end of file diff --git a/sdkproject/Assets/UnityARKitPlugin/ARKitRemote/ARKitFaceTrackingRemoteConnection.cs.meta b/sdkproject/Assets/UnityARKitPlugin/ARKitRemote/ARKitFaceTrackingRemoteConnection.cs.meta new file mode 100644 index 000000000..ce9013096 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/ARKitRemote/ARKitFaceTrackingRemoteConnection.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: cdd3e34e30492409ea4e7aa626b21aa0 +timeCreated: 1513104962 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/ARKitRemote/ARKitRemoteConnection.cs b/sdkproject/Assets/UnityARKitPlugin/ARKitRemote/ARKitRemoteConnection.cs index b91a972a0..65abec7cc 100644 --- a/sdkproject/Assets/UnityARKitPlugin/ARKitRemote/ARKitRemoteConnection.cs +++ b/sdkproject/Assets/UnityARKitPlugin/ARKitRemote/ARKitRemoteConnection.cs @@ -1,7 +1,7 @@ using UnityEngine; using UnityEngine.Networking.PlayerConnection; using System.Text; -using Utils; +using UnityEngine.XR.iOS.Utils; #if UNITY_EDITOR @@ -16,6 +16,7 @@ public class ARKitRemoteConnection : MonoBehaviour public UnityARPlaneDetection planeDetection = UnityARPlaneDetection.Horizontal; public bool getPointCloud = true; public bool enableLightEstimation = true; + public bool enableAutoFocus = true; [Header("Run Options")] public bool resetTracking = true; @@ -159,7 +160,7 @@ void ReceiveRemoteScreenYTex(MessageEventArgs mea) { if (!bTexturesInitialized) return; - remoteScreenYTex.LoadRawTextureData(mea.data); + remoteScreenYTex.LoadRawTextureData(CompressionHelper.ByteArrayDecompress(mea.data)); remoteScreenYTex.Apply (); UnityARVideo arVideo = Camera.main.GetComponent(); if (arVideo) { @@ -172,7 +173,7 @@ void ReceiveRemoteScreenUVTex(MessageEventArgs mea) { if (!bTexturesInitialized) return; - remoteScreenUVTex.LoadRawTextureData(mea.data); + remoteScreenUVTex.LoadRawTextureData(CompressionHelper.ByteArrayDecompress(mea.data)); remoteScreenUVTex.Apply (); UnityARVideo arVideo = Camera.main.GetComponent(); if (arVideo) { @@ -186,7 +187,7 @@ void SendInitToPlayer() { serializableFromEditorMessage sfem = new serializableFromEditorMessage (); sfem.subMessageId = SubMessageIds.editorInitARKit; - serializableARSessionConfiguration ssc = new serializableARSessionConfiguration (startAlignment, planeDetection, getPointCloud, enableLightEstimation); + serializableARSessionConfiguration ssc = new serializableARSessionConfiguration (startAlignment, planeDetection, getPointCloud, enableLightEstimation, enableAutoFocus); UnityARSessionRunOption roTracking = resetTracking ? UnityARSessionRunOption.ARSessionRunOptionResetTracking : 0; UnityARSessionRunOption roAnchors = removeExistingAnchors ? UnityARSessionRunOption.ARSessionRunOptionRemoveExistingAnchors : 0; sfem.arkitConfigMsg = new serializableARKitInit (ssc, roTracking | roAnchors); diff --git a/sdkproject/Assets/UnityARKitPlugin/ARKitRemote/CompressionHelper.cs b/sdkproject/Assets/UnityARKitPlugin/ARKitRemote/CompressionHelper.cs new file mode 100644 index 000000000..56adca147 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/ARKitRemote/CompressionHelper.cs @@ -0,0 +1,65 @@ +using System.IO; +using System.IO.Compression; + +namespace UnityEngine.XR.iOS +{ + + public static class CompressionHelper + { + + /// + /// Compress using deflate. + /// + /// The byte compress. + /// Source. + public static byte[] ByteArrayCompress(byte[] source) + { + using (MemoryStream ms = new MemoryStream()) + using (DeflateStream compressedDStream = new DeflateStream(ms, CompressionMode.Compress, true)) + { + compressedDStream.Write(source, 0, source.Length); + + compressedDStream.Close(); + + byte[] destination = ms.ToArray(); + + Debug.Log(source.Length.ToString() + " vs " + ms.Length.ToString()); + + return destination; + } + } + + /// + /// Decompress using deflate. + /// + /// The byte decompress. + /// Source. + public static byte[] ByteArrayDecompress(byte[] source) + { + using (MemoryStream input = new MemoryStream(source)) + using (MemoryStream output = new MemoryStream()) + using (DeflateStream decompressedDstream = new DeflateStream(input, CompressionMode.Decompress)) + { + decompressedDstream.CopyTo(output); + + byte[] destination = output.ToArray(); + + Debug.Log("Decompress Size : " + output.Length); + + return destination; + } + } + + public static long CopyTo(this Stream source, Stream destination) { + byte[] buffer = new byte[2048]; + int bytesRead; + long totalBytes = 0; + while((bytesRead = source.Read(buffer, 0, buffer.Length)) > 0) { + destination.Write(buffer, 0, bytesRead); + totalBytes += bytesRead; + } + return totalBytes; + } + + } +} \ No newline at end of file diff --git a/sdkproject/Assets/UnityARKitPlugin/ARKitRemote/CompressionHelper.cs.meta b/sdkproject/Assets/UnityARKitPlugin/ARKitRemote/CompressionHelper.cs.meta new file mode 100644 index 000000000..44e44a88f --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/ARKitRemote/CompressionHelper.cs.meta @@ -0,0 +1,13 @@ +fileFormatVersion: 2 +guid: d2e302b45830142a8b9e4fe09be4618d +timeCreated: 1534796420 +licenseType: Pro +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/ARKitRemote/ConnectToEditor.cs b/sdkproject/Assets/UnityARKitPlugin/ARKitRemote/ConnectToEditor.cs index bdf526682..f5c5ef16b 100644 --- a/sdkproject/Assets/UnityARKitPlugin/ARKitRemote/ConnectToEditor.cs +++ b/sdkproject/Assets/UnityARKitPlugin/ARKitRemote/ConnectToEditor.cs @@ -1,7 +1,7 @@ using UnityEngine; using UnityEngine.Networking.PlayerConnection; using System.Text; -using Utils; +using UnityEngine.XR.iOS.Utils; namespace UnityEngine.XR.iOS { @@ -37,15 +37,19 @@ void OnGUI() void HandleEditorMessage(MessageEventArgs mea) { serializableFromEditorMessage sfem = mea.data.Deserialize(); - if (sfem != null && sfem.subMessageId == SubMessageIds.editorInitARKit) { + if (sfem != null && sfem.subMessageId == SubMessageIds.editorInitARKit) + { InitializeARKit ( sfem.arkitConfigMsg ); + } + else if (sfem != null && sfem.subMessageId == SubMessageIds.editorInitARKitFaceTracking) + { + InitializeARKitFaceTracking( sfem.arkitConfigMsg); } } void InitializeARKit(serializableARKitInit sai) { #if !UNITY_EDITOR - //get the config and runoption from editor and use them to initialize arkit on device Application.targetFrameRate = 60; m_session = UnityARSessionNativeInterface.GetARSessionNativeInterface(); @@ -57,33 +61,80 @@ void InitializeARKit(serializableARKitInit sai) UnityARSessionNativeInterface.ARAnchorAddedEvent += ARAnchorAdded; UnityARSessionNativeInterface.ARAnchorUpdatedEvent += ARAnchorUpdated; UnityARSessionNativeInterface.ARAnchorRemovedEvent += ARAnchorRemoved; + #endif + } + + void InitializeARKitFaceTracking(serializableARKitInit sai) + { + #if !UNITY_EDITOR + //get the config and runoption from editor and use them to initialize arkit for facetracking on device + Application.targetFrameRate = 60; + m_session = UnityARSessionNativeInterface.GetARSessionNativeInterface(); + ARKitFaceTrackingConfiguration config = sai.config; + UnityARSessionRunOption runOptions = sai.runOption; + m_session.RunWithConfigAndOptions(config, runOptions); + UnityARSessionNativeInterface.ARFrameUpdatedEvent += ARFrameUpdated; + UnityARSessionNativeInterface.ARFaceAnchorAddedEvent += ARFaceAnchorAdded; + UnityARSessionNativeInterface.ARFaceAnchorUpdatedEvent += ARFaceAnchorUpdated; + UnityARSessionNativeInterface.ARFaceAnchorRemovedEvent += ARFaceAnchorRemoved; #endif } public void ARFrameUpdated(UnityARCamera camera) { + #if !UNITY_EDITOR serializableUnityARCamera serARCamera = camera; SendToEditor(ConnectionMessageIds.updateCameraFrameMsgId, serARCamera); - + #endif } public void ARAnchorAdded(ARPlaneAnchor planeAnchor) { + #if !UNITY_EDITOR serializableUnityARPlaneAnchor serPlaneAnchor = planeAnchor; SendToEditor (ConnectionMessageIds.addPlaneAnchorMsgeId, serPlaneAnchor); + #endif } public void ARAnchorUpdated(ARPlaneAnchor planeAnchor) { + #if !UNITY_EDITOR serializableUnityARPlaneAnchor serPlaneAnchor = planeAnchor; SendToEditor (ConnectionMessageIds.updatePlaneAnchorMsgeId, serPlaneAnchor); + #endif } public void ARAnchorRemoved(ARPlaneAnchor planeAnchor) { + #if !UNITY_EDITOR serializableUnityARPlaneAnchor serPlaneAnchor = planeAnchor; SendToEditor (ConnectionMessageIds.removePlaneAnchorMsgeId, serPlaneAnchor); + #endif + } + + public void ARFaceAnchorAdded(ARFaceAnchor faceAnchor) + { + #if !UNITY_EDITOR + serializableUnityARFaceAnchor serFaceAnchor = faceAnchor; + SendToEditor (ConnectionMessageIds.addFaceAnchorMsgeId, serFaceAnchor); + #endif + } + + public void ARFaceAnchorUpdated(ARFaceAnchor faceAnchor) + { + #if !UNITY_EDITOR + serializableUnityARFaceAnchor serFaceAnchor = faceAnchor; + SendToEditor (ConnectionMessageIds.updateFaceAnchorMsgeId, serFaceAnchor); + #endif + } + + public void ARFaceAnchorRemoved(ARFaceAnchor faceAnchor) + { + #if !UNITY_EDITOR + serializableUnityARFaceAnchor serFaceAnchor = faceAnchor; + SendToEditor (ConnectionMessageIds.removeFaceAnchorMsgeId, serFaceAnchor); + #endif } void EditorConnected(int playerID) diff --git a/sdkproject/Assets/UnityARKitPlugin/ARKitRemote/ConnectionMessageIds.cs b/sdkproject/Assets/UnityARKitPlugin/ARKitRemote/ConnectionMessageIds.cs index b424cbe37..06e3912d7 100644 --- a/sdkproject/Assets/UnityARKitPlugin/ARKitRemote/ConnectionMessageIds.cs +++ b/sdkproject/Assets/UnityARKitPlugin/ARKitRemote/ConnectionMessageIds.cs @@ -11,10 +11,14 @@ public static class ConnectionMessageIds public static Guid removePlaneAnchorMsgeId { get { return new Guid("b07750a2-8825-4e86-9483-0b22b07df800"); } } public static Guid screenCaptureYMsgId { get { return new Guid("25c3d26f-72c5-4f3e-9a1f-c8c9b859453b"); } } public static Guid screenCaptureUVMsgId { get { return new Guid("d7f4d3cd-2d12-4ab7-b755-932fe7ab744d"); } } + public static Guid addFaceAnchorMsgeId { get { return new Guid("7d7531e9-28b8-40b3-9afd-b6e7baa8e630"); } } + public static Guid updateFaceAnchorMsgeId { get { return new Guid("80880c6e-d3f5-449a-9c8b-55c95b188563"); } } + public static Guid removeFaceAnchorMsgeId { get { return new Guid("ba429c59-067e-4548-ab01-d7129f060872"); } } }; public static class SubMessageIds { public static Guid editorInitARKit { get { return new Guid("2e5d7c45-daef-474d-bf55-1f02f0a10b69"); } } + public static Guid editorInitARKitFaceTracking { get { return new Guid("3e86ccf6-93c6-4b07-b78f-0a60f6ed4a7a"); } } }; } \ No newline at end of file diff --git a/sdkproject/Assets/UnityARKitPlugin/ARKitRemote/EditorARFaceAnchor.cs b/sdkproject/Assets/UnityARKitPlugin/ARKitRemote/EditorARFaceAnchor.cs new file mode 100644 index 000000000..7fe520149 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/ARKitRemote/EditorARFaceAnchor.cs @@ -0,0 +1,78 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using System.Text; +using UnityEngine.XR.iOS.Utils; + + +namespace UnityEngine.XR.iOS +{ + #if UNITY_EDITOR || !UNITY_IOS + public class ARFaceGeometry + { + private serializableFaceGeometry sFaceGeometry; + + public ARFaceGeometry (serializableFaceGeometry ufg) + { + sFaceGeometry = ufg; + } + + public int vertexCount { get { return sFaceGeometry.Vertices.Length; } } + public int triangleCount { get { return sFaceGeometry.TriangleIndices.Length; } } + public int textureCoordinateCount { get { return sFaceGeometry.TexCoords.Length; } } + + public Vector3 [] vertices { get { return sFaceGeometry.Vertices; } } + + public Vector2 [] textureCoordinates { get { return sFaceGeometry.TexCoords; } } + + public int [] triangleIndices { get { return sFaceGeometry.TriangleIndices; } } + + } + + public class ARFaceAnchor + { + serializableUnityARFaceAnchor m_sfa; + + public ARFaceAnchor(serializableUnityARFaceAnchor sfa) + { + m_sfa = sfa; + } + + public string identifierStr { get { return Encoding.UTF8.GetString (m_sfa.identifierStr); } } + + public Matrix4x4 transform { get { return m_sfa.worldTransform; } } + + public ARFaceGeometry faceGeometry { get { return new ARFaceGeometry (m_sfa.faceGeometry); } } + + public Dictionary blendShapes { get { return m_sfa.arBlendShapes; } } + + public Pose leftEyePose + { + get + { + return new Pose(Vector3.zero, Quaternion.identity); + } + } + + public Pose rightEyePose + { + get + { + return new Pose(Vector3.zero, Quaternion.identity); + } + } + + public Vector3 lookAtPoint + { + get + { + return Vector3.zero; + } + } + + public bool isTracked { get { return m_sfa.isTracked; } } + + + } + #endif +} diff --git a/sdkproject/Assets/UnityARKitPlugin/ARKitRemote/EditorARFaceAnchor.cs.meta b/sdkproject/Assets/UnityARKitPlugin/ARKitRemote/EditorARFaceAnchor.cs.meta new file mode 100644 index 000000000..491dd07f3 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/ARKitRemote/EditorARFaceAnchor.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: d1aa34d80d3e0455ca018dfec2ad806d +timeCreated: 1513192743 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/ARKitRemote/EditorARPlaneAnchor.cs b/sdkproject/Assets/UnityARKitPlugin/ARKitRemote/EditorARPlaneAnchor.cs new file mode 100644 index 000000000..fc555a8e6 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/ARKitRemote/EditorARPlaneAnchor.cs @@ -0,0 +1,73 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEngine.XR.iOS.Utils; +using System.Text; + +namespace UnityEngine.XR.iOS +{ + #if UNITY_EDITOR + public class ARPlaneGeometry + { + private serializablePlaneGeometry sPlaneGeometry; + + public ARPlaneGeometry (serializablePlaneGeometry ufg) + { + sPlaneGeometry = ufg; + } + + public int vertexCount { get { return sPlaneGeometry.Vertices.Length; } } + public int triangleCount { get { return sPlaneGeometry.TriangleIndices.Length; } } + public int textureCoordinateCount { get { return sPlaneGeometry.TexCoords.Length; } } + public int boundaryVertexCount { get { return sPlaneGeometry.BoundaryVertices.Length; } } + + public Vector3 [] vertices { get { return sPlaneGeometry.Vertices; } } + + public Vector2 [] textureCoordinates { get { return sPlaneGeometry.TexCoords; } } + + public int [] triangleIndices { get { return sPlaneGeometry.TriangleIndices; } } + + public Vector3 [] boundaryVertices { get { return sPlaneGeometry.BoundaryVertices; } } + + } + + public class ARPlaneAnchor + { + serializableUnityARPlaneAnchor m_spa; + + public ARPlaneAnchor(serializableUnityARPlaneAnchor spa) + { + m_spa = spa; + } + + public string identifier { get { return Encoding.UTF8.GetString (m_spa.identifierStr); } } + + public Matrix4x4 transform { get { return m_spa.worldTransform; } } + + public ARPlaneGeometry planeGeometry { + get { + return new ARPlaneGeometry (m_spa.planeGeometry); + } + } + + public ARPlaneAnchorAlignment alignment { + get { + return m_spa.planeAlignment; + } + } + + public Vector3 extent { + get { + return new Vector3 (m_spa.extent.x, m_spa.extent.y, m_spa.extent.z); + } + } + + public Vector3 center { + get { + return new Vector3 (m_spa.center.x, m_spa.center.y, m_spa.center.z); + } + } + + } + #endif +} diff --git a/sdkproject/Assets/UnityARKitPlugin/ARKitRemote/EditorARPlaneAnchor.cs.meta b/sdkproject/Assets/UnityARKitPlugin/ARKitRemote/EditorARPlaneAnchor.cs.meta new file mode 100644 index 000000000..30919cf0f --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/ARKitRemote/EditorARPlaneAnchor.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: d7917239de65543aabc5363138de68b8 +timeCreated: 1517369156 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/ARKitRemote/EditorTestScene.unity b/sdkproject/Assets/UnityARKitPlugin/ARKitRemote/EditorTestScene.unity index c7b40683a..61c22ad69 100644 --- a/sdkproject/Assets/UnityARKitPlugin/ARKitRemote/EditorTestScene.unity +++ b/sdkproject/Assets/UnityARKitPlugin/ARKitRemote/EditorTestScene.unity @@ -418,53 +418,6 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: 5587c957048494a2f96db36e0995449e, type: 3} m_Name: m_EditorClassIdentifier: ---- !u!1001 &632713106 -Prefab: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - m_TransformParent: {fileID: 0} - m_Modifications: - - target: {fileID: 4661046637869644, guid: 8ce7d6271a01a4274a00066492aed04a, type: 2} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 4661046637869644, guid: 8ce7d6271a01a4274a00066492aed04a, type: 2} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 4661046637869644, guid: 8ce7d6271a01a4274a00066492aed04a, type: 2} - propertyPath: m_LocalPosition.z - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 4661046637869644, guid: 8ce7d6271a01a4274a00066492aed04a, type: 2} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 4661046637869644, guid: 8ce7d6271a01a4274a00066492aed04a, type: 2} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 4661046637869644, guid: 8ce7d6271a01a4274a00066492aed04a, type: 2} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 4661046637869644, guid: 8ce7d6271a01a4274a00066492aed04a, type: 2} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 4661046637869644, guid: 8ce7d6271a01a4274a00066492aed04a, type: 2} - propertyPath: m_RootOrder - value: 6 - objectReference: {fileID: 0} - - target: {fileID: 114217095398060286, guid: 8ce7d6271a01a4274a00066492aed04a, - type: 2} - propertyPath: getPointCloud - value: 1 - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_ParentPrefab: {fileID: 100100000, guid: 8ce7d6271a01a4274a00066492aed04a, type: 2} - m_IsPrefabParent: 0 --- !u!1 &754164519 GameObject: m_ObjectHideFlags: 0 @@ -574,7 +527,7 @@ Transform: m_Children: - {fileID: 1428923966} m_Father: {fileID: 0} - m_RootOrder: 7 + m_RootOrder: 6 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1428923965 GameObject: @@ -588,7 +541,6 @@ GameObject: - component: {fileID: 1428923970} - component: {fileID: 1428923969} - component: {fileID: 1428923968} - - component: {fileID: 1428923967} m_Layer: 0 m_Name: HitCube m_TagString: Untagged @@ -609,7 +561,7 @@ Transform: m_Father: {fileID: 1320907943} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!114 &1428923967 +--- !u!114 &1428923968 MonoBehaviour: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} @@ -617,26 +569,14 @@ MonoBehaviour: m_GameObject: {fileID: 1428923965} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 6e5621b71c5c74d94ac88603287035e2, type: 3} + m_Script: {fileID: 11500000, guid: 6941ec02ead994c9b848d640887441f1, type: 3} m_Name: m_EditorClassIdentifier: m_HitTransform: {fileID: 1320907943} maxRayDistance: 30 - collisionLayerMask: + collisionLayer: serializedVersion: 2 m_Bits: 1024 ---- !u!114 &1428923968 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1428923965} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 6941ec02ead994c9b848d640887441f1, type: 3} - m_Name: - m_EditorClassIdentifier: - m_HitTransform: {fileID: 1320907943} --- !u!23 &1428923969 MeshRenderer: m_ObjectHideFlags: 0 diff --git a/sdkproject/Assets/UnityARKitPlugin/ARKitRemote/ObjectSerializationExtension.cs b/sdkproject/Assets/UnityARKitPlugin/ARKitRemote/ObjectSerializationExtension.cs index a898bac1f..03cb74d1f 100644 --- a/sdkproject/Assets/UnityARKitPlugin/ARKitRemote/ObjectSerializationExtension.cs +++ b/sdkproject/Assets/UnityARKitPlugin/ARKitRemote/ObjectSerializationExtension.cs @@ -3,7 +3,7 @@ using System.Runtime.Serialization.Formatters.Binary; using System.IO; -namespace Utils +namespace UnityEngine.XR.iOS.Utils { //Extension class to provide serialize / deserialize methods to object. //src: http://stackoverflow.com/questions/1446547/how-to-convert-an-object-to-a-byte-array-in-c-sharp diff --git a/sdkproject/Assets/UnityARKitPlugin/ARKitRemote/SerializableObjects.cs b/sdkproject/Assets/UnityARKitPlugin/ARKitRemote/SerializableObjects.cs index 76b9f73bf..9a7f00d94 100644 --- a/sdkproject/Assets/UnityARKitPlugin/ARKitRemote/SerializableObjects.cs +++ b/sdkproject/Assets/UnityARKitPlugin/ARKitRemote/SerializableObjects.cs @@ -2,8 +2,9 @@ using UnityEngine; using UnityEngine.XR.iOS; using System.Text; +using System.Collections.Generic; -namespace Utils +namespace UnityEngine.XR.iOS.Utils { /// /// Since unity doesn't flag the Vector4 as serializable, we @@ -240,9 +241,11 @@ public class serializableUnityARCamera public serializableUnityARLightData lightData; public serializablePointCloud pointCloud; public serializableUnityARMatrix4x4 displayTransform; + public ARWorldMappingStatus worldMappingStatus; - public serializableUnityARCamera( serializableUnityARMatrix4x4 wt, serializableUnityARMatrix4x4 pm, ARTrackingState ats, ARTrackingStateReason atsr, UnityVideoParams uvp, UnityARLightData lightDat, serializableUnityARMatrix4x4 dt, serializablePointCloud spc) + public serializableUnityARCamera( serializableUnityARMatrix4x4 wt, serializableUnityARMatrix4x4 pm, ARTrackingState ats, ARTrackingStateReason atsr, UnityVideoParams uvp, UnityARLightData lightDat, serializableUnityARMatrix4x4 dt, serializablePointCloud spc, + ARWorldMappingStatus awms) { worldTransform = wt; projectionMatrix = pm; @@ -252,21 +255,140 @@ public serializableUnityARCamera( serializableUnityARMatrix4x4 wt, serializableU lightData = lightDat; displayTransform = dt; pointCloud = spc; + worldMappingStatus = awms; } - + #if UNITY_EDITOR + public static implicit operator UnityARCamera(serializableUnityARCamera rValue) + { + return new UnityARCamera (rValue.worldTransform, rValue.projectionMatrix, rValue.trackingState, rValue.trackingReason, rValue.videoParams, rValue.lightData, rValue.displayTransform, rValue.pointCloud, rValue.worldMappingStatus); + } + #else //!UNITY_EDITOR public static implicit operator serializableUnityARCamera(UnityARCamera rValue) { - return new serializableUnityARCamera(rValue.worldTransform, rValue.projectionMatrix, rValue.trackingState, rValue.trackingReason, rValue.videoParams, rValue.lightData, rValue.displayTransform, rValue.pointCloudData); + return new serializableUnityARCamera(rValue.worldTransform, rValue.projectionMatrix, rValue.trackingState, rValue.trackingReason, rValue.videoParams, rValue.lightData, rValue.displayTransform, rValue.pointCloud, rValue.worldMappingStatus); } + #endif + }; - public static implicit operator UnityARCamera(serializableUnityARCamera rValue) + [Serializable] + public class serializablePlaneGeometry + { + public byte [] vertices; + public byte [] texCoords; + public byte [] triIndices; + public byte[] boundaryVertices; + + + public serializablePlaneGeometry(byte [] inputVertices, byte [] inputTexCoords, byte [] inputTriIndices, byte [] boundaryVerts) { - return new UnityARCamera (rValue.worldTransform, rValue.projectionMatrix, rValue.trackingState, rValue.trackingReason, rValue.videoParams, rValue.lightData, rValue.displayTransform, rValue.pointCloud); + vertices = inputVertices; + texCoords = inputTexCoords; + triIndices = inputTriIndices; + boundaryVertices = boundaryVerts; + + } + + #if !UNITY_EDITOR + public static implicit operator serializablePlaneGeometry(ARPlaneGeometry planeGeom) + { + if (planeGeom.vertexCount != 0 && planeGeom.textureCoordinateCount != 0 && planeGeom.triangleCount != 0) + { + Vector3 [] planeVertices = planeGeom.vertices; + byte [] cbVerts = new byte[planeGeom.vertexCount * sizeof(float) * 3]; + Buffer.BlockCopy( planeVertices, 0, cbVerts, 0, planeGeom.vertexCount * sizeof(float) * 3 ); + + Vector3 [] boundaryVertices = planeGeom.boundaryVertices; + byte [] cbBVerts = new byte[planeGeom.boundaryVertexCount * sizeof(float) * 3]; + Buffer.BlockCopy( boundaryVertices, 0, cbBVerts, 0, planeGeom.boundaryVertexCount * sizeof(float) * 3 ); + + + Vector2 [] planeTexCoords = planeGeom.textureCoordinates; + byte [] cbTexCoords = new byte[planeGeom.textureCoordinateCount * sizeof(float) * 2]; + Buffer.BlockCopy( planeTexCoords, 0, cbTexCoords, 0, planeGeom.textureCoordinateCount * sizeof(float) * 2 ); + + + int [] triIndices = planeGeom.triangleIndices; + byte [] cbTriIndices = triIndices.SerializeToByteArray(); + + return new serializablePlaneGeometry (cbVerts, cbTexCoords, cbTriIndices, cbBVerts); + } + else + { + return new serializablePlaneGeometry(null, null, null, null); + } + } + #endif //!UNITY_EDITOR + + public Vector3 [] Vertices { + get { + if (vertices != null) { + int numVectors = vertices.Length / (3 * sizeof(float)); + Vector3[] verticesVec = new Vector3[numVectors]; + for (int i = 0; i < numVectors; i++) { + int bufferStart = i * 3; + verticesVec [i].x = BitConverter.ToSingle (vertices, (bufferStart) * sizeof(float)); + verticesVec [i].y = BitConverter.ToSingle (vertices, (bufferStart + 1) * sizeof(float)); + verticesVec [i].z = BitConverter.ToSingle (vertices, (bufferStart + 2) * sizeof(float)); + + } + return verticesVec; + } else { + return null; + } + } + } + + public Vector3 [] BoundaryVertices { + get { + if (boundaryVertices != null) { + int numVectors = boundaryVertices.Length / (3 * sizeof(float)); + Vector3[] verticesVec = new Vector3[numVectors]; + for (int i = 0; i < numVectors; i++) { + int bufferStart = i * 3; + verticesVec [i].x = BitConverter.ToSingle (boundaryVertices, (bufferStart) * sizeof(float)); + verticesVec [i].y = BitConverter.ToSingle (boundaryVertices, (bufferStart + 1) * sizeof(float)); + verticesVec [i].z = BitConverter.ToSingle (boundaryVertices, (bufferStart + 2) * sizeof(float)); + + } + return verticesVec; + } else { + return null; + } + } } + public Vector2 [] TexCoords { + get { + if (texCoords != null) { + int numVectors = texCoords.Length / (2 * sizeof(float)); + Vector2[] texCoordVec = new Vector2[numVectors]; + for (int i = 0; i < numVectors; i++) { + int bufferStart = i * 2; + texCoordVec [i].x = BitConverter.ToSingle (texCoords, (bufferStart) * sizeof(float)); + texCoordVec [i].y = BitConverter.ToSingle (texCoords, (bufferStart + 1) * sizeof(float)); + + } + return texCoordVec; + } else { + return null; + } + } + } + + public int [] TriangleIndices { + get { + if (triIndices != null) { + int[] triIndexVec = triIndices.Deserialize(); + return triIndexVec; + } else { + return null; + } + } + } }; + [Serializable] public class serializableUnityARPlaneAnchor { @@ -274,94 +396,220 @@ public class serializableUnityARPlaneAnchor public SerializableVector4 center; public SerializableVector4 extent; public ARPlaneAnchorAlignment planeAlignment; + public serializablePlaneGeometry planeGeometry; public byte[] identifierStr; public serializableUnityARPlaneAnchor( serializableUnityARMatrix4x4 wt, SerializableVector4 ctr, SerializableVector4 ext, ARPlaneAnchorAlignment apaa, - byte [] idstr) + serializablePlaneGeometry spg, byte [] idstr) { worldTransform = wt; center = ctr; extent = ext; planeAlignment = apaa; identifierStr = idstr; + planeGeometry = spg; } + #if UNITY_EDITOR + public static implicit operator ARPlaneAnchor(serializableUnityARPlaneAnchor rValue) + { + return new ARPlaneAnchor(rValue); + } + #else //!UNITY_EDITOR public static implicit operator serializableUnityARPlaneAnchor(ARPlaneAnchor rValue) { serializableUnityARMatrix4x4 wt = rValue.transform; SerializableVector4 ctr = new SerializableVector4 (rValue.center.x, rValue.center.y, rValue.center.z, 1.0f); SerializableVector4 ext = new SerializableVector4 (rValue.extent.x, rValue.extent.y, rValue.extent.z, 1.0f); byte[] idstr = Encoding.UTF8.GetBytes (rValue.identifier); - return new serializableUnityARPlaneAnchor(wt, ctr, ext, rValue.alignment, idstr); + serializablePlaneGeometry spg = rValue.planeGeometry; + return new serializableUnityARPlaneAnchor(wt, ctr, ext, rValue.alignment, spg, idstr); } + #endif - public static implicit operator ARPlaneAnchor(serializableUnityARPlaneAnchor rValue) + }; + + + [Serializable] + public class serializableFaceGeometry + { + public byte [] vertices; + public byte [] texCoords; + public byte [] triIndices; + + + public serializableFaceGeometry(byte [] inputVertices, byte [] inputTexCoords, byte [] inputTriIndices) { - ARPlaneAnchor retValue; + vertices = inputVertices; + texCoords = inputTexCoords; + triIndices = inputTriIndices; - retValue.identifier = Encoding.UTF8.GetString (rValue.identifierStr); - retValue.center = new Vector3 (rValue.center.x, rValue.center.y, rValue.center.z); - retValue.extent = new Vector3 (rValue.extent.x, rValue.extent.y, rValue.extent.z); - retValue.alignment = rValue.planeAlignment; - retValue.transform = rValue.worldTransform; - - return retValue; + } + + #if !UNITY_EDITOR + public static implicit operator serializableFaceGeometry(ARFaceGeometry faceGeom) + { + if (faceGeom.vertexCount != 0 && faceGeom.textureCoordinateCount != 0 && faceGeom.triangleCount != 0) + { + Vector3 [] faceVertices = faceGeom.vertices; + byte [] cbVerts = new byte[faceGeom.vertexCount * sizeof(float) * 3]; + Buffer.BlockCopy( faceVertices, 0, cbVerts, 0, faceGeom.vertexCount * sizeof(float) * 3 ); + + + Vector2 [] faceTexCoords = faceGeom.textureCoordinates; + byte [] cbTexCoords = new byte[faceGeom.textureCoordinateCount * sizeof(float) * 2]; + Buffer.BlockCopy( faceTexCoords, 0, cbTexCoords, 0, faceGeom.textureCoordinateCount * sizeof(float) * 2 ); + + + int [] triIndices = faceGeom.triangleIndices; + byte [] cbTriIndices = triIndices.SerializeToByteArray(); + + return new serializableFaceGeometry (cbVerts, cbTexCoords, cbTriIndices); + } + else + { + return new serializableFaceGeometry(null, null, null); + } + } + #endif //!UNITY_EDITOR + + public Vector3 [] Vertices { + get { + if (vertices != null) { + int numVectors = vertices.Length / (3 * sizeof(float)); + Vector3[] verticesVec = new Vector3[numVectors]; + for (int i = 0; i < numVectors; i++) { + int bufferStart = i * 3; + verticesVec [i].x = BitConverter.ToSingle (vertices, (bufferStart) * sizeof(float)); + verticesVec [i].y = BitConverter.ToSingle (vertices, (bufferStart + 1) * sizeof(float)); + verticesVec [i].z = BitConverter.ToSingle (vertices, (bufferStart + 2) * sizeof(float)); + + } + return verticesVec; + } else { + return null; + } + } + } + + public Vector2 [] TexCoords { + get { + if (texCoords != null) { + int numVectors = texCoords.Length / (2 * sizeof(float)); + Vector2[] texCoordVec = new Vector2[numVectors]; + for (int i = 0; i < numVectors; i++) { + int bufferStart = i * 2; + texCoordVec [i].x = BitConverter.ToSingle (texCoords, (bufferStart) * sizeof(float)); + texCoordVec [i].y = BitConverter.ToSingle (texCoords, (bufferStart + 1) * sizeof(float)); + + } + return texCoordVec; + } else { + return null; + } + } + } + + public int [] TriangleIndices { + get { + if (triIndices != null) { + int[] triIndexVec = triIndices.Deserialize(); + return triIndexVec; + } else { + return null; + } + } } }; + + [Serializable] + public class serializableUnityARFaceAnchor + { + public serializableUnityARMatrix4x4 worldTransform; + public serializableFaceGeometry faceGeometry; + public Dictionary arBlendShapes; + public byte[] identifierStr; + public bool isTracked; + + public serializableUnityARFaceAnchor( serializableUnityARMatrix4x4 wt, serializableFaceGeometry fg, Dictionary bs, byte [] idstr, bool bIsTracked) + { + worldTransform = wt; + faceGeometry = fg; + arBlendShapes = bs; + identifierStr = idstr; + isTracked = bIsTracked; + } + + + #if UNITY_EDITOR + public static implicit operator ARFaceAnchor(serializableUnityARFaceAnchor rValue) + { + return new ARFaceAnchor(rValue); + } + #else + public static implicit operator serializableUnityARFaceAnchor(ARFaceAnchor rValue) + { + serializableUnityARMatrix4x4 wt = rValue.transform; + serializableFaceGeometry sfg = rValue.faceGeometry; + byte[] idstr = Encoding.UTF8.GetBytes (rValue.identifierStr); + return new serializableUnityARFaceAnchor(wt, sfg, rValue.blendShapes, idstr, rValue.isTracked); + } + #endif + }; + + [Serializable] public class serializablePointCloud { public byte [] pointCloudData; + public byte[] pointCloudIds; - public serializablePointCloud(byte [] inputPoints) + public serializablePointCloud(byte [] inputPoints, byte [] inputIds) { pointCloudData = inputPoints; + pointCloudIds = inputIds; } - public static implicit operator serializablePointCloud(Vector3 [] vecPointCloud) + #if !UNITY_EDITOR + public static implicit operator serializablePointCloud(ARPointCloud pointCloud) { - if (vecPointCloud != null) + byte[] pointsBuf = null; + byte[] idsBuf = null; + + if (pointCloud != null) { - byte [] createBuf = new byte[vecPointCloud.Length * sizeof(float) * 3]; - for(int i = 0; i < vecPointCloud.Length; i++) + Vector3[] vecPointCloud = pointCloud.Points; + if (vecPointCloud != null && vecPointCloud.Length > 0) { - int bufferStart = i * 3; - Buffer.BlockCopy( BitConverter.GetBytes( vecPointCloud[i].x ), 0, createBuf, (bufferStart)*sizeof(float), sizeof(float) ); - Buffer.BlockCopy( BitConverter.GetBytes( vecPointCloud[i].y ), 0, createBuf, (bufferStart+1)*sizeof(float), sizeof(float) ); - Buffer.BlockCopy( BitConverter.GetBytes( vecPointCloud[i].z ), 0, createBuf, (bufferStart+2)*sizeof(float), sizeof(float) ); - + pointsBuf = new byte[vecPointCloud.Length * sizeof(float) * 3]; + for(int i = 0; i < vecPointCloud.Length; i++) + { + int bufferStart = i * 3; + Buffer.BlockCopy( BitConverter.GetBytes( vecPointCloud[i].x ), 0, pointsBuf, (bufferStart)*sizeof(float), sizeof(float) ); + Buffer.BlockCopy( BitConverter.GetBytes( vecPointCloud[i].y ), 0, pointsBuf, (bufferStart+1)*sizeof(float), sizeof(float) ); + Buffer.BlockCopy( BitConverter.GetBytes( vecPointCloud[i].z ), 0, pointsBuf, (bufferStart+2)*sizeof(float), sizeof(float) ); + + } } - return new serializablePointCloud (createBuf); - } - else - { - return new serializablePointCloud(null); - } - } - public static implicit operator Vector3 [] (serializablePointCloud spc) - { - if (spc.pointCloudData != null) - { - int numVectors = spc.pointCloudData.Length / (3 * sizeof(float)); - Vector3 [] pointCloudVec = new Vector3[numVectors]; - for (int i = 0; i < numVectors; i++) + UInt64 [] idsPointCloud = pointCloud.Identifiers; + if (idsPointCloud != null && idsPointCloud.Length > 0) { - int bufferStart = i * 3; - pointCloudVec [i].x = BitConverter.ToSingle (spc.pointCloudData, (bufferStart) * sizeof(float)); - pointCloudVec [i].y = BitConverter.ToSingle (spc.pointCloudData, (bufferStart+1) * sizeof(float)); - pointCloudVec [i].z = BitConverter.ToSingle (spc.pointCloudData, (bufferStart+2) * sizeof(float)); - + idsBuf = new byte[idsPointCloud.Length * sizeof(ulong)]; + Buffer.BlockCopy( BitConverter.GetBytes( idsPointCloud[0] ), 0, idsBuf, 0, idsPointCloud.Length * sizeof(ulong) ); } - return pointCloudVec; - } - else - { - return null; } + + return new serializablePointCloud(pointsBuf, idsBuf); + } + #else //in editor + public static implicit operator ARPointCloud (serializablePointCloud spc) + { + return new ARPointCloud(spc); } + #endif }; [Serializable] @@ -371,24 +619,32 @@ public class serializableARSessionConfiguration public UnityARPlaneDetection planeDetection; public bool getPointCloudData; public bool enableLightEstimation; + public bool enableAutoFocus; - public serializableARSessionConfiguration(UnityARAlignment align, UnityARPlaneDetection planeDet, bool getPtCloud, bool enableLightEst) + public serializableARSessionConfiguration(UnityARAlignment align, UnityARPlaneDetection planeDet, bool getPtCloud, bool enableLightEst, bool enableAutoFoc) { alignment = align; planeDetection = planeDet; getPointCloudData = getPtCloud; enableLightEstimation = enableLightEst; + enableAutoFocus = enableAutoFoc; } public static implicit operator serializableARSessionConfiguration(ARKitWorldTrackingSessionConfiguration awtsc) { - return new serializableARSessionConfiguration (awtsc.alignment, awtsc.planeDetection, awtsc.getPointCloudData, awtsc.enableLightEstimation); + return new serializableARSessionConfiguration (awtsc.alignment, awtsc.planeDetection, awtsc.getPointCloudData, awtsc.enableLightEstimation, awtsc.enableAutoFocus); } public static implicit operator ARKitWorldTrackingSessionConfiguration (serializableARSessionConfiguration sasc) { - return new ARKitWorldTrackingSessionConfiguration (sasc.alignment, sasc.planeDetection, sasc.getPointCloudData, sasc.enableLightEstimation); + return new ARKitWorldTrackingSessionConfiguration (sasc.alignment, sasc.planeDetection, sasc.getPointCloudData, sasc.enableLightEstimation, sasc.enableAutoFocus); } + + public static implicit operator ARKitFaceTrackingConfiguration (serializableARSessionConfiguration sasc) + { + return new ARKitFaceTrackingConfiguration (sasc.alignment, sasc.enableLightEstimation); + } + }; [Serializable] diff --git a/sdkproject/Assets/UnityARKitPlugin/ARKitRemote/UnityRemoteVideo.cs b/sdkproject/Assets/UnityARKitPlugin/ARKitRemote/UnityRemoteVideo.cs index 144e4f5f8..2628d44b3 100644 --- a/sdkproject/Assets/UnityARKitPlugin/ARKitRemote/UnityRemoteVideo.cs +++ b/sdkproject/Assets/UnityARKitPlugin/ARKitRemote/UnityRemoteVideo.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Runtime.InteropServices; using UnityEngine; using UnityEngine.Rendering; @@ -21,7 +21,7 @@ public class UnityRemoteVideo : MonoBehaviour private GCHandle m_pinnedYArray; private GCHandle m_pinnedUVArray; - #if !UNITY_EDITOR + #if !UNITY_EDITOR && UNITY_IOS public void Start() { @@ -88,7 +88,7 @@ void OnDestroy() public void OnPreRender() { ARTextureHandles handles = m_Session.GetARVideoTextureHandles(); - if (handles.textureY == System.IntPtr.Zero || handles.textureCbCr == System.IntPtr.Zero) + if (handles.IsNull()) { return; } @@ -103,8 +103,10 @@ public void OnPreRender() m_Session.SetCapturePixelData (true, PinByteArray(ref m_pinnedYArray,YByteArrayForFrame(currentFrameIndex)), PinByteArray(ref m_pinnedUVArray,UVByteArrayForFrame(currentFrameIndex))); - connectToEditor.SendToEditor (ConnectionMessageIds.screenCaptureYMsgId, YByteArrayForFrame(1-currentFrameIndex)); - connectToEditor.SendToEditor (ConnectionMessageIds.screenCaptureUVMsgId, UVByteArrayForFrame(1-currentFrameIndex)); + connectToEditor.SendToEditor (ConnectionMessageIds.screenCaptureYMsgId, + CompressionHelper.ByteArrayCompress(YByteArrayForFrame(1-currentFrameIndex))); + connectToEditor.SendToEditor (ConnectionMessageIds.screenCaptureUVMsgId, + CompressionHelper.ByteArrayCompress(UVByteArrayForFrame(1-currentFrameIndex))); } #endif diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5.meta new file mode 100644 index 000000000..f6cce0c72 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: a01e87b51a8094ac78a016f24aa36126 +folderAsset: yes +timeCreated: 1517350660 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARImageAnchor.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARImageAnchor.meta new file mode 100644 index 000000000..892a04fb0 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARImageAnchor.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 22fdc45d7403c4fa4b40da55963ffcf1 +folderAsset: yes +timeCreated: 1517621849 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARImageAnchor/ARImagesSet_UnityLogo.asset b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARImageAnchor/ARImagesSet_UnityLogo.asset new file mode 100644 index 000000000..05b783435 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARImageAnchor/ARImagesSet_UnityLogo.asset @@ -0,0 +1,17 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 1c37f7746917f4760aa00e7ff7fd81dc, type: 3} + m_Name: ARImagesSet_UnityLogo + m_EditorClassIdentifier: + resourceGroupName: AR Rezources + referenceImages: + - {fileID: 11400000, guid: 9d6cedfb4c48647ca9007fb8cb8aa6b0, type: 2} + - {fileID: 11400000, guid: fa9c5deee83494083beea0977b5302c2, type: 2} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARImageAnchor/ARImagesSet_UnityLogo.asset.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARImageAnchor/ARImagesSet_UnityLogo.asset.meta new file mode 100644 index 000000000..f0b1671c9 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARImageAnchor/ARImagesSet_UnityLogo.asset.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 99f631f78c5d14f8cb9cc4e02da07eee +timeCreated: 1518054548 +licenseType: Pro +NativeFormatImporter: + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARImageAnchor/GenerateImageAnchor.cs b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARImageAnchor/GenerateImageAnchor.cs new file mode 100644 index 000000000..6af241143 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARImageAnchor/GenerateImageAnchor.cs @@ -0,0 +1,78 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEngine.XR.iOS; + +public class GenerateImageAnchor : MonoBehaviour { + + + [SerializeField] + private ARReferenceImage referenceImage; + + [SerializeField] + private GameObject prefabToGenerate; + + private GameObject imageAnchorGO; + + // Use this for initialization + void Start () { + UnityARSessionNativeInterface.ARImageAnchorAddedEvent += AddImageAnchor; + UnityARSessionNativeInterface.ARImageAnchorUpdatedEvent += UpdateImageAnchor; + UnityARSessionNativeInterface.ARImageAnchorRemovedEvent += RemoveImageAnchor; + + } + + void AddImageAnchor(ARImageAnchor arImageAnchor) + { + Debug.LogFormat("image anchor added[{0}] : tracked => {1}", arImageAnchor.identifier, arImageAnchor.isTracked); + if (arImageAnchor.referenceImageName == referenceImage.imageName) { + Vector3 position = UnityARMatrixOps.GetPosition (arImageAnchor.transform); + Quaternion rotation = UnityARMatrixOps.GetRotation (arImageAnchor.transform); + + imageAnchorGO = Instantiate (prefabToGenerate, position, rotation); + } + } + + void UpdateImageAnchor(ARImageAnchor arImageAnchor) + { + Debug.LogFormat("image anchor updated[{0}] : tracked => {1}", arImageAnchor.identifier, arImageAnchor.isTracked); + if (arImageAnchor.referenceImageName == referenceImage.imageName) { + if (arImageAnchor.isTracked) + { + if (!imageAnchorGO.activeSelf) + { + imageAnchorGO.SetActive(true); + } + imageAnchorGO.transform.position = UnityARMatrixOps.GetPosition(arImageAnchor.transform); + imageAnchorGO.transform.rotation = UnityARMatrixOps.GetRotation(arImageAnchor.transform); + } + else if (imageAnchorGO.activeSelf) + { + imageAnchorGO.SetActive(false); + } + } + + } + + void RemoveImageAnchor(ARImageAnchor arImageAnchor) + { + Debug.LogFormat("image anchor removed[{0}] : tracked => {1}", arImageAnchor.identifier, arImageAnchor.isTracked); + if (imageAnchorGO) { + GameObject.Destroy (imageAnchorGO); + } + + } + + void OnDestroy() + { + UnityARSessionNativeInterface.ARImageAnchorAddedEvent -= AddImageAnchor; + UnityARSessionNativeInterface.ARImageAnchorUpdatedEvent -= UpdateImageAnchor; + UnityARSessionNativeInterface.ARImageAnchorRemovedEvent -= RemoveImageAnchor; + + } + + // Update is called once per frame + void Update () { + + } +} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARImageAnchor/GenerateImageAnchor.cs.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARImageAnchor/GenerateImageAnchor.cs.meta new file mode 100644 index 000000000..68bdc0145 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARImageAnchor/GenerateImageAnchor.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 4b2be1c5634b84e8080b2a2491eca344 +timeCreated: 1517621953 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARImageAnchor/ReferenceImages.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARImageAnchor/ReferenceImages.meta new file mode 100644 index 000000000..3681235da --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARImageAnchor/ReferenceImages.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: cfa39a9dbef344f5393dc1f3a82e9d79 +folderAsset: yes +timeCreated: 1517947942 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARImageAnchor/ReferenceImages/unitylogoblackonwhite.jpg b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARImageAnchor/ReferenceImages/unitylogoblackonwhite.jpg new file mode 100644 index 000000000..e939bcdda Binary files /dev/null and b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARImageAnchor/ReferenceImages/unitylogoblackonwhite.jpg differ diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARImageAnchor/ReferenceImages/unitylogoblackonwhite.jpg.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARImageAnchor/ReferenceImages/unitylogoblackonwhite.jpg.meta new file mode 100644 index 000000000..b5bb5dfbd --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARImageAnchor/ReferenceImages/unitylogoblackonwhite.jpg.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: fd3329f8ed29741c29b3bf4b0032cab9 +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARImageAnchor/ReferenceImages/unitylogowhiteonblack.jpg b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARImageAnchor/ReferenceImages/unitylogowhiteonblack.jpg new file mode 100644 index 000000000..f6b7435a2 Binary files /dev/null and b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARImageAnchor/ReferenceImages/unitylogowhiteonblack.jpg differ diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARImageAnchor/ReferenceImages/unitylogowhiteonblack.jpg.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARImageAnchor/ReferenceImages/unitylogowhiteonblack.jpg.meta new file mode 100644 index 000000000..aa393cc77 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARImageAnchor/ReferenceImages/unitylogowhiteonblack.jpg.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: f5f7b2e9e954b4a78ab3ac63fb17fb9c +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARImageAnchor/UnityARImageAnchor.unity b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARImageAnchor/UnityARImageAnchor.unity new file mode 100644 index 000000000..012e91ca1 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARImageAnchor/UnityARImageAnchor.unity @@ -0,0 +1,809 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!29 &1 +OcclusionCullingSettings: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_OcclusionBakeSettings: + smallestOccluder: 5 + smallestHole: 0.25 + backfaceThreshold: 100 + m_SceneGUID: 00000000000000000000000000000000 + m_OcclusionCullingData: {fileID: 0} +--- !u!104 &2 +RenderSettings: + m_ObjectHideFlags: 0 + serializedVersion: 8 + m_Fog: 0 + m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_FogMode: 3 + m_FogDensity: 0.01 + m_LinearFogStart: 0 + m_LinearFogEnd: 300 + m_AmbientSkyColor: {r: 0.2, g: 0.2, b: 0.2, a: 0} + m_AmbientEquatorColor: {r: 0.098908, g: 0.100485, b: 0.119403, a: 1} + m_AmbientGroundColor: {r: 0.098908, g: 0.100485, b: 0.119403, a: 1} + m_AmbientIntensity: 1 + m_AmbientMode: 3 + m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} + m_SkyboxMaterial: {fileID: 0} + m_HaloStrength: 0.5 + m_FlareStrength: 1 + m_FlareFadeSpeed: 3 + m_HaloTexture: {fileID: 0} + m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0} + m_DefaultReflectionMode: 0 + m_DefaultReflectionResolution: 128 + m_ReflectionBounces: 1 + m_ReflectionIntensity: 1 + m_CustomReflection: {fileID: 0} + m_Sun: {fileID: 0} + m_IndirectSpecularColor: {r: 0, g: 0, b: 0, a: 1} +--- !u!157 &4 +LightmapSettings: + m_ObjectHideFlags: 0 + serializedVersion: 11 + m_GIWorkflowMode: 1 + m_GISettings: + serializedVersion: 2 + m_BounceScale: 1 + m_IndirectOutputScale: 1 + m_AlbedoBoost: 1 + m_TemporalCoherenceThreshold: 1 + m_EnvironmentLightingMode: 0 + m_EnableBakedLightmaps: 1 + m_EnableRealtimeLightmaps: 0 + m_LightmapEditorSettings: + serializedVersion: 9 + m_Resolution: 1 + m_BakeResolution: 50 + m_TextureWidth: 1024 + m_TextureHeight: 1024 + m_AO: 1 + m_AOMaxDistance: 1 + m_CompAOExponent: 1 + m_CompAOExponentDirect: 0 + m_Padding: 2 + m_LightmapParameters: {fileID: 0} + m_LightmapsBakeMode: 1 + m_TextureCompression: 0 + m_FinalGather: 0 + m_FinalGatherFiltering: 1 + m_FinalGatherRayCount: 256 + m_ReflectionCompression: 2 + m_MixedBakeMode: 1 + m_BakeBackend: 0 + m_PVRSampling: 1 + m_PVRDirectSampleCount: 32 + m_PVRSampleCount: 500 + m_PVRBounces: 2 + m_PVRFilterTypeDirect: 0 + m_PVRFilterTypeIndirect: 0 + m_PVRFilterTypeAO: 0 + m_PVRFilteringMode: 1 + m_PVRCulling: 1 + m_PVRFilteringGaussRadiusDirect: 1 + m_PVRFilteringGaussRadiusIndirect: 5 + m_PVRFilteringGaussRadiusAO: 2 + m_PVRFilteringAtrousPositionSigmaDirect: 0.5 + m_PVRFilteringAtrousPositionSigmaIndirect: 2 + m_PVRFilteringAtrousPositionSigmaAO: 1 + m_ShowResolutionOverlay: 1 + m_LightingDataAsset: {fileID: 0} + m_UseShadowmask: 1 +--- !u!196 &5 +NavMeshSettings: + serializedVersion: 2 + m_ObjectHideFlags: 0 + m_BuildSettings: + serializedVersion: 2 + agentTypeID: 0 + agentRadius: 0.4 + agentHeight: 1.8 + agentSlope: 45 + agentClimb: 0.9 + ledgeDropHeight: 0 + maxJumpAcrossDistance: 0 + minRegionArea: 2 + manualCellSize: 0 + cellSize: 0.13333333 + manualTileSize: 0 + tileSize: 256 + accuratePlacement: 0 + debug: + m_Flags: 0 + m_NavMeshData: {fileID: 0} +--- !u!1 &7 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 9} + - component: {fileID: 10} + - component: {fileID: 12} + - component: {fileID: 13} + - component: {fileID: 11} + - component: {fileID: 8} + - component: {fileID: 14} + m_Layer: 0 + m_Name: Main Camera + m_TagString: MainCamera + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &8 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b58ecea7a196242dd879c814ac05084c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_ClearMaterial: {fileID: 2100000, guid: f1d9352050a75486f878ab19fa578f16, type: 2} +--- !u!4 &9 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 229804521} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!20 &10 +Camera: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 + serializedVersion: 2 + m_ClearFlags: 3 + m_BackGroundColor: {r: 0.19788063, g: 0.2953552, b: 0.44852942, a: 0.019608} + m_NormalizedViewPortRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + near clip plane: 0.1 + far clip plane: 30 + field of view: 60 + orthographic: 0 + orthographic size: 100 + m_Depth: -1 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingPath: -1 + m_TargetTexture: {fileID: 0} + m_TargetDisplay: 0 + m_TargetEye: 3 + m_HDR: 0 + m_AllowMSAA: 1 + m_AllowDynamicResolution: 0 + m_ForceIntoRT: 0 + m_OcclusionCulling: 1 + m_StereoConvergence: 10 + m_StereoSeparation: 0.022 +--- !u!81 &11 +AudioListener: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 +--- !u!92 &12 +Behaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 +--- !u!124 &13 +Behaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 +--- !u!114 &14 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: ce437cef046e841aabd6070890e79d41, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &16 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 20} + - component: {fileID: 29} + - component: {fileID: 17} + m_Layer: 0 + m_Name: Directional light + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &17 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 16} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5587c957048494a2f96db36e0995449e, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!4 &20 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 16} + m_LocalRotation: {x: -0.31668198, y: -0.33227497, z: 0.119525984, w: -0.8803519} + m_LocalPosition: {x: -2.359002, y: 2.21, z: -3.580904} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!108 &29 +Light: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 16} + m_Enabled: 1 + serializedVersion: 8 + m_Type: 1 + m_Color: {r: 1, g: 0.997495, b: 0.955224, a: 1} + m_Intensity: 1 + m_Range: 10 + m_SpotAngle: 30 + m_CookieSize: 10 + m_Shadows: + m_Type: 0 + m_Resolution: -1 + m_CustomResolution: -1 + m_Strength: 1 + m_Bias: 0.05 + m_NormalBias: 0.4 + m_NearPlane: 0.2 + m_Cookie: {fileID: 0} + m_DrawHalo: 0 + m_Flare: {fileID: 0} + m_RenderMode: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_Lightmapping: 1 + m_AreaSize: {x: 1, y: 1} + m_BounceIntensity: 1 + m_ColorTemperature: 6570 + m_UseColorTemperature: 0 + m_ShadowRadius: 0 + m_ShadowAngle: 0 +--- !u!1 &229804520 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 229804521} + m_Layer: 0 + m_Name: CameraParent + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &229804521 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 229804520} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 9} + m_Father: {fileID: 0} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &236723161 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 236723163} + - component: {fileID: 236723162} + m_Layer: 0 + m_Name: GenerateImageAnchorCube + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &236723162 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 236723161} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4b2be1c5634b84e8080b2a2491eca344, type: 3} + m_Name: + m_EditorClassIdentifier: + referenceImage: {fileID: 11400000, guid: fa9c5deee83494083beea0977b5302c2, type: 2} + prefabToGenerate: {fileID: 1483093577405612, guid: 9c8a1fc58df6b4d8c8c68e2883659c8a, + type: 2} +--- !u!4 &236723163 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 236723161} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 386, y: 718, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!23 &732268494 +MeshRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 922811256} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_Materials: + - {fileID: 2100000, guid: 66fbc43c67b564bb4a4c2c2dcd6c1970, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 1 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!65 &732268495 +BoxCollider: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 922811256} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 1, y: 1, z: 1} + m_Center: {x: 0, y: 0, z: 0} +--- !u!33 &732268496 +MeshFilter: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 922811256} + m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} +--- !u!4 &732268497 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 922811256} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 1} + m_LocalScale: {x: 0.3058, y: 0.3058, z: 0.3058} + m_Children: + - {fileID: 1563586580} + - {fileID: 985089624} + - {fileID: 2134794027} + m_Father: {fileID: 0} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &922811256 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 732268497} + - component: {fileID: 732268496} + - component: {fileID: 732268495} + - component: {fileID: 732268494} + m_Layer: 0 + m_Name: RandomCube + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &925273665 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 925273666} + - component: {fileID: 925273667} + m_Layer: 0 + m_Name: GenerateImageAnchor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &925273666 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 925273665} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &925273667 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 925273665} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4b2be1c5634b84e8080b2a2491eca344, type: 3} + m_Name: + m_EditorClassIdentifier: + referenceImage: {fileID: 11400000, guid: 9d6cedfb4c48647ca9007fb8cb8aa6b0, type: 2} + prefabToGenerate: {fileID: 1283292900242102, guid: 8855f6e449b9d4d3fae7f0a1a5ff9c2f, + type: 2} +--- !u!1 &985089623 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 985089624} + - component: {fileID: 985089627} + - component: {fileID: 985089626} + - component: {fileID: 985089625} + m_Layer: 0 + m_Name: XAxis + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &985089624 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 985089623} + m_LocalRotation: {x: -0.0000037178397, y: 0.0000024586916, z: -0.7071033, w: -0.7071102} + m_LocalPosition: {x: 1, y: 0, z: 0} + m_LocalScale: {x: 0.03270111, y: 1.3080443, z: 0.03270111} + m_Children: [] + m_Father: {fileID: 732268497} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 10.865001, y: 2.6820002, z: 90} +--- !u!23 &985089625 +MeshRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 985089623} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_Materials: + - {fileID: 2100000, guid: aaae8be92ba59487a9946818d7a2017f, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 1 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!65 &985089626 +BoxCollider: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 985089623} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 1, y: 1, z: 1} + m_Center: {x: 0, y: 0, z: 0} +--- !u!33 &985089627 +MeshFilter: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 985089623} + m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} +--- !u!1 &1121666029 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1121666033} + - component: {fileID: 1121666030} + m_Layer: 0 + m_Name: ARCameraManager + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1121666030 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1121666029} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 462d46d2423bb4f738d2497a397b1590, type: 3} + m_Name: + m_EditorClassIdentifier: + m_camera: {fileID: 10} + startAlignment: 0 + planeDetection: 0 + getPointCloud: 1 + enableLightEstimation: 1 + enableAutoFocus: 1 + detectionImages: {fileID: 11400000, guid: 99f631f78c5d14f8cb9cc4e02da07eee, type: 2} + maximumNumberOfTrackedImages: 2 + detectionObjects: {fileID: 0} +--- !u!4 &1121666033 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1121666029} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1563586579 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1563586580} + - component: {fileID: 1563586583} + - component: {fileID: 1563586582} + - component: {fileID: 1563586581} + m_Layer: 0 + m_Name: YAxis + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1563586580 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1563586579} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 1, z: 0} + m_LocalScale: {x: 0.03270111, y: 1.3080444, z: 0.032701116} + m_Children: [] + m_Father: {fileID: 732268497} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!23 &1563586581 +MeshRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1563586579} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_Materials: + - {fileID: 2100000, guid: 8fa2e9e7c08844dd4a8d581610839228, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 1 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!65 &1563586582 +BoxCollider: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1563586579} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 1, y: 1, z: 1} + m_Center: {x: 0, y: 0, z: 0} +--- !u!33 &1563586583 +MeshFilter: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1563586579} + m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} +--- !u!1 &2134794026 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 2134794027} + - component: {fileID: 2134794030} + - component: {fileID: 2134794029} + - component: {fileID: 2134794028} + m_Layer: 0 + m_Name: ZAxis + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2134794027 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2134794026} + m_LocalRotation: {x: 0.49999562, y: 0.5000044, z: 0.49999562, w: 0.5000044} + m_LocalPosition: {x: -0.05, y: 0, z: 1} + m_LocalScale: {x: 0.03270111, y: 1.3080443, z: 0.032701112} + m_Children: [] + m_Father: {fileID: 732268497} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 90, z: 89.999} +--- !u!23 &2134794028 +MeshRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2134794026} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_Materials: + - {fileID: 2100000, guid: d55ccb0db00e54a1696c1e96094d706d, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 1 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!65 &2134794029 +BoxCollider: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2134794026} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 1, y: 1, z: 1} + m_Center: {x: 0, y: 0, z: 0} +--- !u!33 &2134794030 +MeshFilter: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2134794026} + m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARImageAnchor/UnityARImageAnchor.unity.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARImageAnchor/UnityARImageAnchor.unity.meta new file mode 100644 index 000000000..a60fb7ffa --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARImageAnchor/UnityARImageAnchor.unity.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: befc06ba4fe0046439ef5dac5a33c0e7 +timeCreated: 1517621937 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARImageAnchor/UnityLogoReferenceImage.asset b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARImageAnchor/UnityLogoReferenceImage.asset new file mode 100644 index 000000000..4d1344140 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARImageAnchor/UnityLogoReferenceImage.asset @@ -0,0 +1,16 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0414577f9c6b244e696949154859a4af, type: 3} + m_Name: UnityLogoReferenceImage + m_EditorClassIdentifier: + imageName: unitylogoreferenceimage + imageTexture: {fileID: 2800000, guid: fd3329f8ed29741c29b3bf4b0032cab9, type: 3} + physicalSize: 0.06 diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARImageAnchor/UnityLogoReferenceImage.asset.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARImageAnchor/UnityLogoReferenceImage.asset.meta new file mode 100644 index 000000000..5408ce888 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARImageAnchor/UnityLogoReferenceImage.asset.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: fa9c5deee83494083beea0977b5302c2 +timeCreated: 1520468043 +licenseType: Pro +NativeFormatImporter: + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARImageAnchor/UnityLogoWhiteOnBlack.asset b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARImageAnchor/UnityLogoWhiteOnBlack.asset new file mode 100644 index 000000000..f8c18ddf9 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARImageAnchor/UnityLogoWhiteOnBlack.asset @@ -0,0 +1,16 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0414577f9c6b244e696949154859a4af, type: 3} + m_Name: UnityLogoWhiteOnBlack + m_EditorClassIdentifier: + imageName: unitywhiteonblack + imageTexture: {fileID: 2800000, guid: f5f7b2e9e954b4a78ab3ac63fb17fb9c, type: 3} + physicalSize: 0.06 diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARImageAnchor/UnityLogoWhiteOnBlack.asset.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARImageAnchor/UnityLogoWhiteOnBlack.asset.meta new file mode 100644 index 000000000..3a4c37c0a --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARImageAnchor/UnityLogoWhiteOnBlack.asset.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 9d6cedfb4c48647ca9007fb8cb8aa6b0 +timeCreated: 1518054500 +licenseType: Pro +NativeFormatImporter: + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARKitRelocalize.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARKitRelocalize.meta new file mode 100644 index 000000000..48ceb10d4 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARKitRelocalize.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: bfeeb4a56cb7c4f9d8964859ba274911 +folderAsset: yes +timeCreated: 1517350675 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARKitRelocalize/RelocalizationControl.cs b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARKitRelocalize/RelocalizationControl.cs new file mode 100644 index 000000000..83d205f4d --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARKitRelocalize/RelocalizationControl.cs @@ -0,0 +1,47 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEngine.UI; +using UnityEngine.XR.iOS; + +public class RelocalizationControl : MonoBehaviour { + + public Text buttonText; + public Text trackingStateText; + public Text trackingReasonText; + + // Use this for initialization + void Start () { + UnityARSessionNativeInterface.ARSessionShouldAttemptRelocalization = false; + UpdateText (); + + UnityARSessionNativeInterface.ARSessionTrackingChangedEvent += TrackingChanged; + } + + // Update is called once per frame + void Update () { + + } + + void TrackingChanged(UnityARCamera cam) + { + trackingStateText.text = cam.trackingState.ToString (); + trackingReasonText.text = cam.trackingReason.ToString (); + } + + void OnDestroy() + { + UnityARSessionNativeInterface.ARSessionTrackingChangedEvent -= TrackingChanged; + } + + void UpdateText() + { + buttonText.text = UnityARSessionNativeInterface.ARSessionShouldAttemptRelocalization ? "SHOULD RELOCALIZE" : "NO RELOCALIZE"; + } + + public void ToggleRelocalization() + { + UnityARSessionNativeInterface.ARSessionShouldAttemptRelocalization = !UnityARSessionNativeInterface.ARSessionShouldAttemptRelocalization; + UpdateText (); + } +} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARKitRelocalize/RelocalizationControl.cs.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARKitRelocalize/RelocalizationControl.cs.meta new file mode 100644 index 000000000..299dbd606 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARKitRelocalize/RelocalizationControl.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: eac3ceb65349d46409ef81d356324ffb +timeCreated: 1517350960 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARKitRelocalize/UnityARKitRelocalize.unity b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARKitRelocalize/UnityARKitRelocalize.unity new file mode 100644 index 000000000..64960303c --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARKitRelocalize/UnityARKitRelocalize.unity @@ -0,0 +1,1467 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!29 &1 +OcclusionCullingSettings: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_OcclusionBakeSettings: + smallestOccluder: 5 + smallestHole: 0.25 + backfaceThreshold: 100 + m_SceneGUID: 00000000000000000000000000000000 + m_OcclusionCullingData: {fileID: 0} +--- !u!104 &2 +RenderSettings: + m_ObjectHideFlags: 0 + serializedVersion: 8 + m_Fog: 0 + m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_FogMode: 3 + m_FogDensity: 0.01 + m_LinearFogStart: 0 + m_LinearFogEnd: 300 + m_AmbientSkyColor: {r: 0.2, g: 0.2, b: 0.2, a: 0} + m_AmbientEquatorColor: {r: 0.098908, g: 0.100485, b: 0.119403, a: 1} + m_AmbientGroundColor: {r: 0.098908, g: 0.100485, b: 0.119403, a: 1} + m_AmbientIntensity: 1 + m_AmbientMode: 3 + m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} + m_SkyboxMaterial: {fileID: 0} + m_HaloStrength: 0.5 + m_FlareStrength: 1 + m_FlareFadeSpeed: 3 + m_HaloTexture: {fileID: 0} + m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0} + m_DefaultReflectionMode: 0 + m_DefaultReflectionResolution: 128 + m_ReflectionBounces: 1 + m_ReflectionIntensity: 1 + m_CustomReflection: {fileID: 0} + m_Sun: {fileID: 0} + m_IndirectSpecularColor: {r: 0, g: 0, b: 0, a: 1} +--- !u!157 &4 +LightmapSettings: + m_ObjectHideFlags: 0 + serializedVersion: 11 + m_GIWorkflowMode: 1 + m_GISettings: + serializedVersion: 2 + m_BounceScale: 1 + m_IndirectOutputScale: 1 + m_AlbedoBoost: 1 + m_TemporalCoherenceThreshold: 1 + m_EnvironmentLightingMode: 0 + m_EnableBakedLightmaps: 1 + m_EnableRealtimeLightmaps: 0 + m_LightmapEditorSettings: + serializedVersion: 9 + m_Resolution: 1 + m_BakeResolution: 50 + m_TextureWidth: 1024 + m_TextureHeight: 1024 + m_AO: 1 + m_AOMaxDistance: 1 + m_CompAOExponent: 1 + m_CompAOExponentDirect: 0 + m_Padding: 2 + m_LightmapParameters: {fileID: 0} + m_LightmapsBakeMode: 1 + m_TextureCompression: 0 + m_FinalGather: 0 + m_FinalGatherFiltering: 1 + m_FinalGatherRayCount: 256 + m_ReflectionCompression: 2 + m_MixedBakeMode: 1 + m_BakeBackend: 0 + m_PVRSampling: 1 + m_PVRDirectSampleCount: 32 + m_PVRSampleCount: 500 + m_PVRBounces: 2 + m_PVRFilterTypeDirect: 0 + m_PVRFilterTypeIndirect: 0 + m_PVRFilterTypeAO: 0 + m_PVRFilteringMode: 1 + m_PVRCulling: 1 + m_PVRFilteringGaussRadiusDirect: 1 + m_PVRFilteringGaussRadiusIndirect: 5 + m_PVRFilteringGaussRadiusAO: 2 + m_PVRFilteringAtrousPositionSigmaDirect: 0.5 + m_PVRFilteringAtrousPositionSigmaIndirect: 2 + m_PVRFilteringAtrousPositionSigmaAO: 1 + m_LightingDataAsset: {fileID: 0} + m_UseShadowmask: 1 +--- !u!196 &5 +NavMeshSettings: + serializedVersion: 2 + m_ObjectHideFlags: 0 + m_BuildSettings: + serializedVersion: 2 + agentTypeID: 0 + agentRadius: 0.4 + agentHeight: 1.8 + agentSlope: 45 + agentClimb: 0.9 + ledgeDropHeight: 0 + maxJumpAcrossDistance: 0 + minRegionArea: 2 + manualCellSize: 0 + cellSize: 0.13333333 + manualTileSize: 0 + tileSize: 256 + accuratePlacement: 0 + m_NavMeshData: {fileID: 0} +--- !u!1 &7 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 9} + - component: {fileID: 10} + - component: {fileID: 12} + - component: {fileID: 13} + - component: {fileID: 11} + - component: {fileID: 8} + - component: {fileID: 14} + m_Layer: 0 + m_Name: Main Camera + m_TagString: MainCamera + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &8 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b58ecea7a196242dd879c814ac05084c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_ClearMaterial: {fileID: 2100000, guid: f1d9352050a75486f878ab19fa578f16, type: 2} +--- !u!4 &9 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 229804521} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!20 &10 +Camera: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 + serializedVersion: 2 + m_ClearFlags: 3 + m_BackGroundColor: {r: 0.19788063, g: 0.2953552, b: 0.44852942, a: 0.019608} + m_NormalizedViewPortRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + near clip plane: 0.1 + far clip plane: 30 + field of view: 60 + orthographic: 0 + orthographic size: 100 + m_Depth: -1 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingPath: -1 + m_TargetTexture: {fileID: 0} + m_TargetDisplay: 0 + m_TargetEye: 3 + m_HDR: 0 + m_AllowMSAA: 1 + m_ForceIntoRT: 0 + m_OcclusionCulling: 1 + m_StereoConvergence: 10 + m_StereoSeparation: 0.022 + m_StereoMirrorMode: 0 +--- !u!81 &11 +AudioListener: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 +--- !u!92 &12 +Behaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 +--- !u!124 &13 +Behaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 +--- !u!114 &14 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: ce437cef046e841aabd6070890e79d41, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &16 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 20} + - component: {fileID: 29} + - component: {fileID: 17} + m_Layer: 0 + m_Name: Directional light + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &17 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 16} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5587c957048494a2f96db36e0995449e, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!4 &20 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 16} + m_LocalRotation: {x: -0.31668198, y: -0.33227497, z: 0.119525984, w: -0.8803519} + m_LocalPosition: {x: -2.359002, y: 2.21, z: -3.580904} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!108 &29 +Light: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 16} + m_Enabled: 1 + serializedVersion: 8 + m_Type: 1 + m_Color: {r: 1, g: 0.997495, b: 0.955224, a: 1} + m_Intensity: 1 + m_Range: 10 + m_SpotAngle: 30 + m_CookieSize: 10 + m_Shadows: + m_Type: 0 + m_Resolution: -1 + m_CustomResolution: -1 + m_Strength: 1 + m_Bias: 0.05 + m_NormalBias: 0.4 + m_NearPlane: 0.2 + m_Cookie: {fileID: 0} + m_DrawHalo: 0 + m_Flare: {fileID: 0} + m_RenderMode: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_Lightmapping: 1 + m_AreaSize: {x: 1, y: 1} + m_BounceIntensity: 1 + m_ColorTemperature: 6570 + m_UseColorTemperature: 0 + m_ShadowRadius: 0 + m_ShadowAngle: 0 +--- !u!1 &14396414 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 14396415} + - component: {fileID: 14396418} + - component: {fileID: 14396417} + - component: {fileID: 14396416} + m_Layer: 5 + m_Name: Canvas + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &14396415 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 14396414} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 1654920540} + - {fileID: 1918392606} + - {fileID: 1450775215} + m_Father: {fileID: 0} + m_RootOrder: 7 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0, y: 0} +--- !u!114 &14396416 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 14396414} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1301386320, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!114 &14396417 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 14396414} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1980459831, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_UiScaleMode: 0 + m_ReferencePixelsPerUnit: 100 + m_ScaleFactor: 1 + m_ReferenceResolution: {x: 800, y: 600} + m_ScreenMatchMode: 0 + m_MatchWidthOrHeight: 0 + m_PhysicalUnit: 3 + m_FallbackScreenDPI: 96 + m_DefaultSpriteDPI: 96 + m_DynamicPixelsPerUnit: 1 +--- !u!223 &14396418 +Canvas: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 14396414} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 0 + m_Camera: {fileID: 0} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_AdditionalShaderChannelsFlag: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!1 &229804520 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 229804521} + m_Layer: 0 + m_Name: CameraParent + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &229804521 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 229804520} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 9} + m_Father: {fileID: 0} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &481742511 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 481742512} + - component: {fileID: 481742513} + m_Layer: 0 + m_Name: PointCloudParticleExample + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &481742512 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 481742511} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 6 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &481742513 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 481742511} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: ec20d460fbb7e4f92b4d84a10da98cd9, type: 3} + m_Name: + m_EditorClassIdentifier: + pointCloudParticlePrefab: {fileID: 198314236125653888, guid: 87db9decf4b3e4cb8bf3eea22ccd37f5, + type: 2} + maxPointsToShow: 10000 + particleSize: 0.01 +--- !u!1 &514402023 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 514402026} + - component: {fileID: 514402025} + - component: {fileID: 514402024} + m_Layer: 0 + m_Name: EventSystem + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &514402024 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 514402023} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1077351063, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_HorizontalAxis: Horizontal + m_VerticalAxis: Vertical + m_SubmitButton: Submit + m_CancelButton: Cancel + m_InputActionsPerSecond: 10 + m_RepeatDelay: 0.5 + m_ForceModuleActive: 0 +--- !u!114 &514402025 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 514402023} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -619905303, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_FirstSelected: {fileID: 0} + m_sendNavigationEvents: 1 + m_DragThreshold: 5 +--- !u!4 &514402026 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 514402023} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 8 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!23 &732268494 +MeshRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 922811256} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_Materials: + - {fileID: 2100000, guid: 66fbc43c67b564bb4a4c2c2dcd6c1970, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 1 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!65 &732268495 +BoxCollider: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 922811256} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 1, y: 1, z: 1} + m_Center: {x: 0, y: 0, z: 0} +--- !u!33 &732268496 +MeshFilter: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 922811256} + m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} +--- !u!4 &732268497 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 922811256} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 1} + m_LocalScale: {x: 0.3058, y: 0.3058, z: 0.3058} + m_Children: + - {fileID: 1563586580} + - {fileID: 985089624} + - {fileID: 2134794027} + m_Father: {fileID: 0} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &922811256 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 732268497} + - component: {fileID: 732268496} + - component: {fileID: 732268495} + - component: {fileID: 732268494} + m_Layer: 0 + m_Name: RandomCube + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &985089623 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 985089624} + - component: {fileID: 985089627} + - component: {fileID: 985089626} + - component: {fileID: 985089625} + m_Layer: 0 + m_Name: XAxis + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &985089624 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 985089623} + m_LocalRotation: {x: -0.0000037178397, y: 0.0000024586916, z: -0.7071033, w: -0.7071102} + m_LocalPosition: {x: 1, y: 0, z: 0} + m_LocalScale: {x: 0.03270111, y: 1.3080443, z: 0.03270111} + m_Children: [] + m_Father: {fileID: 732268497} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 10.865001, y: 2.6820002, z: 90} +--- !u!23 &985089625 +MeshRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 985089623} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_Materials: + - {fileID: 2100000, guid: aaae8be92ba59487a9946818d7a2017f, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 1 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!65 &985089626 +BoxCollider: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 985089623} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 1, y: 1, z: 1} + m_Center: {x: 0, y: 0, z: 0} +--- !u!33 &985089627 +MeshFilter: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 985089623} + m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} +--- !u!1 &1052679867 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1052679871} + - component: {fileID: 1052679870} + - component: {fileID: 1052679869} + - component: {fileID: 1052679868} + - component: {fileID: 1052679872} + m_Layer: 0 + m_Name: HitCube + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!23 &1052679868 +MeshRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1052679867} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_Materials: + - {fileID: 10303, guid: 0000000000000000f000000000000000, type: 0} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 1 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!65 &1052679869 +BoxCollider: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1052679867} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 1, y: 1, z: 1} + m_Center: {x: 0, y: 0, z: 0} +--- !u!33 &1052679870 +MeshFilter: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1052679867} + m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} +--- !u!4 &1052679871 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1052679867} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0.5, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1286139108} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1052679872 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1052679867} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 6941ec02ead994c9b848d640887441f1, type: 3} + m_Name: + m_EditorClassIdentifier: + m_HitTransform: {fileID: 1286139108} + maxRayDistance: 30 + collisionLayer: + serializedVersion: 2 + m_Bits: 1024 +--- !u!1 &1121666029 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1121666033} + - component: {fileID: 1121666030} + m_Layer: 0 + m_Name: ARCameraManager + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1121666030 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1121666029} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 462d46d2423bb4f738d2497a397b1590, type: 3} + m_Name: + m_EditorClassIdentifier: + m_camera: {fileID: 10} + startAlignment: 0 + planeDetection: 3 + getPointCloud: 1 + enableLightEstimation: 1 +--- !u!4 &1121666033 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1121666029} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1286139107 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1286139108} + m_Layer: 0 + m_Name: HitCubeParent + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1286139108 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1286139107} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: -0, z: -2.98} + m_LocalScale: {x: 0.1, y: 0.1, z: 0.1} + m_Children: + - {fileID: 1052679871} + m_Father: {fileID: 0} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1308259102 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1308259104} + - component: {fileID: 1308259103} + m_Layer: 0 + m_Name: GeneratePlanes + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1308259103 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1308259102} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 31cac8edf84834043ac167deaeba16a9, type: 3} + m_Name: + m_EditorClassIdentifier: + planePrefab: {fileID: 1372998203143648, guid: f879aaf3eeb0c467eb22cbaf08dc97a4, + type: 2} +--- !u!4 &1308259104 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1308259102} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1450775214 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1450775215} + - component: {fileID: 1450775217} + - component: {fileID: 1450775216} + m_Layer: 5 + m_Name: TrackingReason + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1450775215 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1450775214} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 14396415} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 600, y: 25} + m_SizeDelta: {x: 1000, y: 50} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1450775216 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1450775214} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.9191176, g: 0.85153544, b: 0.85153544, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 30 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 0 + m_MaxSize: 50 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: New Text New TextNew TextNew TextNew TextNew TextNew Text +--- !u!222 &1450775217 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1450775214} +--- !u!1 &1563586579 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1563586580} + - component: {fileID: 1563586583} + - component: {fileID: 1563586582} + - component: {fileID: 1563586581} + m_Layer: 0 + m_Name: YAxis + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1563586580 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1563586579} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 1, z: 0} + m_LocalScale: {x: 0.03270111, y: 1.3080444, z: 0.032701116} + m_Children: [] + m_Father: {fileID: 732268497} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!23 &1563586581 +MeshRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1563586579} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_Materials: + - {fileID: 2100000, guid: 8fa2e9e7c08844dd4a8d581610839228, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 1 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!65 &1563586582 +BoxCollider: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1563586579} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 1, y: 1, z: 1} + m_Center: {x: 0, y: 0, z: 0} +--- !u!33 &1563586583 +MeshFilter: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1563586579} + m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} +--- !u!1 &1566160547 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1566160549} + - component: {fileID: 1566160548} + m_Layer: 0 + m_Name: RelocalizationControlObject + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1566160548 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1566160547} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: eac3ceb65349d46409ef81d356324ffb, type: 3} + m_Name: + m_EditorClassIdentifier: + buttonText: {fileID: 1602518695} + trackingStateText: {fileID: 1918392607} + trackingReasonText: {fileID: 1450775216} +--- !u!4 &1566160549 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1566160547} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 9 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1602518694 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1602518697} + - component: {fileID: 1602518696} + - component: {fileID: 1602518695} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1602518695 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1602518694} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 30 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 3 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: Button +--- !u!222 &1602518696 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1602518694} +--- !u!224 &1602518697 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1602518694} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1654920540} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1654920539 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1654920540} + - component: {fileID: 1654920543} + - component: {fileID: 1654920542} + - component: {fileID: 1654920541} + m_Layer: 5 + m_Name: RelocalizeToggleButton + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1654920540 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1654920539} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1602518697} + m_Father: {fileID: 14396415} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 400, y: -100} + m_SizeDelta: {x: 400, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1654920541 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1654920539} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1654920542} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 1566160548} + m_MethodName: ToggleRelocalization + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &1654920542 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1654920539} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1654920543 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1654920539} +--- !u!1 &1918392605 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1918392606} + - component: {fileID: 1918392608} + - component: {fileID: 1918392607} + m_Layer: 5 + m_Name: TrackingState + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1918392606 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1918392605} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 14396415} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 600, y: 100} + m_SizeDelta: {x: 1000, y: 50} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1918392607 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1918392605} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.9191176, g: 0.85153544, b: 0.85153544, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 30 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 0 + m_MaxSize: 50 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: New Text +--- !u!222 &1918392608 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1918392605} +--- !u!1 &2134794026 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 2134794027} + - component: {fileID: 2134794030} + - component: {fileID: 2134794029} + - component: {fileID: 2134794028} + m_Layer: 0 + m_Name: ZAxis + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2134794027 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2134794026} + m_LocalRotation: {x: 0.49999562, y: 0.5000044, z: 0.49999562, w: 0.5000044} + m_LocalPosition: {x: -0.05, y: 0, z: 1} + m_LocalScale: {x: 0.03270111, y: 1.3080443, z: 0.032701112} + m_Children: [] + m_Father: {fileID: 732268497} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 90, z: 89.999} +--- !u!23 &2134794028 +MeshRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2134794026} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_Materials: + - {fileID: 2100000, guid: d55ccb0db00e54a1696c1e96094d706d, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 1 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!65 &2134794029 +BoxCollider: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2134794026} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 1, y: 1, z: 1} + m_Center: {x: 0, y: 0, z: 0} +--- !u!33 &2134794030 +MeshFilter: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2134794026} + m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARKitRelocalize/UnityARKitRelocalize.unity.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARKitRelocalize/UnityARKitRelocalize.unity.meta new file mode 100644 index 000000000..bf6d07b40 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARKitRelocalize/UnityARKitRelocalize.unity.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d44ef812aa5c94b71884c70a9518c644 +timeCreated: 1517350701 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARPlaneMesh.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARPlaneMesh.meta new file mode 100644 index 000000000..9dd5ff45f --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARPlaneMesh.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: c21c1506d16bb4a12b0779f54965b0ef +folderAsset: yes +timeCreated: 1517429400 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARPlaneMesh/UnityARPlaneMesh.unity b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARPlaneMesh/UnityARPlaneMesh.unity new file mode 100644 index 000000000..6724f4019 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARPlaneMesh/UnityARPlaneMesh.unity @@ -0,0 +1,750 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!29 &1 +OcclusionCullingSettings: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_OcclusionBakeSettings: + smallestOccluder: 5 + smallestHole: 0.25 + backfaceThreshold: 100 + m_SceneGUID: 00000000000000000000000000000000 + m_OcclusionCullingData: {fileID: 0} +--- !u!104 &2 +RenderSettings: + m_ObjectHideFlags: 0 + serializedVersion: 8 + m_Fog: 0 + m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_FogMode: 3 + m_FogDensity: 0.01 + m_LinearFogStart: 0 + m_LinearFogEnd: 300 + m_AmbientSkyColor: {r: 0.2, g: 0.2, b: 0.2, a: 0} + m_AmbientEquatorColor: {r: 0.098908, g: 0.100485, b: 0.119403, a: 1} + m_AmbientGroundColor: {r: 0.098908, g: 0.100485, b: 0.119403, a: 1} + m_AmbientIntensity: 1 + m_AmbientMode: 3 + m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} + m_SkyboxMaterial: {fileID: 0} + m_HaloStrength: 0.5 + m_FlareStrength: 1 + m_FlareFadeSpeed: 3 + m_HaloTexture: {fileID: 0} + m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0} + m_DefaultReflectionMode: 0 + m_DefaultReflectionResolution: 128 + m_ReflectionBounces: 1 + m_ReflectionIntensity: 1 + m_CustomReflection: {fileID: 0} + m_Sun: {fileID: 0} + m_IndirectSpecularColor: {r: 0, g: 0, b: 0, a: 1} +--- !u!157 &4 +LightmapSettings: + m_ObjectHideFlags: 0 + serializedVersion: 11 + m_GIWorkflowMode: 1 + m_GISettings: + serializedVersion: 2 + m_BounceScale: 1 + m_IndirectOutputScale: 1 + m_AlbedoBoost: 1 + m_TemporalCoherenceThreshold: 1 + m_EnvironmentLightingMode: 0 + m_EnableBakedLightmaps: 1 + m_EnableRealtimeLightmaps: 0 + m_LightmapEditorSettings: + serializedVersion: 9 + m_Resolution: 1 + m_BakeResolution: 50 + m_TextureWidth: 1024 + m_TextureHeight: 1024 + m_AO: 1 + m_AOMaxDistance: 1 + m_CompAOExponent: 1 + m_CompAOExponentDirect: 0 + m_Padding: 2 + m_LightmapParameters: {fileID: 0} + m_LightmapsBakeMode: 1 + m_TextureCompression: 0 + m_FinalGather: 0 + m_FinalGatherFiltering: 1 + m_FinalGatherRayCount: 256 + m_ReflectionCompression: 2 + m_MixedBakeMode: 1 + m_BakeBackend: 0 + m_PVRSampling: 1 + m_PVRDirectSampleCount: 32 + m_PVRSampleCount: 500 + m_PVRBounces: 2 + m_PVRFilterTypeDirect: 0 + m_PVRFilterTypeIndirect: 0 + m_PVRFilterTypeAO: 0 + m_PVRFilteringMode: 1 + m_PVRCulling: 1 + m_PVRFilteringGaussRadiusDirect: 1 + m_PVRFilteringGaussRadiusIndirect: 5 + m_PVRFilteringGaussRadiusAO: 2 + m_PVRFilteringAtrousPositionSigmaDirect: 0.5 + m_PVRFilteringAtrousPositionSigmaIndirect: 2 + m_PVRFilteringAtrousPositionSigmaAO: 1 + m_LightingDataAsset: {fileID: 0} + m_UseShadowmask: 1 +--- !u!196 &5 +NavMeshSettings: + serializedVersion: 2 + m_ObjectHideFlags: 0 + m_BuildSettings: + serializedVersion: 2 + agentTypeID: 0 + agentRadius: 0.4 + agentHeight: 1.8 + agentSlope: 45 + agentClimb: 0.9 + ledgeDropHeight: 0 + maxJumpAcrossDistance: 0 + minRegionArea: 2 + manualCellSize: 0 + cellSize: 0.13333333 + manualTileSize: 0 + tileSize: 256 + accuratePlacement: 0 + m_NavMeshData: {fileID: 0} +--- !u!1 &7 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 9} + - component: {fileID: 10} + - component: {fileID: 12} + - component: {fileID: 13} + - component: {fileID: 11} + - component: {fileID: 8} + - component: {fileID: 14} + m_Layer: 0 + m_Name: Main Camera + m_TagString: MainCamera + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &8 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b58ecea7a196242dd879c814ac05084c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_ClearMaterial: {fileID: 2100000, guid: f1d9352050a75486f878ab19fa578f16, type: 2} +--- !u!4 &9 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 229804521} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!20 &10 +Camera: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 + serializedVersion: 2 + m_ClearFlags: 3 + m_BackGroundColor: {r: 0.19788063, g: 0.2953552, b: 0.44852942, a: 0.019608} + m_NormalizedViewPortRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + near clip plane: 0.1 + far clip plane: 30 + field of view: 60 + orthographic: 0 + orthographic size: 100 + m_Depth: -1 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingPath: -1 + m_TargetTexture: {fileID: 0} + m_TargetDisplay: 0 + m_TargetEye: 3 + m_HDR: 0 + m_AllowMSAA: 1 + m_ForceIntoRT: 0 + m_OcclusionCulling: 1 + m_StereoConvergence: 10 + m_StereoSeparation: 0.022 + m_StereoMirrorMode: 0 +--- !u!81 &11 +AudioListener: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 +--- !u!92 &12 +Behaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 +--- !u!124 &13 +Behaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 +--- !u!114 &14 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: ce437cef046e841aabd6070890e79d41, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &16 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 20} + - component: {fileID: 29} + - component: {fileID: 17} + m_Layer: 0 + m_Name: Directional light + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &17 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 16} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5587c957048494a2f96db36e0995449e, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!4 &20 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 16} + m_LocalRotation: {x: -0.31668198, y: -0.33227497, z: 0.119525984, w: -0.8803519} + m_LocalPosition: {x: -2.359002, y: 2.21, z: -3.580904} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!108 &29 +Light: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 16} + m_Enabled: 1 + serializedVersion: 8 + m_Type: 1 + m_Color: {r: 1, g: 0.997495, b: 0.955224, a: 1} + m_Intensity: 1 + m_Range: 10 + m_SpotAngle: 30 + m_CookieSize: 10 + m_Shadows: + m_Type: 0 + m_Resolution: -1 + m_CustomResolution: -1 + m_Strength: 1 + m_Bias: 0.05 + m_NormalBias: 0.4 + m_NearPlane: 0.2 + m_Cookie: {fileID: 0} + m_DrawHalo: 0 + m_Flare: {fileID: 0} + m_RenderMode: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_Lightmapping: 1 + m_AreaSize: {x: 1, y: 1} + m_BounceIntensity: 1 + m_ColorTemperature: 6570 + m_UseColorTemperature: 0 + m_ShadowRadius: 0 + m_ShadowAngle: 0 +--- !u!1 &229804520 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 229804521} + m_Layer: 0 + m_Name: CameraParent + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &229804521 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 229804520} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 9} + m_Father: {fileID: 0} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!23 &732268494 +MeshRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 922811256} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_Materials: + - {fileID: 2100000, guid: 66fbc43c67b564bb4a4c2c2dcd6c1970, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 1 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!65 &732268495 +BoxCollider: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 922811256} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 1, y: 1, z: 1} + m_Center: {x: 0, y: 0, z: 0} +--- !u!33 &732268496 +MeshFilter: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 922811256} + m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} +--- !u!4 &732268497 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 922811256} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 1} + m_LocalScale: {x: 0.3058, y: 0.3058, z: 0.3058} + m_Children: + - {fileID: 1563586580} + - {fileID: 985089624} + - {fileID: 2134794027} + m_Father: {fileID: 0} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &922811256 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 732268497} + - component: {fileID: 732268496} + - component: {fileID: 732268495} + - component: {fileID: 732268494} + m_Layer: 0 + m_Name: RandomCube + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &985089623 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 985089624} + - component: {fileID: 985089627} + - component: {fileID: 985089626} + - component: {fileID: 985089625} + m_Layer: 0 + m_Name: XAxis + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &985089624 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 985089623} + m_LocalRotation: {x: -0.0000037178397, y: 0.0000024586916, z: -0.7071033, w: -0.7071102} + m_LocalPosition: {x: 1, y: 0, z: 0} + m_LocalScale: {x: 0.03270111, y: 1.3080443, z: 0.03270111} + m_Children: [] + m_Father: {fileID: 732268497} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 10.865001, y: 2.6820002, z: 90} +--- !u!23 &985089625 +MeshRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 985089623} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_Materials: + - {fileID: 2100000, guid: aaae8be92ba59487a9946818d7a2017f, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 1 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!65 &985089626 +BoxCollider: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 985089623} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 1, y: 1, z: 1} + m_Center: {x: 0, y: 0, z: 0} +--- !u!33 &985089627 +MeshFilter: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 985089623} + m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} +--- !u!1 &1121666029 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1121666033} + - component: {fileID: 1121666030} + m_Layer: 0 + m_Name: ARCameraManager + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1121666030 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1121666029} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 462d46d2423bb4f738d2497a397b1590, type: 3} + m_Name: + m_EditorClassIdentifier: + m_camera: {fileID: 10} + startAlignment: 0 + planeDetection: 3 + getPointCloud: 1 + enableLightEstimation: 1 +--- !u!4 &1121666033 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1121666029} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1308259102 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1308259104} + - component: {fileID: 1308259103} + m_Layer: 0 + m_Name: GeneratePlanes + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1308259103 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1308259102} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 31cac8edf84834043ac167deaeba16a9, type: 3} + m_Name: + m_EditorClassIdentifier: + planePrefab: {fileID: 1454536478891118, guid: 24a8c4888599c4670ba129e2f2345e92, + type: 2} +--- !u!4 &1308259104 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1308259102} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1563586579 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1563586580} + - component: {fileID: 1563586583} + - component: {fileID: 1563586582} + - component: {fileID: 1563586581} + m_Layer: 0 + m_Name: YAxis + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1563586580 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1563586579} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 1, z: 0} + m_LocalScale: {x: 0.03270111, y: 1.3080444, z: 0.032701116} + m_Children: [] + m_Father: {fileID: 732268497} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!23 &1563586581 +MeshRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1563586579} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_Materials: + - {fileID: 2100000, guid: 8fa2e9e7c08844dd4a8d581610839228, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 1 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!65 &1563586582 +BoxCollider: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1563586579} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 1, y: 1, z: 1} + m_Center: {x: 0, y: 0, z: 0} +--- !u!33 &1563586583 +MeshFilter: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1563586579} + m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} +--- !u!1 &2134794026 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 2134794027} + - component: {fileID: 2134794030} + - component: {fileID: 2134794029} + - component: {fileID: 2134794028} + m_Layer: 0 + m_Name: ZAxis + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2134794027 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2134794026} + m_LocalRotation: {x: 0.49999562, y: 0.5000044, z: 0.49999562, w: 0.5000044} + m_LocalPosition: {x: -0.05, y: 0, z: 1} + m_LocalScale: {x: 0.03270111, y: 1.3080443, z: 0.032701112} + m_Children: [] + m_Father: {fileID: 732268497} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 90, z: 89.999} +--- !u!23 &2134794028 +MeshRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2134794026} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_Materials: + - {fileID: 2100000, guid: d55ccb0db00e54a1696c1e96094d706d, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 1 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!65 &2134794029 +BoxCollider: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2134794026} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 1, y: 1, z: 1} + m_Center: {x: 0, y: 0, z: 0} +--- !u!33 &2134794030 +MeshFilter: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2134794026} + m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARPlaneMesh/UnityARPlaneMesh.unity.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARPlaneMesh/UnityARPlaneMesh.unity.meta new file mode 100644 index 000000000..e3f09d65a --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARPlaneMesh/UnityARPlaneMesh.unity.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 80858f7f97efd46c1ae3ee51a3134eef +timeCreated: 1517431928 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARPointCloudIds.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARPointCloudIds.meta new file mode 100644 index 000000000..afbbe4208 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARPointCloudIds.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 51ec150ac2b9b41e0ae2e73f35de5965 +folderAsset: yes +timeCreated: 1543348434 +licenseType: Pro +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARPointCloudIds/PointCloudIdsExample.cs b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARPointCloudIds/PointCloudIdsExample.cs new file mode 100644 index 000000000..1aa52129e --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARPointCloudIds/PointCloudIdsExample.cs @@ -0,0 +1,59 @@ +using System; +using System.Collections.Generic; +using UnityEngine; +using UnityEngine.XR.iOS; + +public class PointCloudIdsExample : MonoBehaviour +{ + bool frameUpdated; + ulong[] m_PointCloudIdentifiers; + HashSet m_IdentifiersSeenSoFar; + int m_ExistingIdsSeen; + + void Start () + { + UnityARSessionNativeInterface.ARFrameUpdatedEvent += ARFrameUpdated; + frameUpdated = false; + m_IdentifiersSeenSoFar = new HashSet(); + } + + void OnGUI() + { + int seenThisFrame = (m_PointCloudIdentifiers != null) ? m_PointCloudIdentifiers.Length : 0; + string formattedMessage = String.Format("{0} new/ {1} frame/ {2} seen", seenThisFrame-m_ExistingIdsSeen, seenThisFrame, m_IdentifiersSeenSoFar.Count ); + GUI.Label(new Rect(100, 100, 200, 40), formattedMessage); + } + + public void ARFrameUpdated(UnityARCamera camera) + { + if (camera.pointCloud != null) + { + m_PointCloudIdentifiers = camera.pointCloud.Identifiers; + } + frameUpdated = true; + } + + // Update is called once per frame + void Update () + { + if (frameUpdated) + { + m_ExistingIdsSeen = 0; + if (m_PointCloudIdentifiers != null && m_PointCloudIdentifiers.Length > 0) + { + foreach (var currentPointId in m_PointCloudIdentifiers) + { + if (m_IdentifiersSeenSoFar.Contains(currentPointId)) + { + m_ExistingIdsSeen++; + } + else + { + m_IdentifiersSeenSoFar.Add(currentPointId); + } + } + } + frameUpdated = false; + } + } +} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARPointCloudIds/PointCloudIdsExample.cs.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARPointCloudIds/PointCloudIdsExample.cs.meta new file mode 100644 index 000000000..fea860ace --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARPointCloudIds/PointCloudIdsExample.cs.meta @@ -0,0 +1,13 @@ +fileFormatVersion: 2 +guid: 05e1e49fe7d42488697bb55de6470429 +timeCreated: 1543348655 +licenseType: Pro +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARPointCloudIds/UnityPointCloudIds.unity b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARPointCloudIds/UnityPointCloudIds.unity new file mode 100644 index 000000000..936077cf3 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARPointCloudIds/UnityPointCloudIds.unity @@ -0,0 +1,817 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!29 &1 +OcclusionCullingSettings: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_OcclusionBakeSettings: + smallestOccluder: 5 + smallestHole: 0.25 + backfaceThreshold: 100 + m_SceneGUID: 00000000000000000000000000000000 + m_OcclusionCullingData: {fileID: 0} +--- !u!104 &2 +RenderSettings: + m_ObjectHideFlags: 0 + serializedVersion: 9 + m_Fog: 0 + m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_FogMode: 3 + m_FogDensity: 0.01 + m_LinearFogStart: 0 + m_LinearFogEnd: 300 + m_AmbientSkyColor: {r: 0.2, g: 0.2, b: 0.2, a: 0} + m_AmbientEquatorColor: {r: 0.098908, g: 0.100485, b: 0.119403, a: 1} + m_AmbientGroundColor: {r: 0.098908, g: 0.100485, b: 0.119403, a: 1} + m_AmbientIntensity: 1 + m_AmbientMode: 3 + m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} + m_SkyboxMaterial: {fileID: 0} + m_HaloStrength: 0.5 + m_FlareStrength: 1 + m_FlareFadeSpeed: 3 + m_HaloTexture: {fileID: 0} + m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0} + m_DefaultReflectionMode: 0 + m_DefaultReflectionResolution: 128 + m_ReflectionBounces: 1 + m_ReflectionIntensity: 1 + m_CustomReflection: {fileID: 0} + m_Sun: {fileID: 0} + m_IndirectSpecularColor: {r: 0, g: 0, b: 0, a: 1} + m_UseRadianceAmbientProbe: 0 +--- !u!157 &4 +LightmapSettings: + m_ObjectHideFlags: 0 + serializedVersion: 11 + m_GIWorkflowMode: 1 + m_GISettings: + serializedVersion: 2 + m_BounceScale: 1 + m_IndirectOutputScale: 1 + m_AlbedoBoost: 1 + m_TemporalCoherenceThreshold: 1 + m_EnvironmentLightingMode: 0 + m_EnableBakedLightmaps: 1 + m_EnableRealtimeLightmaps: 0 + m_LightmapEditorSettings: + serializedVersion: 10 + m_Resolution: 1 + m_BakeResolution: 50 + m_AtlasSize: 1024 + m_AO: 1 + m_AOMaxDistance: 1 + m_CompAOExponent: 1 + m_CompAOExponentDirect: 0 + m_Padding: 2 + m_LightmapParameters: {fileID: 0} + m_LightmapsBakeMode: 1 + m_TextureCompression: 0 + m_FinalGather: 0 + m_FinalGatherFiltering: 1 + m_FinalGatherRayCount: 256 + m_ReflectionCompression: 2 + m_MixedBakeMode: 1 + m_BakeBackend: 0 + m_PVRSampling: 1 + m_PVRDirectSampleCount: 32 + m_PVRSampleCount: 500 + m_PVRBounces: 2 + m_PVRFilterTypeDirect: 0 + m_PVRFilterTypeIndirect: 0 + m_PVRFilterTypeAO: 0 + m_PVRFilteringMode: 1 + m_PVRCulling: 1 + m_PVRFilteringGaussRadiusDirect: 1 + m_PVRFilteringGaussRadiusIndirect: 5 + m_PVRFilteringGaussRadiusAO: 2 + m_PVRFilteringAtrousPositionSigmaDirect: 0.5 + m_PVRFilteringAtrousPositionSigmaIndirect: 2 + m_PVRFilteringAtrousPositionSigmaAO: 1 + m_ShowResolutionOverlay: 1 + m_LightingDataAsset: {fileID: 0} + m_UseShadowmask: 0 +--- !u!196 &5 +NavMeshSettings: + serializedVersion: 2 + m_ObjectHideFlags: 0 + m_BuildSettings: + serializedVersion: 2 + agentTypeID: 0 + agentRadius: 0.4 + agentHeight: 1.8 + agentSlope: 45 + agentClimb: 0.9 + ledgeDropHeight: 0 + maxJumpAcrossDistance: 0 + minRegionArea: 2 + manualCellSize: 0 + cellSize: 0.13333333 + manualTileSize: 0 + tileSize: 256 + accuratePlacement: 0 + debug: + m_Flags: 0 + m_NavMeshData: {fileID: 0} +--- !u!1 &7 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 9} + - component: {fileID: 10} + - component: {fileID: 12} + - component: {fileID: 13} + - component: {fileID: 11} + - component: {fileID: 8} + - component: {fileID: 14} + m_Layer: 0 + m_Name: Main Camera + m_TagString: MainCamera + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &8 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b58ecea7a196242dd879c814ac05084c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_ClearMaterial: {fileID: 2100000, guid: f1d9352050a75486f878ab19fa578f16, type: 2} +--- !u!4 &9 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 229804521} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!20 &10 +Camera: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 + serializedVersion: 2 + m_ClearFlags: 3 + m_BackGroundColor: {r: 0.19788063, g: 0.2953552, b: 0.44852942, a: 0.019608} + m_projectionMatrixMode: 1 + m_SensorSize: {x: 36, y: 24} + m_LensShift: {x: 0, y: 0} + m_FocalLength: 50 + m_NormalizedViewPortRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + near clip plane: 0.1 + far clip plane: 30 + field of view: 60 + orthographic: 0 + orthographic size: 100 + m_Depth: -1 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingPath: -1 + m_TargetTexture: {fileID: 0} + m_TargetDisplay: 0 + m_TargetEye: 3 + m_HDR: 0 + m_AllowMSAA: 1 + m_AllowDynamicResolution: 0 + m_ForceIntoRT: 0 + m_OcclusionCulling: 1 + m_StereoConvergence: 10 + m_StereoSeparation: 0.022 +--- !u!81 &11 +AudioListener: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 +--- !u!92 &12 +Behaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 +--- !u!124 &13 +Behaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 +--- !u!114 &14 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: ce437cef046e841aabd6070890e79d41, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &16 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 20} + - component: {fileID: 29} + - component: {fileID: 17} + m_Layer: 0 + m_Name: Directional light + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &17 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 16} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5587c957048494a2f96db36e0995449e, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!4 &20 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 16} + m_LocalRotation: {x: -0.31668198, y: -0.33227497, z: 0.119525984, w: -0.8803519} + m_LocalPosition: {x: -2.359002, y: 2.21, z: -3.580904} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!108 &29 +Light: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 16} + m_Enabled: 1 + serializedVersion: 8 + m_Type: 1 + m_Color: {r: 1, g: 0.997495, b: 0.955224, a: 1} + m_Intensity: 1 + m_Range: 10 + m_SpotAngle: 30 + m_CookieSize: 10 + m_Shadows: + m_Type: 0 + m_Resolution: -1 + m_CustomResolution: -1 + m_Strength: 1 + m_Bias: 0.05 + m_NormalBias: 0.4 + m_NearPlane: 0.2 + m_Cookie: {fileID: 0} + m_DrawHalo: 0 + m_Flare: {fileID: 0} + m_RenderMode: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_Lightmapping: 1 + m_LightShadowCasterMode: 0 + m_AreaSize: {x: 1, y: 1} + m_BounceIntensity: 1 + m_ColorTemperature: 6570 + m_UseColorTemperature: 0 + m_ShadowRadius: 0 + m_ShadowAngle: 0 +--- !u!1 &229804520 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 229804521} + m_Layer: 0 + m_Name: CameraParent + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &229804521 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 229804520} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 9} + m_Father: {fileID: 0} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &481742511 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 481742512} + - component: {fileID: 481742513} + m_Layer: 0 + m_Name: PointCloudParticleExample + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &481742512 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 481742511} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &481742513 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 481742511} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: ec20d460fbb7e4f92b4d84a10da98cd9, type: 3} + m_Name: + m_EditorClassIdentifier: + pointCloudParticlePrefab: {fileID: 198314236125653888, guid: 87db9decf4b3e4cb8bf3eea22ccd37f5, + type: 2} + maxPointsToShow: 10000 + particleSize: 0.01 +--- !u!23 &732268494 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 922811256} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RenderingLayerMask: 4294967295 + m_Materials: + - {fileID: 2100000, guid: 66fbc43c67b564bb4a4c2c2dcd6c1970, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 1 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!65 &732268495 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 922811256} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 1, y: 1, z: 1} + m_Center: {x: 0, y: 0, z: 0} +--- !u!33 &732268496 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 922811256} + m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} +--- !u!4 &732268497 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 922811256} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 1} + m_LocalScale: {x: 0.3058, y: 0.3058, z: 0.3058} + m_Children: + - {fileID: 1563586580} + - {fileID: 985089624} + - {fileID: 2134794027} + m_Father: {fileID: 0} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &922811256 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 732268497} + - component: {fileID: 732268496} + - component: {fileID: 732268495} + - component: {fileID: 732268494} + m_Layer: 0 + m_Name: RandomCube + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &985089623 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 985089624} + - component: {fileID: 985089627} + - component: {fileID: 985089626} + - component: {fileID: 985089625} + m_Layer: 0 + m_Name: XAxis + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &985089624 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 985089623} + m_LocalRotation: {x: -0.0000037178397, y: 0.0000024586916, z: -0.7071033, w: -0.7071102} + m_LocalPosition: {x: 1, y: 0, z: 0} + m_LocalScale: {x: 0.03270111, y: 1.3080443, z: 0.03270111} + m_Children: [] + m_Father: {fileID: 732268497} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 10.865001, y: 2.6820002, z: 90} +--- !u!23 &985089625 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 985089623} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RenderingLayerMask: 4294967295 + m_Materials: + - {fileID: 2100000, guid: aaae8be92ba59487a9946818d7a2017f, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 1 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!65 &985089626 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 985089623} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 1, y: 1, z: 1} + m_Center: {x: 0, y: 0, z: 0} +--- !u!33 &985089627 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 985089623} + m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} +--- !u!1 &1087512205 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1087512206} + - component: {fileID: 1087512207} + m_Layer: 0 + m_Name: PointCloudIdsExample + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1087512206 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1087512205} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1087512207 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1087512205} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 05e1e49fe7d42488697bb55de6470429, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &1121666029 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1121666033} + - component: {fileID: 1121666030} + m_Layer: 0 + m_Name: ARCameraManager + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1121666030 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1121666029} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 462d46d2423bb4f738d2497a397b1590, type: 3} + m_Name: + m_EditorClassIdentifier: + m_camera: {fileID: 10} + startAlignment: 0 + planeDetection: 0 + getPointCloud: 1 + enableLightEstimation: 1 + enableAutoFocus: 0 + environmentTexturing: 0 + detectionImages: {fileID: 0} + maximumNumberOfTrackedImages: 0 + detectionObjects: {fileID: 0} +--- !u!4 &1121666033 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1121666029} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1563586579 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1563586580} + - component: {fileID: 1563586583} + - component: {fileID: 1563586582} + - component: {fileID: 1563586581} + m_Layer: 0 + m_Name: YAxis + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1563586580 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1563586579} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 1, z: 0} + m_LocalScale: {x: 0.03270111, y: 1.3080444, z: 0.032701116} + m_Children: [] + m_Father: {fileID: 732268497} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!23 &1563586581 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1563586579} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RenderingLayerMask: 4294967295 + m_Materials: + - {fileID: 2100000, guid: 8fa2e9e7c08844dd4a8d581610839228, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 1 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!65 &1563586582 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1563586579} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 1, y: 1, z: 1} + m_Center: {x: 0, y: 0, z: 0} +--- !u!33 &1563586583 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1563586579} + m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} +--- !u!1 &2134794026 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2134794027} + - component: {fileID: 2134794030} + - component: {fileID: 2134794029} + - component: {fileID: 2134794028} + m_Layer: 0 + m_Name: ZAxis + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2134794027 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2134794026} + m_LocalRotation: {x: 0.49999562, y: 0.5000044, z: 0.49999562, w: 0.5000044} + m_LocalPosition: {x: -0.05, y: 0, z: 1} + m_LocalScale: {x: 0.03270111, y: 1.3080443, z: 0.032701112} + m_Children: [] + m_Father: {fileID: 732268497} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 90, z: 89.999} +--- !u!23 &2134794028 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2134794026} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RenderingLayerMask: 4294967295 + m_Materials: + - {fileID: 2100000, guid: d55ccb0db00e54a1696c1e96094d706d, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 1 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!65 &2134794029 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2134794026} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 1, y: 1, z: 1} + m_Center: {x: 0, y: 0, z: 0} +--- !u!33 &2134794030 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2134794026} + m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARPointCloudIds/UnityPointCloudIds.unity.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARPointCloudIds/UnityPointCloudIds.unity.meta new file mode 100644 index 000000000..d74d3f093 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARPointCloudIds/UnityPointCloudIds.unity.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: e7b13cc3e03de46c3bdba51876cfc297 +timeCreated: 1543348497 +licenseType: Pro +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARSetWorldOrigin.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARSetWorldOrigin.meta new file mode 100644 index 000000000..125f4e24a --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARSetWorldOrigin.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 7926aaa6453dd4c7f8a6c1490bf4c261 +folderAsset: yes +timeCreated: 1518205629 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARSetWorldOrigin/SetWorldOriginControl.cs b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARSetWorldOrigin/SetWorldOriginControl.cs new file mode 100644 index 000000000..c38dd78d5 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARSetWorldOrigin/SetWorldOriginControl.cs @@ -0,0 +1,24 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEngine.UI; +using UnityEngine.XR.iOS; + +public class SetWorldOriginControl : MonoBehaviour { + + public Camera arCamera; + public Text positionText; + public Text rotationText; + + + // Update is called once per frame + void Update () { + positionText.text = "Camera position=" + arCamera.transform.position.ToString (); + rotationText.text = "Camera rotation=" + arCamera.transform.rotation.ToString (); + } + + public void SetWorldOrigin() + { + UnityARSessionNativeInterface.GetARSessionNativeInterface().SetWorldOrigin (arCamera.transform); + } +} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARSetWorldOrigin/SetWorldOriginControl.cs.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARSetWorldOrigin/SetWorldOriginControl.cs.meta new file mode 100644 index 000000000..720ca309a --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARSetWorldOrigin/SetWorldOriginControl.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 9617a86a116b6451da2a58f5828678d7 +timeCreated: 1518205921 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARSetWorldOrigin/UnityARSetWorldOrigin.unity b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARSetWorldOrigin/UnityARSetWorldOrigin.unity new file mode 100644 index 000000000..13ea15fff --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARSetWorldOrigin/UnityARSetWorldOrigin.unity @@ -0,0 +1,1469 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!29 &1 +OcclusionCullingSettings: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_OcclusionBakeSettings: + smallestOccluder: 5 + smallestHole: 0.25 + backfaceThreshold: 100 + m_SceneGUID: 00000000000000000000000000000000 + m_OcclusionCullingData: {fileID: 0} +--- !u!104 &2 +RenderSettings: + m_ObjectHideFlags: 0 + serializedVersion: 8 + m_Fog: 0 + m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_FogMode: 3 + m_FogDensity: 0.01 + m_LinearFogStart: 0 + m_LinearFogEnd: 300 + m_AmbientSkyColor: {r: 0.2, g: 0.2, b: 0.2, a: 0} + m_AmbientEquatorColor: {r: 0.098908, g: 0.100485, b: 0.119403, a: 1} + m_AmbientGroundColor: {r: 0.098908, g: 0.100485, b: 0.119403, a: 1} + m_AmbientIntensity: 1 + m_AmbientMode: 3 + m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} + m_SkyboxMaterial: {fileID: 0} + m_HaloStrength: 0.5 + m_FlareStrength: 1 + m_FlareFadeSpeed: 3 + m_HaloTexture: {fileID: 0} + m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0} + m_DefaultReflectionMode: 0 + m_DefaultReflectionResolution: 128 + m_ReflectionBounces: 1 + m_ReflectionIntensity: 1 + m_CustomReflection: {fileID: 0} + m_Sun: {fileID: 0} + m_IndirectSpecularColor: {r: 0, g: 0, b: 0, a: 1} +--- !u!157 &4 +LightmapSettings: + m_ObjectHideFlags: 0 + serializedVersion: 11 + m_GIWorkflowMode: 1 + m_GISettings: + serializedVersion: 2 + m_BounceScale: 1 + m_IndirectOutputScale: 1 + m_AlbedoBoost: 1 + m_TemporalCoherenceThreshold: 1 + m_EnvironmentLightingMode: 0 + m_EnableBakedLightmaps: 1 + m_EnableRealtimeLightmaps: 0 + m_LightmapEditorSettings: + serializedVersion: 9 + m_Resolution: 1 + m_BakeResolution: 50 + m_TextureWidth: 1024 + m_TextureHeight: 1024 + m_AO: 1 + m_AOMaxDistance: 1 + m_CompAOExponent: 1 + m_CompAOExponentDirect: 0 + m_Padding: 2 + m_LightmapParameters: {fileID: 0} + m_LightmapsBakeMode: 1 + m_TextureCompression: 0 + m_FinalGather: 0 + m_FinalGatherFiltering: 1 + m_FinalGatherRayCount: 256 + m_ReflectionCompression: 2 + m_MixedBakeMode: 1 + m_BakeBackend: 0 + m_PVRSampling: 1 + m_PVRDirectSampleCount: 32 + m_PVRSampleCount: 500 + m_PVRBounces: 2 + m_PVRFilterTypeDirect: 0 + m_PVRFilterTypeIndirect: 0 + m_PVRFilterTypeAO: 0 + m_PVRFilteringMode: 1 + m_PVRCulling: 1 + m_PVRFilteringGaussRadiusDirect: 1 + m_PVRFilteringGaussRadiusIndirect: 5 + m_PVRFilteringGaussRadiusAO: 2 + m_PVRFilteringAtrousPositionSigmaDirect: 0.5 + m_PVRFilteringAtrousPositionSigmaIndirect: 2 + m_PVRFilteringAtrousPositionSigmaAO: 1 + m_LightingDataAsset: {fileID: 0} + m_UseShadowmask: 1 +--- !u!196 &5 +NavMeshSettings: + serializedVersion: 2 + m_ObjectHideFlags: 0 + m_BuildSettings: + serializedVersion: 2 + agentTypeID: 0 + agentRadius: 0.4 + agentHeight: 1.8 + agentSlope: 45 + agentClimb: 0.9 + ledgeDropHeight: 0 + maxJumpAcrossDistance: 0 + minRegionArea: 2 + manualCellSize: 0 + cellSize: 0.13333333 + manualTileSize: 0 + tileSize: 256 + accuratePlacement: 0 + m_NavMeshData: {fileID: 0} +--- !u!1 &7 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 9} + - component: {fileID: 10} + - component: {fileID: 12} + - component: {fileID: 13} + - component: {fileID: 11} + - component: {fileID: 8} + - component: {fileID: 14} + m_Layer: 0 + m_Name: Main Camera + m_TagString: MainCamera + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &8 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b58ecea7a196242dd879c814ac05084c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_ClearMaterial: {fileID: 2100000, guid: f1d9352050a75486f878ab19fa578f16, type: 2} +--- !u!4 &9 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 229804521} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!20 &10 +Camera: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 + serializedVersion: 2 + m_ClearFlags: 3 + m_BackGroundColor: {r: 0.19788063, g: 0.2953552, b: 0.44852942, a: 0.019608} + m_NormalizedViewPortRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + near clip plane: 0.1 + far clip plane: 30 + field of view: 60 + orthographic: 0 + orthographic size: 100 + m_Depth: -1 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingPath: -1 + m_TargetTexture: {fileID: 0} + m_TargetDisplay: 0 + m_TargetEye: 3 + m_HDR: 0 + m_AllowMSAA: 1 + m_ForceIntoRT: 0 + m_OcclusionCulling: 1 + m_StereoConvergence: 10 + m_StereoSeparation: 0.022 + m_StereoMirrorMode: 0 +--- !u!81 &11 +AudioListener: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 +--- !u!92 &12 +Behaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 +--- !u!124 &13 +Behaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 +--- !u!114 &14 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: ce437cef046e841aabd6070890e79d41, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &16 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 20} + - component: {fileID: 29} + - component: {fileID: 17} + m_Layer: 0 + m_Name: Directional light + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &17 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 16} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5587c957048494a2f96db36e0995449e, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!4 &20 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 16} + m_LocalRotation: {x: -0.31668198, y: -0.33227497, z: 0.119525984, w: -0.8803519} + m_LocalPosition: {x: -2.359002, y: 2.21, z: -3.580904} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!108 &29 +Light: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 16} + m_Enabled: 1 + serializedVersion: 8 + m_Type: 1 + m_Color: {r: 1, g: 0.997495, b: 0.955224, a: 1} + m_Intensity: 1 + m_Range: 10 + m_SpotAngle: 30 + m_CookieSize: 10 + m_Shadows: + m_Type: 0 + m_Resolution: -1 + m_CustomResolution: -1 + m_Strength: 1 + m_Bias: 0.05 + m_NormalBias: 0.4 + m_NearPlane: 0.2 + m_Cookie: {fileID: 0} + m_DrawHalo: 0 + m_Flare: {fileID: 0} + m_RenderMode: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_Lightmapping: 1 + m_AreaSize: {x: 1, y: 1} + m_BounceIntensity: 1 + m_ColorTemperature: 6570 + m_UseColorTemperature: 0 + m_ShadowRadius: 0 + m_ShadowAngle: 0 +--- !u!1 &14396414 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 14396415} + - component: {fileID: 14396418} + - component: {fileID: 14396417} + - component: {fileID: 14396416} + m_Layer: 5 + m_Name: Canvas + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &14396415 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 14396414} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 1654920540} + - {fileID: 1918392606} + - {fileID: 1450775215} + m_Father: {fileID: 0} + m_RootOrder: 7 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0, y: 0} +--- !u!114 &14396416 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 14396414} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1301386320, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!114 &14396417 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 14396414} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1980459831, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_UiScaleMode: 0 + m_ReferencePixelsPerUnit: 100 + m_ScaleFactor: 1 + m_ReferenceResolution: {x: 800, y: 600} + m_ScreenMatchMode: 0 + m_MatchWidthOrHeight: 0 + m_PhysicalUnit: 3 + m_FallbackScreenDPI: 96 + m_DefaultSpriteDPI: 96 + m_DynamicPixelsPerUnit: 1 +--- !u!223 &14396418 +Canvas: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 14396414} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 0 + m_Camera: {fileID: 0} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_AdditionalShaderChannelsFlag: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!1 &229804520 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 229804521} + m_Layer: 0 + m_Name: CameraParent + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &229804521 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 229804520} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 9} + m_Father: {fileID: 0} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &481742511 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 481742512} + - component: {fileID: 481742513} + m_Layer: 0 + m_Name: PointCloudParticleExample + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &481742512 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 481742511} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 6 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &481742513 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 481742511} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: ec20d460fbb7e4f92b4d84a10da98cd9, type: 3} + m_Name: + m_EditorClassIdentifier: + pointCloudParticlePrefab: {fileID: 198314236125653888, guid: 87db9decf4b3e4cb8bf3eea22ccd37f5, + type: 2} + maxPointsToShow: 10000 + particleSize: 0.01 +--- !u!1 &514402023 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 514402026} + - component: {fileID: 514402025} + - component: {fileID: 514402024} + m_Layer: 0 + m_Name: EventSystem + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &514402024 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 514402023} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1077351063, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_HorizontalAxis: Horizontal + m_VerticalAxis: Vertical + m_SubmitButton: Submit + m_CancelButton: Cancel + m_InputActionsPerSecond: 10 + m_RepeatDelay: 0.5 + m_ForceModuleActive: 0 +--- !u!114 &514402025 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 514402023} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -619905303, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_FirstSelected: {fileID: 0} + m_sendNavigationEvents: 1 + m_DragThreshold: 5 +--- !u!4 &514402026 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 514402023} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 8 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!23 &732268494 +MeshRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 922811256} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_Materials: + - {fileID: 2100000, guid: 66fbc43c67b564bb4a4c2c2dcd6c1970, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 1 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!65 &732268495 +BoxCollider: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 922811256} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 1, y: 1, z: 1} + m_Center: {x: 0, y: 0, z: 0} +--- !u!33 &732268496 +MeshFilter: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 922811256} + m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} +--- !u!4 &732268497 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 922811256} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 1} + m_LocalScale: {x: 0.3058, y: 0.3058, z: 0.3058} + m_Children: + - {fileID: 1563586580} + - {fileID: 985089624} + - {fileID: 2134794027} + m_Father: {fileID: 0} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &922811256 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 732268497} + - component: {fileID: 732268496} + - component: {fileID: 732268495} + - component: {fileID: 732268494} + m_Layer: 0 + m_Name: RandomCube + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &985089623 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 985089624} + - component: {fileID: 985089627} + - component: {fileID: 985089626} + - component: {fileID: 985089625} + m_Layer: 0 + m_Name: XAxis + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &985089624 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 985089623} + m_LocalRotation: {x: -0.0000037178397, y: 0.0000024586916, z: -0.7071033, w: -0.7071102} + m_LocalPosition: {x: 1, y: 0, z: 0} + m_LocalScale: {x: 0.03270111, y: 1.3080443, z: 0.03270111} + m_Children: [] + m_Father: {fileID: 732268497} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 10.865001, y: 2.6820002, z: 90} +--- !u!23 &985089625 +MeshRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 985089623} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_Materials: + - {fileID: 2100000, guid: aaae8be92ba59487a9946818d7a2017f, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 1 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!65 &985089626 +BoxCollider: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 985089623} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 1, y: 1, z: 1} + m_Center: {x: 0, y: 0, z: 0} +--- !u!33 &985089627 +MeshFilter: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 985089623} + m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} +--- !u!1 &1052679867 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1052679871} + - component: {fileID: 1052679870} + - component: {fileID: 1052679869} + - component: {fileID: 1052679868} + - component: {fileID: 1052679872} + m_Layer: 0 + m_Name: HitCube + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!23 &1052679868 +MeshRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1052679867} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_Materials: + - {fileID: 10303, guid: 0000000000000000f000000000000000, type: 0} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 1 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!65 &1052679869 +BoxCollider: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1052679867} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 1, y: 1, z: 1} + m_Center: {x: 0, y: 0, z: 0} +--- !u!33 &1052679870 +MeshFilter: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1052679867} + m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} +--- !u!4 &1052679871 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1052679867} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0.5, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1286139108} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1052679872 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1052679867} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 6941ec02ead994c9b848d640887441f1, type: 3} + m_Name: + m_EditorClassIdentifier: + m_HitTransform: {fileID: 1286139108} + maxRayDistance: 30 + collisionLayer: + serializedVersion: 2 + m_Bits: 1024 +--- !u!1 &1121666029 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1121666033} + - component: {fileID: 1121666030} + m_Layer: 0 + m_Name: ARCameraManager + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1121666030 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1121666029} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 462d46d2423bb4f738d2497a397b1590, type: 3} + m_Name: + m_EditorClassIdentifier: + m_camera: {fileID: 10} + startAlignment: 0 + planeDetection: 3 + detectionImages: {fileID: 0} + getPointCloud: 1 + enableLightEstimation: 1 + enableAutoFocus: 1 +--- !u!4 &1121666033 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1121666029} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1286139107 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1286139108} + m_Layer: 0 + m_Name: HitCubeParent + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1286139108 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1286139107} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: -0, z: -2.98} + m_LocalScale: {x: 0.1, y: 0.1, z: 0.1} + m_Children: + - {fileID: 1052679871} + m_Father: {fileID: 0} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1308259102 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1308259104} + - component: {fileID: 1308259103} + m_Layer: 0 + m_Name: GeneratePlanes + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1308259103 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1308259102} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 31cac8edf84834043ac167deaeba16a9, type: 3} + m_Name: + m_EditorClassIdentifier: + planePrefab: {fileID: 1372998203143648, guid: f879aaf3eeb0c467eb22cbaf08dc97a4, + type: 2} +--- !u!4 &1308259104 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1308259102} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1450775214 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1450775215} + - component: {fileID: 1450775217} + - component: {fileID: 1450775216} + m_Layer: 5 + m_Name: Rotation + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1450775215 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1450775214} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 14396415} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 600, y: 25} + m_SizeDelta: {x: 1000, y: 50} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1450775216 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1450775214} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.9191176, g: 0.85153544, b: 0.85153544, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 30 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 0 + m_MaxSize: 50 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: New Text New TextNew TextNew TextNew TextNew TextNew Text +--- !u!222 &1450775217 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1450775214} +--- !u!1 &1563586579 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1563586580} + - component: {fileID: 1563586583} + - component: {fileID: 1563586582} + - component: {fileID: 1563586581} + m_Layer: 0 + m_Name: YAxis + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1563586580 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1563586579} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 1, z: 0} + m_LocalScale: {x: 0.03270111, y: 1.3080444, z: 0.032701116} + m_Children: [] + m_Father: {fileID: 732268497} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!23 &1563586581 +MeshRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1563586579} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_Materials: + - {fileID: 2100000, guid: 8fa2e9e7c08844dd4a8d581610839228, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 1 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!65 &1563586582 +BoxCollider: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1563586579} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 1, y: 1, z: 1} + m_Center: {x: 0, y: 0, z: 0} +--- !u!33 &1563586583 +MeshFilter: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1563586579} + m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} +--- !u!1 &1566160547 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1566160549} + - component: {fileID: 1566160548} + m_Layer: 0 + m_Name: SetWorldOriginControlObject + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1566160548 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1566160547} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9617a86a116b6451da2a58f5828678d7, type: 3} + m_Name: + m_EditorClassIdentifier: + arCamera: {fileID: 10} + positionText: {fileID: 1918392607} + rotationText: {fileID: 1450775216} +--- !u!4 &1566160549 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1566160547} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 9 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1602518694 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1602518697} + - component: {fileID: 1602518696} + - component: {fileID: 1602518695} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1602518695 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1602518694} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 30 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 3 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: Set World Origin +--- !u!222 &1602518696 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1602518694} +--- !u!224 &1602518697 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1602518694} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1654920540} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1654920539 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1654920540} + - component: {fileID: 1654920543} + - component: {fileID: 1654920542} + - component: {fileID: 1654920541} + m_Layer: 5 + m_Name: SetWorldOriginButton + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1654920540 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1654920539} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1602518697} + m_Father: {fileID: 14396415} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 400, y: -100} + m_SizeDelta: {x: 400, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1654920541 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1654920539} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1654920542} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 1566160548} + m_MethodName: SetWorldOrigin + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &1654920542 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1654920539} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1654920543 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1654920539} +--- !u!1 &1918392605 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1918392606} + - component: {fileID: 1918392608} + - component: {fileID: 1918392607} + m_Layer: 5 + m_Name: Position + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1918392606 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1918392605} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 14396415} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 600, y: 100} + m_SizeDelta: {x: 1000, y: 50} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1918392607 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1918392605} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.9191176, g: 0.85153544, b: 0.85153544, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 30 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 0 + m_MaxSize: 50 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: New Text +--- !u!222 &1918392608 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1918392605} +--- !u!1 &2134794026 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 2134794027} + - component: {fileID: 2134794030} + - component: {fileID: 2134794029} + - component: {fileID: 2134794028} + m_Layer: 0 + m_Name: ZAxis + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2134794027 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2134794026} + m_LocalRotation: {x: 0.49999562, y: 0.5000044, z: 0.49999562, w: 0.5000044} + m_LocalPosition: {x: -0.05, y: 0, z: 1} + m_LocalScale: {x: 0.03270111, y: 1.3080443, z: 0.032701112} + m_Children: [] + m_Father: {fileID: 732268497} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 90, z: 89.999} +--- !u!23 &2134794028 +MeshRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2134794026} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_Materials: + - {fileID: 2100000, guid: d55ccb0db00e54a1696c1e96094d706d, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 1 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!65 &2134794029 +BoxCollider: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2134794026} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 1, y: 1, z: 1} + m_Center: {x: 0, y: 0, z: 0} +--- !u!33 &2134794030 +MeshFilter: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2134794026} + m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARSetWorldOrigin/UnityARSetWorldOrigin.unity.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARSetWorldOrigin/UnityARSetWorldOrigin.unity.meta new file mode 100644 index 000000000..efb6b2875 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARSetWorldOrigin/UnityARSetWorldOrigin.unity.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3a34cd3250ee14e1c802e3b4aed373c8 +timeCreated: 1518205870 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARVideoFormats.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARVideoFormats.meta new file mode 100644 index 000000000..0550a69f1 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARVideoFormats.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 8426060d697694fdd83c1305e3d42641 +folderAsset: yes +timeCreated: 1518223278 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARVideoFormats/FaceTrackingVideoFormatsExample.cs b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARVideoFormats/FaceTrackingVideoFormatsExample.cs new file mode 100644 index 000000000..92dcf787a --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARVideoFormats/FaceTrackingVideoFormatsExample.cs @@ -0,0 +1,50 @@ +using UnityEngine; +using UnityEngine.XR.iOS; + + + +public class FaceTrackingVideoFormatsExample : MonoBehaviour { + + public Transform formatsParent; + public GameObject videoFormatButtonPrefab; + + // Use this for initialization + void Start () { + VideoFormatButton.FormatButtonPressedEvent += ExampletButtonPressed; + PopulateVideoFormatButtons (); + } + + void OnDestroy () { + VideoFormatButton.FormatButtonPressedEvent -= ExampletButtonPressed; + } + + void PopulateVideoFormatButtons() + { + foreach (UnityARVideoFormat vf in UnityARVideoFormat.SupportedFaceTrackingVideoFormats()) + { + GameObject go = Instantiate(videoFormatButtonPrefab, formatsParent); + VideoFormatButton vfb = go.GetComponent (); + if (vfb != null) { + vfb.Populate (vf); + } + } + } + + public void ExampletButtonPressed(UnityARVideoFormat videoFormat) + { + UnityARSessionNativeInterface session = UnityARSessionNativeInterface.GetARSessionNativeInterface(); + + var config = new ARKitFaceTrackingConfiguration(); + + if (config.IsSupported) { + config.alignment = UnityARAlignment.UnityARAlignmentGravity; + config.enableLightEstimation = true; + config.videoFormat = videoFormat.videoFormatPtr; + Application.targetFrameRate = videoFormat.framesPerSecond; + + UnityARSessionRunOption runOption = UnityARSessionRunOption.ARSessionRunOptionRemoveExistingAnchors | UnityARSessionRunOption.ARSessionRunOptionResetTracking; + session.RunWithConfigAndOptions (config, runOption); + } + + } +} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARVideoFormats/FaceTrackingVideoFormatsExample.cs.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARVideoFormats/FaceTrackingVideoFormatsExample.cs.meta new file mode 100644 index 000000000..b7a310bb7 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARVideoFormats/FaceTrackingVideoFormatsExample.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: dc619e8b2beea4a94ae40bf7520d95c3 +timeCreated: 1518224302 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARVideoFormats/UnityARFaceTrackingVideoFormats.unity b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARVideoFormats/UnityARFaceTrackingVideoFormats.unity new file mode 100644 index 000000000..ecbd6ef4e --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARVideoFormats/UnityARFaceTrackingVideoFormats.unity @@ -0,0 +1,1336 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!29 &1 +OcclusionCullingSettings: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_OcclusionBakeSettings: + smallestOccluder: 5 + smallestHole: 0.25 + backfaceThreshold: 100 + m_SceneGUID: 00000000000000000000000000000000 + m_OcclusionCullingData: {fileID: 0} +--- !u!104 &2 +RenderSettings: + m_ObjectHideFlags: 0 + serializedVersion: 8 + m_Fog: 0 + m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_FogMode: 3 + m_FogDensity: 0.01 + m_LinearFogStart: 0 + m_LinearFogEnd: 300 + m_AmbientSkyColor: {r: 0.2, g: 0.2, b: 0.2, a: 0} + m_AmbientEquatorColor: {r: 0.098908, g: 0.100485, b: 0.119403, a: 1} + m_AmbientGroundColor: {r: 0.098908, g: 0.100485, b: 0.119403, a: 1} + m_AmbientIntensity: 1 + m_AmbientMode: 3 + m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} + m_SkyboxMaterial: {fileID: 0} + m_HaloStrength: 0.5 + m_FlareStrength: 1 + m_FlareFadeSpeed: 3 + m_HaloTexture: {fileID: 0} + m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0} + m_DefaultReflectionMode: 0 + m_DefaultReflectionResolution: 128 + m_ReflectionBounces: 1 + m_ReflectionIntensity: 1 + m_CustomReflection: {fileID: 0} + m_Sun: {fileID: 0} + m_IndirectSpecularColor: {r: 0, g: 0, b: 0, a: 1} +--- !u!157 &4 +LightmapSettings: + m_ObjectHideFlags: 0 + serializedVersion: 11 + m_GIWorkflowMode: 1 + m_GISettings: + serializedVersion: 2 + m_BounceScale: 1 + m_IndirectOutputScale: 1 + m_AlbedoBoost: 1 + m_TemporalCoherenceThreshold: 1 + m_EnvironmentLightingMode: 0 + m_EnableBakedLightmaps: 1 + m_EnableRealtimeLightmaps: 0 + m_LightmapEditorSettings: + serializedVersion: 9 + m_Resolution: 1 + m_BakeResolution: 50 + m_TextureWidth: 1024 + m_TextureHeight: 1024 + m_AO: 1 + m_AOMaxDistance: 1 + m_CompAOExponent: 1 + m_CompAOExponentDirect: 0 + m_Padding: 2 + m_LightmapParameters: {fileID: 0} + m_LightmapsBakeMode: 1 + m_TextureCompression: 0 + m_FinalGather: 0 + m_FinalGatherFiltering: 1 + m_FinalGatherRayCount: 256 + m_ReflectionCompression: 2 + m_MixedBakeMode: 1 + m_BakeBackend: 0 + m_PVRSampling: 1 + m_PVRDirectSampleCount: 32 + m_PVRSampleCount: 500 + m_PVRBounces: 2 + m_PVRFilterTypeDirect: 0 + m_PVRFilterTypeIndirect: 0 + m_PVRFilterTypeAO: 0 + m_PVRFilteringMode: 1 + m_PVRCulling: 1 + m_PVRFilteringGaussRadiusDirect: 1 + m_PVRFilteringGaussRadiusIndirect: 5 + m_PVRFilteringGaussRadiusAO: 2 + m_PVRFilteringAtrousPositionSigmaDirect: 0.5 + m_PVRFilteringAtrousPositionSigmaIndirect: 2 + m_PVRFilteringAtrousPositionSigmaAO: 1 + m_ShowResolutionOverlay: 1 + m_LightingDataAsset: {fileID: 0} + m_UseShadowmask: 1 +--- !u!196 &5 +NavMeshSettings: + serializedVersion: 2 + m_ObjectHideFlags: 0 + m_BuildSettings: + serializedVersion: 2 + agentTypeID: 0 + agentRadius: 0.4 + agentHeight: 1.8 + agentSlope: 45 + agentClimb: 0.9 + ledgeDropHeight: 0 + maxJumpAcrossDistance: 0 + minRegionArea: 2 + manualCellSize: 0 + cellSize: 0.13333333 + manualTileSize: 0 + tileSize: 256 + accuratePlacement: 0 + debug: + m_Flags: 0 + m_NavMeshData: {fileID: 0} +--- !u!1 &7 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 9} + - component: {fileID: 10} + - component: {fileID: 12} + - component: {fileID: 13} + - component: {fileID: 11} + - component: {fileID: 8} + - component: {fileID: 14} + m_Layer: 0 + m_Name: Main Camera + m_TagString: MainCamera + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &8 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b58ecea7a196242dd879c814ac05084c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_ClearMaterial: {fileID: 2100000, guid: f1d9352050a75486f878ab19fa578f16, type: 2} +--- !u!4 &9 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 229804521} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!20 &10 +Camera: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 + serializedVersion: 2 + m_ClearFlags: 3 + m_BackGroundColor: {r: 0.19788063, g: 0.2953552, b: 0.44852942, a: 0.019608} + m_NormalizedViewPortRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + near clip plane: 0.1 + far clip plane: 30 + field of view: 60 + orthographic: 0 + orthographic size: 100 + m_Depth: -1 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingPath: -1 + m_TargetTexture: {fileID: 0} + m_TargetDisplay: 0 + m_TargetEye: 3 + m_HDR: 0 + m_AllowMSAA: 1 + m_AllowDynamicResolution: 0 + m_ForceIntoRT: 0 + m_OcclusionCulling: 1 + m_StereoConvergence: 10 + m_StereoSeparation: 0.022 +--- !u!81 &11 +AudioListener: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 +--- !u!92 &12 +Behaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 +--- !u!124 &13 +Behaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 +--- !u!114 &14 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: ce437cef046e841aabd6070890e79d41, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &16 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 20} + - component: {fileID: 29} + - component: {fileID: 17} + m_Layer: 0 + m_Name: Directional light + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &17 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 16} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5587c957048494a2f96db36e0995449e, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!4 &20 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 16} + m_LocalRotation: {x: -0.31668198, y: -0.33227497, z: 0.119525984, w: -0.8803519} + m_LocalPosition: {x: -2.359002, y: 2.21, z: -3.580904} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!108 &29 +Light: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 16} + m_Enabled: 1 + serializedVersion: 8 + m_Type: 1 + m_Color: {r: 1, g: 0.997495, b: 0.955224, a: 1} + m_Intensity: 1 + m_Range: 10 + m_SpotAngle: 30 + m_CookieSize: 10 + m_Shadows: + m_Type: 0 + m_Resolution: -1 + m_CustomResolution: -1 + m_Strength: 1 + m_Bias: 0.05 + m_NormalBias: 0.4 + m_NearPlane: 0.2 + m_Cookie: {fileID: 0} + m_DrawHalo: 0 + m_Flare: {fileID: 0} + m_RenderMode: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_Lightmapping: 1 + m_AreaSize: {x: 1, y: 1} + m_BounceIntensity: 1 + m_ColorTemperature: 6570 + m_UseColorTemperature: 0 + m_ShadowRadius: 0 + m_ShadowAngle: 0 +--- !u!1 &14396414 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 14396415} + - component: {fileID: 14396418} + - component: {fileID: 14396417} + - component: {fileID: 14396416} + m_Layer: 5 + m_Name: Canvas + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &14396415 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 14396414} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 1566929735} + m_Father: {fileID: 0} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0, y: 0} +--- !u!114 &14396416 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 14396414} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1301386320, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!114 &14396417 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 14396414} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1980459831, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_UiScaleMode: 0 + m_ReferencePixelsPerUnit: 100 + m_ScaleFactor: 1 + m_ReferenceResolution: {x: 800, y: 600} + m_ScreenMatchMode: 0 + m_MatchWidthOrHeight: 0 + m_PhysicalUnit: 3 + m_FallbackScreenDPI: 96 + m_DefaultSpriteDPI: 96 + m_DynamicPixelsPerUnit: 1 +--- !u!223 &14396418 +Canvas: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 14396414} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 0 + m_Camera: {fileID: 0} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_AdditionalShaderChannelsFlag: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!1 &229804520 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 229804521} + m_Layer: 0 + m_Name: CameraParent + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &229804521 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 229804520} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 9} + m_Father: {fileID: 0} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &274922019 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 274922020} + - component: {fileID: 274922023} + - component: {fileID: 274922022} + - component: {fileID: 274922021} + m_Layer: 5 + m_Name: Viewport + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &274922020 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 274922019} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1189943984} + m_Father: {fileID: 1566929735} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} +--- !u!114 &274922021 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 274922019} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 10917, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &274922022 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 274922019} +--- !u!114 &274922023 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 274922019} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -1200242548, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_ShowMaskGraphic: 0 +--- !u!1 &514402023 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 514402026} + - component: {fileID: 514402025} + - component: {fileID: 514402024} + m_Layer: 0 + m_Name: EventSystem + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &514402024 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 514402023} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1077351063, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_HorizontalAxis: Horizontal + m_VerticalAxis: Vertical + m_SubmitButton: Submit + m_CancelButton: Cancel + m_InputActionsPerSecond: 10 + m_RepeatDelay: 0.5 + m_ForceModuleActive: 0 +--- !u!114 &514402025 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 514402023} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -619905303, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_FirstSelected: {fileID: 0} + m_sendNavigationEvents: 1 + m_DragThreshold: 5 +--- !u!4 &514402026 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 514402023} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &719579884 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 719579885} + m_Layer: 5 + m_Name: Sliding Area + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &719579885 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 719579884} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1614431146} + m_Father: {fileID: 1413404288} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: -20, y: -20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1121666029 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1121666033} + - component: {fileID: 1121666030} + m_Layer: 0 + m_Name: ARCameraTracker + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1121666030 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1121666029} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 961e52c3648614224b2a9dffa3055c07, type: 3} + m_Name: + m_EditorClassIdentifier: + trackedCamera: {fileID: 10} +--- !u!4 &1121666033 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1121666029} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1189943983 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1189943984} + - component: {fileID: 1189943985} + m_Layer: 5 + m_Name: Content + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1189943984 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1189943983} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 274922020} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0.000013223545} + m_SizeDelta: {x: 0, y: 300} + m_Pivot: {x: 0, y: 1} +--- !u!114 &1189943985 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1189943983} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1297475563, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 0 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 +--- !u!1 &1363382584 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1363382585} + m_Layer: 5 + m_Name: Sliding Area + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1363382585 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1363382584} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1675014625} + m_Father: {fileID: 1682093431} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: -20, y: -20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1413404287 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1413404288} + - component: {fileID: 1413404291} + - component: {fileID: 1413404290} + - component: {fileID: 1413404289} + m_Layer: 5 + m_Name: Scrollbar Vertical + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1413404288 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1413404287} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 719579885} + m_Father: {fileID: 1566929735} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 1, y: 0} + m_AnchorMax: {x: 1, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 20, y: 0} + m_Pivot: {x: 1, y: 1} +--- !u!114 &1413404289 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1413404287} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -2061169968, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1614431147} + m_HandleRect: {fileID: 1614431146} + m_Direction: 2 + m_Value: 0 + m_Size: 1 + m_NumberOfSteps: 0 + m_OnValueChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.Scrollbar+ScrollEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &1413404290 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1413404287} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 10907, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1413404291 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1413404287} +--- !u!1 &1566160547 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1566160549} + - component: {fileID: 1566160548} + m_Layer: 0 + m_Name: FaceTrackingVideoFormatExample + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1566160548 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1566160547} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: dc619e8b2beea4a94ae40bf7520d95c3, type: 3} + m_Name: + m_EditorClassIdentifier: + formatsParent: {fileID: 1189943984} + videoFormatButtonPrefab: {fileID: 1036539979525446, guid: 95c6bff2dfc164406901450885b965af, + type: 2} +--- !u!4 &1566160549 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1566160547} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 6 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1566929734 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1566929735} + - component: {fileID: 1566929738} + - component: {fileID: 1566929737} + - component: {fileID: 1566929736} + m_Layer: 5 + m_Name: Scroll View + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1566929735 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1566929734} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 274922020} + - {fileID: 1682093431} + - {fileID: 1413404288} + m_Father: {fileID: 14396415} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -400, y: 156} + m_SizeDelta: {x: 530, y: 400} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1566929736 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1566929734} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 0.392} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 10907, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1566929737 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1566929734} +--- !u!114 &1566929738 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1566929734} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1367256648, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Content: {fileID: 1189943984} + m_Horizontal: 1 + m_Vertical: 1 + m_MovementType: 1 + m_Elasticity: 0.1 + m_Inertia: 1 + m_DecelerationRate: 0.135 + m_ScrollSensitivity: 1 + m_Viewport: {fileID: 274922020} + m_HorizontalScrollbar: {fileID: 1682093432} + m_VerticalScrollbar: {fileID: 1413404289} + m_HorizontalScrollbarVisibility: 2 + m_VerticalScrollbarVisibility: 2 + m_HorizontalScrollbarSpacing: -3 + m_VerticalScrollbarSpacing: -3 + m_OnValueChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.ScrollRect+ScrollRectEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!1 &1614431145 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1614431146} + - component: {fileID: 1614431148} + - component: {fileID: 1614431147} + m_Layer: 5 + m_Name: Handle + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1614431146 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1614431145} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 719579885} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 20, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1614431147 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1614431145} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1614431148 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1614431145} +--- !u!1 &1675014624 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1675014625} + - component: {fileID: 1675014627} + - component: {fileID: 1675014626} + m_Layer: 5 + m_Name: Handle + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1675014625 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1675014624} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1363382585} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 20, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1675014626 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1675014624} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1675014627 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1675014624} +--- !u!1 &1682093430 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1682093431} + - component: {fileID: 1682093434} + - component: {fileID: 1682093433} + - component: {fileID: 1682093432} + m_Layer: 5 + m_Name: Scrollbar Horizontal + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1682093431 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1682093430} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1363382585} + m_Father: {fileID: 1566929735} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 20} + m_Pivot: {x: 0, y: 0} +--- !u!114 &1682093432 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1682093430} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -2061169968, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1675014626} + m_HandleRect: {fileID: 1675014625} + m_Direction: 0 + m_Value: 0 + m_Size: 1 + m_NumberOfSteps: 0 + m_OnValueChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.Scrollbar+ScrollEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &1682093433 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1682093430} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 10907, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1682093434 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1682093430} +--- !u!1 &1769114571 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1769114575} + - component: {fileID: 1769114574} + - component: {fileID: 1769114573} + - component: {fileID: 1769114572} + m_Layer: 0 + m_Name: ARFaceMeshManager + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!33 &1769114572 +MeshFilter: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1769114571} + m_Mesh: {fileID: 0} +--- !u!23 &1769114573 +MeshRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1769114571} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_Materials: + - {fileID: 10303, guid: 0000000000000000f000000000000000, type: 0} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!114 &1769114574 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1769114571} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: baec72e2006ae48df9dcbf0eb13377f9, type: 3} + m_Name: + m_EditorClassIdentifier: + meshFilter: {fileID: 1769114572} +--- !u!4 &1769114575 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1769114571} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: -180, z: 0} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARVideoFormats/UnityARFaceTrackingVideoFormats.unity.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARVideoFormats/UnityARFaceTrackingVideoFormats.unity.meta new file mode 100644 index 000000000..bcb6e3984 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARVideoFormats/UnityARFaceTrackingVideoFormats.unity.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 5a7424cf0b0f04d4ba41bd0858deea1b +timeCreated: 1543283147 +licenseType: Pro +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARVideoFormats/UnityARVideoFormats.unity b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARVideoFormats/UnityARVideoFormats.unity new file mode 100644 index 000000000..08932adb3 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARVideoFormats/UnityARVideoFormats.unity @@ -0,0 +1,1800 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!29 &1 +OcclusionCullingSettings: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_OcclusionBakeSettings: + smallestOccluder: 5 + smallestHole: 0.25 + backfaceThreshold: 100 + m_SceneGUID: 00000000000000000000000000000000 + m_OcclusionCullingData: {fileID: 0} +--- !u!104 &2 +RenderSettings: + m_ObjectHideFlags: 0 + serializedVersion: 8 + m_Fog: 0 + m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_FogMode: 3 + m_FogDensity: 0.01 + m_LinearFogStart: 0 + m_LinearFogEnd: 300 + m_AmbientSkyColor: {r: 0.2, g: 0.2, b: 0.2, a: 0} + m_AmbientEquatorColor: {r: 0.098908, g: 0.100485, b: 0.119403, a: 1} + m_AmbientGroundColor: {r: 0.098908, g: 0.100485, b: 0.119403, a: 1} + m_AmbientIntensity: 1 + m_AmbientMode: 3 + m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} + m_SkyboxMaterial: {fileID: 0} + m_HaloStrength: 0.5 + m_FlareStrength: 1 + m_FlareFadeSpeed: 3 + m_HaloTexture: {fileID: 0} + m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0} + m_DefaultReflectionMode: 0 + m_DefaultReflectionResolution: 128 + m_ReflectionBounces: 1 + m_ReflectionIntensity: 1 + m_CustomReflection: {fileID: 0} + m_Sun: {fileID: 0} + m_IndirectSpecularColor: {r: 0, g: 0, b: 0, a: 1} +--- !u!157 &4 +LightmapSettings: + m_ObjectHideFlags: 0 + serializedVersion: 11 + m_GIWorkflowMode: 1 + m_GISettings: + serializedVersion: 2 + m_BounceScale: 1 + m_IndirectOutputScale: 1 + m_AlbedoBoost: 1 + m_TemporalCoherenceThreshold: 1 + m_EnvironmentLightingMode: 0 + m_EnableBakedLightmaps: 1 + m_EnableRealtimeLightmaps: 0 + m_LightmapEditorSettings: + serializedVersion: 9 + m_Resolution: 1 + m_BakeResolution: 50 + m_TextureWidth: 1024 + m_TextureHeight: 1024 + m_AO: 1 + m_AOMaxDistance: 1 + m_CompAOExponent: 1 + m_CompAOExponentDirect: 0 + m_Padding: 2 + m_LightmapParameters: {fileID: 0} + m_LightmapsBakeMode: 1 + m_TextureCompression: 0 + m_FinalGather: 0 + m_FinalGatherFiltering: 1 + m_FinalGatherRayCount: 256 + m_ReflectionCompression: 2 + m_MixedBakeMode: 1 + m_BakeBackend: 0 + m_PVRSampling: 1 + m_PVRDirectSampleCount: 32 + m_PVRSampleCount: 500 + m_PVRBounces: 2 + m_PVRFilterTypeDirect: 0 + m_PVRFilterTypeIndirect: 0 + m_PVRFilterTypeAO: 0 + m_PVRFilteringMode: 1 + m_PVRCulling: 1 + m_PVRFilteringGaussRadiusDirect: 1 + m_PVRFilteringGaussRadiusIndirect: 5 + m_PVRFilteringGaussRadiusAO: 2 + m_PVRFilteringAtrousPositionSigmaDirect: 0.5 + m_PVRFilteringAtrousPositionSigmaIndirect: 2 + m_PVRFilteringAtrousPositionSigmaAO: 1 + m_LightingDataAsset: {fileID: 0} + m_UseShadowmask: 1 +--- !u!196 &5 +NavMeshSettings: + serializedVersion: 2 + m_ObjectHideFlags: 0 + m_BuildSettings: + serializedVersion: 2 + agentTypeID: 0 + agentRadius: 0.4 + agentHeight: 1.8 + agentSlope: 45 + agentClimb: 0.9 + ledgeDropHeight: 0 + maxJumpAcrossDistance: 0 + minRegionArea: 2 + manualCellSize: 0 + cellSize: 0.13333333 + manualTileSize: 0 + tileSize: 256 + accuratePlacement: 0 + m_NavMeshData: {fileID: 0} +--- !u!1 &7 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 9} + - component: {fileID: 10} + - component: {fileID: 12} + - component: {fileID: 13} + - component: {fileID: 11} + - component: {fileID: 8} + - component: {fileID: 14} + m_Layer: 0 + m_Name: Main Camera + m_TagString: MainCamera + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &8 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b58ecea7a196242dd879c814ac05084c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_ClearMaterial: {fileID: 2100000, guid: f1d9352050a75486f878ab19fa578f16, type: 2} +--- !u!4 &9 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 229804521} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!20 &10 +Camera: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 + serializedVersion: 2 + m_ClearFlags: 3 + m_BackGroundColor: {r: 0.19788063, g: 0.2953552, b: 0.44852942, a: 0.019608} + m_NormalizedViewPortRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + near clip plane: 0.1 + far clip plane: 30 + field of view: 60 + orthographic: 0 + orthographic size: 100 + m_Depth: -1 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingPath: -1 + m_TargetTexture: {fileID: 0} + m_TargetDisplay: 0 + m_TargetEye: 3 + m_HDR: 0 + m_AllowMSAA: 1 + m_ForceIntoRT: 0 + m_OcclusionCulling: 1 + m_StereoConvergence: 10 + m_StereoSeparation: 0.022 + m_StereoMirrorMode: 0 +--- !u!81 &11 +AudioListener: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 +--- !u!92 &12 +Behaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 +--- !u!124 &13 +Behaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 +--- !u!114 &14 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: ce437cef046e841aabd6070890e79d41, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &16 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 20} + - component: {fileID: 29} + - component: {fileID: 17} + m_Layer: 0 + m_Name: Directional light + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &17 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 16} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5587c957048494a2f96db36e0995449e, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!4 &20 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 16} + m_LocalRotation: {x: -0.31668198, y: -0.33227497, z: 0.119525984, w: -0.8803519} + m_LocalPosition: {x: -2.359002, y: 2.21, z: -3.580904} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!108 &29 +Light: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 16} + m_Enabled: 1 + serializedVersion: 8 + m_Type: 1 + m_Color: {r: 1, g: 0.997495, b: 0.955224, a: 1} + m_Intensity: 1 + m_Range: 10 + m_SpotAngle: 30 + m_CookieSize: 10 + m_Shadows: + m_Type: 0 + m_Resolution: -1 + m_CustomResolution: -1 + m_Strength: 1 + m_Bias: 0.05 + m_NormalBias: 0.4 + m_NearPlane: 0.2 + m_Cookie: {fileID: 0} + m_DrawHalo: 0 + m_Flare: {fileID: 0} + m_RenderMode: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_Lightmapping: 1 + m_AreaSize: {x: 1, y: 1} + m_BounceIntensity: 1 + m_ColorTemperature: 6570 + m_UseColorTemperature: 0 + m_ShadowRadius: 0 + m_ShadowAngle: 0 +--- !u!1 &14396414 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 14396415} + - component: {fileID: 14396418} + - component: {fileID: 14396417} + - component: {fileID: 14396416} + m_Layer: 5 + m_Name: Canvas + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &14396415 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 14396414} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 1566929735} + m_Father: {fileID: 0} + m_RootOrder: 7 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0, y: 0} +--- !u!114 &14396416 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 14396414} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1301386320, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!114 &14396417 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 14396414} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1980459831, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_UiScaleMode: 0 + m_ReferencePixelsPerUnit: 100 + m_ScaleFactor: 1 + m_ReferenceResolution: {x: 800, y: 600} + m_ScreenMatchMode: 0 + m_MatchWidthOrHeight: 0 + m_PhysicalUnit: 3 + m_FallbackScreenDPI: 96 + m_DefaultSpriteDPI: 96 + m_DynamicPixelsPerUnit: 1 +--- !u!223 &14396418 +Canvas: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 14396414} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 0 + m_Camera: {fileID: 0} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_AdditionalShaderChannelsFlag: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!1 &229804520 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 229804521} + m_Layer: 0 + m_Name: CameraParent + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &229804521 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 229804520} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 9} + m_Father: {fileID: 0} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &274922019 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 274922020} + - component: {fileID: 274922023} + - component: {fileID: 274922022} + - component: {fileID: 274922021} + m_Layer: 5 + m_Name: Viewport + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &274922020 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 274922019} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1189943984} + m_Father: {fileID: 1566929735} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} +--- !u!114 &274922021 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 274922019} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 10917, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &274922022 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 274922019} +--- !u!114 &274922023 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 274922019} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -1200242548, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_ShowMaskGraphic: 0 +--- !u!1 &481742511 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 481742512} + - component: {fileID: 481742513} + m_Layer: 0 + m_Name: PointCloudParticleExample + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &481742512 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 481742511} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 6 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &481742513 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 481742511} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: ec20d460fbb7e4f92b4d84a10da98cd9, type: 3} + m_Name: + m_EditorClassIdentifier: + pointCloudParticlePrefab: {fileID: 198314236125653888, guid: 87db9decf4b3e4cb8bf3eea22ccd37f5, + type: 2} + maxPointsToShow: 10000 + particleSize: 0.01 +--- !u!1 &514402023 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 514402026} + - component: {fileID: 514402025} + - component: {fileID: 514402024} + m_Layer: 0 + m_Name: EventSystem + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &514402024 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 514402023} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1077351063, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_HorizontalAxis: Horizontal + m_VerticalAxis: Vertical + m_SubmitButton: Submit + m_CancelButton: Cancel + m_InputActionsPerSecond: 10 + m_RepeatDelay: 0.5 + m_ForceModuleActive: 0 +--- !u!114 &514402025 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 514402023} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -619905303, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_FirstSelected: {fileID: 0} + m_sendNavigationEvents: 1 + m_DragThreshold: 5 +--- !u!4 &514402026 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 514402023} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 8 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &719579884 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 719579885} + m_Layer: 5 + m_Name: Sliding Area + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &719579885 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 719579884} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1614431146} + m_Father: {fileID: 1413404288} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: -20, y: -20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!23 &732268494 +MeshRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 922811256} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_Materials: + - {fileID: 2100000, guid: 66fbc43c67b564bb4a4c2c2dcd6c1970, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 1 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!65 &732268495 +BoxCollider: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 922811256} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 1, y: 1, z: 1} + m_Center: {x: 0, y: 0, z: 0} +--- !u!33 &732268496 +MeshFilter: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 922811256} + m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} +--- !u!4 &732268497 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 922811256} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 1} + m_LocalScale: {x: 0.3058, y: 0.3058, z: 0.3058} + m_Children: + - {fileID: 1563586580} + - {fileID: 985089624} + - {fileID: 2134794027} + m_Father: {fileID: 0} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &922811256 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 732268497} + - component: {fileID: 732268496} + - component: {fileID: 732268495} + - component: {fileID: 732268494} + m_Layer: 0 + m_Name: RandomCube + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &985089623 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 985089624} + - component: {fileID: 985089627} + - component: {fileID: 985089626} + - component: {fileID: 985089625} + m_Layer: 0 + m_Name: XAxis + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &985089624 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 985089623} + m_LocalRotation: {x: -0.0000037178397, y: 0.0000024586916, z: -0.7071033, w: -0.7071102} + m_LocalPosition: {x: 1, y: 0, z: 0} + m_LocalScale: {x: 0.03270111, y: 1.3080443, z: 0.03270111} + m_Children: [] + m_Father: {fileID: 732268497} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 10.865001, y: 2.6820002, z: 90} +--- !u!23 &985089625 +MeshRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 985089623} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_Materials: + - {fileID: 2100000, guid: aaae8be92ba59487a9946818d7a2017f, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 1 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!65 &985089626 +BoxCollider: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 985089623} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 1, y: 1, z: 1} + m_Center: {x: 0, y: 0, z: 0} +--- !u!33 &985089627 +MeshFilter: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 985089623} + m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} +--- !u!1 &1052679867 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1052679871} + - component: {fileID: 1052679870} + - component: {fileID: 1052679869} + - component: {fileID: 1052679868} + - component: {fileID: 1052679872} + m_Layer: 0 + m_Name: HitCube + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!23 &1052679868 +MeshRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1052679867} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_Materials: + - {fileID: 10303, guid: 0000000000000000f000000000000000, type: 0} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 1 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!65 &1052679869 +BoxCollider: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1052679867} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 1, y: 1, z: 1} + m_Center: {x: 0, y: 0, z: 0} +--- !u!33 &1052679870 +MeshFilter: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1052679867} + m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} +--- !u!4 &1052679871 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1052679867} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0.5, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1286139108} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1052679872 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1052679867} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 6941ec02ead994c9b848d640887441f1, type: 3} + m_Name: + m_EditorClassIdentifier: + m_HitTransform: {fileID: 1286139108} + maxRayDistance: 30 + collisionLayer: + serializedVersion: 2 + m_Bits: 1024 +--- !u!1 &1121666029 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1121666033} + - component: {fileID: 1121666030} + m_Layer: 0 + m_Name: ARCameraManager + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1121666030 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1121666029} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 462d46d2423bb4f738d2497a397b1590, type: 3} + m_Name: + m_EditorClassIdentifier: + m_camera: {fileID: 10} + startAlignment: 0 + planeDetection: 3 + detectionImages: {fileID: 0} + getPointCloud: 1 + enableLightEstimation: 1 + enableAutoFocus: 1 +--- !u!4 &1121666033 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1121666029} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1189943983 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1189943984} + - component: {fileID: 1189943985} + m_Layer: 5 + m_Name: Content + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1189943984 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1189943983} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 274922020} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 300} + m_Pivot: {x: 0, y: 1} +--- !u!114 &1189943985 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1189943983} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1297475563, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 0 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 0 + m_ChildControlHeight: 0 +--- !u!1 &1286139107 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1286139108} + m_Layer: 0 + m_Name: HitCubeParent + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1286139108 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1286139107} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: -0, z: -2.98} + m_LocalScale: {x: 0.1, y: 0.1, z: 0.1} + m_Children: + - {fileID: 1052679871} + m_Father: {fileID: 0} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1308259102 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1308259104} + - component: {fileID: 1308259103} + m_Layer: 0 + m_Name: GeneratePlanes + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1308259103 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1308259102} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 31cac8edf84834043ac167deaeba16a9, type: 3} + m_Name: + m_EditorClassIdentifier: + planePrefab: {fileID: 1372998203143648, guid: f879aaf3eeb0c467eb22cbaf08dc97a4, + type: 2} +--- !u!4 &1308259104 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1308259102} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1363382584 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1363382585} + m_Layer: 5 + m_Name: Sliding Area + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1363382585 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1363382584} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1675014625} + m_Father: {fileID: 1682093431} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: -20, y: -20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1413404287 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1413404288} + - component: {fileID: 1413404291} + - component: {fileID: 1413404290} + - component: {fileID: 1413404289} + m_Layer: 5 + m_Name: Scrollbar Vertical + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1413404288 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1413404287} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 719579885} + m_Father: {fileID: 1566929735} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 1, y: 0} + m_AnchorMax: {x: 1, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 20, y: 0} + m_Pivot: {x: 1, y: 1} +--- !u!114 &1413404289 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1413404287} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -2061169968, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1614431147} + m_HandleRect: {fileID: 1614431146} + m_Direction: 2 + m_Value: 0 + m_Size: 1 + m_NumberOfSteps: 0 + m_OnValueChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.Scrollbar+ScrollEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &1413404290 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1413404287} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 10907, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1413404291 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1413404287} +--- !u!1 &1563586579 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1563586580} + - component: {fileID: 1563586583} + - component: {fileID: 1563586582} + - component: {fileID: 1563586581} + m_Layer: 0 + m_Name: YAxis + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1563586580 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1563586579} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 1, z: 0} + m_LocalScale: {x: 0.03270111, y: 1.3080444, z: 0.032701116} + m_Children: [] + m_Father: {fileID: 732268497} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!23 &1563586581 +MeshRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1563586579} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_Materials: + - {fileID: 2100000, guid: 8fa2e9e7c08844dd4a8d581610839228, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 1 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!65 &1563586582 +BoxCollider: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1563586579} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 1, y: 1, z: 1} + m_Center: {x: 0, y: 0, z: 0} +--- !u!33 &1563586583 +MeshFilter: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1563586579} + m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} +--- !u!1 &1566160547 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1566160549} + - component: {fileID: 1566160548} + m_Layer: 0 + m_Name: VideoFormatExample + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1566160548 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1566160547} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f8733413e47b0493a8897e36a496df50, type: 3} + m_Name: + m_EditorClassIdentifier: + formatsParent: {fileID: 1189943984} + videoFormatButtonPrefab: {fileID: 1036539979525446, guid: 95c6bff2dfc164406901450885b965af, + type: 2} +--- !u!4 &1566160549 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1566160547} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 9 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1566929734 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1566929735} + - component: {fileID: 1566929738} + - component: {fileID: 1566929737} + - component: {fileID: 1566929736} + m_Layer: 5 + m_Name: Scroll View + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1566929735 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1566929734} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 274922020} + - {fileID: 1682093431} + - {fileID: 1413404288} + m_Father: {fileID: 14396415} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -400, y: 156} + m_SizeDelta: {x: 530, y: 400} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1566929736 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1566929734} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 0.392} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 10907, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1566929737 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1566929734} +--- !u!114 &1566929738 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1566929734} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1367256648, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Content: {fileID: 1189943984} + m_Horizontal: 1 + m_Vertical: 1 + m_MovementType: 1 + m_Elasticity: 0.1 + m_Inertia: 1 + m_DecelerationRate: 0.135 + m_ScrollSensitivity: 1 + m_Viewport: {fileID: 274922020} + m_HorizontalScrollbar: {fileID: 1682093432} + m_VerticalScrollbar: {fileID: 1413404289} + m_HorizontalScrollbarVisibility: 2 + m_VerticalScrollbarVisibility: 2 + m_HorizontalScrollbarSpacing: -3 + m_VerticalScrollbarSpacing: -3 + m_OnValueChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.ScrollRect+ScrollRectEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!1 &1614431145 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1614431146} + - component: {fileID: 1614431148} + - component: {fileID: 1614431147} + m_Layer: 5 + m_Name: Handle + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1614431146 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1614431145} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 719579885} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 20, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1614431147 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1614431145} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1614431148 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1614431145} +--- !u!1 &1675014624 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1675014625} + - component: {fileID: 1675014627} + - component: {fileID: 1675014626} + m_Layer: 5 + m_Name: Handle + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1675014625 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1675014624} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1363382585} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 20, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1675014626 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1675014624} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1675014627 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1675014624} +--- !u!1 &1682093430 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1682093431} + - component: {fileID: 1682093434} + - component: {fileID: 1682093433} + - component: {fileID: 1682093432} + m_Layer: 5 + m_Name: Scrollbar Horizontal + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1682093431 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1682093430} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1363382585} + m_Father: {fileID: 1566929735} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 20} + m_Pivot: {x: 0, y: 0} +--- !u!114 &1682093432 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1682093430} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -2061169968, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1675014626} + m_HandleRect: {fileID: 1675014625} + m_Direction: 0 + m_Value: 0 + m_Size: 1 + m_NumberOfSteps: 0 + m_OnValueChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.Scrollbar+ScrollEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &1682093433 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1682093430} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 10907, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1682093434 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1682093430} +--- !u!1 &2134794026 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 2134794027} + - component: {fileID: 2134794030} + - component: {fileID: 2134794029} + - component: {fileID: 2134794028} + m_Layer: 0 + m_Name: ZAxis + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2134794027 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2134794026} + m_LocalRotation: {x: 0.49999562, y: 0.5000044, z: 0.49999562, w: 0.5000044} + m_LocalPosition: {x: -0.05, y: 0, z: 1} + m_LocalScale: {x: 0.03270111, y: 1.3080443, z: 0.032701112} + m_Children: [] + m_Father: {fileID: 732268497} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 90, z: 89.999} +--- !u!23 &2134794028 +MeshRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2134794026} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_Materials: + - {fileID: 2100000, guid: d55ccb0db00e54a1696c1e96094d706d, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 1 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!65 &2134794029 +BoxCollider: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2134794026} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 1, y: 1, z: 1} + m_Center: {x: 0, y: 0, z: 0} +--- !u!33 &2134794030 +MeshFilter: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2134794026} + m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARVideoFormats/UnityARVideoFormats.unity.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARVideoFormats/UnityARVideoFormats.unity.meta new file mode 100644 index 000000000..454aee994 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARVideoFormats/UnityARVideoFormats.unity.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a88a66a31e1c640bb8f6592ac0e4ee7f +timeCreated: 1518290295 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARVideoFormats/VideoFormatButton.cs b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARVideoFormats/VideoFormatButton.cs new file mode 100644 index 000000000..69e392f47 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARVideoFormats/VideoFormatButton.cs @@ -0,0 +1,27 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEngine.UI; +using UnityEngine.XR.iOS; + +public class VideoFormatButton : MonoBehaviour { + + public Text videoFormatDescription; + private UnityARVideoFormat arVideoFormat; + + public delegate void VideoFormatButtonPressed(UnityARVideoFormat videoFormat); + public static event VideoFormatButtonPressed FormatButtonPressedEvent; + + public void Populate(UnityARVideoFormat videoFormat) + { + arVideoFormat = videoFormat; + videoFormatDescription.text = "VideoFormat Resolution: " + videoFormat.imageResolutionWidth + "x" + videoFormat.imageResolutionHeight + " FPS: " + videoFormat.framesPerSecond; + } + + public void ButtonPressed() + { + if (FormatButtonPressedEvent != null) { + FormatButtonPressedEvent.Invoke (arVideoFormat); + } + } +} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARVideoFormats/VideoFormatButton.cs.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARVideoFormats/VideoFormatButton.cs.meta new file mode 100644 index 000000000..9805a6333 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARVideoFormats/VideoFormatButton.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 2dc7312ca3b1549c6b07084d70ec4345 +timeCreated: 1518290389 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARVideoFormats/VideoFormatsExample.cs b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARVideoFormats/VideoFormatsExample.cs new file mode 100644 index 000000000..6aa516a82 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARVideoFormats/VideoFormatsExample.cs @@ -0,0 +1,57 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEngine.XR.iOS; + + + +public class VideoFormatsExample : MonoBehaviour { + + public Transform formatsParent; + public GameObject videoFormatButtonPrefab; + + // Use this for initialization + void Start () { + VideoFormatButton.FormatButtonPressedEvent += ExampletButtonPressed; + PopulateVideoFormatButtons (); + } + + void OnDestroy () { + VideoFormatButton.FormatButtonPressedEvent -= ExampletButtonPressed; + } + + void PopulateVideoFormatButtons() + { + foreach (UnityARVideoFormat vf in UnityARVideoFormat.SupportedVideoFormats()) + { + GameObject go = Instantiate (videoFormatButtonPrefab, formatsParent); + VideoFormatButton vfb = go.GetComponent (); + if (vfb != null) { + vfb.Populate (vf); + } + } + } + + public void ExampletButtonPressed(UnityARVideoFormat videoFormat) + { + //Restart session with new video format in config + + UnityARSessionNativeInterface session = UnityARSessionNativeInterface.GetARSessionNativeInterface(); + + ARKitWorldTrackingSessionConfiguration config = new ARKitWorldTrackingSessionConfiguration(); + + if (config.IsSupported) { + config.planeDetection = UnityARPlaneDetection.HorizontalAndVertical; + config.alignment = UnityARAlignment.UnityARAlignmentGravity; + config.getPointCloudData = true; + config.enableLightEstimation = true; + config.enableAutoFocus = true; + config.videoFormat = videoFormat.videoFormatPtr; + Application.targetFrameRate = videoFormat.framesPerSecond; + + UnityARSessionRunOption runOption = UnityARSessionRunOption.ARSessionRunOptionRemoveExistingAnchors | UnityARSessionRunOption.ARSessionRunOptionResetTracking; + session.RunWithConfigAndOptions (config, runOption); + } + + } +} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARVideoFormats/VideoFormatsExample.cs.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARVideoFormats/VideoFormatsExample.cs.meta new file mode 100644 index 000000000..4304c01e5 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit1.5/UnityARVideoFormats/VideoFormatsExample.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: f8733413e47b0493a8897e36a496df50 +timeCreated: 1518224302 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0.meta new file mode 100644 index 000000000..013396944 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 5afb0c06196084cc78ff12d7dc05de4d +folderAsset: yes +timeCreated: 1523485203 +licenseType: Pro +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityAREnvironmentTexture.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityAREnvironmentTexture.meta new file mode 100644 index 000000000..c378a4781 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityAREnvironmentTexture.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 43d62f7feb3d040e88880a0627007c65 +folderAsset: yes +timeCreated: 1523650634 +licenseType: Pro +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityAREnvironmentTexture/GenerateEnvironmentProbeAnchors.cs b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityAREnvironmentTexture/GenerateEnvironmentProbeAnchors.cs new file mode 100644 index 000000000..bf66a5137 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityAREnvironmentTexture/GenerateEnvironmentProbeAnchors.cs @@ -0,0 +1,75 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEngine.XR.iOS; +using Collections.Hybrid.Generic; + +public class GenerateEnvironmentProbeAnchors : MonoBehaviour { + + [SerializeField] + ReflectionProbeGameObject m_ReflectionProbePrefab; + + private LinkedListDictionary probeAnchorMap; + + + + void Start () + { + probeAnchorMap = new LinkedListDictionary (); + UnityARSessionNativeInterface.AREnvironmentProbeAnchorAddedEvent += EnvironmentProbeAnchorAdded; + UnityARSessionNativeInterface.AREnvironmentProbeAnchorRemovedEvent += EnvironmentProbeAnchorRemoved; + UnityARSessionNativeInterface.AREnvironmentProbeAnchorUpdatedEvent += EnvironmentProbeAnchorUpdated; + } + + void EnvironmentProbeAnchorUpdated (AREnvironmentProbeAnchor anchorData) + { + if (probeAnchorMap.ContainsKey (anchorData.identifier)) { + probeAnchorMap [anchorData.identifier].UpdateEnvironmentProbe(anchorData); + } + + } + + void EnvironmentProbeAnchorRemoved (AREnvironmentProbeAnchor anchorData) + { + if (probeAnchorMap.ContainsKey (anchorData.identifier)) { + ReflectionProbeGameObject rpgo = probeAnchorMap [anchorData.identifier]; + GameObject.Destroy (rpgo.gameObject); + probeAnchorMap.Remove (anchorData.identifier); + } + } + + void EnvironmentProbeAnchorAdded (AREnvironmentProbeAnchor anchorData) + { + ReflectionProbeGameObject go = GameObject.Instantiate (m_ReflectionProbePrefab); + if (go != null) + { + //do coordinate conversion from ARKit to Unity + go.transform.position = UnityARMatrixOps.GetPosition (anchorData.transform); + go.transform.rotation = UnityARMatrixOps.GetRotation (anchorData.transform); + + probeAnchorMap [anchorData.identifier] = go; + go.UpdateEnvironmentProbe (anchorData); + } + + } + + void OnDestroy() + { + UnityARSessionNativeInterface.AREnvironmentProbeAnchorAddedEvent -= EnvironmentProbeAnchorAdded; + UnityARSessionNativeInterface.AREnvironmentProbeAnchorRemovedEvent -= EnvironmentProbeAnchorRemoved; + UnityARSessionNativeInterface.AREnvironmentProbeAnchorUpdatedEvent -= EnvironmentProbeAnchorUpdated; + + foreach (ReflectionProbeGameObject rpgo in probeAnchorMap.Values) + { + GameObject.Destroy (rpgo); + } + + probeAnchorMap.Clear (); + + } + + // Update is called once per frame + void Update () { + + } +} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityAREnvironmentTexture/GenerateEnvironmentProbeAnchors.cs.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityAREnvironmentTexture/GenerateEnvironmentProbeAnchors.cs.meta new file mode 100644 index 000000000..df0cc70e0 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityAREnvironmentTexture/GenerateEnvironmentProbeAnchors.cs.meta @@ -0,0 +1,13 @@ +fileFormatVersion: 2 +guid: dfed9f4e970f64caaa0ed9d980c26ce7 +timeCreated: 1524007750 +licenseType: Pro +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityAREnvironmentTexture/HitCreateEnvironmentProbe.cs b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityAREnvironmentTexture/HitCreateEnvironmentProbe.cs new file mode 100644 index 000000000..848695139 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityAREnvironmentTexture/HitCreateEnvironmentProbe.cs @@ -0,0 +1,98 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEngine.XR.iOS; +using System; + +public class HitCreateEnvironmentProbe : MonoBehaviour +{ + + public float maxRayDistance = 30.0f; + public LayerMask collisionLayer = 1 << 10; //ARKitPlane layer + + void CreateEnvironmentProbe(Matrix4x4 worldTransform) + { + //note we have not converted to Unity coord system yet, so we can pass it in directly + UnityAREnvironmentProbeAnchorData anchorData; + anchorData.ptrIdentifier = IntPtr.Zero; + anchorData.probeExtent = Vector3.one; + anchorData.transform = UnityARMatrixOps.GetMatrix (worldTransform); //this should be in ARKit coords + anchorData.cubemapData.cubemapPtr = IntPtr.Zero; + anchorData.cubemapData.textureFormat = UnityAREnvironmentTextureFormat.UnityAREnvironmentTextureFormatDefault; + anchorData.cubemapData.width = 0; + anchorData.cubemapData.height = 0; + anchorData.cubemapData.mipmapCount = 0; + anchorData = UnityARSessionNativeInterface.GetARSessionNativeInterface ().AddEnvironmentProbeAnchor (anchorData); + } + + bool HitTestWithResultType (ARPoint point, ARHitTestResultType resultTypes) + { + List hitResults = UnityARSessionNativeInterface.GetARSessionNativeInterface ().HitTest (point, resultTypes); + if (hitResults.Count > 0) { + foreach (var hitResult in hitResults) { + Debug.Log ("Got hit!"); + //note we have not converted to Unity coord system yet - since we are going to pass this back to ARKit + CreateEnvironmentProbe (hitResult.worldTransform); + return true; + } + } + return false; + } + + // Update is called once per frame + void Update () { + #if UNITY_EDITOR //we will only use this script on the editor side, though there is nothing that would prevent it from working on device + if (Input.GetMouseButtonDown (0)) { + Ray ray = Camera.main.ScreenPointToRay (Input.mousePosition); + RaycastHit hit; + + //we'll try to hit one of the plane collider gameobjects that were generated by the plugin + //effectively similar to calling HitTest with ARHitTestResultType.ARHitTestResultTypeExistingPlaneUsingExtent + if (Physics.Raycast (ray, out hit, maxRayDistance, collisionLayer)) + { + //Create an environment probe anchor in editor + //we're going to get the position from the contact point + //m_HitTransform.position = hit.point; + //Debug.Log (string.Format ("x:{0:0.######} y:{1:0.######} z:{2:0.######}", m_HitTransform.position.x, m_HitTransform.position.y, m_HitTransform.position.z)); + + //and the rotation from the transform of the plane collider + //m_HitTransform.rotation = hit.transform.rotation; + } + } + #else + if (Input.touchCount > 0) + { + var touch = Input.GetTouch(0); + if (touch.phase == TouchPhase.Began) + { + var screenPosition = Camera.main.ScreenToViewportPoint(touch.position); + ARPoint point = new ARPoint { + x = screenPosition.x, + y = screenPosition.y + }; + + // prioritize reults types + ARHitTestResultType[] resultTypes = { + //ARHitTestResultType.ARHitTestResultTypeExistingPlaneUsingGeometry, + ARHitTestResultType.ARHitTestResultTypeExistingPlaneUsingExtent, + // if you want to use infinite planes use this: + //ARHitTestResultType.ARHitTestResultTypeExistingPlane, + //ARHitTestResultType.ARHitTestResultTypeEstimatedHorizontalPlane, + //ARHitTestResultType.ARHitTestResultTypeEstimatedVerticalPlane, + ARHitTestResultType.ARHitTestResultTypeFeaturePoint + }; + + foreach (ARHitTestResultType resultType in resultTypes) + { + if (HitTestWithResultType (point, resultType)) + { + return; + } + } + } + } + #endif + + } + +} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityAREnvironmentTexture/HitCreateEnvironmentProbe.cs.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityAREnvironmentTexture/HitCreateEnvironmentProbe.cs.meta new file mode 100644 index 000000000..420ded361 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityAREnvironmentTexture/HitCreateEnvironmentProbe.cs.meta @@ -0,0 +1,13 @@ +fileFormatVersion: 2 +guid: 47459a3bcdc854c5492307466f92398e +timeCreated: 1524084457 +licenseType: Pro +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityAREnvironmentTexture/ReflectionProbeGameObject.cs b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityAREnvironmentTexture/ReflectionProbeGameObject.cs new file mode 100644 index 000000000..1dc3a033d --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityAREnvironmentTexture/ReflectionProbeGameObject.cs @@ -0,0 +1,61 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEngine.XR.iOS; + +[RequireComponent(typeof(ReflectionProbe))] +public class ReflectionProbeGameObject : MonoBehaviour { + + ReflectionProbe reflectionProbe; + bool latchUpdate = false; + Cubemap latchedTexture = null; + + [SerializeField] + GameObject debugExtentGO; + + // Use this for initialization + void Start() + { + reflectionProbe = GetComponent (); + } + + + public void UpdateEnvironmentProbe(AREnvironmentProbeAnchor environmentProbeAnchor) + { + transform.position = UnityARMatrixOps.GetPosition (environmentProbeAnchor.transform); + + Quaternion rot = UnityARMatrixOps.GetRotation (environmentProbeAnchor.transform); + + //rot.z = -rot.z; + //rot.w = -rot.w; + + transform.rotation = rot; + + if (reflectionProbe != null) + { + reflectionProbe.size = environmentProbeAnchor.Extent; + } + + if (debugExtentGO != null) + { + debugExtentGO.transform.localScale = environmentProbeAnchor.Extent; + } + + latchedTexture = environmentProbeAnchor.Cubemap; + latchUpdate = true; + } + + void Update() + { + //always make sure to update texture in next update + if (latchUpdate && reflectionProbe != null) + { + if (reflectionProbe.customBakedTexture != null) + { + Object.Destroy(reflectionProbe.customBakedTexture); + } + reflectionProbe.customBakedTexture = latchedTexture; + latchUpdate = false; + } + } +} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityAREnvironmentTexture/ReflectionProbeGameObject.cs.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityAREnvironmentTexture/ReflectionProbeGameObject.cs.meta new file mode 100644 index 000000000..28def0e78 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityAREnvironmentTexture/ReflectionProbeGameObject.cs.meta @@ -0,0 +1,13 @@ +fileFormatVersion: 2 +guid: 92d3ef5f820884ac4a1a0b78cea353af +timeCreated: 1524008371 +licenseType: Pro +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityAREnvironmentTexture/UnityAREnvironmentProbeAnchor.unity b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityAREnvironmentTexture/UnityAREnvironmentProbeAnchor.unity new file mode 100644 index 000000000..669ca5fb1 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityAREnvironmentTexture/UnityAREnvironmentProbeAnchor.unity @@ -0,0 +1,427 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!29 &1 +OcclusionCullingSettings: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_OcclusionBakeSettings: + smallestOccluder: 5 + smallestHole: 0.25 + backfaceThreshold: 100 + m_SceneGUID: 00000000000000000000000000000000 + m_OcclusionCullingData: {fileID: 0} +--- !u!104 &2 +RenderSettings: + m_ObjectHideFlags: 0 + serializedVersion: 8 + m_Fog: 0 + m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_FogMode: 3 + m_FogDensity: 0.01 + m_LinearFogStart: 0 + m_LinearFogEnd: 300 + m_AmbientSkyColor: {r: 0.2, g: 0.2, b: 0.2, a: 0} + m_AmbientEquatorColor: {r: 0.098908, g: 0.100485, b: 0.119403, a: 1} + m_AmbientGroundColor: {r: 0.098908, g: 0.100485, b: 0.119403, a: 1} + m_AmbientIntensity: 1 + m_AmbientMode: 3 + m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} + m_SkyboxMaterial: {fileID: 0} + m_HaloStrength: 0.5 + m_FlareStrength: 1 + m_FlareFadeSpeed: 3 + m_HaloTexture: {fileID: 0} + m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0} + m_DefaultReflectionMode: 0 + m_DefaultReflectionResolution: 128 + m_ReflectionBounces: 1 + m_ReflectionIntensity: 1 + m_CustomReflection: {fileID: 0} + m_Sun: {fileID: 0} + m_IndirectSpecularColor: {r: 0, g: 0, b: 0, a: 1} +--- !u!157 &4 +LightmapSettings: + m_ObjectHideFlags: 0 + serializedVersion: 11 + m_GIWorkflowMode: 1 + m_GISettings: + serializedVersion: 2 + m_BounceScale: 1 + m_IndirectOutputScale: 1 + m_AlbedoBoost: 1 + m_TemporalCoherenceThreshold: 1 + m_EnvironmentLightingMode: 0 + m_EnableBakedLightmaps: 1 + m_EnableRealtimeLightmaps: 0 + m_LightmapEditorSettings: + serializedVersion: 9 + m_Resolution: 1 + m_BakeResolution: 50 + m_TextureWidth: 1024 + m_TextureHeight: 1024 + m_AO: 1 + m_AOMaxDistance: 1 + m_CompAOExponent: 1 + m_CompAOExponentDirect: 0 + m_Padding: 2 + m_LightmapParameters: {fileID: 0} + m_LightmapsBakeMode: 1 + m_TextureCompression: 0 + m_FinalGather: 0 + m_FinalGatherFiltering: 1 + m_FinalGatherRayCount: 256 + m_ReflectionCompression: 2 + m_MixedBakeMode: 1 + m_BakeBackend: 0 + m_PVRSampling: 1 + m_PVRDirectSampleCount: 32 + m_PVRSampleCount: 500 + m_PVRBounces: 2 + m_PVRFilterTypeDirect: 0 + m_PVRFilterTypeIndirect: 0 + m_PVRFilterTypeAO: 0 + m_PVRFilteringMode: 1 + m_PVRCulling: 1 + m_PVRFilteringGaussRadiusDirect: 1 + m_PVRFilteringGaussRadiusIndirect: 5 + m_PVRFilteringGaussRadiusAO: 2 + m_PVRFilteringAtrousPositionSigmaDirect: 0.5 + m_PVRFilteringAtrousPositionSigmaIndirect: 2 + m_PVRFilteringAtrousPositionSigmaAO: 1 + m_ShowResolutionOverlay: 1 + m_LightingDataAsset: {fileID: 0} + m_UseShadowmask: 1 +--- !u!196 &5 +NavMeshSettings: + serializedVersion: 2 + m_ObjectHideFlags: 0 + m_BuildSettings: + serializedVersion: 2 + agentTypeID: 0 + agentRadius: 0.4 + agentHeight: 1.8 + agentSlope: 45 + agentClimb: 0.9 + ledgeDropHeight: 0 + maxJumpAcrossDistance: 0 + minRegionArea: 2 + manualCellSize: 0 + cellSize: 0.13333333 + manualTileSize: 0 + tileSize: 256 + accuratePlacement: 0 + debug: + m_Flags: 0 + m_NavMeshData: {fileID: 0} +--- !u!1 &7 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 9} + - component: {fileID: 10} + - component: {fileID: 12} + - component: {fileID: 13} + - component: {fileID: 11} + - component: {fileID: 8} + - component: {fileID: 14} + m_Layer: 0 + m_Name: Main Camera + m_TagString: MainCamera + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &8 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b58ecea7a196242dd879c814ac05084c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_ClearMaterial: {fileID: 2100000, guid: f1d9352050a75486f878ab19fa578f16, type: 2} +--- !u!4 &9 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 229804521} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!20 &10 +Camera: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 + serializedVersion: 2 + m_ClearFlags: 3 + m_BackGroundColor: {r: 0.19788063, g: 0.2953552, b: 0.44852942, a: 0.019608} + m_NormalizedViewPortRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + near clip plane: 0.1 + far clip plane: 30 + field of view: 60 + orthographic: 0 + orthographic size: 100 + m_Depth: -1 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingPath: -1 + m_TargetTexture: {fileID: 0} + m_TargetDisplay: 0 + m_TargetEye: 3 + m_HDR: 0 + m_AllowMSAA: 1 + m_AllowDynamicResolution: 0 + m_ForceIntoRT: 0 + m_OcclusionCulling: 1 + m_StereoConvergence: 10 + m_StereoSeparation: 0.022 +--- !u!81 &11 +AudioListener: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 +--- !u!92 &12 +Behaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 +--- !u!124 &13 +Behaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 +--- !u!114 &14 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: ce437cef046e841aabd6070890e79d41, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &16 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 20} + - component: {fileID: 29} + - component: {fileID: 17} + m_Layer: 0 + m_Name: Directional light + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &17 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 16} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5587c957048494a2f96db36e0995449e, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!4 &20 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 16} + m_LocalRotation: {x: -0.31668198, y: -0.33227497, z: 0.119525984, w: -0.8803519} + m_LocalPosition: {x: -2.359002, y: 2.21, z: -3.580904} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!108 &29 +Light: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 16} + m_Enabled: 1 + serializedVersion: 8 + m_Type: 1 + m_Color: {r: 1, g: 0.997495, b: 0.955224, a: 1} + m_Intensity: 1 + m_Range: 10 + m_SpotAngle: 30 + m_CookieSize: 10 + m_Shadows: + m_Type: 0 + m_Resolution: -1 + m_CustomResolution: -1 + m_Strength: 1 + m_Bias: 0.05 + m_NormalBias: 0.4 + m_NearPlane: 0.2 + m_Cookie: {fileID: 0} + m_DrawHalo: 0 + m_Flare: {fileID: 0} + m_RenderMode: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_Lightmapping: 1 + m_AreaSize: {x: 1, y: 1} + m_BounceIntensity: 1 + m_ColorTemperature: 6570 + m_UseColorTemperature: 0 + m_ShadowRadius: 0 + m_ShadowAngle: 0 +--- !u!1 &229804520 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 229804521} + m_Layer: 0 + m_Name: CameraParent + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &229804521 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 229804520} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 9} + m_Father: {fileID: 0} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &538073466 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 538073467} + - component: {fileID: 538073468} + m_Layer: 0 + m_Name: GenerateEnvironmentProbeAnchors + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &538073467 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 538073466} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &538073468 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 538073466} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: dfed9f4e970f64caaa0ed9d980c26ce7, type: 3} + m_Name: + m_EditorClassIdentifier: + m_ReflectionProbePrefab: {fileID: 114202174001495314, guid: 209240d9a5b6a473d85f1c9ecc62698b, + type: 2} +--- !u!1 &1121666029 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1121666033} + - component: {fileID: 1121666030} + m_Layer: 0 + m_Name: ARCameraManager + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1121666030 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1121666029} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 462d46d2423bb4f738d2497a397b1590, type: 3} + m_Name: + m_EditorClassIdentifier: + m_camera: {fileID: 10} + startAlignment: 0 + planeDetection: 1 + getPointCloud: 1 + enableLightEstimation: 1 + enableAutoFocus: 1 + environmentTexturing: 2 + detectionImages: {fileID: 0} + maximumNumberOfTrackedImages: 0 + detectionObjects: {fileID: 0} +--- !u!4 &1121666033 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1121666029} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityAREnvironmentTexture/UnityAREnvironmentProbeAnchor.unity.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityAREnvironmentTexture/UnityAREnvironmentProbeAnchor.unity.meta new file mode 100644 index 000000000..3bbd97ebd --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityAREnvironmentTexture/UnityAREnvironmentProbeAnchor.unity.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 90e8d78f99ddb4db1b5a7148d5d063b9 +timeCreated: 1524006207 +licenseType: Pro +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityAREnvironmentTexture/UnityAREnvironmentProbeAnchorManual.unity b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityAREnvironmentTexture/UnityAREnvironmentProbeAnchorManual.unity new file mode 100644 index 000000000..ada851472 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityAREnvironmentTexture/UnityAREnvironmentProbeAnchorManual.unity @@ -0,0 +1,471 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!29 &1 +OcclusionCullingSettings: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_OcclusionBakeSettings: + smallestOccluder: 5 + smallestHole: 0.25 + backfaceThreshold: 100 + m_SceneGUID: 00000000000000000000000000000000 + m_OcclusionCullingData: {fileID: 0} +--- !u!104 &2 +RenderSettings: + m_ObjectHideFlags: 0 + serializedVersion: 8 + m_Fog: 0 + m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_FogMode: 3 + m_FogDensity: 0.01 + m_LinearFogStart: 0 + m_LinearFogEnd: 300 + m_AmbientSkyColor: {r: 0.2, g: 0.2, b: 0.2, a: 0} + m_AmbientEquatorColor: {r: 0.098908, g: 0.100485, b: 0.119403, a: 1} + m_AmbientGroundColor: {r: 0.098908, g: 0.100485, b: 0.119403, a: 1} + m_AmbientIntensity: 1 + m_AmbientMode: 3 + m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} + m_SkyboxMaterial: {fileID: 0} + m_HaloStrength: 0.5 + m_FlareStrength: 1 + m_FlareFadeSpeed: 3 + m_HaloTexture: {fileID: 0} + m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0} + m_DefaultReflectionMode: 0 + m_DefaultReflectionResolution: 128 + m_ReflectionBounces: 1 + m_ReflectionIntensity: 1 + m_CustomReflection: {fileID: 0} + m_Sun: {fileID: 0} + m_IndirectSpecularColor: {r: 0, g: 0, b: 0, a: 1} +--- !u!157 &4 +LightmapSettings: + m_ObjectHideFlags: 0 + serializedVersion: 11 + m_GIWorkflowMode: 1 + m_GISettings: + serializedVersion: 2 + m_BounceScale: 1 + m_IndirectOutputScale: 1 + m_AlbedoBoost: 1 + m_TemporalCoherenceThreshold: 1 + m_EnvironmentLightingMode: 0 + m_EnableBakedLightmaps: 1 + m_EnableRealtimeLightmaps: 0 + m_LightmapEditorSettings: + serializedVersion: 9 + m_Resolution: 1 + m_BakeResolution: 50 + m_TextureWidth: 1024 + m_TextureHeight: 1024 + m_AO: 1 + m_AOMaxDistance: 1 + m_CompAOExponent: 1 + m_CompAOExponentDirect: 0 + m_Padding: 2 + m_LightmapParameters: {fileID: 0} + m_LightmapsBakeMode: 1 + m_TextureCompression: 0 + m_FinalGather: 0 + m_FinalGatherFiltering: 1 + m_FinalGatherRayCount: 256 + m_ReflectionCompression: 2 + m_MixedBakeMode: 1 + m_BakeBackend: 0 + m_PVRSampling: 1 + m_PVRDirectSampleCount: 32 + m_PVRSampleCount: 500 + m_PVRBounces: 2 + m_PVRFilterTypeDirect: 0 + m_PVRFilterTypeIndirect: 0 + m_PVRFilterTypeAO: 0 + m_PVRFilteringMode: 1 + m_PVRCulling: 1 + m_PVRFilteringGaussRadiusDirect: 1 + m_PVRFilteringGaussRadiusIndirect: 5 + m_PVRFilteringGaussRadiusAO: 2 + m_PVRFilteringAtrousPositionSigmaDirect: 0.5 + m_PVRFilteringAtrousPositionSigmaIndirect: 2 + m_PVRFilteringAtrousPositionSigmaAO: 1 + m_ShowResolutionOverlay: 1 + m_LightingDataAsset: {fileID: 0} + m_UseShadowmask: 1 +--- !u!196 &5 +NavMeshSettings: + serializedVersion: 2 + m_ObjectHideFlags: 0 + m_BuildSettings: + serializedVersion: 2 + agentTypeID: 0 + agentRadius: 0.4 + agentHeight: 1.8 + agentSlope: 45 + agentClimb: 0.9 + ledgeDropHeight: 0 + maxJumpAcrossDistance: 0 + minRegionArea: 2 + manualCellSize: 0 + cellSize: 0.13333333 + manualTileSize: 0 + tileSize: 256 + accuratePlacement: 0 + debug: + m_Flags: 0 + m_NavMeshData: {fileID: 0} +--- !u!1 &7 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 9} + - component: {fileID: 10} + - component: {fileID: 12} + - component: {fileID: 13} + - component: {fileID: 11} + - component: {fileID: 8} + - component: {fileID: 14} + m_Layer: 0 + m_Name: Main Camera + m_TagString: MainCamera + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &8 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b58ecea7a196242dd879c814ac05084c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_ClearMaterial: {fileID: 2100000, guid: f1d9352050a75486f878ab19fa578f16, type: 2} +--- !u!4 &9 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 229804521} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!20 &10 +Camera: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 + serializedVersion: 2 + m_ClearFlags: 3 + m_BackGroundColor: {r: 0.19788063, g: 0.2953552, b: 0.44852942, a: 0.019608} + m_NormalizedViewPortRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + near clip plane: 0.1 + far clip plane: 30 + field of view: 60 + orthographic: 0 + orthographic size: 100 + m_Depth: -1 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingPath: -1 + m_TargetTexture: {fileID: 0} + m_TargetDisplay: 0 + m_TargetEye: 3 + m_HDR: 0 + m_AllowMSAA: 1 + m_AllowDynamicResolution: 0 + m_ForceIntoRT: 0 + m_OcclusionCulling: 1 + m_StereoConvergence: 10 + m_StereoSeparation: 0.022 +--- !u!81 &11 +AudioListener: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 +--- !u!92 &12 +Behaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 +--- !u!124 &13 +Behaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 +--- !u!114 &14 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: ce437cef046e841aabd6070890e79d41, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &16 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 20} + - component: {fileID: 29} + - component: {fileID: 17} + m_Layer: 0 + m_Name: Directional light + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &17 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 16} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5587c957048494a2f96db36e0995449e, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!4 &20 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 16} + m_LocalRotation: {x: -0.31668198, y: -0.33227497, z: 0.119525984, w: -0.8803519} + m_LocalPosition: {x: -2.359002, y: 2.21, z: -3.580904} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!108 &29 +Light: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 16} + m_Enabled: 1 + serializedVersion: 8 + m_Type: 1 + m_Color: {r: 1, g: 0.997495, b: 0.955224, a: 1} + m_Intensity: 1 + m_Range: 10 + m_SpotAngle: 30 + m_CookieSize: 10 + m_Shadows: + m_Type: 0 + m_Resolution: -1 + m_CustomResolution: -1 + m_Strength: 1 + m_Bias: 0.05 + m_NormalBias: 0.4 + m_NearPlane: 0.2 + m_Cookie: {fileID: 0} + m_DrawHalo: 0 + m_Flare: {fileID: 0} + m_RenderMode: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_Lightmapping: 1 + m_AreaSize: {x: 1, y: 1} + m_BounceIntensity: 1 + m_ColorTemperature: 6570 + m_UseColorTemperature: 0 + m_ShadowRadius: 0 + m_ShadowAngle: 0 +--- !u!1 &229804520 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 229804521} + m_Layer: 0 + m_Name: CameraParent + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &229804521 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 229804520} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 9} + m_Father: {fileID: 0} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &360535780 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 360535782} + - component: {fileID: 360535781} + m_Layer: 0 + m_Name: HitCreateEnvironmentProbe + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &360535781 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 360535780} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 47459a3bcdc854c5492307466f92398e, type: 3} + m_Name: + m_EditorClassIdentifier: + maxRayDistance: 30 + collisionLayer: + serializedVersion: 2 + m_Bits: 1024 +--- !u!4 &360535782 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 360535780} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &538073466 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 538073467} + - component: {fileID: 538073468} + m_Layer: 0 + m_Name: GenerateEnvironmentProbeAnchors + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &538073467 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 538073466} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &538073468 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 538073466} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: dfed9f4e970f64caaa0ed9d980c26ce7, type: 3} + m_Name: + m_EditorClassIdentifier: + m_ReflectionProbePrefab: {fileID: 114202174001495314, guid: 209240d9a5b6a473d85f1c9ecc62698b, + type: 2} +--- !u!1 &1121666029 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1121666033} + - component: {fileID: 1121666030} + m_Layer: 0 + m_Name: ARCameraManager + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1121666030 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1121666029} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 462d46d2423bb4f738d2497a397b1590, type: 3} + m_Name: + m_EditorClassIdentifier: + m_camera: {fileID: 10} + startAlignment: 0 + planeDetection: 1 + getPointCloud: 1 + enableLightEstimation: 1 + enableAutoFocus: 1 + environmentTexturing: 1 + detectionImages: {fileID: 0} + maximumNumberOfTrackedImages: 0 + detectionObjects: {fileID: 0} +--- !u!4 &1121666033 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1121666029} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityAREnvironmentTexture/UnityAREnvironmentProbeAnchorManual.unity.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityAREnvironmentTexture/UnityAREnvironmentProbeAnchorManual.unity.meta new file mode 100644 index 000000000..6a12be5de --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityAREnvironmentTexture/UnityAREnvironmentProbeAnchorManual.unity.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 5f542d5b0c973449d94b4c654c3587b8 +timeCreated: 1524006207 +licenseType: Pro +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityARObjectAnchor.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityARObjectAnchor.meta new file mode 100644 index 000000000..720bd995a --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityARObjectAnchor.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 27514de6a60cf495790ec2b262d99195 +folderAsset: yes +timeCreated: 1523555567 +licenseType: Pro +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityARObjectAnchor/CokeCanObject.asset b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityARObjectAnchor/CokeCanObject.asset new file mode 100644 index 000000000..dd5d7ab7a --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityARObjectAnchor/CokeCanObject.asset @@ -0,0 +1,15 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: ea5fe5050450e46b696fbcff74cf3370, type: 3} + m_Name: CokeCanObject + m_EditorClassIdentifier: + objectName: cokeCan + referenceObject: {fileID: 102900000, guid: 03163c77b90434530bcfcb50f6da39f5, type: 3} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityARObjectAnchor/CokeCanObject.asset.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityARObjectAnchor/CokeCanObject.asset.meta new file mode 100644 index 000000000..022477a8a --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityARObjectAnchor/CokeCanObject.asset.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: e19bf88186ac942868db78225b734e9c +timeCreated: 1527702223 +licenseType: Pro +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityARObjectAnchor/ExampleObjectsSet.asset b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityARObjectAnchor/ExampleObjectsSet.asset new file mode 100644 index 000000000..b86963297 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityARObjectAnchor/ExampleObjectsSet.asset @@ -0,0 +1,16 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: a5fac0b2c4da9499891f5a2e62563e15, type: 3} + m_Name: ExampleObjectsSet + m_EditorClassIdentifier: + resourceGroupName: ExampleObjectsResourceGroup + referenceObjectAssets: + - {fileID: 11400000, guid: e19bf88186ac942868db78225b734e9c, type: 2} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityARObjectAnchor/ExampleObjectsSet.asset.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityARObjectAnchor/ExampleObjectsSet.asset.meta new file mode 100644 index 000000000..0021f7d3a --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityARObjectAnchor/ExampleObjectsSet.asset.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 0700ead5baf8b4b778809cd428565c03 +timeCreated: 1523901996 +licenseType: Pro +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityARObjectAnchor/GenerateObjectAnchor.cs b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityARObjectAnchor/GenerateObjectAnchor.cs new file mode 100644 index 000000000..d50ed36f4 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityARObjectAnchor/GenerateObjectAnchor.cs @@ -0,0 +1,66 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEngine.XR.iOS; + +public class GenerateObjectAnchor : MonoBehaviour +{ + + [SerializeField] + private ARReferenceObjectAsset referenceObjectAsset; + + [SerializeField] + private GameObject prefabToGenerate; + + private GameObject objectAnchorGO; + + // Use this for initialization + void Start () { + UnityARSessionNativeInterface.ARObjectAnchorAddedEvent += AddObjectAnchor; + UnityARSessionNativeInterface.ARObjectAnchorUpdatedEvent += UpdateObjectAnchor; + UnityARSessionNativeInterface.ARObjectAnchorRemovedEvent += RemoveObjectAnchor; + + } + + void AddObjectAnchor(ARObjectAnchor arObjectAnchor) + { + Debug.Log ("object anchor added"); + if (arObjectAnchor.referenceObjectName == referenceObjectAsset.objectName) { + Vector3 position = UnityARMatrixOps.GetPosition (arObjectAnchor.transform); + Quaternion rotation = UnityARMatrixOps.GetRotation (arObjectAnchor.transform); + + objectAnchorGO = Instantiate (prefabToGenerate, position, rotation); + } + } + + void UpdateObjectAnchor(ARObjectAnchor arObjectAnchor) + { + Debug.Log ("object anchor updated"); + if (arObjectAnchor.referenceObjectName == referenceObjectAsset.objectName) { + objectAnchorGO.transform.position = UnityARMatrixOps.GetPosition (arObjectAnchor.transform); + objectAnchorGO.transform.rotation = UnityARMatrixOps.GetRotation (arObjectAnchor.transform); + } + + } + + void RemoveObjectAnchor(ARObjectAnchor arObjectAnchor) + { + Debug.Log ("object anchor removed"); + if ((arObjectAnchor.referenceObjectName == referenceObjectAsset.objectName) && (objectAnchorGO != null)) { + GameObject.Destroy (objectAnchorGO); + } + } + + void OnDestroy() + { + UnityARSessionNativeInterface.ARObjectAnchorAddedEvent -= AddObjectAnchor; + UnityARSessionNativeInterface.ARObjectAnchorUpdatedEvent -= UpdateObjectAnchor; + UnityARSessionNativeInterface.ARObjectAnchorRemovedEvent -= RemoveObjectAnchor; + + } + + // Update is called once per frame + void Update () { + + } +} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityARObjectAnchor/GenerateObjectAnchor.cs.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityARObjectAnchor/GenerateObjectAnchor.cs.meta new file mode 100644 index 000000000..21b251118 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityARObjectAnchor/GenerateObjectAnchor.cs.meta @@ -0,0 +1,13 @@ +fileFormatVersion: 2 +guid: 5062efa1920ef4f8b93f82f869e65a8d +timeCreated: 1523558137 +licenseType: Pro +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityARObjectAnchor/ReferenceObjects.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityARObjectAnchor/ReferenceObjects.meta new file mode 100644 index 000000000..0b4f1bf29 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityARObjectAnchor/ReferenceObjects.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: ecf5459ae4f86489a8975203db243ff6 +folderAsset: yes +timeCreated: 1523556077 +licenseType: Pro +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityARObjectAnchor/ReferenceObjects/cokeCan.arobject b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityARObjectAnchor/ReferenceObjects/cokeCan.arobject new file mode 100644 index 000000000..ab98c653d Binary files /dev/null and b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityARObjectAnchor/ReferenceObjects/cokeCan.arobject differ diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityARObjectAnchor/ReferenceObjects/cokeCan.arobject.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityARObjectAnchor/ReferenceObjects/cokeCan.arobject.meta new file mode 100644 index 000000000..2fa119eb0 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityARObjectAnchor/ReferenceObjects/cokeCan.arobject.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 03163c77b90434530bcfcb50f6da39f5 +timeCreated: 1536711960 +licenseType: Pro +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityARObjectAnchor/ReferenceObjects/cokeCan.png b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityARObjectAnchor/ReferenceObjects/cokeCan.png new file mode 100644 index 000000000..cdf73b964 Binary files /dev/null and b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityARObjectAnchor/ReferenceObjects/cokeCan.png differ diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityARObjectAnchor/ReferenceObjects/cokeCan.png.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityARObjectAnchor/ReferenceObjects/cokeCan.png.meta new file mode 100644 index 000000000..4117ceb7c --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityARObjectAnchor/ReferenceObjects/cokeCan.png.meta @@ -0,0 +1,78 @@ +fileFormatVersion: 2 +guid: 4e913721b36df4a28958b9165bf4caa8 +timeCreated: 1536712552 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityARObjectAnchor/UnityARObjectAnchor.unity b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityARObjectAnchor/UnityARObjectAnchor.unity new file mode 100644 index 000000000..761d89618 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityARObjectAnchor/UnityARObjectAnchor.unity @@ -0,0 +1,768 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!29 &1 +OcclusionCullingSettings: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_OcclusionBakeSettings: + smallestOccluder: 5 + smallestHole: 0.25 + backfaceThreshold: 100 + m_SceneGUID: 00000000000000000000000000000000 + m_OcclusionCullingData: {fileID: 0} +--- !u!104 &2 +RenderSettings: + m_ObjectHideFlags: 0 + serializedVersion: 8 + m_Fog: 0 + m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_FogMode: 3 + m_FogDensity: 0.01 + m_LinearFogStart: 0 + m_LinearFogEnd: 300 + m_AmbientSkyColor: {r: 0.2, g: 0.2, b: 0.2, a: 0} + m_AmbientEquatorColor: {r: 0.098908, g: 0.100485, b: 0.119403, a: 1} + m_AmbientGroundColor: {r: 0.098908, g: 0.100485, b: 0.119403, a: 1} + m_AmbientIntensity: 1 + m_AmbientMode: 3 + m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} + m_SkyboxMaterial: {fileID: 0} + m_HaloStrength: 0.5 + m_FlareStrength: 1 + m_FlareFadeSpeed: 3 + m_HaloTexture: {fileID: 0} + m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0} + m_DefaultReflectionMode: 0 + m_DefaultReflectionResolution: 128 + m_ReflectionBounces: 1 + m_ReflectionIntensity: 1 + m_CustomReflection: {fileID: 0} + m_Sun: {fileID: 0} + m_IndirectSpecularColor: {r: 0, g: 0, b: 0, a: 1} +--- !u!157 &4 +LightmapSettings: + m_ObjectHideFlags: 0 + serializedVersion: 11 + m_GIWorkflowMode: 1 + m_GISettings: + serializedVersion: 2 + m_BounceScale: 1 + m_IndirectOutputScale: 1 + m_AlbedoBoost: 1 + m_TemporalCoherenceThreshold: 1 + m_EnvironmentLightingMode: 0 + m_EnableBakedLightmaps: 1 + m_EnableRealtimeLightmaps: 0 + m_LightmapEditorSettings: + serializedVersion: 9 + m_Resolution: 1 + m_BakeResolution: 50 + m_TextureWidth: 1024 + m_TextureHeight: 1024 + m_AO: 1 + m_AOMaxDistance: 1 + m_CompAOExponent: 1 + m_CompAOExponentDirect: 0 + m_Padding: 2 + m_LightmapParameters: {fileID: 0} + m_LightmapsBakeMode: 1 + m_TextureCompression: 0 + m_FinalGather: 0 + m_FinalGatherFiltering: 1 + m_FinalGatherRayCount: 256 + m_ReflectionCompression: 2 + m_MixedBakeMode: 1 + m_BakeBackend: 0 + m_PVRSampling: 1 + m_PVRDirectSampleCount: 32 + m_PVRSampleCount: 500 + m_PVRBounces: 2 + m_PVRFilterTypeDirect: 0 + m_PVRFilterTypeIndirect: 0 + m_PVRFilterTypeAO: 0 + m_PVRFilteringMode: 1 + m_PVRCulling: 1 + m_PVRFilteringGaussRadiusDirect: 1 + m_PVRFilteringGaussRadiusIndirect: 5 + m_PVRFilteringGaussRadiusAO: 2 + m_PVRFilteringAtrousPositionSigmaDirect: 0.5 + m_PVRFilteringAtrousPositionSigmaIndirect: 2 + m_PVRFilteringAtrousPositionSigmaAO: 1 + m_ShowResolutionOverlay: 1 + m_LightingDataAsset: {fileID: 0} + m_UseShadowmask: 1 +--- !u!196 &5 +NavMeshSettings: + serializedVersion: 2 + m_ObjectHideFlags: 0 + m_BuildSettings: + serializedVersion: 2 + agentTypeID: 0 + agentRadius: 0.4 + agentHeight: 1.8 + agentSlope: 45 + agentClimb: 0.9 + ledgeDropHeight: 0 + maxJumpAcrossDistance: 0 + minRegionArea: 2 + manualCellSize: 0 + cellSize: 0.13333333 + manualTileSize: 0 + tileSize: 256 + accuratePlacement: 0 + debug: + m_Flags: 0 + m_NavMeshData: {fileID: 0} +--- !u!1 &7 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 9} + - component: {fileID: 10} + - component: {fileID: 12} + - component: {fileID: 13} + - component: {fileID: 11} + - component: {fileID: 8} + - component: {fileID: 14} + m_Layer: 0 + m_Name: Main Camera + m_TagString: MainCamera + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &8 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b58ecea7a196242dd879c814ac05084c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_ClearMaterial: {fileID: 2100000, guid: f1d9352050a75486f878ab19fa578f16, type: 2} +--- !u!4 &9 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 229804521} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!20 &10 +Camera: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 + serializedVersion: 2 + m_ClearFlags: 3 + m_BackGroundColor: {r: 0.19788063, g: 0.2953552, b: 0.44852942, a: 0.019608} + m_NormalizedViewPortRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + near clip plane: 0.1 + far clip plane: 30 + field of view: 60 + orthographic: 0 + orthographic size: 100 + m_Depth: -1 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingPath: -1 + m_TargetTexture: {fileID: 0} + m_TargetDisplay: 0 + m_TargetEye: 3 + m_HDR: 0 + m_AllowMSAA: 1 + m_AllowDynamicResolution: 0 + m_ForceIntoRT: 0 + m_OcclusionCulling: 1 + m_StereoConvergence: 10 + m_StereoSeparation: 0.022 +--- !u!81 &11 +AudioListener: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 +--- !u!92 &12 +Behaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 +--- !u!124 &13 +Behaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 +--- !u!114 &14 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: ce437cef046e841aabd6070890e79d41, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &16 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 20} + - component: {fileID: 29} + - component: {fileID: 17} + m_Layer: 0 + m_Name: Directional light + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &17 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 16} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5587c957048494a2f96db36e0995449e, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!4 &20 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 16} + m_LocalRotation: {x: -0.31668198, y: -0.33227497, z: 0.119525984, w: -0.8803519} + m_LocalPosition: {x: -2.359002, y: 2.21, z: -3.580904} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!108 &29 +Light: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 16} + m_Enabled: 1 + serializedVersion: 8 + m_Type: 1 + m_Color: {r: 1, g: 0.997495, b: 0.955224, a: 1} + m_Intensity: 1 + m_Range: 10 + m_SpotAngle: 30 + m_CookieSize: 10 + m_Shadows: + m_Type: 0 + m_Resolution: -1 + m_CustomResolution: -1 + m_Strength: 1 + m_Bias: 0.05 + m_NormalBias: 0.4 + m_NearPlane: 0.2 + m_Cookie: {fileID: 0} + m_DrawHalo: 0 + m_Flare: {fileID: 0} + m_RenderMode: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_Lightmapping: 1 + m_AreaSize: {x: 1, y: 1} + m_BounceIntensity: 1 + m_ColorTemperature: 6570 + m_UseColorTemperature: 0 + m_ShadowRadius: 0 + m_ShadowAngle: 0 +--- !u!1 &229804520 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 229804521} + m_Layer: 0 + m_Name: CameraParent + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &229804521 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 229804520} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 9} + m_Father: {fileID: 0} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &495387807 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 495387809} + - component: {fileID: 495387808} + m_Layer: 0 + m_Name: GenerateObjectAnchorCokeCan + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &495387808 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 495387807} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5062efa1920ef4f8b93f82f869e65a8d, type: 3} + m_Name: + m_EditorClassIdentifier: + referenceObjectAsset: {fileID: 11400000, guid: e19bf88186ac942868db78225b734e9c, + type: 2} + prefabToGenerate: {fileID: 1283292900242102, guid: 8855f6e449b9d4d3fae7f0a1a5ff9c2f, + type: 2} +--- !u!4 &495387809 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 495387807} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!23 &732268494 +MeshRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 922811256} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_Materials: + - {fileID: 2100000, guid: 66fbc43c67b564bb4a4c2c2dcd6c1970, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 1 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!65 &732268495 +BoxCollider: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 922811256} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 1, y: 1, z: 1} + m_Center: {x: 0, y: 0, z: 0} +--- !u!33 &732268496 +MeshFilter: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 922811256} + m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} +--- !u!4 &732268497 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 922811256} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 1} + m_LocalScale: {x: 0.3058, y: 0.3058, z: 0.3058} + m_Children: + - {fileID: 1563586580} + - {fileID: 985089624} + - {fileID: 2134794027} + m_Father: {fileID: 0} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &922811256 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 732268497} + - component: {fileID: 732268496} + - component: {fileID: 732268495} + - component: {fileID: 732268494} + m_Layer: 0 + m_Name: RandomCube + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &985089623 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 985089624} + - component: {fileID: 985089627} + - component: {fileID: 985089626} + - component: {fileID: 985089625} + m_Layer: 0 + m_Name: XAxis + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &985089624 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 985089623} + m_LocalRotation: {x: -0.0000037178397, y: 0.0000024586916, z: -0.7071033, w: -0.7071102} + m_LocalPosition: {x: 1, y: 0, z: 0} + m_LocalScale: {x: 0.03270111, y: 1.3080443, z: 0.03270111} + m_Children: [] + m_Father: {fileID: 732268497} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 10.865001, y: 2.6820002, z: 90} +--- !u!23 &985089625 +MeshRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 985089623} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_Materials: + - {fileID: 2100000, guid: aaae8be92ba59487a9946818d7a2017f, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 1 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!65 &985089626 +BoxCollider: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 985089623} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 1, y: 1, z: 1} + m_Center: {x: 0, y: 0, z: 0} +--- !u!33 &985089627 +MeshFilter: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 985089623} + m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} +--- !u!1 &1121666029 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1121666033} + - component: {fileID: 1121666030} + m_Layer: 0 + m_Name: ARCameraManager + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1121666030 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1121666029} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 462d46d2423bb4f738d2497a397b1590, type: 3} + m_Name: + m_EditorClassIdentifier: + m_camera: {fileID: 10} + startAlignment: 0 + planeDetection: 0 + getPointCloud: 1 + enableLightEstimation: 1 + enableAutoFocus: 1 + environmentTexturing: 0 + detectionImages: {fileID: 0} + maximumNumberOfTrackedImages: 0 + detectionObjects: {fileID: 11400000, guid: 0700ead5baf8b4b778809cd428565c03, type: 2} +--- !u!4 &1121666033 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1121666029} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1563586579 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1563586580} + - component: {fileID: 1563586583} + - component: {fileID: 1563586582} + - component: {fileID: 1563586581} + m_Layer: 0 + m_Name: YAxis + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1563586580 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1563586579} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 1, z: 0} + m_LocalScale: {x: 0.03270111, y: 1.3080444, z: 0.032701116} + m_Children: [] + m_Father: {fileID: 732268497} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!23 &1563586581 +MeshRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1563586579} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_Materials: + - {fileID: 2100000, guid: 8fa2e9e7c08844dd4a8d581610839228, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 1 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!65 &1563586582 +BoxCollider: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1563586579} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 1, y: 1, z: 1} + m_Center: {x: 0, y: 0, z: 0} +--- !u!33 &1563586583 +MeshFilter: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1563586579} + m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} +--- !u!1 &2134794026 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 2134794027} + - component: {fileID: 2134794030} + - component: {fileID: 2134794029} + - component: {fileID: 2134794028} + m_Layer: 0 + m_Name: ZAxis + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2134794027 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2134794026} + m_LocalRotation: {x: 0.49999562, y: 0.5000044, z: 0.49999562, w: 0.5000044} + m_LocalPosition: {x: -0.05, y: 0, z: 1} + m_LocalScale: {x: 0.03270111, y: 1.3080443, z: 0.032701112} + m_Children: [] + m_Father: {fileID: 732268497} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 90, z: 89.999} +--- !u!23 &2134794028 +MeshRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2134794026} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_Materials: + - {fileID: 2100000, guid: d55ccb0db00e54a1696c1e96094d706d, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 1 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!65 &2134794029 +BoxCollider: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2134794026} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 1, y: 1, z: 1} + m_Center: {x: 0, y: 0, z: 0} +--- !u!33 &2134794030 +MeshFilter: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2134794026} + m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityARObjectAnchor/UnityARObjectAnchor.unity.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityARObjectAnchor/UnityARObjectAnchor.unity.meta new file mode 100644 index 000000000..d256c638b --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityARObjectAnchor/UnityARObjectAnchor.unity.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 9b7966300d2d04d8e86ace41d59d178c +timeCreated: 1523558024 +licenseType: Pro +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityARWorldMap.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityARWorldMap.meta new file mode 100644 index 000000000..db69dbbb5 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityARWorldMap.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: dc17436be8ab140c4b1439118200cfb4 +folderAsset: yes +timeCreated: 1523485203 +licenseType: Pro +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityARWorldMap/UnityARWorldMap.unity b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityARWorldMap/UnityARWorldMap.unity new file mode 100644 index 000000000..7d48dcb5d --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityARWorldMap/UnityARWorldMap.unity @@ -0,0 +1,1875 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!29 &1 +OcclusionCullingSettings: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_OcclusionBakeSettings: + smallestOccluder: 5 + smallestHole: 0.25 + backfaceThreshold: 100 + m_SceneGUID: 00000000000000000000000000000000 + m_OcclusionCullingData: {fileID: 0} +--- !u!104 &2 +RenderSettings: + m_ObjectHideFlags: 0 + serializedVersion: 8 + m_Fog: 0 + m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_FogMode: 3 + m_FogDensity: 0.01 + m_LinearFogStart: 0 + m_LinearFogEnd: 300 + m_AmbientSkyColor: {r: 0.2, g: 0.2, b: 0.2, a: 0} + m_AmbientEquatorColor: {r: 0.098908, g: 0.100485, b: 0.119403, a: 1} + m_AmbientGroundColor: {r: 0.098908, g: 0.100485, b: 0.119403, a: 1} + m_AmbientIntensity: 1 + m_AmbientMode: 3 + m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} + m_SkyboxMaterial: {fileID: 0} + m_HaloStrength: 0.5 + m_FlareStrength: 1 + m_FlareFadeSpeed: 3 + m_HaloTexture: {fileID: 0} + m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0} + m_DefaultReflectionMode: 0 + m_DefaultReflectionResolution: 128 + m_ReflectionBounces: 1 + m_ReflectionIntensity: 1 + m_CustomReflection: {fileID: 0} + m_Sun: {fileID: 0} + m_IndirectSpecularColor: {r: 0, g: 0, b: 0, a: 1} +--- !u!157 &4 +LightmapSettings: + m_ObjectHideFlags: 0 + serializedVersion: 11 + m_GIWorkflowMode: 1 + m_GISettings: + serializedVersion: 2 + m_BounceScale: 1 + m_IndirectOutputScale: 1 + m_AlbedoBoost: 1 + m_TemporalCoherenceThreshold: 1 + m_EnvironmentLightingMode: 0 + m_EnableBakedLightmaps: 1 + m_EnableRealtimeLightmaps: 0 + m_LightmapEditorSettings: + serializedVersion: 9 + m_Resolution: 1 + m_BakeResolution: 50 + m_TextureWidth: 1024 + m_TextureHeight: 1024 + m_AO: 1 + m_AOMaxDistance: 1 + m_CompAOExponent: 1 + m_CompAOExponentDirect: 0 + m_Padding: 2 + m_LightmapParameters: {fileID: 0} + m_LightmapsBakeMode: 1 + m_TextureCompression: 0 + m_FinalGather: 0 + m_FinalGatherFiltering: 1 + m_FinalGatherRayCount: 256 + m_ReflectionCompression: 2 + m_MixedBakeMode: 1 + m_BakeBackend: 0 + m_PVRSampling: 1 + m_PVRDirectSampleCount: 32 + m_PVRSampleCount: 500 + m_PVRBounces: 2 + m_PVRFilterTypeDirect: 0 + m_PVRFilterTypeIndirect: 0 + m_PVRFilterTypeAO: 0 + m_PVRFilteringMode: 1 + m_PVRCulling: 1 + m_PVRFilteringGaussRadiusDirect: 1 + m_PVRFilteringGaussRadiusIndirect: 5 + m_PVRFilteringGaussRadiusAO: 2 + m_PVRFilteringAtrousPositionSigmaDirect: 0.5 + m_PVRFilteringAtrousPositionSigmaIndirect: 2 + m_PVRFilteringAtrousPositionSigmaAO: 1 + m_ShowResolutionOverlay: 1 + m_LightingDataAsset: {fileID: 0} + m_UseShadowmask: 1 +--- !u!196 &5 +NavMeshSettings: + serializedVersion: 2 + m_ObjectHideFlags: 0 + m_BuildSettings: + serializedVersion: 2 + agentTypeID: 0 + agentRadius: 0.4 + agentHeight: 1.8 + agentSlope: 45 + agentClimb: 0.9 + ledgeDropHeight: 0 + maxJumpAcrossDistance: 0 + minRegionArea: 2 + manualCellSize: 0 + cellSize: 0.13333333 + manualTileSize: 0 + tileSize: 256 + accuratePlacement: 0 + debug: + m_Flags: 0 + m_NavMeshData: {fileID: 0} +--- !u!1 &7 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 9} + - component: {fileID: 10} + - component: {fileID: 12} + - component: {fileID: 13} + - component: {fileID: 11} + - component: {fileID: 8} + - component: {fileID: 14} + m_Layer: 0 + m_Name: Main Camera + m_TagString: MainCamera + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &8 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b58ecea7a196242dd879c814ac05084c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_ClearMaterial: {fileID: 2100000, guid: f1d9352050a75486f878ab19fa578f16, type: 2} +--- !u!4 &9 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 229804521} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!20 &10 +Camera: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 + serializedVersion: 2 + m_ClearFlags: 3 + m_BackGroundColor: {r: 0.19788063, g: 0.2953552, b: 0.44852942, a: 0.019608} + m_NormalizedViewPortRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + near clip plane: 0.1 + far clip plane: 30 + field of view: 60 + orthographic: 0 + orthographic size: 100 + m_Depth: -1 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingPath: -1 + m_TargetTexture: {fileID: 0} + m_TargetDisplay: 0 + m_TargetEye: 3 + m_HDR: 0 + m_AllowMSAA: 1 + m_AllowDynamicResolution: 0 + m_ForceIntoRT: 0 + m_OcclusionCulling: 1 + m_StereoConvergence: 10 + m_StereoSeparation: 0.022 +--- !u!81 &11 +AudioListener: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 +--- !u!92 &12 +Behaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 +--- !u!124 &13 +Behaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 +--- !u!114 &14 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: ce437cef046e841aabd6070890e79d41, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &16 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 20} + - component: {fileID: 29} + - component: {fileID: 17} + m_Layer: 0 + m_Name: Directional light + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &17 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 16} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5587c957048494a2f96db36e0995449e, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!4 &20 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 16} + m_LocalRotation: {x: -0.31668198, y: -0.33227497, z: 0.119525984, w: -0.8803519} + m_LocalPosition: {x: -2.359002, y: 2.21, z: -3.580904} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!108 &29 +Light: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 16} + m_Enabled: 1 + serializedVersion: 8 + m_Type: 1 + m_Color: {r: 1, g: 0.997495, b: 0.955224, a: 1} + m_Intensity: 1 + m_Range: 10 + m_SpotAngle: 30 + m_CookieSize: 10 + m_Shadows: + m_Type: 0 + m_Resolution: -1 + m_CustomResolution: -1 + m_Strength: 1 + m_Bias: 0.05 + m_NormalBias: 0.4 + m_NearPlane: 0.2 + m_Cookie: {fileID: 0} + m_DrawHalo: 0 + m_Flare: {fileID: 0} + m_RenderMode: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_Lightmapping: 1 + m_AreaSize: {x: 1, y: 1} + m_BounceIntensity: 1 + m_ColorTemperature: 6570 + m_UseColorTemperature: 0 + m_ShadowRadius: 0 + m_ShadowAngle: 0 +--- !u!1 &228074202 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 228074203} + - component: {fileID: 228074205} + - component: {fileID: 228074204} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &228074203 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 228074202} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1841742997} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &228074204 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 228074202} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: Load +--- !u!222 &228074205 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 228074202} +--- !u!1 &229804520 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 229804521} + m_Layer: 0 + m_Name: CameraParent + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &229804521 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 229804520} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 9} + m_Father: {fileID: 0} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &481742511 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 481742512} + - component: {fileID: 481742513} + m_Layer: 0 + m_Name: PointCloudParticleExample + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &481742512 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 481742511} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 6 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &481742513 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 481742511} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: ec20d460fbb7e4f92b4d84a10da98cd9, type: 3} + m_Name: + m_EditorClassIdentifier: + pointCloudParticlePrefab: {fileID: 198314236125653888, guid: 87db9decf4b3e4cb8bf3eea22ccd37f5, + type: 2} + maxPointsToShow: 10000 + particleSize: 0.01 +--- !u!1 &520163593 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 520163597} + - component: {fileID: 520163596} + - component: {fileID: 520163595} + - component: {fileID: 520163594} + m_Layer: 5 + m_Name: Canvas + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &520163594 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 520163593} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1301386320, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!114 &520163595 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 520163593} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1980459831, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_UiScaleMode: 0 + m_ReferencePixelsPerUnit: 100 + m_ScaleFactor: 1 + m_ReferenceResolution: {x: 800, y: 600} + m_ScreenMatchMode: 0 + m_MatchWidthOrHeight: 0 + m_PhysicalUnit: 3 + m_FallbackScreenDPI: 96 + m_DefaultSpriteDPI: 96 + m_DynamicPixelsPerUnit: 1 +--- !u!223 &520163596 +Canvas: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 520163593} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 0 + m_Camera: {fileID: 0} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_AdditionalShaderChannelsFlag: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!224 &520163597 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 520163593} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 2073111660} + - {fileID: 659143301} + - {fileID: 742568397} + m_Father: {fileID: 0} + m_RootOrder: 8 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0, y: 0} +--- !u!1 &555720247 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 555720248} + - component: {fileID: 555720249} + m_Layer: 0 + m_Name: AR3DOFCameraManager + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!4 &555720248 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 555720247} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 7 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &555720249 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 555720247} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0ff614c6973544218b2c1e3036b8de0a, type: 3} + m_Name: + m_EditorClassIdentifier: + m_camera: {fileID: 10} +--- !u!1 &659143300 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 659143301} + - component: {fileID: 659143304} + - component: {fileID: 659143303} + - component: {fileID: 659143302} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &659143301 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 659143300} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 520163597} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.35341156, y: 0.89400005} + m_AnchorMax: {x: 0.91362816, y: 0.9655338} + m_AnchoredPosition: {x: 0.0000076294, y: -0.025024} + m_SizeDelta: {x: 0, y: -0.049957} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &659143302 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 659143300} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b59e1037d79d44fe59df4b634a2862e5, type: 3} + m_Name: + m_EditorClassIdentifier: + text: {fileID: 659143303} + tracking: {fileID: 742568398} +--- !u!114 &659143303 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 659143300} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.7794118, g: 0.1260813, b: 0.1260813, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 32 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 0 + m_MaxSize: 48 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: Init +--- !u!222 &659143304 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 659143300} +--- !u!23 &732268494 +MeshRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 922811256} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_Materials: + - {fileID: 2100000, guid: 66fbc43c67b564bb4a4c2c2dcd6c1970, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 1 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!65 &732268495 +BoxCollider: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 922811256} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 1, y: 1, z: 1} + m_Center: {x: 0, y: 0, z: 0} +--- !u!33 &732268496 +MeshFilter: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 922811256} + m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} +--- !u!4 &732268497 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 922811256} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 1} + m_LocalScale: {x: 0.3058, y: 0.3058, z: 0.3058} + m_Children: + - {fileID: 1563586580} + - {fileID: 985089624} + - {fileID: 2134794027} + m_Father: {fileID: 0} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &742568396 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 742568397} + - component: {fileID: 742568399} + - component: {fileID: 742568398} + m_Layer: 5 + m_Name: TextTracking + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &742568397 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 742568396} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 520163597} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.35341156, y: 0.744} + m_AnchorMax: {x: 0.91362816, y: 0.82800007} + m_AnchoredPosition: {x: 6.1, y: -0.00007534} + m_SizeDelta: {x: -12.1, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &742568398 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 742568396} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.7794118, g: 0.1260813, b: 0.1260813, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 32 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 0 + m_MaxSize: 48 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: Init +--- !u!222 &742568399 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 742568396} +--- !u!1 &744986759 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 744986761} + - component: {fileID: 744986760} + m_Layer: 0 + m_Name: WorldMapManager + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &744986760 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 744986759} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b560694452f2c4413b835be89150c3ca, type: 3} + m_Name: + m_EditorClassIdentifier: + m_ARCameraManager: {fileID: 1121666030} +--- !u!4 &744986761 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 744986759} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 10 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &922811256 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 732268497} + - component: {fileID: 732268496} + - component: {fileID: 732268495} + - component: {fileID: 732268494} + m_Layer: 0 + m_Name: RandomCube + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &947883105 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 947883108} + - component: {fileID: 947883107} + - component: {fileID: 947883106} + m_Layer: 0 + m_Name: EventSystem + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &947883106 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 947883105} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1077351063, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_HorizontalAxis: Horizontal + m_VerticalAxis: Vertical + m_SubmitButton: Submit + m_CancelButton: Cancel + m_InputActionsPerSecond: 10 + m_RepeatDelay: 0.5 + m_ForceModuleActive: 0 +--- !u!114 &947883107 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 947883105} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -619905303, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_FirstSelected: {fileID: 0} + m_sendNavigationEvents: 1 + m_DragThreshold: 5 +--- !u!4 &947883108 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 947883105} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 9 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &985089623 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 985089624} + - component: {fileID: 985089627} + - component: {fileID: 985089626} + - component: {fileID: 985089625} + m_Layer: 0 + m_Name: XAxis + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &985089624 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 985089623} + m_LocalRotation: {x: -0.0000037178397, y: 0.0000024586916, z: -0.7071033, w: -0.7071102} + m_LocalPosition: {x: 1, y: 0, z: 0} + m_LocalScale: {x: 0.03270111, y: 1.3080443, z: 0.03270111} + m_Children: [] + m_Father: {fileID: 732268497} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 10.865001, y: 2.6820002, z: 90} +--- !u!23 &985089625 +MeshRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 985089623} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_Materials: + - {fileID: 2100000, guid: aaae8be92ba59487a9946818d7a2017f, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 1 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!65 &985089626 +BoxCollider: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 985089623} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 1, y: 1, z: 1} + m_Center: {x: 0, y: 0, z: 0} +--- !u!33 &985089627 +MeshFilter: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 985089623} + m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} +--- !u!1 &1052679867 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1052679871} + - component: {fileID: 1052679870} + - component: {fileID: 1052679869} + - component: {fileID: 1052679868} + - component: {fileID: 1052679872} + m_Layer: 0 + m_Name: HitCube + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!23 &1052679868 +MeshRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1052679867} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_Materials: + - {fileID: 10303, guid: 0000000000000000f000000000000000, type: 0} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 1 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!65 &1052679869 +BoxCollider: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1052679867} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 1, y: 1, z: 1} + m_Center: {x: 0, y: 0, z: 0} +--- !u!33 &1052679870 +MeshFilter: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1052679867} + m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} +--- !u!4 &1052679871 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1052679867} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0.5, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1286139108} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1052679872 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1052679867} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 6941ec02ead994c9b848d640887441f1, type: 3} + m_Name: + m_EditorClassIdentifier: + m_HitTransform: {fileID: 1286139108} + maxRayDistance: 30 + collisionLayer: + serializedVersion: 2 + m_Bits: 1024 +--- !u!1 &1121666029 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1121666033} + - component: {fileID: 1121666030} + m_Layer: 0 + m_Name: ARCameraManager + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1121666030 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1121666029} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 462d46d2423bb4f738d2497a397b1590, type: 3} + m_Name: + m_EditorClassIdentifier: + m_camera: {fileID: 10} + startAlignment: 0 + planeDetection: 3 + getPointCloud: 1 + enableLightEstimation: 1 + enableAutoFocus: 1 + environmentTexturing: 0 + detectionImages: {fileID: 0} + maximumNumberOfTrackedImages: 0 + detectionObjects: {fileID: 0} +--- !u!4 &1121666033 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1121666029} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 12 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1153389248 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1153389250} + - component: {fileID: 1153389249} + m_Layer: 0 + m_Name: ARKitControl + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1153389249 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1153389248} + m_Enabled: 0 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4977b930c0f8843c8b8a101ba5bf3c8f, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!4 &1153389250 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1153389248} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 11 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1286139107 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1286139108} + m_Layer: 0 + m_Name: HitCubeParent + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1286139108 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1286139107} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: -0, z: -2.98} + m_LocalScale: {x: 0.1, y: 0.1, z: 0.1} + m_Children: + - {fileID: 1052679871} + m_Father: {fileID: 0} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1308259102 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1308259104} + - component: {fileID: 1308259103} + m_Layer: 0 + m_Name: GeneratePlanes + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1308259103 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1308259102} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 31cac8edf84834043ac167deaeba16a9, type: 3} + m_Name: + m_EditorClassIdentifier: + planePrefab: {fileID: 1372998203143648, guid: f879aaf3eeb0c467eb22cbaf08dc97a4, + type: 2} +--- !u!4 &1308259104 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1308259102} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1319645973 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1319645974} + - component: {fileID: 1319645976} + - component: {fileID: 1319645975} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1319645974 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1319645973} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1587227112} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1319645975 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1319645973} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: Save +--- !u!222 &1319645976 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1319645973} +--- !u!1 &1563586579 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1563586580} + - component: {fileID: 1563586583} + - component: {fileID: 1563586582} + - component: {fileID: 1563586581} + m_Layer: 0 + m_Name: YAxis + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1563586580 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1563586579} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 1, z: 0} + m_LocalScale: {x: 0.03270111, y: 1.3080444, z: 0.032701116} + m_Children: [] + m_Father: {fileID: 732268497} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!23 &1563586581 +MeshRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1563586579} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_Materials: + - {fileID: 2100000, guid: 8fa2e9e7c08844dd4a8d581610839228, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 1 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!65 &1563586582 +BoxCollider: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1563586579} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 1, y: 1, z: 1} + m_Center: {x: 0, y: 0, z: 0} +--- !u!33 &1563586583 +MeshFilter: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1563586579} + m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} +--- !u!1 &1587227111 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1587227112} + - component: {fileID: 1587227115} + - component: {fileID: 1587227114} + - component: {fileID: 1587227113} + m_Layer: 5 + m_Name: Save button + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1587227112 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1587227111} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1319645974} + m_Father: {fileID: 2073111660} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1587227113 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1587227111} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1587227114} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 744986760} + m_MethodName: Save + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &1587227114 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1587227111} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1587227115 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1587227111} +--- !u!1 &1841742996 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1841742997} + - component: {fileID: 1841743000} + - component: {fileID: 1841742999} + - component: {fileID: 1841742998} + m_Layer: 5 + m_Name: Load button + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1841742997 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1841742996} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 228074203} + m_Father: {fileID: 2073111660} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1841742998 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1841742996} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1841742999} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 744986760} + m_MethodName: Load + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &1841742999 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1841742996} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1841743000 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1841742996} +--- !u!1 &2073111659 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 2073111660} + - component: {fileID: 2073111661} + m_Layer: 5 + m_Name: Layout + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2073111660 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2073111659} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1587227112} + - {fileID: 1841742997} + m_Father: {fileID: 520163597} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.032411557, y: 0.72262573} + m_AnchorMax: {x: 0.19000001, y: 0.9655338} + m_AnchoredPosition: {x: 5.360901, y: 0.000030517578} + m_SizeDelta: {x: -10.7, y: -0.00012207} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &2073111661 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2073111659} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1297475563, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 5 + m_Right: 5 + m_Top: 5 + m_Bottom: 5 + m_ChildAlignment: 0 + m_Spacing: 10 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 1 + m_ChildControlHeight: 1 +--- !u!1 &2101518924 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 2101518926} + - component: {fileID: 2101518925} + m_Layer: 0 + m_Name: PointCloudExample + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!114 &2101518925 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2101518924} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: c5ab0fdfbf2334e8dbbcdda6ceada7e3, type: 3} + m_Name: + m_EditorClassIdentifier: + numPointsToShow: 400 + PointCloudPrefab: {fileID: 1845574417345784, guid: 02d2a544d8d594d30b790e76398d0873, + type: 2} +--- !u!4 &2101518926 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2101518924} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0.16720128, y: 0.18012214, z: 1.1454113} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &2134794026 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 2134794027} + - component: {fileID: 2134794030} + - component: {fileID: 2134794029} + - component: {fileID: 2134794028} + m_Layer: 0 + m_Name: ZAxis + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2134794027 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2134794026} + m_LocalRotation: {x: 0.49999562, y: 0.5000044, z: 0.49999562, w: 0.5000044} + m_LocalPosition: {x: -0.05, y: 0, z: 1} + m_LocalScale: {x: 0.03270111, y: 1.3080443, z: 0.032701112} + m_Children: [] + m_Father: {fileID: 732268497} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 90, z: 89.999} +--- !u!23 &2134794028 +MeshRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2134794026} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_Materials: + - {fileID: 2100000, guid: d55ccb0db00e54a1696c1e96094d706d, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 1 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!65 &2134794029 +BoxCollider: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2134794026} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 1, y: 1, z: 1} + m_Center: {x: 0, y: 0, z: 0} +--- !u!33 &2134794030 +MeshFilter: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2134794026} + m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityARWorldMap/UnityARWorldMap.unity.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityARWorldMap/UnityARWorldMap.unity.meta new file mode 100644 index 000000000..ff08deb26 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityARWorldMap/UnityARWorldMap.unity.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: ee2777dc048a5482db055433cf94aa0e +timeCreated: 1523485203 +licenseType: Pro +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityARWorldMap/UnityARWorldMapSerialized.unity b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityARWorldMap/UnityARWorldMapSerialized.unity new file mode 100644 index 000000000..292d32332 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityARWorldMap/UnityARWorldMapSerialized.unity @@ -0,0 +1,1875 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!29 &1 +OcclusionCullingSettings: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_OcclusionBakeSettings: + smallestOccluder: 5 + smallestHole: 0.25 + backfaceThreshold: 100 + m_SceneGUID: 00000000000000000000000000000000 + m_OcclusionCullingData: {fileID: 0} +--- !u!104 &2 +RenderSettings: + m_ObjectHideFlags: 0 + serializedVersion: 8 + m_Fog: 0 + m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_FogMode: 3 + m_FogDensity: 0.01 + m_LinearFogStart: 0 + m_LinearFogEnd: 300 + m_AmbientSkyColor: {r: 0.2, g: 0.2, b: 0.2, a: 0} + m_AmbientEquatorColor: {r: 0.098908, g: 0.100485, b: 0.119403, a: 1} + m_AmbientGroundColor: {r: 0.098908, g: 0.100485, b: 0.119403, a: 1} + m_AmbientIntensity: 1 + m_AmbientMode: 3 + m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} + m_SkyboxMaterial: {fileID: 0} + m_HaloStrength: 0.5 + m_FlareStrength: 1 + m_FlareFadeSpeed: 3 + m_HaloTexture: {fileID: 0} + m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0} + m_DefaultReflectionMode: 0 + m_DefaultReflectionResolution: 128 + m_ReflectionBounces: 1 + m_ReflectionIntensity: 1 + m_CustomReflection: {fileID: 0} + m_Sun: {fileID: 0} + m_IndirectSpecularColor: {r: 0, g: 0, b: 0, a: 1} +--- !u!157 &4 +LightmapSettings: + m_ObjectHideFlags: 0 + serializedVersion: 11 + m_GIWorkflowMode: 1 + m_GISettings: + serializedVersion: 2 + m_BounceScale: 1 + m_IndirectOutputScale: 1 + m_AlbedoBoost: 1 + m_TemporalCoherenceThreshold: 1 + m_EnvironmentLightingMode: 0 + m_EnableBakedLightmaps: 1 + m_EnableRealtimeLightmaps: 0 + m_LightmapEditorSettings: + serializedVersion: 9 + m_Resolution: 1 + m_BakeResolution: 50 + m_TextureWidth: 1024 + m_TextureHeight: 1024 + m_AO: 1 + m_AOMaxDistance: 1 + m_CompAOExponent: 1 + m_CompAOExponentDirect: 0 + m_Padding: 2 + m_LightmapParameters: {fileID: 0} + m_LightmapsBakeMode: 1 + m_TextureCompression: 0 + m_FinalGather: 0 + m_FinalGatherFiltering: 1 + m_FinalGatherRayCount: 256 + m_ReflectionCompression: 2 + m_MixedBakeMode: 1 + m_BakeBackend: 0 + m_PVRSampling: 1 + m_PVRDirectSampleCount: 32 + m_PVRSampleCount: 500 + m_PVRBounces: 2 + m_PVRFilterTypeDirect: 0 + m_PVRFilterTypeIndirect: 0 + m_PVRFilterTypeAO: 0 + m_PVRFilteringMode: 1 + m_PVRCulling: 1 + m_PVRFilteringGaussRadiusDirect: 1 + m_PVRFilteringGaussRadiusIndirect: 5 + m_PVRFilteringGaussRadiusAO: 2 + m_PVRFilteringAtrousPositionSigmaDirect: 0.5 + m_PVRFilteringAtrousPositionSigmaIndirect: 2 + m_PVRFilteringAtrousPositionSigmaAO: 1 + m_ShowResolutionOverlay: 1 + m_LightingDataAsset: {fileID: 0} + m_UseShadowmask: 1 +--- !u!196 &5 +NavMeshSettings: + serializedVersion: 2 + m_ObjectHideFlags: 0 + m_BuildSettings: + serializedVersion: 2 + agentTypeID: 0 + agentRadius: 0.4 + agentHeight: 1.8 + agentSlope: 45 + agentClimb: 0.9 + ledgeDropHeight: 0 + maxJumpAcrossDistance: 0 + minRegionArea: 2 + manualCellSize: 0 + cellSize: 0.13333333 + manualTileSize: 0 + tileSize: 256 + accuratePlacement: 0 + debug: + m_Flags: 0 + m_NavMeshData: {fileID: 0} +--- !u!1 &7 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 9} + - component: {fileID: 10} + - component: {fileID: 12} + - component: {fileID: 13} + - component: {fileID: 11} + - component: {fileID: 8} + - component: {fileID: 14} + m_Layer: 0 + m_Name: Main Camera + m_TagString: MainCamera + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &8 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b58ecea7a196242dd879c814ac05084c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_ClearMaterial: {fileID: 2100000, guid: f1d9352050a75486f878ab19fa578f16, type: 2} +--- !u!4 &9 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 229804521} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!20 &10 +Camera: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 + serializedVersion: 2 + m_ClearFlags: 3 + m_BackGroundColor: {r: 0.19788063, g: 0.2953552, b: 0.44852942, a: 0.019608} + m_NormalizedViewPortRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + near clip plane: 0.1 + far clip plane: 30 + field of view: 60 + orthographic: 0 + orthographic size: 100 + m_Depth: -1 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingPath: -1 + m_TargetTexture: {fileID: 0} + m_TargetDisplay: 0 + m_TargetEye: 3 + m_HDR: 0 + m_AllowMSAA: 1 + m_AllowDynamicResolution: 0 + m_ForceIntoRT: 0 + m_OcclusionCulling: 1 + m_StereoConvergence: 10 + m_StereoSeparation: 0.022 +--- !u!81 &11 +AudioListener: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 +--- !u!92 &12 +Behaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 +--- !u!124 &13 +Behaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 +--- !u!114 &14 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: ce437cef046e841aabd6070890e79d41, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &16 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 20} + - component: {fileID: 29} + - component: {fileID: 17} + m_Layer: 0 + m_Name: Directional light + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &17 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 16} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5587c957048494a2f96db36e0995449e, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!4 &20 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 16} + m_LocalRotation: {x: -0.31668198, y: -0.33227497, z: 0.119525984, w: -0.8803519} + m_LocalPosition: {x: -2.359002, y: 2.21, z: -3.580904} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!108 &29 +Light: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 16} + m_Enabled: 1 + serializedVersion: 8 + m_Type: 1 + m_Color: {r: 1, g: 0.997495, b: 0.955224, a: 1} + m_Intensity: 1 + m_Range: 10 + m_SpotAngle: 30 + m_CookieSize: 10 + m_Shadows: + m_Type: 0 + m_Resolution: -1 + m_CustomResolution: -1 + m_Strength: 1 + m_Bias: 0.05 + m_NormalBias: 0.4 + m_NearPlane: 0.2 + m_Cookie: {fileID: 0} + m_DrawHalo: 0 + m_Flare: {fileID: 0} + m_RenderMode: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_Lightmapping: 1 + m_AreaSize: {x: 1, y: 1} + m_BounceIntensity: 1 + m_ColorTemperature: 6570 + m_UseColorTemperature: 0 + m_ShadowRadius: 0 + m_ShadowAngle: 0 +--- !u!1 &228074202 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 228074203} + - component: {fileID: 228074205} + - component: {fileID: 228074204} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &228074203 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 228074202} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1841742997} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &228074204 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 228074202} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: Load +--- !u!222 &228074205 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 228074202} +--- !u!1 &229804520 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 229804521} + m_Layer: 0 + m_Name: CameraParent + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &229804521 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 229804520} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 9} + m_Father: {fileID: 0} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &481742511 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 481742512} + - component: {fileID: 481742513} + m_Layer: 0 + m_Name: PointCloudParticleExample + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &481742512 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 481742511} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 6 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &481742513 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 481742511} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: ec20d460fbb7e4f92b4d84a10da98cd9, type: 3} + m_Name: + m_EditorClassIdentifier: + pointCloudParticlePrefab: {fileID: 198314236125653888, guid: 87db9decf4b3e4cb8bf3eea22ccd37f5, + type: 2} + maxPointsToShow: 10000 + particleSize: 0.01 +--- !u!1 &520163593 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 520163597} + - component: {fileID: 520163596} + - component: {fileID: 520163595} + - component: {fileID: 520163594} + m_Layer: 5 + m_Name: Canvas + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &520163594 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 520163593} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1301386320, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!114 &520163595 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 520163593} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1980459831, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_UiScaleMode: 0 + m_ReferencePixelsPerUnit: 100 + m_ScaleFactor: 1 + m_ReferenceResolution: {x: 800, y: 600} + m_ScreenMatchMode: 0 + m_MatchWidthOrHeight: 0 + m_PhysicalUnit: 3 + m_FallbackScreenDPI: 96 + m_DefaultSpriteDPI: 96 + m_DynamicPixelsPerUnit: 1 +--- !u!223 &520163596 +Canvas: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 520163593} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 0 + m_Camera: {fileID: 0} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_AdditionalShaderChannelsFlag: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!224 &520163597 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 520163593} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 2073111660} + - {fileID: 1872793935} + - {fileID: 855287996} + m_Father: {fileID: 0} + m_RootOrder: 8 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0, y: 0} +--- !u!1 &555720247 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 555720248} + - component: {fileID: 555720249} + m_Layer: 0 + m_Name: AR3DOFCameraManager + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!4 &555720248 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 555720247} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 7 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &555720249 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 555720247} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0ff614c6973544218b2c1e3036b8de0a, type: 3} + m_Name: + m_EditorClassIdentifier: + m_camera: {fileID: 10} +--- !u!23 &732268494 +MeshRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 922811256} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_Materials: + - {fileID: 2100000, guid: 66fbc43c67b564bb4a4c2c2dcd6c1970, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 1 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!65 &732268495 +BoxCollider: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 922811256} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 1, y: 1, z: 1} + m_Center: {x: 0, y: 0, z: 0} +--- !u!33 &732268496 +MeshFilter: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 922811256} + m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} +--- !u!4 &732268497 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 922811256} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 1} + m_LocalScale: {x: 0.3058, y: 0.3058, z: 0.3058} + m_Children: + - {fileID: 1563586580} + - {fileID: 985089624} + - {fileID: 2134794027} + m_Father: {fileID: 0} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &744986759 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 744986761} + - component: {fileID: 744986760} + m_Layer: 0 + m_Name: WorldMapManager + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &744986760 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 744986759} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b560694452f2c4413b835be89150c3ca, type: 3} + m_Name: + m_EditorClassIdentifier: + m_ARCameraManager: {fileID: 1121666030} +--- !u!4 &744986761 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 744986759} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 10 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &855287995 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 855287996} + - component: {fileID: 855287998} + - component: {fileID: 855287997} + m_Layer: 5 + m_Name: TextTracking + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &855287996 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 855287995} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 520163597} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.3035686, y: 0.72830063} + m_AnchorMax: {x: 0.92, y: 0.8104113} + m_AnchoredPosition: {x: -0.0025177, y: -0.000038147} + m_SizeDelta: {x: -0.0050049, y: -0.000038147} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &855287997 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 855287995} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.7794118, g: 0.1260813, b: 0.1260813, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 32 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 0 + m_MaxSize: 48 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: Init +--- !u!222 &855287998 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 855287995} +--- !u!1 &922811256 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 732268497} + - component: {fileID: 732268496} + - component: {fileID: 732268495} + - component: {fileID: 732268494} + m_Layer: 0 + m_Name: RandomCube + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &947883105 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 947883108} + - component: {fileID: 947883107} + - component: {fileID: 947883106} + m_Layer: 0 + m_Name: EventSystem + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &947883106 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 947883105} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1077351063, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_HorizontalAxis: Horizontal + m_VerticalAxis: Vertical + m_SubmitButton: Submit + m_CancelButton: Cancel + m_InputActionsPerSecond: 10 + m_RepeatDelay: 0.5 + m_ForceModuleActive: 0 +--- !u!114 &947883107 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 947883105} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -619905303, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_FirstSelected: {fileID: 0} + m_sendNavigationEvents: 1 + m_DragThreshold: 5 +--- !u!4 &947883108 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 947883105} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 9 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &985089623 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 985089624} + - component: {fileID: 985089627} + - component: {fileID: 985089626} + - component: {fileID: 985089625} + m_Layer: 0 + m_Name: XAxis + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &985089624 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 985089623} + m_LocalRotation: {x: -0.0000037178397, y: 0.0000024586916, z: -0.7071033, w: -0.7071102} + m_LocalPosition: {x: 1, y: 0, z: 0} + m_LocalScale: {x: 0.03270111, y: 1.3080443, z: 0.03270111} + m_Children: [] + m_Father: {fileID: 732268497} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 10.865001, y: 2.6820002, z: 90} +--- !u!23 &985089625 +MeshRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 985089623} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_Materials: + - {fileID: 2100000, guid: aaae8be92ba59487a9946818d7a2017f, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 1 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!65 &985089626 +BoxCollider: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 985089623} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 1, y: 1, z: 1} + m_Center: {x: 0, y: 0, z: 0} +--- !u!33 &985089627 +MeshFilter: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 985089623} + m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} +--- !u!1 &1052679867 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1052679871} + - component: {fileID: 1052679870} + - component: {fileID: 1052679869} + - component: {fileID: 1052679868} + - component: {fileID: 1052679872} + m_Layer: 0 + m_Name: HitCube + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!23 &1052679868 +MeshRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1052679867} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_Materials: + - {fileID: 10303, guid: 0000000000000000f000000000000000, type: 0} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 1 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!65 &1052679869 +BoxCollider: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1052679867} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 1, y: 1, z: 1} + m_Center: {x: 0, y: 0, z: 0} +--- !u!33 &1052679870 +MeshFilter: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1052679867} + m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} +--- !u!4 &1052679871 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1052679867} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0.5, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1286139108} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1052679872 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1052679867} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 6941ec02ead994c9b848d640887441f1, type: 3} + m_Name: + m_EditorClassIdentifier: + m_HitTransform: {fileID: 1286139108} + maxRayDistance: 30 + collisionLayer: + serializedVersion: 2 + m_Bits: 1024 +--- !u!1 &1121666029 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1121666033} + - component: {fileID: 1121666030} + m_Layer: 0 + m_Name: ARCameraManager + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1121666030 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1121666029} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 462d46d2423bb4f738d2497a397b1590, type: 3} + m_Name: + m_EditorClassIdentifier: + m_camera: {fileID: 10} + startAlignment: 0 + planeDetection: 3 + getPointCloud: 1 + enableLightEstimation: 1 + enableAutoFocus: 1 + environmentTexturing: 0 + detectionImages: {fileID: 0} + maximumNumberOfTrackedImages: 0 + detectionObjects: {fileID: 0} +--- !u!4 &1121666033 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1121666029} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 12 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1153389248 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1153389250} + - component: {fileID: 1153389249} + m_Layer: 0 + m_Name: ARKitControl + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1153389249 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1153389248} + m_Enabled: 0 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4977b930c0f8843c8b8a101ba5bf3c8f, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!4 &1153389250 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1153389248} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 11 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1286139107 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1286139108} + m_Layer: 0 + m_Name: HitCubeParent + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1286139108 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1286139107} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: -0, z: -2.98} + m_LocalScale: {x: 0.1, y: 0.1, z: 0.1} + m_Children: + - {fileID: 1052679871} + m_Father: {fileID: 0} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1308259102 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1308259104} + - component: {fileID: 1308259103} + m_Layer: 0 + m_Name: GeneratePlanes + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1308259103 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1308259102} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 31cac8edf84834043ac167deaeba16a9, type: 3} + m_Name: + m_EditorClassIdentifier: + planePrefab: {fileID: 1372998203143648, guid: f879aaf3eeb0c467eb22cbaf08dc97a4, + type: 2} +--- !u!4 &1308259104 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1308259102} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1319645973 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1319645974} + - component: {fileID: 1319645976} + - component: {fileID: 1319645975} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1319645974 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1319645973} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1587227112} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1319645975 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1319645973} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: Save +--- !u!222 &1319645976 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1319645973} +--- !u!1 &1563586579 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1563586580} + - component: {fileID: 1563586583} + - component: {fileID: 1563586582} + - component: {fileID: 1563586581} + m_Layer: 0 + m_Name: YAxis + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1563586580 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1563586579} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 1, z: 0} + m_LocalScale: {x: 0.03270111, y: 1.3080444, z: 0.032701116} + m_Children: [] + m_Father: {fileID: 732268497} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!23 &1563586581 +MeshRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1563586579} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_Materials: + - {fileID: 2100000, guid: 8fa2e9e7c08844dd4a8d581610839228, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 1 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!65 &1563586582 +BoxCollider: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1563586579} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 1, y: 1, z: 1} + m_Center: {x: 0, y: 0, z: 0} +--- !u!33 &1563586583 +MeshFilter: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1563586579} + m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} +--- !u!1 &1587227111 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1587227112} + - component: {fileID: 1587227115} + - component: {fileID: 1587227114} + - component: {fileID: 1587227113} + m_Layer: 5 + m_Name: Save button + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1587227112 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1587227111} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1319645974} + m_Father: {fileID: 2073111660} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1587227113 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1587227111} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1587227114} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 744986760} + m_MethodName: SaveSerialized + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &1587227114 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1587227111} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1587227115 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1587227111} +--- !u!1 &1841742996 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1841742997} + - component: {fileID: 1841743000} + - component: {fileID: 1841742999} + - component: {fileID: 1841742998} + m_Layer: 5 + m_Name: Load button + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1841742997 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1841742996} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 228074203} + m_Father: {fileID: 2073111660} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1841742998 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1841742996} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1841742999} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 744986760} + m_MethodName: LoadSerialized + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &1841742999 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1841742996} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1841743000 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1841742996} +--- !u!1 &1872793934 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1872793935} + - component: {fileID: 1872793938} + - component: {fileID: 1872793937} + - component: {fileID: 1872793936} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1872793935 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1872793934} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 520163597} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.3035686, y: 0.87679756} + m_AnchorMax: {x: 0.92, y: 0.95523316} + m_AnchoredPosition: {x: -0.0025177, y: 0.0000033379} + m_SizeDelta: {x: -0.0050049, y: 0.00010681} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1872793936 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1872793934} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b59e1037d79d44fe59df4b634a2862e5, type: 3} + m_Name: + m_EditorClassIdentifier: + text: {fileID: 1872793937} + tracking: {fileID: 855287997} +--- !u!114 &1872793937 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1872793934} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.7794118, g: 0.1260813, b: 0.1260813, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 32 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 0 + m_MaxSize: 48 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: Init +--- !u!222 &1872793938 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1872793934} +--- !u!1 &2073111659 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 2073111660} + - component: {fileID: 2073111661} + m_Layer: 5 + m_Name: Layout + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2073111660 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2073111659} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1587227112} + - {fileID: 1841742997} + m_Father: {fileID: 520163597} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.04129422, y: 0.72830063} + m_AnchorMax: {x: 0.22386281, y: 0.9644663} + m_AnchoredPosition: {x: 0.000048637, y: 0.000058651} + m_SizeDelta: {x: -0.000091553, y: 0.000061035} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &2073111661 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2073111659} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1297475563, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 5 + m_Right: 5 + m_Top: 5 + m_Bottom: 5 + m_ChildAlignment: 0 + m_Spacing: 10 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 1 + m_ChildControlHeight: 1 +--- !u!1 &2101518924 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 2101518926} + - component: {fileID: 2101518925} + m_Layer: 0 + m_Name: PointCloudExample + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!114 &2101518925 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2101518924} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: c5ab0fdfbf2334e8dbbcdda6ceada7e3, type: 3} + m_Name: + m_EditorClassIdentifier: + numPointsToShow: 400 + PointCloudPrefab: {fileID: 1845574417345784, guid: 02d2a544d8d594d30b790e76398d0873, + type: 2} +--- !u!4 &2101518926 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2101518924} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0.16720128, y: 0.18012214, z: 1.1454113} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &2134794026 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 2134794027} + - component: {fileID: 2134794030} + - component: {fileID: 2134794029} + - component: {fileID: 2134794028} + m_Layer: 0 + m_Name: ZAxis + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2134794027 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2134794026} + m_LocalRotation: {x: 0.49999562, y: 0.5000044, z: 0.49999562, w: 0.5000044} + m_LocalPosition: {x: -0.05, y: 0, z: 1} + m_LocalScale: {x: 0.03270111, y: 1.3080443, z: 0.032701112} + m_Children: [] + m_Father: {fileID: 732268497} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 90, z: 89.999} +--- !u!23 &2134794028 +MeshRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2134794026} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_Materials: + - {fileID: 2100000, guid: d55ccb0db00e54a1696c1e96094d706d, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 1 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!65 &2134794029 +BoxCollider: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2134794026} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 1, y: 1, z: 1} + m_Center: {x: 0, y: 0, z: 0} +--- !u!33 &2134794030 +MeshFilter: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2134794026} + m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityARWorldMap/UnityARWorldMapSerialized.unity.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityARWorldMap/UnityARWorldMapSerialized.unity.meta new file mode 100644 index 000000000..53361dec7 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityARWorldMap/UnityARWorldMapSerialized.unity.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 5886c251920f2454b98358e6027f37df +timeCreated: 1525822678 +licenseType: Pro +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityARWorldMap/UpdateWorldMappingStatus.cs b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityARWorldMap/UpdateWorldMappingStatus.cs new file mode 100644 index 000000000..54bd057f3 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityARWorldMap/UpdateWorldMappingStatus.cs @@ -0,0 +1,31 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEngine.UI; +using UnityEngine.XR.iOS; + +public class UpdateWorldMappingStatus : MonoBehaviour +{ + + public Text text; + public Text tracking; + + + // Use this for initialization + void Start () + { + UnityARSessionNativeInterface.ARFrameUpdatedEvent += CheckWorldMapStatus; + } + + void CheckWorldMapStatus(UnityARCamera cam) + { + text.text = cam.worldMappingStatus.ToString (); + tracking.text = cam.trackingState.ToString () + " " + cam.trackingReason.ToString (); + } + + void OnDestroy() + { + UnityARSessionNativeInterface.ARFrameUpdatedEvent -= CheckWorldMapStatus; + } + +} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityARWorldMap/UpdateWorldMappingStatus.cs.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityARWorldMap/UpdateWorldMappingStatus.cs.meta new file mode 100644 index 000000000..607843099 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityARWorldMap/UpdateWorldMappingStatus.cs.meta @@ -0,0 +1,13 @@ +fileFormatVersion: 2 +guid: b59e1037d79d44fe59df4b634a2862e5 +timeCreated: 1525988622 +licenseType: Pro +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityARWorldMap/WorldMapManager.cs b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityARWorldMap/WorldMapManager.cs new file mode 100644 index 000000000..231af7b19 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityARWorldMap/WorldMapManager.cs @@ -0,0 +1,118 @@ +using System.IO; +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEngine.XR.iOS; + +public class WorldMapManager : MonoBehaviour +{ + [SerializeField] + UnityARCameraManager m_ARCameraManager; + + ARWorldMap m_LoadedMap; + + serializableARWorldMap serializedWorldMap; + + // Use this for initialization + void Start () + { + UnityARSessionNativeInterface.ARFrameUpdatedEvent += OnFrameUpdate; + } + + ARTrackingStateReason m_LastReason; + + void OnFrameUpdate(UnityARCamera arCamera) + { + if (arCamera.trackingReason != m_LastReason) + { + Application.SetStackTraceLogType(LogType.Log, StackTraceLogType.None); + Debug.LogFormat("worldTransform: {0}", arCamera.worldTransform.column3); + Debug.LogFormat("trackingState: {0} {1}", arCamera.trackingState, arCamera.trackingReason); + m_LastReason = arCamera.trackingReason; + } + } + + static UnityARSessionNativeInterface session + { + get { return UnityARSessionNativeInterface.GetARSessionNativeInterface(); } + } + + static string path + { + get { return Path.Combine(Application.persistentDataPath, "myFirstWorldMap.worldmap"); } + } + + void OnWorldMap(ARWorldMap worldMap) + { + if (worldMap != null) + { + worldMap.Save(path); + Debug.LogFormat("ARWorldMap saved to {0}", path); + } + } + + public void Save() + { + session.GetCurrentWorldMapAsync(OnWorldMap); + } + + public void Load() + { + Debug.LogFormat("Loading ARWorldMap {0}", path); + var worldMap = ARWorldMap.Load(path); + if (worldMap != null) + { + m_LoadedMap = worldMap; + Debug.LogFormat("Map loaded. Center: {0} Extent: {1}", worldMap.center, worldMap.extent); + + UnityARSessionNativeInterface.ARSessionShouldAttemptRelocalization = true; + + var config = m_ARCameraManager.sessionConfiguration; + config.worldMap = worldMap; + UnityARSessionRunOption runOption = UnityARSessionRunOption.ARSessionRunOptionRemoveExistingAnchors | UnityARSessionRunOption.ARSessionRunOptionResetTracking; + + Debug.Log("Restarting session with worldMap"); + session.RunWithConfigAndOptions(config, runOption); + + } + } + + + void OnWorldMapSerialized(ARWorldMap worldMap) + { + if (worldMap != null) + { + //we have an operator that converts a ARWorldMap to a serializableARWorldMap + serializedWorldMap = worldMap; + Debug.Log ("ARWorldMap serialized to serializableARWorldMap"); + } + } + + + public void SaveSerialized() + { + session.GetCurrentWorldMapAsync(OnWorldMapSerialized); + } + + public void LoadSerialized() + { + Debug.Log("Loading ARWorldMap from serialized data"); + //we have an operator that converts a serializableARWorldMap to a ARWorldMap + ARWorldMap worldMap = serializedWorldMap; + if (worldMap != null) + { + m_LoadedMap = worldMap; + Debug.LogFormat("Map loaded. Center: {0} Extent: {1}", worldMap.center, worldMap.extent); + + UnityARSessionNativeInterface.ARSessionShouldAttemptRelocalization = true; + + var config = m_ARCameraManager.sessionConfiguration; + config.worldMap = worldMap; + UnityARSessionRunOption runOption = UnityARSessionRunOption.ARSessionRunOptionRemoveExistingAnchors | UnityARSessionRunOption.ARSessionRunOptionResetTracking; + + Debug.Log("Restarting session with worldMap"); + session.RunWithConfigAndOptions(config, runOption); + } + + } +} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityARWorldMap/WorldMapManager.cs.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityARWorldMap/WorldMapManager.cs.meta new file mode 100644 index 000000000..ef3a59c0f --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityARWorldMap/WorldMapManager.cs.meta @@ -0,0 +1,13 @@ +fileFormatVersion: 2 +guid: b560694452f2c4413b835be89150c3ca +timeCreated: 1523485295 +licenseType: Pro +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityObjectScanner.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityObjectScanner.meta new file mode 100644 index 000000000..44844c5fd --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityObjectScanner.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 0314d9e49ee28428cb6f3c88775173be +folderAsset: yes +timeCreated: 1524091409 +licenseType: Pro +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityObjectScanner/DetectedObjectManager.cs b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityObjectScanner/DetectedObjectManager.cs new file mode 100644 index 000000000..c8dd941c0 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityObjectScanner/DetectedObjectManager.cs @@ -0,0 +1,86 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using Collections.Hybrid.Generic; +using UnityEngine.XR.iOS; + +public class DetectedObjectManager : MonoBehaviour { + + public GameObject m_ObjectPrefab; + + private LinkedListDictionary objectAnchorMap; + + // Use this for initialization + void Start () { + objectAnchorMap = new LinkedListDictionary (); + UnityARSessionNativeInterface.ARObjectAnchorAddedEvent += ObjectAnchorAdded; + UnityARSessionNativeInterface.ARObjectAnchorRemovedEvent += ObjectAnchorRemoved; + UnityARSessionNativeInterface.ARObjectAnchorUpdatedEvent += ObjectAnchorUpdated; + } + + void ObjectAnchorUpdated (ARObjectAnchor anchorData) + { + Debug.Log ("ObjectAnchorUpdated"); + if (objectAnchorMap.ContainsKey (anchorData.referenceObjectName)) { + GameObject go = objectAnchorMap [anchorData.referenceObjectName]; + //do coordinate conversion from ARKit to Unity + go.transform.position = UnityARMatrixOps.GetPosition (anchorData.transform); + go.transform.rotation = UnityARMatrixOps.GetRotation (anchorData.transform); + + } + + } + + void ObjectAnchorRemoved (ARObjectAnchor anchorData) + { + Debug.Log ("ObjectAnchorRemoved"); + if (objectAnchorMap.ContainsKey (anchorData.referenceObjectName)) { + GameObject rpgo = objectAnchorMap [anchorData.referenceObjectName]; + GameObject.Destroy (rpgo.gameObject); + objectAnchorMap.Remove (anchorData.identifier); + } + } + + void ObjectAnchorAdded (ARObjectAnchor anchorData) + { + Debug.Log ("ObjectAnchorAdded"); + GameObject go = GameObject.Instantiate (m_ObjectPrefab); + if (go != null) + { + //do coordinate conversion from ARKit to Unity + go.transform.position = UnityARMatrixOps.GetPosition (anchorData.transform); + go.transform.rotation = UnityARMatrixOps.GetRotation (anchorData.transform); + + objectAnchorMap [anchorData.referenceObjectName] = go; + go.name = anchorData.referenceObjectName; + ObjectText objText = go.GetComponent (); + if (objText) + { + objText.UpdateTextMesh (anchorData.referenceObjectName); + } + + } + + } + + void OnDestroy() + { + UnityARSessionNativeInterface.ARObjectAnchorAddedEvent -= ObjectAnchorAdded; + UnityARSessionNativeInterface.ARObjectAnchorRemovedEvent -= ObjectAnchorRemoved; + UnityARSessionNativeInterface.ARObjectAnchorUpdatedEvent -= ObjectAnchorUpdated; + + foreach (GameObject rpgo in objectAnchorMap.Values) + { + GameObject.Destroy (rpgo); + } + + objectAnchorMap.Clear (); + + } + + + // Update is called once per frame + void Update () { + + } +} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityObjectScanner/DetectedObjectManager.cs.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityObjectScanner/DetectedObjectManager.cs.meta new file mode 100644 index 000000000..39438f02c --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityObjectScanner/DetectedObjectManager.cs.meta @@ -0,0 +1,13 @@ +fileFormatVersion: 2 +guid: 987cc8d0095014a95b677de171700cab +timeCreated: 1524178753 +licenseType: Pro +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityObjectScanner/ObjectScanManager.cs b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityObjectScanner/ObjectScanManager.cs new file mode 100644 index 000000000..6a45a4ead --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityObjectScanner/ObjectScanManager.cs @@ -0,0 +1,124 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEngine.XR.iOS; +using System; +using UnityEngine.UI; +using System.IO; + +public class ObjectScanManager : MonoBehaviour { + + [SerializeField] + ObjectScanSessionManager m_ARSessionManager; + + [SerializeField] + Text listOfObjects; + + int objIndex = 0; + List scannedObjects; + bool detectionMode = false; + + private PickBoundingBox pickBoundingBox; + + void Start() + { + scannedObjects = new List (); + pickBoundingBox = GetComponent (); + } + + void OnDestroy() + { + ClearScannedObjects (); + } + + static UnityARSessionNativeInterface session + { + get { return UnityARSessionNativeInterface.GetARSessionNativeInterface(); } + } + + public void CreateReferenceObject() + { + //this script should be placed on the bounding volume GameObject + CreateReferenceObject (pickBoundingBox.transform, pickBoundingBox.bounds.center-pickBoundingBox.transform.position, pickBoundingBox.bounds.size); + } + + public void CreateReferenceObject(Transform objectTransform, Vector3 center, Vector3 extent) + { + session.ExtractReferenceObjectAsync (objectTransform, center, extent, (ARReferenceObject referenceObject) => { + if (referenceObject != null) { + Debug.LogFormat ("ARReferenceObject created: center {0} extent {1}", referenceObject.center, referenceObject.extent); + referenceObject.name = "objScan_" + objIndex++; + Debug.LogFormat ("ARReferenceObject has name {0}", referenceObject.name); + scannedObjects.Add(referenceObject); + UpdateList(); + } else { + Debug.Log ("Failed to create ARReferenceObject."); + } + }); + } + + void UpdateList() + { + string members = ""; + foreach (ARReferenceObject arro in scannedObjects) { + members += arro.name + ","; + } + listOfObjects.text = members; + } + + public void DetectScannedObjects(Text toChange) + { + detectionMode = !detectionMode; + if (detectionMode) { + StartDetecting (); + toChange.text = "Stop Detecting"; + } else { + m_ARSessionManager.StartObjectScanningSession (); + toChange.text = "Detect Objects"; + } + } + + private void StartDetecting() + { + //create a set out of the scanned objects + IntPtr ptrReferenceObjectsSet = session.CreateNativeReferenceObjectsSet(scannedObjects); + + //restart session without resetting tracking + var config = m_ARSessionManager.sessionConfiguration; + + //use object set from above to detect objects + config.dynamicReferenceObjectsPtr = ptrReferenceObjectsSet; + + //Debug.Log("Restarting session without resetting tracking"); + session.RunWithConfigAndOptions(config, UnityARSessionRunOption.ARSessionRunOptionRemoveExistingAnchors | UnityARSessionRunOption.ARSessionRunOptionResetTracking); + + } + + + public void ClearScannedObjects() + { + detectionMode = false; + scannedObjects.Clear (); + UpdateList (); + m_ARSessionManager.StartObjectScanningSession (); + } + + public void SaveScannedObjects() + { + if (scannedObjects.Count == 0) + return; + + string pathToSaveTo = Path.Combine(Application.persistentDataPath, "ARReferenceObjects"); + + if (!Directory.Exists (pathToSaveTo)) + { + Directory.CreateDirectory (pathToSaveTo); + } + + foreach (ARReferenceObject arro in scannedObjects) + { + string fullPath = Path.Combine (pathToSaveTo, arro.name + ".arobject"); + arro.Save (fullPath); + } + } +} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityObjectScanner/ObjectScanManager.cs.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityObjectScanner/ObjectScanManager.cs.meta new file mode 100644 index 000000000..6c1f71854 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityObjectScanner/ObjectScanManager.cs.meta @@ -0,0 +1,13 @@ +fileFormatVersion: 2 +guid: 89ea8e49a2d1a4f0abadbf08359b662e +timeCreated: 1524156699 +licenseType: Pro +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityObjectScanner/ObjectScanSessionManager.cs b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityObjectScanner/ObjectScanSessionManager.cs new file mode 100644 index 000000000..2e4835a37 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityObjectScanner/ObjectScanSessionManager.cs @@ -0,0 +1,97 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEngine.XR.iOS; + +public class ObjectScanSessionManager : MonoBehaviour { + + public Camera m_camera; + private UnityARSessionNativeInterface m_session; + + [Header("AR Config Options")] + public UnityARAlignment startAlignment = UnityARAlignment.UnityARAlignmentGravity; + public UnityARPlaneDetection planeDetection = UnityARPlaneDetection.Horizontal; + public bool getPointCloudData = true; + public bool enableLightEstimation = true; + public bool enableAutoFocus = true; + + + private bool sessionStarted = false; + + public ARKitWorldTrackingSessionConfiguration sessionConfiguration + { + get + { + ARKitWorldTrackingSessionConfiguration config = new ARKitWorldTrackingSessionConfiguration (); + config.planeDetection = planeDetection; + config.alignment = startAlignment; + config.getPointCloudData = getPointCloudData; + config.enableLightEstimation = enableLightEstimation; + config.enableAutoFocus = enableAutoFocus; + + return config; + } + } + + //Warning: using this configuration is expensive CPU and battery-wise - use in limited amounts! + public ARKitObjectScanningSessionConfiguration objScanSessionConfiguration + { + get + { + ARKitObjectScanningSessionConfiguration config = new ARKitObjectScanningSessionConfiguration (); + config.planeDetection = planeDetection; + config.alignment = startAlignment; + config.getPointCloudData = getPointCloudData; + config.enableLightEstimation = enableLightEstimation; + config.enableAutoFocus = enableAutoFocus; + + return config; + } + } + + // Use this for initialization + void Start () { + m_session = UnityARSessionNativeInterface.GetARSessionNativeInterface(); + if (m_camera == null) { + m_camera = Camera.main; + } + Application.targetFrameRate = 60; + + StartObjectScanningSession (); + } + + + public void StartObjectScanningSession() + { + sessionStarted = false; + var config = objScanSessionConfiguration; + if (config.IsSupported) { + m_session.RunWithConfig (config); + UnityARSessionNativeInterface.ARFrameUpdatedEvent += FirstFrameUpdate; + } + } + + + void FirstFrameUpdate(UnityARCamera cam) + { + sessionStarted = true; + UnityARSessionNativeInterface.ARFrameUpdatedEvent -= FirstFrameUpdate; + } + + // Update is called once per frame + + void Update () { + + if (m_camera != null && sessionStarted) + { + // JUST WORKS! + Matrix4x4 matrix = m_session.GetCameraPose(); + m_camera.transform.localPosition = UnityARMatrixOps.GetPosition(matrix); + m_camera.transform.localRotation = UnityARMatrixOps.GetRotation (matrix); + + m_camera.projectionMatrix = m_session.GetCameraProjection (); + } + + } + +} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityObjectScanner/ObjectScanSessionManager.cs.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityObjectScanner/ObjectScanSessionManager.cs.meta new file mode 100644 index 000000000..9c1c24eba --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityObjectScanner/ObjectScanSessionManager.cs.meta @@ -0,0 +1,13 @@ +fileFormatVersion: 2 +guid: 17a920f05ea314690b37dfab2c93e97b +timeCreated: 1527116937 +licenseType: Pro +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityObjectScanner/ObjectText.cs b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityObjectScanner/ObjectText.cs new file mode 100644 index 000000000..26dc53b04 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityObjectScanner/ObjectText.cs @@ -0,0 +1,23 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + +public class ObjectText : MonoBehaviour { + + public TextMesh textMesh; + + // Use this for initialization + void Start () { + + } + + public void UpdateTextMesh(string nameOfReferenceObject) + { + textMesh.text = nameOfReferenceObject; + } + + // Update is called once per frame + void Update () { + + } +} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityObjectScanner/ObjectText.cs.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityObjectScanner/ObjectText.cs.meta new file mode 100644 index 000000000..aa0bb1861 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityObjectScanner/ObjectText.cs.meta @@ -0,0 +1,13 @@ +fileFormatVersion: 2 +guid: 39fb4afa2d68741688a6c32909d504c1 +timeCreated: 1524180519 +licenseType: Pro +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityObjectScanner/PickBoundingBox.cs b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityObjectScanner/PickBoundingBox.cs new file mode 100644 index 000000000..a30fd3325 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityObjectScanner/PickBoundingBox.cs @@ -0,0 +1,484 @@ +using System; +using System.Collections.Generic; + +namespace UnityEngine.XR.iOS +{ + public class PickBoundingBox : MonoBehaviour + { + public Bounds bounds + { + get + { + var center = (m_Bottom.position + m_Top.position) / 2f; + var size = new Vector3( + m_Right.localPosition.x - m_Left.localPosition.x, + m_Top.localPosition.y - m_Bottom.localPosition.y, + m_Front.localPosition.z - m_Back.localPosition.z); + + return new Bounds(center, size); + } + + set + { + var center = value.center; + var extents = value.extents; + var size = value.size; + + transform.position = center + Vector3.down * extents.y; + + m_Bottom.transform.localPosition = Vector3.zero; + m_Top.transform.localPosition = new Vector3(0f, size.y, 0f); + m_Left.transform.localPosition = new Vector3(-extents.x, extents.y, 0f); + m_Right.transform.localPosition = new Vector3(extents.x, extents.y, 0f); + m_Back.transform.localPosition = new Vector3(0f, extents.y, -extents.z); + m_Front.transform.localPosition = new Vector3(0f, extents.y, extents.z); + + m_Top.transform.localScale = new Vector3(size.x, 1f, size.z); + m_Bottom.transform.localScale = new Vector3(size.x, 1f, size.z); + m_Back.transform.localScale = new Vector3(size.x, size.y, 1f); + m_Front.transform.localScale = new Vector3(size.x, size.y, 1f); + m_Left.transform.localScale = new Vector3(1f, size.y, size.z); + m_Right.transform.localScale = new Vector3(1f, size.y, size.z); + } + } + + enum HitType + { + None, + BoxFace, + ARPlane, + Rotate + } + + [SerializeField] + Transform m_Top; + + [SerializeField] + Transform m_Bottom; + + [SerializeField] + Transform m_Left; + + [SerializeField] + Transform m_Right; + + [SerializeField] + Transform m_Back; + + [SerializeField] + Transform m_Front; + + [SerializeField] + Material m_UnselectedMaterial; + + [SerializeField] + Material m_SelectedMaterial; + + RaycastHit m_PhysicsHit; + + ARHitTestResult m_ARHit; + + Vector3 m_BeganFacePosition; + + HitType m_LastHitType = HitType.None; + + float m_InitialPinchDistance; + + Bounds m_InitialPinchBounds; + + const float k_PinchTurnRatio = Mathf.PI / 2; + + const float k_MinTurnAngle = 0f; + + const float k_PinchRatio = 1f; + + const float k_MinPinchDistance = 0f; + + float m_TurnAngleDelta; + + float m_PinchDistanceDelta; + + float m_PinchDistance; + + float rotationOnYAxis + { + get + { + return transform.rotation.eulerAngles.y; + } + + set + { + var euler = transform.eulerAngles; + euler.y = value; + transform.eulerAngles = euler; + } + } + + bool touched + { + get + { + return Input.GetMouseButton(0) || (Input.touchCount > 0); + } + } + + bool DoPhysicsRaycast(Touch touch, ref RaycastHit hitOut) + { + var ray = Camera.main.ScreenPointToRay(touch.position); + var layerMask = 1 << gameObject.layer; + RaycastHit hit; + if (!Physics.Raycast(ray, out hit, Mathf.Infinity, layerMask)) + return false; + + hitOut = hit; + return true; + } + + bool DoARRaycast(Touch touch, ref ARHitTestResult hitOut) + { + var screenPosition = Camera.main.ScreenToViewportPoint(touch.position); + ARPoint point = new ARPoint() + { + x = screenPosition.x, + y = screenPosition.y + }; + + var hitResults = UnityARSessionNativeInterface.GetARSessionNativeInterface().HitTest(point, ARHitTestResultType.ARHitTestResultTypeExistingPlaneUsingExtent); + if (hitResults.Count < 1) + return false; + + hitOut = hitResults[0]; + return true; + } + + void SetFaceMaterial(Collider collider, Material material) + { + var meshRenderer = collider.gameObject.GetComponent(); + meshRenderer.material = material; + } + + void DoBegan(Touch touch) + { + if (Input.touchCount > 1) + return; + + m_LastHitType = HitType.None; + + // First, see if we hit any face + if (DoPhysicsRaycast(touch, ref m_PhysicsHit)) + { + m_LastHitType = HitType.BoxFace; + m_BeganFacePosition = GetFaceFromCollider(m_PhysicsHit.collider).position; + SetFaceMaterial(m_PhysicsHit.collider, m_SelectedMaterial); + return; + } + + // Check AR plane + ARHitTestResult arHit = new ARHitTestResult(); + if (DoARRaycast(touch, ref arHit)) + { + if (m_ARHit.anchorIdentifier != arHit.anchorIdentifier) + { + // This means we've hit a different plane, so move immediately + transform.position = UnityARMatrixOps.GetPosition(arHit.worldTransform); + } + + m_LastHitType = HitType.ARPlane; + m_ARHit = arHit; + } + } + + void DoRotateScale() + { + Calculate(); + + if (m_LastHitType != HitType.Rotate) + { + m_InitialPinchDistance = m_PinchDistance; + m_InitialPinchBounds = bounds; + } + + if (Mathf.Abs(m_TurnAngleDelta) > 0f) + rotationOnYAxis -= m_TurnAngleDelta; + + var scale = m_PinchDistance / m_InitialPinchDistance; + var size = m_InitialPinchBounds.size * scale; + if (size.x < .01f || size.y < 0.01f || size.z < 0.01f) + return; + + var center = bounds.center; + center = m_Bottom.position + Vector3.up * (size.y / 2f); + bounds = new Bounds(center, size); + } + + void DoMoved(Touch touch) + { + if (Input.touchCount == 2) + { + ResetMaterial(); + DoRotateScale(); + + // This prevents any other move logic from running + // until the number of touches drops back to zero. + m_LastHitType = HitType.Rotate; + } + else + { + switch (m_LastHitType) + { + case HitType.BoxFace: + MoveFace(touch); + break; + case HitType.ARPlane: + MovePlane(touch); + break; + } + } + } + + Transform GetFaceFromCollider(Collider collider) + { + return collider.gameObject.transform.parent.parent; + } + + void MoveFace(Touch touch) + { + // http://morroworks.com/Content/Docs/Rays%20closest%20point.pdf + + var faceTransform = GetFaceFromCollider(m_PhysicsHit.collider); + var a = m_PhysicsHit.normal; + var A = m_PhysicsHit.point; + + var ray = Camera.main.ScreenPointToRay(touch.position); + var b = ray.direction; + var B = ray.origin; + + // Compute 'delta', an offset on the ray defined by the hit's point and normal + // which is closest to the screen ray. A + delta would be the point on the face ray + // which is closest to the screen ray + var c = A - B; + var ab = Vector3.Dot(a, b); + var bc = Vector3.Dot(b, c); + var ac = Vector3.Dot(a, c); + var denom = 1f - ab * ab; + if (Mathf.Abs(denom) < 0.001f) + return; + + var delta = a * ((ab * bc - ac) / denom); + + faceTransform.position = m_BeganFacePosition + delta; + + if (faceTransform == m_Top || faceTransform == m_Bottom) + { + var length = m_Top.localPosition.y - m_Bottom.localPosition.y; + + AdjustY(m_Left, length); + AdjustY(m_Right, length); + AdjustY(m_Back, length); + AdjustY(m_Front, length); + } + + if (faceTransform == m_Left || faceTransform == m_Right) + { + var length = m_Right.localPosition.x - m_Left.localPosition.x; + + AdjustX(m_Bottom, length); + AdjustX(m_Top, length); + AdjustX(m_Back, length); + AdjustX(m_Front, length); + } + + if (faceTransform == m_Back || faceTransform == m_Front) + { + var length = m_Front.localPosition.z - m_Back.localPosition.z; + + AdjustZ(m_Top, length); + AdjustZ(m_Bottom, length); + AdjustZ(m_Left, length); + AdjustZ(m_Right, length); + } + + Recenter(); + } + + void Recenter() + { + // Recenter the box + var center = bounds.center; + var delta = center - transform.position; + delta.y = 0f; + transform.position += delta; + + m_Top.transform.position -= delta; + m_Bottom.transform.position -= delta; + m_Front.transform.position -= delta; + m_Back.transform.position -= delta; + m_Left.transform.position -= delta; + m_Right.transform.position -= delta; + } + + void AdjustX(Transform face, float length) + { + var localScale = face.localScale; + localScale.x = length; + face.localScale = localScale; + + var localPosition = face.localPosition; + localPosition.x = m_Left.localPosition.x + length / 2; + face.localPosition = localPosition; + } + + void AdjustY(Transform face, float length) + { + var localScale = face.localScale; + localScale.y = length; + face.localScale = localScale; + + var localPosition = face.localPosition; + localPosition.y = m_Bottom.localPosition.y + length / 2; + face.localPosition = localPosition; + } + + void AdjustZ(Transform face, float length) + { + var localScale = face.localScale; + localScale.z = length; + face.localScale = localScale; + + var localPosition = face.localPosition; + localPosition.z = m_Back.localPosition.z + length / 2; + face.localPosition = localPosition; + } + + void MovePlane(Touch touch) + { + ARHitTestResult arHit = new ARHitTestResult(); + if (DoARRaycast(touch, ref arHit)) + { + var hitPosition = UnityARMatrixOps.GetPosition(arHit.worldTransform); + + if (m_ARHit.anchorIdentifier != arHit.anchorIdentifier) + { + // This means we've hit a different plane, so move to it immediately + transform.position = hitPosition; + } + else + { + // Calculate the difference + var lastPosition = UnityARMatrixOps.GetPosition(m_ARHit.worldTransform); + var delta = hitPosition - lastPosition; + transform.position += delta; + } + + m_ARHit = arHit; + } + } + +#if UNITY_EDITOR + Vector3 m_LastTouchPosition; +#endif + + Touch GetTouch() + { +#if UNITY_EDITOR + var touch = new Touch(); + if (Input.GetMouseButtonDown(0)) + touch.phase = TouchPhase.Began; + else if (Input.GetMouseButton(0) && m_LastTouchPosition != Input.mousePosition) + touch.phase = TouchPhase.Moved; + else + touch.phase = TouchPhase.Stationary; + + touch.position = Input.mousePosition; + m_LastTouchPosition = touch.position; + return touch; +#else + return Input.GetTouch(0); +#endif + } + + void Update() + { + if (touched) + { + var touch = GetTouch(); + switch (touch.phase) + { + case TouchPhase.Began: + DoBegan(touch); + break; + case TouchPhase.Moved: + DoMoved(touch); + break; + } + } + else + { + ResetMaterial(); + m_LastHitType = HitType.None; + } + } + + void ResetMaterial() + { + if ((m_LastHitType == HitType.BoxFace) && (m_PhysicsHit.collider != null)) + SetFaceMaterial(m_PhysicsHit.collider, m_UnselectedMaterial); + } + + void Calculate() + { + m_PinchDistance = m_PinchDistanceDelta = 0f; + m_TurnAngleDelta = 0f; + + // if two fingers are touching the screen at the same time ... + if (Input.touchCount != 2) + return; + + Touch touch1 = Input.touches[0]; + Touch touch2 = Input.touches[1]; + + // ... if at least one of them moved ... + // if (touch1.phase != TouchPhase.Moved && touch2.phase != TouchPhase.Moved) + // return; + + // ... check the delta distance between them ... + m_PinchDistance = Vector2.Distance(touch1.position, touch2.position); + float prevDistance = Vector2.Distance(touch1.position - touch1.deltaPosition, + touch2.position - touch2.deltaPosition); + m_PinchDistanceDelta = m_PinchDistance - prevDistance; + + // ... if it's greater than a minimum threshold, it's a pinch! + if (Mathf.Abs(m_PinchDistanceDelta) > k_MinPinchDistance) { + m_PinchDistanceDelta *= k_PinchRatio; + } else { + m_PinchDistance = m_PinchDistanceDelta = 0; + } + + // ... or check the delta angle between them ... + var turnAngle = Angle(touch1.position, touch2.position); + float prevTurn = Angle(touch1.position - touch1.deltaPosition, + touch2.position - touch2.deltaPosition); + m_TurnAngleDelta = Mathf.DeltaAngle(prevTurn, turnAngle); + + // ... if it's greater than a minimum threshold, it's a turn! + if (Mathf.Abs(m_TurnAngleDelta) > k_MinTurnAngle) + m_TurnAngleDelta *= k_PinchTurnRatio; + } + + static float Angle (Vector2 pos1, Vector2 pos2) + { + Vector2 from = pos2 - pos1; + Vector2 to = new Vector2(1, 0); + + float result = Vector2.Angle( from, to ); + Vector3 cross = Vector3.Cross( from, to ); + + if (cross.z > 0f) + result = 360f - result; + + return result; + } + } +} + diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityObjectScanner/PickBoundingBox.cs.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityObjectScanner/PickBoundingBox.cs.meta new file mode 100644 index 000000000..0ba917041 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityObjectScanner/PickBoundingBox.cs.meta @@ -0,0 +1,13 @@ +fileFormatVersion: 2 +guid: 4d2687bd3ffe8429eb1a387f5598413c +timeCreated: 1523908858 +licenseType: Pro +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityObjectScanner/PrintBounds.cs b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityObjectScanner/PrintBounds.cs new file mode 100644 index 000000000..44b86b4e8 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityObjectScanner/PrintBounds.cs @@ -0,0 +1,29 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEngine.UI; + +namespace UnityEngine.XR.iOS +{ + [RequireComponent(typeof(UnityEngine.UI.Text))] + public class PrintBounds : MonoBehaviour + { + [SerializeField] + PickBoundingBox m_Picker; + + Text m_BoundsText; + + void Start() + { + m_BoundsText = GetComponent(); + } + + // Update is called once per frame + void Update() + { + var bounds = m_Picker.bounds; + m_BoundsText.text = string.Format("Bounds:{0}", bounds.ToString("F2")) + string.Format(",size={0} ", bounds.size.ToString("F2")); + m_BoundsText.text += string.Format ("Transform.pos:{0} rot:{1}", m_Picker.transform.position.ToString ("F2"), m_Picker.transform.rotation.ToString ("F2")); + } + } +} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityObjectScanner/PrintBounds.cs.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityObjectScanner/PrintBounds.cs.meta new file mode 100644 index 000000000..bed15422f --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityObjectScanner/PrintBounds.cs.meta @@ -0,0 +1,13 @@ +fileFormatVersion: 2 +guid: a3894bd9b250945f19eb977dae78188d +timeCreated: 1523924951 +licenseType: Pro +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityObjectScanner/UnityObjectScanner.unity b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityObjectScanner/UnityObjectScanner.unity new file mode 100644 index 000000000..228169bd6 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityObjectScanner/UnityObjectScanner.unity @@ -0,0 +1,2760 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!29 &1 +OcclusionCullingSettings: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_OcclusionBakeSettings: + smallestOccluder: 5 + smallestHole: 0.25 + backfaceThreshold: 100 + m_SceneGUID: 00000000000000000000000000000000 + m_OcclusionCullingData: {fileID: 0} +--- !u!104 &2 +RenderSettings: + m_ObjectHideFlags: 0 + serializedVersion: 8 + m_Fog: 0 + m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_FogMode: 3 + m_FogDensity: 0.01 + m_LinearFogStart: 0 + m_LinearFogEnd: 300 + m_AmbientSkyColor: {r: 0.2, g: 0.2, b: 0.2, a: 0} + m_AmbientEquatorColor: {r: 0.098908, g: 0.100485, b: 0.119403, a: 1} + m_AmbientGroundColor: {r: 0.098908, g: 0.100485, b: 0.119403, a: 1} + m_AmbientIntensity: 1 + m_AmbientMode: 3 + m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} + m_SkyboxMaterial: {fileID: 0} + m_HaloStrength: 0.5 + m_FlareStrength: 1 + m_FlareFadeSpeed: 3 + m_HaloTexture: {fileID: 0} + m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0} + m_DefaultReflectionMode: 0 + m_DefaultReflectionResolution: 128 + m_ReflectionBounces: 1 + m_ReflectionIntensity: 1 + m_CustomReflection: {fileID: 0} + m_Sun: {fileID: 0} + m_IndirectSpecularColor: {r: 0, g: 0, b: 0, a: 1} +--- !u!157 &4 +LightmapSettings: + m_ObjectHideFlags: 0 + serializedVersion: 11 + m_GIWorkflowMode: 1 + m_GISettings: + serializedVersion: 2 + m_BounceScale: 1 + m_IndirectOutputScale: 1 + m_AlbedoBoost: 1 + m_TemporalCoherenceThreshold: 1 + m_EnvironmentLightingMode: 0 + m_EnableBakedLightmaps: 1 + m_EnableRealtimeLightmaps: 0 + m_LightmapEditorSettings: + serializedVersion: 9 + m_Resolution: 1 + m_BakeResolution: 50 + m_TextureWidth: 1024 + m_TextureHeight: 1024 + m_AO: 1 + m_AOMaxDistance: 1 + m_CompAOExponent: 1 + m_CompAOExponentDirect: 0 + m_Padding: 2 + m_LightmapParameters: {fileID: 0} + m_LightmapsBakeMode: 1 + m_TextureCompression: 0 + m_FinalGather: 0 + m_FinalGatherFiltering: 1 + m_FinalGatherRayCount: 256 + m_ReflectionCompression: 2 + m_MixedBakeMode: 1 + m_BakeBackend: 0 + m_PVRSampling: 1 + m_PVRDirectSampleCount: 32 + m_PVRSampleCount: 500 + m_PVRBounces: 2 + m_PVRFilterTypeDirect: 0 + m_PVRFilterTypeIndirect: 0 + m_PVRFilterTypeAO: 0 + m_PVRFilteringMode: 1 + m_PVRCulling: 1 + m_PVRFilteringGaussRadiusDirect: 1 + m_PVRFilteringGaussRadiusIndirect: 5 + m_PVRFilteringGaussRadiusAO: 2 + m_PVRFilteringAtrousPositionSigmaDirect: 0.5 + m_PVRFilteringAtrousPositionSigmaIndirect: 2 + m_PVRFilteringAtrousPositionSigmaAO: 1 + m_ShowResolutionOverlay: 1 + m_LightingDataAsset: {fileID: 0} + m_UseShadowmask: 1 +--- !u!196 &5 +NavMeshSettings: + serializedVersion: 2 + m_ObjectHideFlags: 0 + m_BuildSettings: + serializedVersion: 2 + agentTypeID: 0 + agentRadius: 0.4 + agentHeight: 1.8 + agentSlope: 45 + agentClimb: 0.9 + ledgeDropHeight: 0 + maxJumpAcrossDistance: 0 + minRegionArea: 2 + manualCellSize: 0 + cellSize: 0.13333333 + manualTileSize: 0 + tileSize: 256 + accuratePlacement: 0 + debug: + m_Flags: 0 + m_NavMeshData: {fileID: 0} +--- !u!1 &7 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 9} + - component: {fileID: 10} + - component: {fileID: 12} + - component: {fileID: 13} + - component: {fileID: 11} + - component: {fileID: 8} + - component: {fileID: 14} + m_Layer: 0 + m_Name: Main Camera + m_TagString: MainCamera + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &8 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b58ecea7a196242dd879c814ac05084c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_ClearMaterial: {fileID: 2100000, guid: f1d9352050a75486f878ab19fa578f16, type: 2} +--- !u!4 &9 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 229804521} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!20 &10 +Camera: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 + serializedVersion: 2 + m_ClearFlags: 3 + m_BackGroundColor: {r: 0.19788063, g: 0.2953552, b: 0.44852942, a: 0.019608} + m_NormalizedViewPortRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + near clip plane: 0.1 + far clip plane: 30 + field of view: 60 + orthographic: 0 + orthographic size: 100 + m_Depth: -1 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingPath: -1 + m_TargetTexture: {fileID: 0} + m_TargetDisplay: 0 + m_TargetEye: 3 + m_HDR: 0 + m_AllowMSAA: 1 + m_AllowDynamicResolution: 0 + m_ForceIntoRT: 0 + m_OcclusionCulling: 1 + m_StereoConvergence: 10 + m_StereoSeparation: 0.022 +--- !u!81 &11 +AudioListener: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 +--- !u!92 &12 +Behaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 +--- !u!124 &13 +Behaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 +--- !u!114 &14 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: ce437cef046e841aabd6070890e79d41, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &16 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 20} + - component: {fileID: 29} + - component: {fileID: 17} + m_Layer: 0 + m_Name: Directional light + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &17 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 16} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5587c957048494a2f96db36e0995449e, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!4 &20 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 16} + m_LocalRotation: {x: -0.31668198, y: -0.33227497, z: 0.119525984, w: -0.8803519} + m_LocalPosition: {x: -2.359002, y: 2.21, z: -3.580904} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!108 &29 +Light: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 16} + m_Enabled: 1 + serializedVersion: 8 + m_Type: 1 + m_Color: {r: 1, g: 0.997495, b: 0.955224, a: 1} + m_Intensity: 1 + m_Range: 10 + m_SpotAngle: 30 + m_CookieSize: 10 + m_Shadows: + m_Type: 0 + m_Resolution: -1 + m_CustomResolution: -1 + m_Strength: 1 + m_Bias: 0.05 + m_NormalBias: 0.4 + m_NearPlane: 0.2 + m_Cookie: {fileID: 0} + m_DrawHalo: 0 + m_Flare: {fileID: 0} + m_RenderMode: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_Lightmapping: 1 + m_AreaSize: {x: 1, y: 1} + m_BounceIntensity: 1 + m_ColorTemperature: 6570 + m_UseColorTemperature: 0 + m_ShadowRadius: 0 + m_ShadowAngle: 0 +--- !u!1001 &43367616 +Prefab: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 240125472} + m_Modifications: + - target: {fileID: 4063972062076818, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4063972062076818, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4063972062076818, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4063972062076818, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_LocalRotation.x + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: 4063972062076818, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4063972062076818, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_LocalRotation.z + value: -0.7071068 + objectReference: {fileID: 0} + - target: {fileID: 4063972062076818, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_LocalRotation.w + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4063972062076818, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1106013321793048, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_Name + value: Bottom + objectReference: {fileID: 0} + - target: {fileID: 4063972062076818, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_LocalEulerAnglesHint.x + value: 180 + objectReference: {fileID: 0} + - target: {fileID: 1424221161384634, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_Layer + value: 11 + objectReference: {fileID: 0} + - target: {fileID: 1106013321793048, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_Layer + value: 11 + objectReference: {fileID: 0} + - target: {fileID: 4063972062076818, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_LocalEulerAnglesHint.y + value: 90 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_ParentPrefab: {fileID: 100100000, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + m_IsPrefabParent: 0 +--- !u!4 &43367617 stripped +Transform: + m_PrefabParentObject: {fileID: 4063972062076818, guid: 5dcebda15b99e4457a22a698a16c0c4e, + type: 2} + m_PrefabInternal: {fileID: 43367616} +--- !u!1 &186637783 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 186637784} + - component: {fileID: 186637786} + - component: {fileID: 186637785} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &186637784 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 186637783} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1124492520} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &186637785 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 186637783} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 30 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 3 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: Clear Objects +--- !u!222 &186637786 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 186637783} +--- !u!1 &229804520 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 229804521} + m_Layer: 0 + m_Name: CameraParent + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &229804521 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 229804520} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 9} + m_Father: {fileID: 0} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &240125471 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 240125472} + m_Layer: 11 + m_Name: BottomParent + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &240125472 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 240125471} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.1, y: 1, z: 0.1} + m_Children: + - {fileID: 43367617} + m_Father: {fileID: 2105024678} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &336245683 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 336245684} + - component: {fileID: 336245686} + - component: {fileID: 336245685} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &336245684 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 336245683} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1450359361} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &336245685 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 336245683} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 30 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 3 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: Create Object +--- !u!222 &336245686 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 336245683} +--- !u!1 &365527399 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 365527400} + m_Layer: 11 + m_Name: FrontParent + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &365527400 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 365527399} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0.05, z: 0.05} + m_LocalScale: {x: 0.1, y: 0.1, z: 1} + m_Children: + - {fileID: 660356438} + m_Father: {fileID: 2105024678} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &408484964 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 408484965} + - component: {fileID: 408484967} + - component: {fileID: 408484966} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &408484965 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 408484964} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1466458554} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &408484966 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 408484964} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 30 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 3 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: Save Objects +--- !u!222 &408484967 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 408484964} +--- !u!1 &481742511 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 481742512} + - component: {fileID: 481742513} + m_Layer: 0 + m_Name: PointCloudParticleExample + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &481742512 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 481742511} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &481742513 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 481742511} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: ec20d460fbb7e4f92b4d84a10da98cd9, type: 3} + m_Name: + m_EditorClassIdentifier: + pointCloudParticlePrefab: {fileID: 198314236125653888, guid: 87db9decf4b3e4cb8bf3eea22ccd37f5, + type: 2} + maxPointsToShow: 500 + particleSize: 0.01 +--- !u!1 &506506027 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 506506028} + m_Layer: 11 + m_Name: TopParent + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &506506028 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 506506027} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0.1, z: 0} + m_LocalScale: {x: 0.1, y: 1, z: 0.1} + m_Children: + - {fileID: 647952921} + m_Father: {fileID: 2105024678} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &519187371 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 519187373} + - component: {fileID: 519187372} + m_Layer: 0 + m_Name: ObjScanSessionManager + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &519187372 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 519187371} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 17a920f05ea314690b37dfab2c93e97b, type: 3} + m_Name: + m_EditorClassIdentifier: + m_camera: {fileID: 10} + startAlignment: 0 + planeDetection: 1 + getPointCloudData: 1 + enableLightEstimation: 1 + enableAutoFocus: 1 +--- !u!4 &519187373 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 519187371} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 7 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &567648595 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 567648596} + - component: {fileID: 567648599} + - component: {fileID: 567648598} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &567648596 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 567648595} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 850784691} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &567648598 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 567648595} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 30 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 3 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: 0 +--- !u!222 &567648599 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 567648595} +--- !u!1001 &589357555 +Prefab: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 982863011} + m_Modifications: + - target: {fileID: 4063972062076818, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4063972062076818, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4063972062076818, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4063972062076818, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_LocalRotation.x + value: -0.7071068 + objectReference: {fileID: 0} + - target: {fileID: 4063972062076818, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4063972062076818, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4063972062076818, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_LocalRotation.w + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: 4063972062076818, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1106013321793048, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_Name + value: Back + objectReference: {fileID: 0} + - target: {fileID: 4063972062076818, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4063972062076818, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_LocalScale.x + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4063972062076818, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_LocalScale.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4063972062076818, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_LocalEulerAnglesHint.x + value: -90 + objectReference: {fileID: 0} + - target: {fileID: 1424221161384634, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_Layer + value: 11 + objectReference: {fileID: 0} + - target: {fileID: 1106013321793048, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_Layer + value: 11 + objectReference: {fileID: 0} + - target: {fileID: 4063972062076818, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_LocalScale.z + value: 1 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_ParentPrefab: {fileID: 100100000, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + m_IsPrefabParent: 0 +--- !u!4 &589357556 stripped +Transform: + m_PrefabParentObject: {fileID: 4063972062076818, guid: 5dcebda15b99e4457a22a698a16c0c4e, + type: 2} + m_PrefabInternal: {fileID: 589357555} +--- !u!1 &603632967 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 603632968} + - component: {fileID: 603632970} + - component: {fileID: 603632969} + m_Layer: 5 + m_Name: ButtonContainer + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &603632968 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 603632967} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1450359361} + - {fileID: 1736104561} + - {fileID: 1124492520} + - {fileID: 1466458554} + m_Father: {fileID: 1668561367} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.044117343, y: 0.8708924} + m_AnchorMax: {x: 0.9398827, y: 0.97867954} + m_AnchoredPosition: {x: 11.429663, y: 1.8000488} + m_SizeDelta: {x: -22.9, y: 3.6001} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &603632969 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 603632967} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -405508275, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 10 + m_Right: 10 + m_Top: 10 + m_Bottom: 10 + m_ChildAlignment: 0 + m_Spacing: 30 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 1 + m_ChildControlHeight: 1 +--- !u!222 &603632970 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 603632967} +--- !u!1 &617451154 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 617451155} + - component: {fileID: 617451158} + - component: {fileID: 617451157} + m_Layer: 5 + m_Name: BoxBounds + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &617451155 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 617451154} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1471599124} + m_Father: {fileID: 2099945969} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &617451157 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 617451154} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &617451158 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 617451154} +--- !u!1001 &647952920 +Prefab: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 506506028} + m_Modifications: + - target: {fileID: 4063972062076818, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4063972062076818, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4063972062076818, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4063972062076818, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4063972062076818, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4063972062076818, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4063972062076818, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4063972062076818, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1106013321793048, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_Name + value: Top + objectReference: {fileID: 0} + - target: {fileID: 1106013321793048, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_Layer + value: 11 + objectReference: {fileID: 0} + - target: {fileID: 1424221161384634, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_Layer + value: 11 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_ParentPrefab: {fileID: 100100000, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + m_IsPrefabParent: 0 +--- !u!4 &647952921 stripped +Transform: + m_PrefabParentObject: {fileID: 4063972062076818, guid: 5dcebda15b99e4457a22a698a16c0c4e, + type: 2} + m_PrefabInternal: {fileID: 647952920} +--- !u!1001 &660356437 +Prefab: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 365527400} + m_Modifications: + - target: {fileID: 4063972062076818, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4063972062076818, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_LocalPosition.y + value: 0.000001899898 + objectReference: {fileID: 0} + - target: {fileID: 4063972062076818, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_LocalPosition.z + value: 0.000001899898 + objectReference: {fileID: 0} + - target: {fileID: 4063972062076818, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_LocalRotation.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4063972062076818, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_LocalRotation.y + value: -0.5 + objectReference: {fileID: 0} + - target: {fileID: 4063972062076818, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_LocalRotation.z + value: -0.5 + objectReference: {fileID: 0} + - target: {fileID: 4063972062076818, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_LocalRotation.w + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4063972062076818, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1106013321793048, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_Name + value: Front + objectReference: {fileID: 0} + - target: {fileID: 4063972062076818, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_LocalEulerAnglesHint.z + value: -90 + objectReference: {fileID: 0} + - target: {fileID: 4063972062076818, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_LocalScale.x + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4063972062076818, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_LocalScale.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4063972062076818, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4063972062076818, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_LocalScale.z + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1106013321793048, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_Layer + value: 11 + objectReference: {fileID: 0} + - target: {fileID: 1424221161384634, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_Layer + value: 11 + objectReference: {fileID: 0} + - target: {fileID: 4063972062076818, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_LocalEulerAnglesHint.y + value: -90 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_ParentPrefab: {fileID: 100100000, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + m_IsPrefabParent: 0 +--- !u!4 &660356438 stripped +Transform: + m_PrefabParentObject: {fileID: 4063972062076818, guid: 5dcebda15b99e4457a22a698a16c0c4e, + type: 2} + m_PrefabInternal: {fileID: 660356437} +--- !u!1 &796484059 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 796484061} + - component: {fileID: 796484060} + m_Layer: 0 + m_Name: DetectionObjectManager + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &796484060 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 796484059} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 987cc8d0095014a95b677de171700cab, type: 3} + m_Name: + m_EditorClassIdentifier: + m_ObjectPrefab: {fileID: 1182685253350136, guid: c2c40ff3dd4b046f4a09d7d727a9d9d3, + type: 2} +--- !u!4 &796484061 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 796484059} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.05, z: -2.98} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 6 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &850784690 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 850784691} + - component: {fileID: 850784693} + - component: {fileID: 850784692} + m_Layer: 5 + m_Name: ListOfObjects + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &850784691 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 850784690} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 567648596} + m_Father: {fileID: 1558989019} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &850784692 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 850784690} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &850784693 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 850784690} +--- !u!1 &855175345 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 855175346} + - component: {fileID: 855175348} + - component: {fileID: 855175347} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &855175346 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 855175345} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1736104561} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &855175347 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 855175345} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 30 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 3 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: Detect Objects +--- !u!222 &855175348 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 855175345} +--- !u!1 &947883105 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 947883108} + - component: {fileID: 947883107} + - component: {fileID: 947883106} + m_Layer: 0 + m_Name: EventSystem + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &947883106 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 947883105} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1077351063, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_HorizontalAxis: Horizontal + m_VerticalAxis: Vertical + m_SubmitButton: Submit + m_CancelButton: Cancel + m_InputActionsPerSecond: 10 + m_RepeatDelay: 0.5 + m_ForceModuleActive: 0 +--- !u!114 &947883107 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 947883105} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -619905303, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_FirstSelected: {fileID: 0} + m_sendNavigationEvents: 1 + m_DragThreshold: 5 +--- !u!4 &947883108 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 947883105} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &982863010 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 982863011} + m_Layer: 11 + m_Name: BackParent + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &982863011 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 982863010} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0.05, z: -0.05} + m_LocalScale: {x: 0.1, y: 0.1, z: 1} + m_Children: + - {fileID: 589357556} + m_Father: {fileID: 2105024678} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1052679867 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1052679871} + - component: {fileID: 1052679870} + - component: {fileID: 1052679868} + - component: {fileID: 1052679872} + - component: {fileID: 1052679873} + m_Layer: 0 + m_Name: HitScanObject + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!23 &1052679868 +MeshRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1052679867} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_Materials: + - {fileID: 10303, guid: 0000000000000000f000000000000000, type: 0} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 1 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!33 &1052679870 +MeshFilter: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1052679867} + m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} +--- !u!4 &1052679871 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1052679867} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0.05, z: 0} + m_LocalScale: {x: 0.1, y: 0.1, z: 0.1} + m_Children: [] + m_Father: {fileID: 1286139108} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1052679872 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1052679867} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 6941ec02ead994c9b848d640887441f1, type: 3} + m_Name: + m_EditorClassIdentifier: + m_HitTransform: {fileID: 1286139108} + maxRayDistance: 30 + collisionLayer: + serializedVersion: 2 + m_Bits: 1024 +--- !u!114 &1052679873 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1052679867} + m_Enabled: 0 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 89ea8e49a2d1a4f0abadbf08359b662e, type: 3} + m_Name: + m_EditorClassIdentifier: + m_ARSessionManager: {fileID: 519187372} + listOfObjects: {fileID: 0} +--- !u!1 &1124492519 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1124492520} + - component: {fileID: 1124492523} + - component: {fileID: 1124492522} + - component: {fileID: 1124492521} + m_Layer: 5 + m_Name: ClearObjects + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1124492520 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1124492519} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 186637784} + m_Father: {fileID: 603632968} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1124492521 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1124492519} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1124492522} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 2105024676} + m_MethodName: ClearScannedObjects + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &1124492522 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1124492519} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1124492523 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1124492519} +--- !u!1001 &1147504524 +Prefab: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1472952121} + m_Modifications: + - target: {fileID: 4063972062076818, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4063972062076818, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4063972062076818, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4063972062076818, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_LocalRotation.x + value: -0.5 + objectReference: {fileID: 0} + - target: {fileID: 4063972062076818, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_LocalRotation.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4063972062076818, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_LocalRotation.z + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4063972062076818, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_LocalRotation.w + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4063972062076818, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1106013321793048, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_Name + value: Left + objectReference: {fileID: 0} + - target: {fileID: 4063972062076818, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_LocalEulerAnglesHint.z + value: 90 + objectReference: {fileID: 0} + - target: {fileID: 4063972062076818, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_LocalScale.x + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4063972062076818, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_LocalScale.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1424221161384634, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_Layer + value: 11 + objectReference: {fileID: 0} + - target: {fileID: 1106013321793048, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_Layer + value: 11 + objectReference: {fileID: 0} + - target: {fileID: 4063972062076818, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_LocalEulerAnglesHint.x + value: -90 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_ParentPrefab: {fileID: 100100000, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + m_IsPrefabParent: 0 +--- !u!4 &1147504525 stripped +Transform: + m_PrefabParentObject: {fileID: 4063972062076818, guid: 5dcebda15b99e4457a22a698a16c0c4e, + type: 2} + m_PrefabInternal: {fileID: 1147504524} +--- !u!1 &1286139107 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1286139108} + m_Layer: 0 + m_Name: HitScanObjectParent + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1286139108 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1286139107} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: -0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1052679871} + - {fileID: 2105024678} + m_Father: {fileID: 0} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1450359360 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1450359361} + - component: {fileID: 1450359364} + - component: {fileID: 1450359363} + - component: {fileID: 1450359362} + m_Layer: 5 + m_Name: CreateObject + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1450359361 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1450359360} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 336245684} + m_Father: {fileID: 603632968} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1450359362 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1450359360} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1450359363} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 2105024676} + m_MethodName: CreateReferenceObject + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &1450359363 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1450359360} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1450359364 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1450359360} +--- !u!1 &1466458553 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1466458554} + - component: {fileID: 1466458557} + - component: {fileID: 1466458556} + - component: {fileID: 1466458555} + m_Layer: 5 + m_Name: SaveObjects + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1466458554 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1466458553} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 408484965} + m_Father: {fileID: 603632968} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1466458555 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1466458553} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1466458556} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 2105024676} + m_MethodName: SaveScannedObjects + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &1466458556 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1466458553} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1466458557 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1466458553} +--- !u!1 &1471599123 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1471599124} + - component: {fileID: 1471599127} + - component: {fileID: 1471599126} + - component: {fileID: 1471599125} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1471599124 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1471599123} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 617451155} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1471599125 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1471599123} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: a3894bd9b250945f19eb977dae78188d, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Picker: {fileID: 2105024677} +--- !u!114 &1471599126 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1471599123} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 30 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 3 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: 0 +--- !u!222 &1471599127 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1471599123} +--- !u!1 &1472952120 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1472952121} + m_Layer: 11 + m_Name: LeftParent + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1472952121 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1472952120} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.05, y: 0.05, z: 0} + m_LocalScale: {x: 1, y: 0.1, z: 0.1} + m_Children: + - {fileID: 1147504525} + m_Father: {fileID: 2105024678} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &1507836920 +Prefab: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 2105024678} + m_Modifications: + - target: {fileID: 4685467192569254, guid: 8855f6e449b9d4d3fae7f0a1a5ff9c2f, type: 2} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4685467192569254, guid: 8855f6e449b9d4d3fae7f0a1a5ff9c2f, type: 2} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4685467192569254, guid: 8855f6e449b9d4d3fae7f0a1a5ff9c2f, type: 2} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4685467192569254, guid: 8855f6e449b9d4d3fae7f0a1a5ff9c2f, type: 2} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4685467192569254, guid: 8855f6e449b9d4d3fae7f0a1a5ff9c2f, type: 2} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4685467192569254, guid: 8855f6e449b9d4d3fae7f0a1a5ff9c2f, type: 2} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4685467192569254, guid: 8855f6e449b9d4d3fae7f0a1a5ff9c2f, type: 2} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4685467192569254, guid: 8855f6e449b9d4d3fae7f0a1a5ff9c2f, type: 2} + propertyPath: m_RootOrder + value: 6 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_ParentPrefab: {fileID: 100100000, guid: 8855f6e449b9d4d3fae7f0a1a5ff9c2f, type: 2} + m_IsPrefabParent: 0 +--- !u!4 &1507836921 stripped +Transform: + m_PrefabParentObject: {fileID: 4685467192569254, guid: 8855f6e449b9d4d3fae7f0a1a5ff9c2f, + type: 2} + m_PrefabInternal: {fileID: 1507836920} +--- !u!1 &1558989018 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1558989019} + - component: {fileID: 1558989021} + - component: {fileID: 1558989020} + m_Layer: 5 + m_Name: TextContainer (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1558989019 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1558989018} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 850784691} + m_Father: {fileID: 1668561367} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.24437015, y: 0.7798344} + m_AnchorMax: {x: 0.74500006, y: 0.85657066} + m_AnchoredPosition: {x: 0, y: 0.000061035156} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1558989020 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1558989018} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -405508275, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 10 + m_Right: 10 + m_Top: 10 + m_Bottom: 10 + m_ChildAlignment: 0 + m_Spacing: 30 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 1 + m_ChildControlHeight: 1 +--- !u!222 &1558989021 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1558989018} +--- !u!1 &1668561363 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1668561367} + - component: {fileID: 1668561366} + - component: {fileID: 1668561365} + - component: {fileID: 1668561364} + m_Layer: 5 + m_Name: Canvas + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1668561364 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1668561363} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1301386320, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 3 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!114 &1668561365 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1668561363} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1980459831, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_UiScaleMode: 0 + m_ReferencePixelsPerUnit: 100 + m_ScaleFactor: 1 + m_ReferenceResolution: {x: 800, y: 600} + m_ScreenMatchMode: 0 + m_MatchWidthOrHeight: 0 + m_PhysicalUnit: 3 + m_FallbackScreenDPI: 96 + m_DefaultSpriteDPI: 96 + m_DynamicPixelsPerUnit: 1 +--- !u!223 &1668561366 +Canvas: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1668561363} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 0 + m_Camera: {fileID: 0} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_AdditionalShaderChannelsFlag: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!224 &1668561367 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1668561363} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 603632968} + - {fileID: 2099945969} + - {fileID: 1558989019} + m_Father: {fileID: 0} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0, y: 0} +--- !u!1 &1736104560 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1736104561} + - component: {fileID: 1736104564} + - component: {fileID: 1736104563} + - component: {fileID: 1736104562} + m_Layer: 5 + m_Name: DetectObjects + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1736104561 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1736104560} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 855175346} + m_Father: {fileID: 603632968} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1736104562 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1736104560} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1736104563} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 2105024676} + m_MethodName: DetectScannedObjects + m_Mode: 2 + m_Arguments: + m_ObjectArgument: {fileID: 855175347} + m_ObjectArgumentAssemblyTypeName: UnityEngine.UI.Text, UnityEngine.UI + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &1736104563 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1736104560} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1736104564 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1736104560} +--- !u!1 &1804222418 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1804222419} + m_Layer: 11 + m_Name: RightParent + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1804222419 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1804222418} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.05, y: 0.05, z: 0} + m_LocalScale: {x: 1, y: 0.1, z: 0.1} + m_Children: + - {fileID: 1994763036} + m_Father: {fileID: 2105024678} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &1994763035 +Prefab: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1804222419} + m_Modifications: + - target: {fileID: 4063972062076818, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4063972062076818, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4063972062076818, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4063972062076818, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4063972062076818, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4063972062076818, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_LocalRotation.z + value: -0.7071068 + objectReference: {fileID: 0} + - target: {fileID: 4063972062076818, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_LocalRotation.w + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: 4063972062076818, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1106013321793048, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_Name + value: Right + objectReference: {fileID: 0} + - target: {fileID: 4063972062076818, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_LocalEulerAnglesHint.z + value: -90 + objectReference: {fileID: 0} + - target: {fileID: 1106013321793048, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_Layer + value: 11 + objectReference: {fileID: 0} + - target: {fileID: 1424221161384634, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_Layer + value: 11 + objectReference: {fileID: 0} + - target: {fileID: 4063972062076818, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_LocalScale.x + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4063972062076818, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + propertyPath: m_LocalScale.y + value: 1 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_ParentPrefab: {fileID: 100100000, guid: 5dcebda15b99e4457a22a698a16c0c4e, type: 2} + m_IsPrefabParent: 0 +--- !u!4 &1994763036 stripped +Transform: + m_PrefabParentObject: {fileID: 4063972062076818, guid: 5dcebda15b99e4457a22a698a16c0c4e, + type: 2} + m_PrefabInternal: {fileID: 1994763035} +--- !u!1 &2099945968 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 2099945969} + - component: {fileID: 2099945971} + - component: {fileID: 2099945970} + m_Layer: 5 + m_Name: TextContainer + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2099945969 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2099945968} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 617451155} + m_Father: {fileID: 1668561367} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.24437015, y: 0.059785042} + m_AnchorMax: {x: 0.7608349, y: 0.16452338} + m_AnchoredPosition: {x: -2, y: -0.7000122} + m_SizeDelta: {x: -4, y: 8} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &2099945970 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2099945968} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -405508275, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 10 + m_Right: 10 + m_Top: 10 + m_Bottom: 10 + m_ChildAlignment: 0 + m_Spacing: 30 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 1 + m_ChildControlHeight: 1 +--- !u!222 &2099945971 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2099945968} +--- !u!1 &2105024675 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 2105024678} + - component: {fileID: 2105024677} + - component: {fileID: 2105024676} + m_Layer: 11 + m_Name: Bounding Box + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &2105024676 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2105024675} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 89ea8e49a2d1a4f0abadbf08359b662e, type: 3} + m_Name: + m_EditorClassIdentifier: + m_ARSessionManager: {fileID: 519187372} + listOfObjects: {fileID: 567648598} +--- !u!114 &2105024677 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2105024675} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d2687bd3ffe8429eb1a387f5598413c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Top: {fileID: 506506028} + m_Bottom: {fileID: 240125472} + m_Left: {fileID: 1472952121} + m_Right: {fileID: 1804222419} + m_Back: {fileID: 982863011} + m_Front: {fileID: 365527400} + m_UnselectedMaterial: {fileID: 2100000, guid: 0b37a3e843c7c41d897de1445ba4b187, + type: 2} + m_SelectedMaterial: {fileID: 2100000, guid: 57bf08b71b2b14f8995a08cfc781d4cf, type: 2} +--- !u!4 &2105024678 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2105024675} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 506506028} + - {fileID: 240125472} + - {fileID: 1472952121} + - {fileID: 1804222419} + - {fileID: 365527400} + - {fileID: 982863011} + - {fileID: 1507836921} + m_Father: {fileID: 1286139108} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityObjectScanner/UnityObjectScanner.unity.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityObjectScanner/UnityObjectScanner.unity.meta new file mode 100644 index 000000000..820f967f2 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityObjectScanner/UnityObjectScanner.unity.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: b2b783b17754448c29d3b316a4a366c0 +timeCreated: 1524091536 +licenseType: Pro +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityTongueAndEyes.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityTongueAndEyes.meta new file mode 100644 index 000000000..df2423114 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityTongueAndEyes.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 9ebacf7535cd84238a1d576722f1eb8b +folderAsset: yes +timeCreated: 1528230429 +licenseType: Pro +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityTongueAndEyes/TongueDetector.cs b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityTongueAndEyes/TongueDetector.cs new file mode 100644 index 000000000..0c9b52a10 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityTongueAndEyes/TongueDetector.cs @@ -0,0 +1,58 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEngine.XR.iOS; +using UnityEngine.UI; + +public class TongueDetector : MonoBehaviour +{ + public GameObject tongueImage; + bool shapeEnabled = false; + Dictionary currentBlendShapes; + + // Use this for initialization + void Start () + { + UnityARSessionNativeInterface.ARFaceAnchorAddedEvent += FaceAdded; + UnityARSessionNativeInterface.ARFaceAnchorUpdatedEvent += FaceUpdated; + UnityARSessionNativeInterface.ARFaceAnchorRemovedEvent += FaceRemoved; + + } + + void OnGUI() + { + bool enableTongue = false; + + if (shapeEnabled) + { + if (currentBlendShapes.ContainsKey (ARBlendShapeLocation.TongueOut)) + { + enableTongue = (currentBlendShapes [ARBlendShapeLocation.TongueOut] > 0.5f); + + } + + } + + tongueImage.SetActive (enableTongue); + } + + void FaceAdded (ARFaceAnchor anchorData) + { + shapeEnabled = true; + currentBlendShapes = anchorData.blendShapes; + } + + void FaceUpdated (ARFaceAnchor anchorData) + { + currentBlendShapes = anchorData.blendShapes; + } + + void FaceRemoved (ARFaceAnchor anchorData) + { + shapeEnabled = false; + } + // Update is called once per frame + void Update () { + + } +} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityTongueAndEyes/TongueDetector.cs.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityTongueAndEyes/TongueDetector.cs.meta new file mode 100644 index 000000000..66a982cae --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityTongueAndEyes/TongueDetector.cs.meta @@ -0,0 +1,13 @@ +fileFormatVersion: 2 +guid: ac3dd8ef8241540e293e48c558f22254 +timeCreated: 1528230551 +licenseType: Pro +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityTongueAndEyes/UnityEyeManager.cs b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityTongueAndEyes/UnityEyeManager.cs new file mode 100644 index 000000000..911e54629 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityTongueAndEyes/UnityEyeManager.cs @@ -0,0 +1,76 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEngine.XR.iOS; + +public class UnityEyeManager : MonoBehaviour +{ + [SerializeField] + private GameObject eyePrefab; + + private UnityARSessionNativeInterface m_session; + private GameObject leftEyeGo; + private GameObject rightEyeGo; + + // Use this for initialization + void Start () { + m_session = UnityARSessionNativeInterface.GetARSessionNativeInterface(); + + Application.targetFrameRate = 60; + ARKitFaceTrackingConfiguration config = new ARKitFaceTrackingConfiguration(); + config.alignment = UnityARAlignment.UnityARAlignmentGravity; + config.enableLightEstimation = true; + + if (config.IsSupported ) + { + + m_session.RunWithConfig (config); + + UnityARSessionNativeInterface.ARFaceAnchorAddedEvent += FaceAdded; + UnityARSessionNativeInterface.ARFaceAnchorUpdatedEvent += FaceUpdated; + UnityARSessionNativeInterface.ARFaceAnchorRemovedEvent += FaceRemoved; + + } + + leftEyeGo = GameObject.Instantiate (eyePrefab); + rightEyeGo = GameObject.Instantiate (eyePrefab); + + leftEyeGo.SetActive (false); + rightEyeGo.SetActive (false); + + } + + void FaceAdded (ARFaceAnchor anchorData) + { + leftEyeGo.transform.position = anchorData.leftEyePose.position; + leftEyeGo.transform.rotation = anchorData.leftEyePose.rotation; + + rightEyeGo.transform.position = anchorData.rightEyePose.position; + rightEyeGo.transform.rotation = anchorData.rightEyePose.rotation; + + leftEyeGo.SetActive (true); + rightEyeGo.SetActive (true); + } + + void FaceUpdated (ARFaceAnchor anchorData) + { + leftEyeGo.transform.position = anchorData.leftEyePose.position; + leftEyeGo.transform.rotation = anchorData.leftEyePose.rotation; + + rightEyeGo.transform.position = anchorData.rightEyePose.position; + rightEyeGo.transform.rotation = anchorData.rightEyePose.rotation; + + } + + void FaceRemoved (ARFaceAnchor anchorData) + { + leftEyeGo.SetActive (false); + rightEyeGo.SetActive (false); + + } + + // Update is called once per frame + void Update () { + + } +} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityTongueAndEyes/UnityEyeManager.cs.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityTongueAndEyes/UnityEyeManager.cs.meta new file mode 100644 index 000000000..880e9e5a3 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityTongueAndEyes/UnityEyeManager.cs.meta @@ -0,0 +1,13 @@ +fileFormatVersion: 2 +guid: f5e00426d34cb40fe8536720471a24bb +timeCreated: 1528231673 +licenseType: Pro +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityTongueAndEyes/UnityTongueAndEyes.unity b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityTongueAndEyes/UnityTongueAndEyes.unity new file mode 100644 index 000000000..6aed5ba77 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityTongueAndEyes/UnityTongueAndEyes.unity @@ -0,0 +1,719 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!29 &1 +OcclusionCullingSettings: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_OcclusionBakeSettings: + smallestOccluder: 5 + smallestHole: 0.25 + backfaceThreshold: 100 + m_SceneGUID: 00000000000000000000000000000000 + m_OcclusionCullingData: {fileID: 0} +--- !u!104 &2 +RenderSettings: + m_ObjectHideFlags: 0 + serializedVersion: 8 + m_Fog: 0 + m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_FogMode: 3 + m_FogDensity: 0.01 + m_LinearFogStart: 0 + m_LinearFogEnd: 300 + m_AmbientSkyColor: {r: 0.2, g: 0.2, b: 0.2, a: 0} + m_AmbientEquatorColor: {r: 0.098908, g: 0.100485, b: 0.119403, a: 1} + m_AmbientGroundColor: {r: 0.098908, g: 0.100485, b: 0.119403, a: 1} + m_AmbientIntensity: 1 + m_AmbientMode: 3 + m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} + m_SkyboxMaterial: {fileID: 0} + m_HaloStrength: 0.5 + m_FlareStrength: 1 + m_FlareFadeSpeed: 3 + m_HaloTexture: {fileID: 0} + m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0} + m_DefaultReflectionMode: 0 + m_DefaultReflectionResolution: 128 + m_ReflectionBounces: 1 + m_ReflectionIntensity: 1 + m_CustomReflection: {fileID: 0} + m_Sun: {fileID: 0} + m_IndirectSpecularColor: {r: 0, g: 0, b: 0, a: 1} +--- !u!157 &4 +LightmapSettings: + m_ObjectHideFlags: 0 + serializedVersion: 11 + m_GIWorkflowMode: 1 + m_GISettings: + serializedVersion: 2 + m_BounceScale: 1 + m_IndirectOutputScale: 1 + m_AlbedoBoost: 1 + m_TemporalCoherenceThreshold: 1 + m_EnvironmentLightingMode: 0 + m_EnableBakedLightmaps: 1 + m_EnableRealtimeLightmaps: 0 + m_LightmapEditorSettings: + serializedVersion: 9 + m_Resolution: 1 + m_BakeResolution: 50 + m_TextureWidth: 1024 + m_TextureHeight: 1024 + m_AO: 1 + m_AOMaxDistance: 1 + m_CompAOExponent: 1 + m_CompAOExponentDirect: 0 + m_Padding: 2 + m_LightmapParameters: {fileID: 0} + m_LightmapsBakeMode: 1 + m_TextureCompression: 0 + m_FinalGather: 0 + m_FinalGatherFiltering: 1 + m_FinalGatherRayCount: 256 + m_ReflectionCompression: 2 + m_MixedBakeMode: 1 + m_BakeBackend: 0 + m_PVRSampling: 1 + m_PVRDirectSampleCount: 32 + m_PVRSampleCount: 500 + m_PVRBounces: 2 + m_PVRFilterTypeDirect: 0 + m_PVRFilterTypeIndirect: 0 + m_PVRFilterTypeAO: 0 + m_PVRFilteringMode: 1 + m_PVRCulling: 1 + m_PVRFilteringGaussRadiusDirect: 1 + m_PVRFilteringGaussRadiusIndirect: 5 + m_PVRFilteringGaussRadiusAO: 2 + m_PVRFilteringAtrousPositionSigmaDirect: 0.5 + m_PVRFilteringAtrousPositionSigmaIndirect: 2 + m_PVRFilteringAtrousPositionSigmaAO: 1 + m_ShowResolutionOverlay: 1 + m_LightingDataAsset: {fileID: 0} + m_UseShadowmask: 1 +--- !u!196 &5 +NavMeshSettings: + serializedVersion: 2 + m_ObjectHideFlags: 0 + m_BuildSettings: + serializedVersion: 2 + agentTypeID: 0 + agentRadius: 0.4 + agentHeight: 1.8 + agentSlope: 45 + agentClimb: 0.9 + ledgeDropHeight: 0 + maxJumpAcrossDistance: 0 + minRegionArea: 2 + manualCellSize: 0 + cellSize: 0.13333333 + manualTileSize: 0 + tileSize: 256 + accuratePlacement: 0 + debug: + m_Flags: 0 + m_NavMeshData: {fileID: 0} +--- !u!1 &7 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 9} + - component: {fileID: 10} + - component: {fileID: 13} + - component: {fileID: 11} + - component: {fileID: 8} + - component: {fileID: 14} + m_Layer: 0 + m_Name: Main Camera + m_TagString: MainCamera + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &8 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b58ecea7a196242dd879c814ac05084c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_ClearMaterial: {fileID: 2100000, guid: f1d9352050a75486f878ab19fa578f16, type: 2} +--- !u!4 &9 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 229804521} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!20 &10 +Camera: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 + serializedVersion: 2 + m_ClearFlags: 3 + m_BackGroundColor: {r: 0.19788063, g: 0.2953552, b: 0.44852942, a: 0.019608} + m_NormalizedViewPortRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + near clip plane: 0.1 + far clip plane: 30 + field of view: 60 + orthographic: 0 + orthographic size: 100 + m_Depth: -1 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingPath: -1 + m_TargetTexture: {fileID: 0} + m_TargetDisplay: 0 + m_TargetEye: 3 + m_HDR: 0 + m_AllowMSAA: 0 + m_AllowDynamicResolution: 0 + m_ForceIntoRT: 0 + m_OcclusionCulling: 1 + m_StereoConvergence: 10 + m_StereoSeparation: 0.022 +--- !u!81 &11 +AudioListener: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 +--- !u!124 &13 +Behaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 +--- !u!114 &14 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: ce437cef046e841aabd6070890e79d41, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &158778991 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 158778993} + - component: {fileID: 158778992} + m_Layer: 0 + m_Name: TongueDetector + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &158778992 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 158778991} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: ac3dd8ef8241540e293e48c558f22254, type: 3} + m_Name: + m_EditorClassIdentifier: + tongueImage: {fileID: 1129581296} +--- !u!4 &158778993 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 158778991} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &229804520 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 229804521} + m_Layer: 0 + m_Name: CameraParent + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &229804521 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 229804520} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 9} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &392764811 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 392764813} + - component: {fileID: 392764812} + m_Layer: 0 + m_Name: ARCameraTracker + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &392764812 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 392764811} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 961e52c3648614224b2a9dffa3055c07, type: 3} + m_Name: + m_EditorClassIdentifier: + trackedCamera: {fileID: 10} +--- !u!4 &392764813 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 392764811} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1129581296 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1129581297} + - component: {fileID: 1129581299} + - component: {fileID: 1129581298} + m_Layer: 5 + m_Name: Image + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1129581297 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1129581296} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1583570690} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1129581298 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1129581296} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.9411765, g: 0.29757786, b: 0.29757786, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 10913, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1129581299 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1129581296} +--- !u!1 &1176133656 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1176133658} + - component: {fileID: 1176133657} + m_Layer: 0 + m_Name: Directional light + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!108 &1176133657 +Light: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1176133656} + m_Enabled: 1 + serializedVersion: 8 + m_Type: 1 + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Intensity: 1 + m_Range: 10 + m_SpotAngle: 30 + m_CookieSize: 10 + m_Shadows: + m_Type: 0 + m_Resolution: -1 + m_CustomResolution: -1 + m_Strength: 1 + m_Bias: 0.05 + m_NormalBias: 0.4 + m_NearPlane: 0.2 + m_Cookie: {fileID: 0} + m_DrawHalo: 0 + m_Flare: {fileID: 0} + m_RenderMode: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_Lightmapping: 4 + m_AreaSize: {x: 1, y: 1} + m_BounceIntensity: 1 + m_ColorTemperature: 6570 + m_UseColorTemperature: 0 + m_ShadowRadius: 0 + m_ShadowAngle: 0 +--- !u!4 &1176133658 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1176133656} + m_LocalRotation: {x: 0.40821788, y: -0.23456968, z: 0.10938163, w: 0.8754261} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 50, y: -30, z: 0} +--- !u!1 &1333776921 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1333776923} + - component: {fileID: 1333776922} + m_Layer: 0 + m_Name: EyeManager + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1333776922 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1333776921} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f5e00426d34cb40fe8536720471a24bb, type: 3} + m_Name: + m_EditorClassIdentifier: + eyePrefab: {fileID: 1989800666789462, guid: e43066e50be7c43908f324c203e4c784, type: 2} +--- !u!4 &1333776923 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1333776921} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 1531.0001, y: 772.999, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 6 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1583570689 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1583570690} + - component: {fileID: 1583570691} + m_Layer: 5 + m_Name: Layout + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1583570690 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1583570689} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1129581297} + m_Father: {fileID: 1966922332} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.45254835, y: 0.7425873} + m_AnchorMax: {x: 0.55300003, y: 0.92300004} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1583570691 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1583570689} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -405508275, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 3 + m_Right: 3 + m_Top: 3 + m_Bottom: 3 + m_ChildAlignment: 0 + m_Spacing: 0 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 1 + m_ChildControlHeight: 1 +--- !u!1 &1966922328 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1966922332} + - component: {fileID: 1966922331} + - component: {fileID: 1966922330} + - component: {fileID: 1966922329} + m_Layer: 5 + m_Name: Canvas + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1966922329 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1966922328} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1301386320, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!114 &1966922330 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1966922328} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1980459831, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_UiScaleMode: 0 + m_ReferencePixelsPerUnit: 100 + m_ScaleFactor: 1 + m_ReferenceResolution: {x: 800, y: 600} + m_ScreenMatchMode: 0 + m_MatchWidthOrHeight: 0 + m_PhysicalUnit: 3 + m_FallbackScreenDPI: 96 + m_DefaultSpriteDPI: 96 + m_DynamicPixelsPerUnit: 1 +--- !u!223 &1966922331 +Canvas: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1966922328} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 0 + m_Camera: {fileID: 0} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_AdditionalShaderChannelsFlag: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!224 &1966922332 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1966922328} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 1583570690} + m_Father: {fileID: 0} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0, y: 0} +--- !u!1 &2101694690 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 2101694693} + - component: {fileID: 2101694692} + - component: {fileID: 2101694691} + m_Layer: 0 + m_Name: EventSystem + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &2101694691 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2101694690} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1077351063, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_HorizontalAxis: Horizontal + m_VerticalAxis: Vertical + m_SubmitButton: Submit + m_CancelButton: Cancel + m_InputActionsPerSecond: 10 + m_RepeatDelay: 0.5 + m_ForceModuleActive: 0 +--- !u!114 &2101694692 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2101694690} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -619905303, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_FirstSelected: {fileID: 0} + m_sendNavigationEvents: 1 + m_DragThreshold: 5 +--- !u!4 &2101694693 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2101694690} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityTongueAndEyes/UnityTongueAndEyes.unity.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityTongueAndEyes/UnityTongueAndEyes.unity.meta new file mode 100644 index 000000000..c708a5ef2 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityTongueAndEyes/UnityTongueAndEyes.unity.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 16c7209035275422aaed5631de9e5c7c +timeCreated: 1528230458 +licenseType: Pro +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Materials/ARKitPlaneMesh.mat b/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Materials/ARKitPlaneMesh.mat new file mode 100644 index 000000000..715c78cfe --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Materials/ARKitPlaneMesh.mat @@ -0,0 +1,77 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_Name: ARKitPlaneMesh + m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0} + m_ShaderKeywords: _ALPHAPREMULTIPLY_ON + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BumpMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailAlbedoMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailMask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailNormalMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 10, y: 10} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: b4088316296d14245a7a76db89247808, type: 3} + m_Scale: {x: 10, y: 10} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: + - _BumpScale: 1 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DstBlend: 10 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 3 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _UVSec: 0 + - _ZWrite: 0 + m_Colors: + - _Color: {r: 0.50735295, g: 0.49989188, b: 0.49989188, a: 0.347} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Materials/ARKitPlaneMesh.mat.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Materials/ARKitPlaneMesh.mat.meta new file mode 100644 index 000000000..3d6cf04ce --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Materials/ARKitPlaneMesh.mat.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 04845b76859034d95b1487d887525145 +timeCreated: 1517432121 +licenseType: Pro +NativeFormatImporter: + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Materials/BoundingBox_Selected.mat b/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Materials/BoundingBox_Selected.mat new file mode 100644 index 000000000..71df42aa8 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Materials/BoundingBox_Selected.mat @@ -0,0 +1,77 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_Name: BoundingBox_Selected + m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0} + m_ShaderKeywords: _ALPHAPREMULTIPLY_ON + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BumpMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailAlbedoMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailMask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailNormalMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: + - _BumpScale: 1 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DstBlend: 10 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 3 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _UVSec: 0 + - _ZWrite: 0 + m_Colors: + - _Color: {r: 1, g: 0.93103456, b: 0, a: 0.566} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Materials/BoundingBox_Selected.mat.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Materials/BoundingBox_Selected.mat.meta new file mode 100644 index 000000000..52b3b747b --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Materials/BoundingBox_Selected.mat.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 57bf08b71b2b14f8995a08cfc781d4cf +timeCreated: 1523909746 +licenseType: Pro +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Materials/BoundingBox_Unselected.mat b/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Materials/BoundingBox_Unselected.mat new file mode 100644 index 000000000..bd1fc142f --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Materials/BoundingBox_Unselected.mat @@ -0,0 +1,77 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_Name: BoundingBox_Unselected + m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0} + m_ShaderKeywords: _ALPHAPREMULTIPLY_ON + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BumpMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailAlbedoMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailMask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailNormalMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: + - _BumpScale: 1 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DstBlend: 10 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 3 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _UVSec: 0 + - _ZWrite: 0 + m_Colors: + - _Color: {r: 1, g: 0, b: 0, a: 0.853} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Materials/BoundingBox_Unselected.mat.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Materials/BoundingBox_Unselected.mat.meta new file mode 100644 index 000000000..440568a32 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Materials/BoundingBox_Unselected.mat.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 0b37a3e843c7c41d897de1445ba4b187 +timeCreated: 1523909746 +licenseType: Pro +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Materials/EnvironmentMapMaterial.mat b/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Materials/EnvironmentMapMaterial.mat new file mode 100644 index 000000000..d3fc4a2a1 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Materials/EnvironmentMapMaterial.mat @@ -0,0 +1,87 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_Name: EnvironmentMapMaterial + m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0} + m_ShaderKeywords: + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BumpMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Cube: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailAlbedoMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailMask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailNormalMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: + - _BumpScale: 1 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 1 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _Shininess: 0.078125 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _UVSec: 0 + - _ZWrite: 1 + m_Colors: + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ReflectColor: {r: 1, g: 1, b: 1, a: 0.5} + - _SpecColor: {r: 0.2, g: 0.2, b: 0.2, a: 1} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Materials/EnvironmentMapMaterial.mat.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Materials/EnvironmentMapMaterial.mat.meta new file mode 100644 index 000000000..fd05b07cd --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Materials/EnvironmentMapMaterial.mat.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 6ff108178bf6e47d0ab6282a6ddfa885 +timeCreated: 1523651292 +licenseType: Pro +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Materials/MeshBorder.mat b/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Materials/MeshBorder.mat new file mode 100644 index 000000000..c14079961 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Materials/MeshBorder.mat @@ -0,0 +1,76 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_Name: MeshBorder + m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0} + m_ShaderKeywords: _EMISSION + m_LightmapFlags: 2 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BumpMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailAlbedoMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailMask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailNormalMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: + - _BumpScale: 1 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _UVSec: 0 + - _ZWrite: 1 + m_Colors: + - _Color: {r: 0.41911763, g: 1, b: 0.5673427, a: 1} + - _EmissionColor: {r: 0.20539579, g: 0.9632353, b: 0.27334002, a: 1} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Materials/MeshBorder.mat.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Materials/MeshBorder.mat.meta new file mode 100644 index 000000000..5aed62f80 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Materials/MeshBorder.mat.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 78f2880d33df84ede869907822bbb8c4 +timeCreated: 1517447583 +licenseType: Pro +NativeFormatImporter: + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Materials/ZColor.mat b/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Materials/ZColor.mat index 699209387..c97c2fb88 100644 --- a/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Materials/ZColor.mat +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Materials/ZColor.mat @@ -8,13 +8,11 @@ Material: m_PrefabInternal: {fileID: 0} m_Name: ZColor m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0} - m_ShaderKeywords: _ALPHAPREMULTIPLY_ON + m_ShaderKeywords: m_LightmapFlags: 4 m_EnableInstancingVariants: 0 - m_DoubleSidedGI: 0 - m_CustomRenderQueue: 3000 - stringTagMap: - RenderType: Transparent + m_CustomRenderQueue: -1 + stringTagMap: {} disabledShaderPasses: [] m_SavedProperties: serializedVersion: 3 @@ -59,19 +57,19 @@ Material: - _BumpScale: 1 - _Cutoff: 0.5 - _DetailNormalMapScale: 1 - - _DstBlend: 10 + - _DstBlend: 0 - _GlossMapScale: 1 - _Glossiness: 0.5 - _GlossyReflections: 1 - _Metallic: 0 - - _Mode: 3 + - _Mode: 0 - _OcclusionStrength: 1 - _Parallax: 0.02 - _SmoothnessTextureChannel: 0 - _SpecularHighlights: 1 - _SrcBlend: 1 - _UVSec: 0 - - _ZWrite: 0 + - _ZWrite: 1 m_Colors: - - _Color: {r: 0, g: 0.13103437, b: 1, a: 0.54901963} + - _Color: {r: 0, g: 0.13103437, b: 1, a: 1} - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Models.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Models.meta index debdeb343..51fa2ac59 100644 --- a/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Models.meta +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Models.meta @@ -1,10 +1,9 @@ fileFormatVersion: 2 -guid: 4df8dc2b2f3354d468f2584a32efbef8 +guid: a7bb5a53dd8ac49759db6bf17162dd20 folderAsset: yes -timeCreated: 1528385085 +timeCreated: 1503626045 licenseType: Pro DefaultImporter: - externalObjects: {} userData: assetBundleName: assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Prefabs/ARKitPlaneGeometry.prefab b/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Prefabs/ARKitPlaneGeometry.prefab new file mode 100644 index 000000000..556bfefb6 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Prefabs/ARKitPlaneGeometry.prefab @@ -0,0 +1,181 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1001 &100100000 +Prefab: + m_ObjectHideFlags: 1 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: [] + m_RemovedComponents: [] + m_ParentPrefab: {fileID: 0} + m_RootGameObject: {fileID: 1454536478891118} + m_IsPrefabParent: 1 +--- !u!1 &1454536478891118 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 4397932033875444} + - component: {fileID: 114233479572983226} + - component: {fileID: 33944727969295592} + - component: {fileID: 23418819279109146} + - component: {fileID: 120946215887499020} + m_Layer: 0 + m_Name: ARKitPlaneGeometry + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4397932033875444 +Transform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1454536478891118} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!23 &23418819279109146 +MeshRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1454536478891118} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_Materials: + - {fileID: 2100000, guid: 04845b76859034d95b1487d887525145, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!33 &33944727969295592 +MeshFilter: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1454536478891118} + m_Mesh: {fileID: 0} +--- !u!114 &114233479572983226 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1454536478891118} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e8e41ddf2dd3348c18a8734d14dbb2ba, type: 3} + m_Name: + m_EditorClassIdentifier: + meshFilter: {fileID: 33944727969295592} + lineRenderer: {fileID: 120946215887499020} +--- !u!120 &120946215887499020 +LineRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1454536478891118} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_MotionVectors: 0 + m_LightProbeUsage: 0 + m_ReflectionProbeUsage: 0 + m_Materials: + - {fileID: 2100000, guid: 78f2880d33df84ede869907822bbb8c4, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_Positions: [] + m_Parameters: + serializedVersion: 2 + widthMultiplier: 0.01 + widthCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + colorGradient: + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 1} + key1: {r: 1, g: 1, b: 1, a: 1} + key2: {r: 0, g: 0, b: 0, a: 0} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 65535 + atime2: 0 + atime3: 0 + atime4: 0 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 2 + numCornerVertices: 0 + numCapVertices: 0 + alignment: 0 + textureMode: 1 + generateLightingData: 0 + m_UseWorldSpace: 0 + m_Loop: 1 diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Prefabs/ARKitPlaneGeometry.prefab.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Prefabs/ARKitPlaneGeometry.prefab.meta new file mode 100644 index 000000000..3e6154130 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Prefabs/ARKitPlaneGeometry.prefab.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 24a8c4888599c4670ba129e2f2345e92 +timeCreated: 1517432446 +licenseType: Pro +NativeFormatImporter: + mainObjectFileID: 100100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Prefabs/AxesPrefabSmall.prefab b/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Prefabs/AxesPrefabSmall.prefab new file mode 100644 index 000000000..4f3a973a4 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Prefabs/AxesPrefabSmall.prefab @@ -0,0 +1,296 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1001 &100100000 +Prefab: + m_ObjectHideFlags: 1 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: [] + m_RemovedComponents: [] + m_ParentPrefab: {fileID: 0} + m_RootGameObject: {fileID: 1989800666789462} + m_IsPrefabParent: 1 +--- !u!1 &1047659880581714 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 4662127416016888} + - component: {fileID: 33809825632264738} + - component: {fileID: 65074666735754164} + - component: {fileID: 23057509346120128} + m_Layer: 0 + m_Name: XAxis + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1206408471899944 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 4231051145621136} + - component: {fileID: 33092003988897118} + - component: {fileID: 65862126899404686} + - component: {fileID: 23880860190282932} + m_Layer: 0 + m_Name: YAxis + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1923977496546282 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 4840798833953044} + - component: {fileID: 33701381244079034} + - component: {fileID: 65338933589883942} + - component: {fileID: 23948700575899194} + m_Layer: 0 + m_Name: ZAxis + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1989800666789462 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 4177158024167098} + m_Layer: 0 + m_Name: AxesPrefabSmall + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4177158024167098 +Transform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1989800666789462} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.04, y: 0.04, z: 0.04} + m_Children: + - {fileID: 4231051145621136} + - {fileID: 4662127416016888} + - {fileID: 4840798833953044} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!4 &4231051145621136 +Transform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1206408471899944} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0.65, z: 0} + m_LocalScale: {x: 0.05, y: 1.3, z: 0.05} + m_Children: [] + m_Father: {fileID: 4177158024167098} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!4 &4662127416016888 +Transform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1047659880581714} + m_LocalRotation: {x: 0, y: 0, z: 0.7071068, w: 0.7071068} + m_LocalPosition: {x: 0.65, y: 0, z: 0} + m_LocalScale: {x: 0.05, y: 1.3080443, z: 0.05} + m_Children: [] + m_Father: {fileID: 4177158024167098} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 90} +--- !u!4 &4840798833953044 +Transform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1923977496546282} + m_LocalRotation: {x: 0.5, y: 0.5, z: 0.5, w: 0.5} + m_LocalPosition: {x: 0, y: 0, z: -0.65} + m_LocalScale: {x: 0.05, y: 1.3, z: 0.05} + m_Children: [] + m_Father: {fileID: 4177158024167098} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 90, z: 90} +--- !u!23 &23057509346120128 +MeshRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1047659880581714} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_Materials: + - {fileID: 2100000, guid: aaae8be92ba59487a9946818d7a2017f, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 1 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!23 &23880860190282932 +MeshRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1206408471899944} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_Materials: + - {fileID: 2100000, guid: 8fa2e9e7c08844dd4a8d581610839228, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 1 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!23 &23948700575899194 +MeshRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1923977496546282} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_Materials: + - {fileID: 2100000, guid: d55ccb0db00e54a1696c1e96094d706d, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 1 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!33 &33092003988897118 +MeshFilter: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1206408471899944} + m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} +--- !u!33 &33701381244079034 +MeshFilter: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1923977496546282} + m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} +--- !u!33 &33809825632264738 +MeshFilter: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1047659880581714} + m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} +--- !u!65 &65074666735754164 +BoxCollider: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1047659880581714} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 1, y: 1, z: 1} + m_Center: {x: 0, y: 0, z: 0} +--- !u!65 &65338933589883942 +BoxCollider: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1923977496546282} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 1, y: 1, z: 1} + m_Center: {x: 0, y: 0, z: 0} +--- !u!65 &65862126899404686 +BoxCollider: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1206408471899944} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 1, y: 1, z: 1} + m_Center: {x: 0, y: 0, z: 0} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Prefabs/AxesPrefabSmall.prefab.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Prefabs/AxesPrefabSmall.prefab.meta new file mode 100644 index 000000000..120d4986e --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Prefabs/AxesPrefabSmall.prefab.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: e43066e50be7c43908f324c203e4c784 +timeCreated: 1528232493 +licenseType: Pro +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 100100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Prefabs/Box Face.prefab b/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Prefabs/Box Face.prefab new file mode 100644 index 000000000..90ed412e3 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Prefabs/Box Face.prefab @@ -0,0 +1,219 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1001 &100100000 +Prefab: + m_ObjectHideFlags: 1 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: [] + m_RemovedComponents: [] + m_ParentPrefab: {fileID: 0} + m_RootGameObject: {fileID: 1106013321793048} + m_IsPrefabParent: 1 +--- !u!1 &1106013321793048 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 4063972062076818} + m_Layer: 0 + m_Name: Box Face + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1424221161384634 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 4086131831731902} + - component: {fileID: 33565380843865698} + - component: {fileID: 64845931279974550} + - component: {fileID: 23982269222545282} + - component: {fileID: 120648566903742748} + m_Layer: 0 + m_Name: Plane + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4063972062076818 +Transform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1106013321793048} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 4086131831731902} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!4 &4086131831731902 +Transform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1424221161384634} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.1, y: 0.1, z: 0.1} + m_Children: [] + m_Father: {fileID: 4063972062076818} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!23 &23982269222545282 +MeshRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1424221161384634} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_Materials: + - {fileID: 2100000, guid: 0b37a3e843c7c41d897de1445ba4b187, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 1 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!33 &33565380843865698 +MeshFilter: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1424221161384634} + m_Mesh: {fileID: 10209, guid: 0000000000000000e000000000000000, type: 0} +--- !u!64 &64845931279974550 +MeshCollider: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1424221161384634} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Convex: 0 + m_CookingOptions: 14 + m_SkinWidth: 0.01 + m_Mesh: {fileID: 10209, guid: 0000000000000000e000000000000000, type: 0} +--- !u!120 &120648566903742748 +LineRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1424221161384634} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 0 + m_MotionVectors: 0 + m_LightProbeUsage: 0 + m_ReflectionProbeUsage: 0 + m_Materials: + - {fileID: 10306, guid: 0000000000000000f000000000000000, type: 0} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_Positions: + - {x: -5.02, y: 0.02, z: 5.02} + - {x: 5.02, y: 0.02, z: 5.02} + - {x: 5.02, y: 0.02, z: -5.02} + - {x: -5.02, y: 0.02, z: -5.02} + m_Parameters: + serializedVersion: 2 + widthMultiplier: 0.004 + widthCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 2 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + colorGradient: + serializedVersion: 2 + key0: {r: 0, g: 0, b: 0, a: 1} + key1: {r: 0, g: 0, b: 0, a: 1} + key2: {r: 0, g: 0, b: 0, a: 1} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 65535 + atime2: 65535 + atime3: 0 + atime4: 0 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 1 + m_NumColorKeys: 2 + m_NumAlphaKeys: 2 + numCornerVertices: 4 + numCapVertices: 4 + alignment: 0 + textureMode: 0 + generateLightingData: 0 + m_UseWorldSpace: 0 + m_Loop: 1 diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Prefabs/Box Face.prefab.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Prefabs/Box Face.prefab.meta new file mode 100644 index 000000000..18b60d264 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Prefabs/Box Face.prefab.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 5dcebda15b99e4457a22a698a16c0c4e +timeCreated: 1523909948 +licenseType: Pro +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 100100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Prefabs/DebugReflectionProbePrefab.prefab b/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Prefabs/DebugReflectionProbePrefab.prefab new file mode 100644 index 000000000..c843cd852 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Prefabs/DebugReflectionProbePrefab.prefab @@ -0,0 +1,303 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1001 &100100000 +Prefab: + m_ObjectHideFlags: 1 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: [] + m_RemovedComponents: [] + m_ParentPrefab: {fileID: 0} + m_RootGameObject: {fileID: 1492549396392088} + m_IsPrefabParent: 1 +--- !u!1 &1434987884414202 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 4401081094900818} + - component: {fileID: 33821986554932488} + - component: {fileID: 23143455151469382} + m_Layer: 0 + m_Name: ProbeDisplaySphere + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1469030072650682 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 4634024269126554} + - component: {fileID: 33216440770601858} + - component: {fileID: 23187205584536320} + m_Layer: 0 + m_Name: ExtentsCube + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1492549396392088 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 4068427091230080} + - component: {fileID: 215591045736345138} + - component: {fileID: 114202174001495314} + m_Layer: 0 + m_Name: DebugReflectionProbePrefab + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1916635269132358 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 4016636400643422} + - component: {fileID: 33207807387034524} + - component: {fileID: 23836971309031484} + m_Layer: 0 + m_Name: ReflectiveCube + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!4 &4016636400643422 +Transform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1916635269132358} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.3, y: 0.3, z: 0.3} + m_Children: [] + m_Father: {fileID: 4068427091230080} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!4 &4068427091230080 +Transform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1492549396392088} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: -0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 4401081094900818} + - {fileID: 4634024269126554} + - {fileID: 4016636400643422} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!4 &4401081094900818 +Transform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1434987884414202} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0.05, z: 0} + m_LocalScale: {x: 0.3, y: 0.3, z: 0.3} + m_Children: [] + m_Father: {fileID: 4068427091230080} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!4 &4634024269126554 +Transform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1469030072650682} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 4068427091230080} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!23 &23143455151469382 +MeshRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1434987884414202} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 0 + m_ReflectionProbeUsage: 1 + m_Materials: + - {fileID: 2100000, guid: 6ff108178bf6e47d0ab6282a6ddfa885, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 1 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!23 &23187205584536320 +MeshRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1469030072650682} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_Materials: + - {fileID: 2100000, guid: b36939cf153274ec29fbf2f10d0a49d7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 1 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!23 &23836971309031484 +MeshRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1916635269132358} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_Materials: + - {fileID: 2100000, guid: 6ff108178bf6e47d0ab6282a6ddfa885, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 1 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!33 &33207807387034524 +MeshFilter: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1916635269132358} + m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} +--- !u!33 &33216440770601858 +MeshFilter: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1469030072650682} + m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} +--- !u!33 &33821986554932488 +MeshFilter: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1434987884414202} + m_Mesh: {fileID: 10207, guid: 0000000000000000e000000000000000, type: 0} +--- !u!114 &114202174001495314 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1492549396392088} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 92d3ef5f820884ac4a1a0b78cea353af, type: 3} + m_Name: + m_EditorClassIdentifier: + debugExtentGO: {fileID: 1469030072650682} +--- !u!215 &215591045736345138 +ReflectionProbe: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1492549396392088} + m_Enabled: 1 + serializedVersion: 2 + m_Type: 0 + m_Mode: 2 + m_RefreshMode: 0 + m_TimeSlicingMode: 0 + m_Resolution: 128 + m_UpdateFrequency: 0 + m_BoxSize: {x: 1, y: 1, z: 1} + m_BoxOffset: {x: 0, y: 0, z: 0} + m_NearClip: 0.3 + m_FarClip: 1000 + m_ShadowDistance: 100 + m_ClearFlags: 1 + m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0} + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_IntensityMultiplier: 1 + m_BlendDistance: 1 + m_HDR: 1 + m_BoxProjection: 0 + m_RenderDynamicObjects: 0 + m_UseOcclusionCulling: 1 + m_Importance: 1 + m_CustomBakedTexture: {fileID: 0} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Prefabs/DebugReflectionProbePrefab.prefab.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Prefabs/DebugReflectionProbePrefab.prefab.meta new file mode 100644 index 000000000..735855e31 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Prefabs/DebugReflectionProbePrefab.prefab.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 209240d9a5b6a473d85f1c9ecc62698b +timeCreated: 1524006967 +licenseType: Pro +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 100100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Prefabs/ObjectText.prefab b/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Prefabs/ObjectText.prefab new file mode 100644 index 000000000..f86bd830a --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Prefabs/ObjectText.prefab @@ -0,0 +1,111 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1001 &100100000 +Prefab: + m_ObjectHideFlags: 1 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: [] + m_RemovedComponents: [] + m_ParentPrefab: {fileID: 0} + m_RootGameObject: {fileID: 1182685253350136} + m_IsPrefabParent: 1 +--- !u!1 &1182685253350136 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 4625840769180078} + - component: {fileID: 23223494561589674} + - component: {fileID: 102775171231232374} + - component: {fileID: 114795513701302610} + m_Layer: 0 + m_Name: ObjectText + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4625840769180078 +Transform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1182685253350136} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.01, y: 0.01, z: 0.01} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!23 &23223494561589674 +MeshRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1182685253350136} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_Materials: + - {fileID: 10100, guid: 0000000000000000e000000000000000, type: 0} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!102 &102775171231232374 +TextMesh: + serializedVersion: 3 + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1182685253350136} + m_Text: Hello World + m_OffsetZ: 0 + m_CharacterSize: 1 + m_LineSpacing: 1 + m_Anchor: 0 + m_Alignment: 0 + m_TabSize: 4 + m_FontSize: 20 + m_FontStyle: 0 + m_RichText: 1 + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_Color: + serializedVersion: 2 + rgba: 4294967295 +--- !u!114 &114795513701302610 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1182685253350136} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 39fb4afa2d68741688a6c32909d504c1, type: 3} + m_Name: + m_EditorClassIdentifier: + textMesh: {fileID: 102775171231232374} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Prefabs/ObjectText.prefab.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Prefabs/ObjectText.prefab.meta new file mode 100644 index 000000000..bb78b30b2 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Prefabs/ObjectText.prefab.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: c2c40ff3dd4b046f4a09d7d727a9d9d3 +timeCreated: 1524180818 +licenseType: Pro +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 100100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Prefabs/SmallCylinder.prefab b/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Prefabs/SmallCylinder.prefab new file mode 100644 index 000000000..b5e660977 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Prefabs/SmallCylinder.prefab @@ -0,0 +1,98 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1001 &100100000 +Prefab: + m_ObjectHideFlags: 1 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: [] + m_RemovedComponents: [] + m_ParentPrefab: {fileID: 0} + m_RootGameObject: {fileID: 1038700575102576} + m_IsPrefabParent: 1 +--- !u!1 &1038700575102576 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 4201160133663790} + - component: {fileID: 33319336645203722} + - component: {fileID: 136188397985162384} + - component: {fileID: 23239402007188596} + m_Layer: 0 + m_Name: SmallCylinder + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4201160133663790 +Transform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1038700575102576} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.03, y: 0.03, z: 0.03} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!23 &23239402007188596 +MeshRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1038700575102576} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_Materials: + - {fileID: 10303, guid: 0000000000000000f000000000000000, type: 0} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 1 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!33 &33319336645203722 +MeshFilter: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1038700575102576} + m_Mesh: {fileID: 10206, guid: 0000000000000000e000000000000000, type: 0} +--- !u!136 &136188397985162384 +CapsuleCollider: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1038700575102576} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + m_Radius: 0.5 + m_Height: 2 + m_Direction: 1 + m_Center: {x: 0, y: 0, z: 0} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Prefabs/SmallCylinder.prefab.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Prefabs/SmallCylinder.prefab.meta new file mode 100644 index 000000000..dd21d7472 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Prefabs/SmallCylinder.prefab.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 39807a5465c08453e85a08bd6829affe +timeCreated: 1523642785 +licenseType: Pro +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 100100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Prefabs/VideoFormatButton.prefab b/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Prefabs/VideoFormatButton.prefab new file mode 100644 index 000000000..eaa76e99d --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Prefabs/VideoFormatButton.prefab @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1001 &100100000 +Prefab: + m_ObjectHideFlags: 1 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: [] + m_RemovedComponents: [] + m_ParentPrefab: {fileID: 0} + m_RootGameObject: {fileID: 1036539979525446} + m_IsPrefabParent: 1 +--- !u!1 &1036539979525446 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 224026297216334730} + - component: {fileID: 222243427012927500} + - component: {fileID: 114376118785565002} + - component: {fileID: 114629669440864654} + - component: {fileID: 114897616703469284} + m_Layer: 5 + m_Name: VideoFormatButton + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1546711103148714 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 224856131708948742} + - component: {fileID: 222162933481526488} + - component: {fileID: 114345207391426152} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &114345207391426152 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1546711103148714} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 30 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 3 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: Set World Origin +--- !u!114 &114376118785565002 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1036539979525446} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!114 &114629669440864654 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1036539979525446} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 114376118785565002} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 114897616703469284} + m_MethodName: ButtonPressed + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &114897616703469284 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1036539979525446} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2dc7312ca3b1549c6b07084d70ec4345, type: 3} + m_Name: + m_EditorClassIdentifier: + videoFormatDescription: {fileID: 114345207391426152} +--- !u!222 &222162933481526488 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1546711103148714} +--- !u!222 &222243427012927500 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1036539979525446} +--- !u!224 &224026297216334730 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1036539979525446} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 224856131708948742} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 421, y: 718} + m_SizeDelta: {x: 500, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &224856131708948742 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1546711103148714} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 224026297216334730} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Prefabs/VideoFormatButton.prefab.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Prefabs/VideoFormatButton.prefab.meta new file mode 100644 index 000000000..1f2839044 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Prefabs/VideoFormatButton.prefab.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 95c6bff2dfc164406901450885b965af +timeCreated: 1518224083 +licenseType: Pro +NativeFormatImporter: + mainObjectFileID: 100100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Prefabs/collisionPlanePrefab.prefab b/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Prefabs/collisionPlanePrefab.prefab index 37b3e0d31..176788180 100644 --- a/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Prefabs/collisionPlanePrefab.prefab +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Prefabs/collisionPlanePrefab.prefab @@ -21,7 +21,7 @@ GameObject: - component: {fileID: 4459804331441636} - component: {fileID: 33784412182206160} - component: {fileID: 64007261467877126} - m_Layer: 0 + m_Layer: 10 m_Name: Plane m_TagString: Untagged m_Icon: {fileID: 0} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Prefabs/cube.prefab b/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Prefabs/cube.prefab new file mode 100644 index 000000000..10ab3c149 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Prefabs/cube.prefab @@ -0,0 +1,95 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1001 &100100000 +Prefab: + m_ObjectHideFlags: 1 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: [] + m_RemovedComponents: [] + m_ParentPrefab: {fileID: 0} + m_RootGameObject: {fileID: 1483093577405612} + m_IsPrefabParent: 1 +--- !u!1 &1483093577405612 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 4842779887363256} + - component: {fileID: 33871579265233608} + - component: {fileID: 65425379401162706} + - component: {fileID: 23053345987231900} + m_Layer: 0 + m_Name: cube + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4842779887363256 +Transform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1483093577405612} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 386, y: 718, z: 0} + m_LocalScale: {x: 0.1, y: 0.1, z: 0.1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!23 &23053345987231900 +MeshRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1483093577405612} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_Materials: + - {fileID: 10303, guid: 0000000000000000f000000000000000, type: 0} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 1 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!33 &33871579265233608 +MeshFilter: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1483093577405612} + m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} +--- !u!65 &65425379401162706 +BoxCollider: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1483093577405612} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 1, y: 1, z: 1} + m_Center: {x: 0, y: 0, z: 0} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Prefabs/cube.prefab.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Prefabs/cube.prefab.meta new file mode 100644 index 000000000..88e2bf891 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Prefabs/cube.prefab.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 9c8a1fc58df6b4d8c8c68e2883659c8a +timeCreated: 1520468628 +licenseType: Pro +NativeFormatImporter: + mainObjectFileID: 100100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Prefabs/occlusionPlanePrefab.prefab b/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Prefabs/occlusionPlanePrefab.prefab index 588db3b83..62bcce3b3 100644 --- a/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Prefabs/occlusionPlanePrefab.prefab +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Prefabs/occlusionPlanePrefab.prefab @@ -23,7 +23,7 @@ GameObject: - component: {fileID: 64514493211635788} - component: {fileID: 23308608047570514} - component: {fileID: 65158357074468436} - m_Layer: 0 + m_Layer: 10 m_Name: Plane m_TagString: Untagged m_Icon: {fileID: 0} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Prefabs/shadowPlanePrefab.prefab b/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Prefabs/shadowPlanePrefab.prefab index 41b4bf041..d10d72a4c 100644 --- a/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Prefabs/shadowPlanePrefab.prefab +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Prefabs/shadowPlanePrefab.prefab @@ -23,7 +23,7 @@ GameObject: - component: {fileID: 64514493211635788} - component: {fileID: 23308608047570514} - component: {fileID: 65158357074468436} - m_Layer: 0 + m_Layer: 10 m_Name: Plane m_TagString: Untagged m_Icon: {fileID: 0} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Textures/unitylogo.png b/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Textures/unitylogo.png new file mode 100644 index 000000000..d3da62170 Binary files /dev/null and b/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Textures/unitylogo.png differ diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Textures/unitylogo.png.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Textures/unitylogo.png.meta new file mode 100644 index 000000000..3757d2861 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/Common/Textures/unitylogo.png.meta @@ -0,0 +1,74 @@ +fileFormatVersion: 2 +guid: b4088316296d14245a7a76db89247808 +timeCreated: 1517444849 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking.meta new file mode 100644 index 000000000..d727f4f67 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 669335d2fe29243de91f7a0d430b31f9 +folderAsset: yes +timeCreated: 1505775209 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/ARCameraTracker.cs b/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/ARCameraTracker.cs new file mode 100644 index 000000000..a14e3f32c --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/ARCameraTracker.cs @@ -0,0 +1,38 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEngine.XR.iOS; + +public class ARCameraTracker : MonoBehaviour { + + [SerializeField] + private Camera trackedCamera; + + private bool sessionStarted = false; + + // Use this for initialization + void Start () { + UnityARSessionNativeInterface.ARFrameUpdatedEvent += FirstFrameUpdate; + } + + void OnDestroy() + { + } + + void FirstFrameUpdate(UnityARCamera cam) + { + sessionStarted = true; + UnityARSessionNativeInterface.ARFrameUpdatedEvent -= FirstFrameUpdate; + } + + // Update is called once per frame + void Update () { + if (trackedCamera != null && sessionStarted) { + Matrix4x4 cameraPose = UnityARSessionNativeInterface.GetARSessionNativeInterface ().GetCameraPose (); + trackedCamera.transform.localPosition = UnityARMatrixOps.GetPosition (cameraPose); + trackedCamera.transform.localRotation = UnityARMatrixOps.GetRotation (cameraPose); + + trackedCamera.projectionMatrix = UnityARSessionNativeInterface.GetARSessionNativeInterface ().GetCameraProjection (); + } + } +} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/ARCameraTracker.cs.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/ARCameraTracker.cs.meta new file mode 100644 index 000000000..407de9887 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/ARCameraTracker.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 961e52c3648614224b2a9dffa3055c07 +timeCreated: 1505866337 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/BlendshapeDriver.cs b/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/BlendshapeDriver.cs new file mode 100644 index 000000000..9efcc19d4 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/BlendshapeDriver.cs @@ -0,0 +1,45 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEngine.XR.iOS; + +public class BlendshapeDriver : MonoBehaviour { + + SkinnedMeshRenderer skinnedMeshRenderer; + Dictionary currentBlendShapes; + + // Use this for initialization + void Start () { + skinnedMeshRenderer = GetComponent (); + + if (skinnedMeshRenderer) { + UnityARSessionNativeInterface.ARFaceAnchorAddedEvent += FaceAdded; + UnityARSessionNativeInterface.ARFaceAnchorUpdatedEvent += FaceUpdated; + } + } + + void FaceAdded (ARFaceAnchor anchorData) + { + currentBlendShapes = anchorData.blendShapes; + } + + void FaceUpdated (ARFaceAnchor anchorData) + { + currentBlendShapes = anchorData.blendShapes; + } + + + // Update is called once per frame + void Update () { + + if (currentBlendShapes != null) { + foreach(KeyValuePair kvp in currentBlendShapes) + { + int blendShapeIndex = skinnedMeshRenderer.sharedMesh.GetBlendShapeIndex ("blendShape2." + kvp.Key); + if (blendShapeIndex >= 0 ) { + skinnedMeshRenderer.SetBlendShapeWeight (blendShapeIndex, kvp.Value * 100.0f); + } + } + } + } +} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/BlendshapeDriver.cs.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/BlendshapeDriver.cs.meta new file mode 100644 index 000000000..d6788c513 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/BlendshapeDriver.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: b4b0f477e0af343a89cdf372c8f19c89 +timeCreated: 1510188584 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/BlendshapePrinter.cs b/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/BlendshapePrinter.cs new file mode 100644 index 000000000..538d0c42c --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/BlendshapePrinter.cs @@ -0,0 +1,70 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEngine.XR.iOS; + +public class BlendshapePrinter : MonoBehaviour { + + bool shapeEnabled = false; + Dictionary currentBlendShapes; + + // Use this for initialization + void Start () { + UnityARSessionNativeInterface.ARFaceAnchorAddedEvent += FaceAdded; + UnityARSessionNativeInterface.ARFaceAnchorUpdatedEvent += FaceUpdated; + UnityARSessionNativeInterface.ARFaceAnchorRemovedEvent += FaceRemoved; + + } + + void OnGUI() + { + if (shapeEnabled) { + + string blendshapes = ""; + string shapeNames = ""; + string valueNames = ""; + foreach(KeyValuePair kvp in currentBlendShapes) { + blendshapes += " ["; + blendshapes += kvp.Key.ToString (); + blendshapes += ":"; + blendshapes += kvp.Value.ToString (); + blendshapes += "]\n"; + shapeNames += "\""; + shapeNames += kvp.Key.ToString (); + shapeNames += "\",\n"; + valueNames += kvp.Value.ToString (); + valueNames += "\n"; + } + + GUILayout.BeginHorizontal (GUILayout.ExpandHeight(true)); + GUILayout.Box (blendshapes); + GUILayout.EndHorizontal (); + + Debug.Log (shapeNames); + Debug.Log (valueNames); + + } + } + + void FaceAdded (ARFaceAnchor anchorData) + { + shapeEnabled = true; + currentBlendShapes = anchorData.blendShapes; + } + + void FaceUpdated (ARFaceAnchor anchorData) + { + currentBlendShapes = anchorData.blendShapes; + } + + void FaceRemoved (ARFaceAnchor anchorData) + { + shapeEnabled = false; + } + + + // Update is called once per frame + void Update () { + + } +} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/BlendshapePrinter.cs.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/BlendshapePrinter.cs.meta new file mode 100644 index 000000000..b590651d8 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/BlendshapePrinter.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: bc6438cd254de46d9aab501d3d1660b4 +timeCreated: 1506122750 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/FaceAnchorScene.unity b/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/FaceAnchorScene.unity new file mode 100644 index 000000000..77dace365 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/FaceAnchorScene.unity @@ -0,0 +1,451 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!29 &1 +OcclusionCullingSettings: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_OcclusionBakeSettings: + smallestOccluder: 5 + smallestHole: 0.25 + backfaceThreshold: 100 + m_SceneGUID: 00000000000000000000000000000000 + m_OcclusionCullingData: {fileID: 0} +--- !u!104 &2 +RenderSettings: + m_ObjectHideFlags: 0 + serializedVersion: 8 + m_Fog: 0 + m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_FogMode: 3 + m_FogDensity: 0.01 + m_LinearFogStart: 0 + m_LinearFogEnd: 300 + m_AmbientSkyColor: {r: 0.2, g: 0.2, b: 0.2, a: 0} + m_AmbientEquatorColor: {r: 0.098908, g: 0.100485, b: 0.119403, a: 1} + m_AmbientGroundColor: {r: 0.098908, g: 0.100485, b: 0.119403, a: 1} + m_AmbientIntensity: 1 + m_AmbientMode: 3 + m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} + m_SkyboxMaterial: {fileID: 0} + m_HaloStrength: 0.5 + m_FlareStrength: 1 + m_FlareFadeSpeed: 3 + m_HaloTexture: {fileID: 0} + m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0} + m_DefaultReflectionMode: 0 + m_DefaultReflectionResolution: 128 + m_ReflectionBounces: 1 + m_ReflectionIntensity: 1 + m_CustomReflection: {fileID: 0} + m_Sun: {fileID: 0} + m_IndirectSpecularColor: {r: 0, g: 0, b: 0, a: 1} +--- !u!157 &4 +LightmapSettings: + m_ObjectHideFlags: 0 + serializedVersion: 9 + m_GIWorkflowMode: 1 + m_GISettings: + serializedVersion: 2 + m_BounceScale: 1 + m_IndirectOutputScale: 1 + m_AlbedoBoost: 1 + m_TemporalCoherenceThreshold: 1 + m_EnvironmentLightingMode: 0 + m_EnableBakedLightmaps: 1 + m_EnableRealtimeLightmaps: 0 + m_LightmapEditorSettings: + serializedVersion: 8 + m_Resolution: 1 + m_BakeResolution: 50 + m_TextureWidth: 1024 + m_TextureHeight: 1024 + m_AO: 1 + m_AOMaxDistance: 1 + m_CompAOExponent: 1 + m_CompAOExponentDirect: 0 + m_Padding: 2 + m_LightmapParameters: {fileID: 0} + m_LightmapsBakeMode: 1 + m_TextureCompression: 0 + m_FinalGather: 0 + m_FinalGatherFiltering: 1 + m_FinalGatherRayCount: 256 + m_ReflectionCompression: 2 + m_MixedBakeMode: 1 + m_BakeBackend: 0 + m_PVRSampling: 1 + m_PVRDirectSampleCount: 32 + m_PVRSampleCount: 500 + m_PVRBounces: 2 + m_PVRFiltering: 0 + m_PVRFilteringMode: 1 + m_PVRCulling: 1 + m_PVRFilteringGaussRadiusDirect: 1 + m_PVRFilteringGaussRadiusIndirect: 5 + m_PVRFilteringGaussRadiusAO: 2 + m_PVRFilteringAtrousColorSigma: 1 + m_PVRFilteringAtrousNormalSigma: 1 + m_PVRFilteringAtrousPositionSigma: 1 + m_LightingDataAsset: {fileID: 0} + m_ShadowMaskMode: 2 +--- !u!196 &5 +NavMeshSettings: + serializedVersion: 2 + m_ObjectHideFlags: 0 + m_BuildSettings: + serializedVersion: 2 + agentTypeID: 0 + agentRadius: 0.4 + agentHeight: 1.8 + agentSlope: 45 + agentClimb: 0.9 + ledgeDropHeight: 0 + maxJumpAcrossDistance: 0 + minRegionArea: 2 + manualCellSize: 0 + cellSize: 0.13333333 + manualTileSize: 0 + tileSize: 256 + accuratePlacement: 0 + m_NavMeshData: {fileID: 0} +--- !u!1 &7 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 9} + - component: {fileID: 10} + - component: {fileID: 12} + - component: {fileID: 13} + - component: {fileID: 11} + - component: {fileID: 8} + - component: {fileID: 14} + m_Layer: 0 + m_Name: Main Camera + m_TagString: MainCamera + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &8 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b58ecea7a196242dd879c814ac05084c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_ClearMaterial: {fileID: 2100000, guid: f1d9352050a75486f878ab19fa578f16, type: 2} +--- !u!4 &9 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 229804521} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!20 &10 +Camera: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 + serializedVersion: 2 + m_ClearFlags: 3 + m_BackGroundColor: {r: 0.19788063, g: 0.2953552, b: 0.44852942, a: 0.019608} + m_NormalizedViewPortRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + near clip plane: 0.1 + far clip plane: 30 + field of view: 60 + orthographic: 0 + orthographic size: 100 + m_Depth: -1 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingPath: -1 + m_TargetTexture: {fileID: 0} + m_TargetDisplay: 0 + m_TargetEye: 3 + m_HDR: 0 + m_AllowMSAA: 1 + m_ForceIntoRT: 0 + m_OcclusionCulling: 1 + m_StereoConvergence: 10 + m_StereoSeparation: 0.022 + m_StereoMirrorMode: 0 +--- !u!81 &11 +AudioListener: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 +--- !u!92 &12 +Behaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 +--- !u!124 &13 +Behaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 +--- !u!114 &14 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: ce437cef046e841aabd6070890e79d41, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &229804520 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 229804521} + m_Layer: 0 + m_Name: CameraParent + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &229804521 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 229804520} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 9} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &392764811 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 392764813} + - component: {fileID: 392764812} + m_Layer: 0 + m_Name: ARCameraTracker + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &392764812 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 392764811} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 961e52c3648614224b2a9dffa3055c07, type: 3} + m_Name: + m_EditorClassIdentifier: + trackedCamera: {fileID: 10} +--- !u!4 &392764813 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 392764811} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &750418576 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 750418578} + - component: {fileID: 750418577} + m_Layer: 0 + m_Name: ARFaceAnchorManager + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &750418577 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 750418576} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fbb9909788bbd469bbce3102485cc0d9, type: 3} + m_Name: + m_EditorClassIdentifier: + anchorPrefab: {fileID: 883728463} +--- !u!4 &750418578 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 750418576} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &883728462 +Prefab: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: + - target: {fileID: 4685467192569254, guid: 8855f6e449b9d4d3fae7f0a1a5ff9c2f, type: 2} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4685467192569254, guid: 8855f6e449b9d4d3fae7f0a1a5ff9c2f, type: 2} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4685467192569254, guid: 8855f6e449b9d4d3fae7f0a1a5ff9c2f, type: 2} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4685467192569254, guid: 8855f6e449b9d4d3fae7f0a1a5ff9c2f, type: 2} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4685467192569254, guid: 8855f6e449b9d4d3fae7f0a1a5ff9c2f, type: 2} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4685467192569254, guid: 8855f6e449b9d4d3fae7f0a1a5ff9c2f, type: 2} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4685467192569254, guid: 8855f6e449b9d4d3fae7f0a1a5ff9c2f, type: 2} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4685467192569254, guid: 8855f6e449b9d4d3fae7f0a1a5ff9c2f, type: 2} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 4164134588576822, guid: 8855f6e449b9d4d3fae7f0a1a5ff9c2f, type: 2} + propertyPath: m_LocalPosition.z + value: -0.65 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_ParentPrefab: {fileID: 100100000, guid: 8855f6e449b9d4d3fae7f0a1a5ff9c2f, type: 2} + m_IsPrefabParent: 0 +--- !u!1 &883728463 stripped +GameObject: + m_PrefabParentObject: {fileID: 1283292900242102, guid: 8855f6e449b9d4d3fae7f0a1a5ff9c2f, + type: 2} + m_PrefabInternal: {fileID: 883728462} +--- !u!1 &941817061 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 941817063} + - component: {fileID: 941817062} + m_Layer: 0 + m_Name: Directional light + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!108 &941817062 +Light: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 941817061} + m_Enabled: 1 + serializedVersion: 8 + m_Type: 1 + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Intensity: 1 + m_Range: 10 + m_SpotAngle: 30 + m_CookieSize: 10 + m_Shadows: + m_Type: 0 + m_Resolution: -1 + m_CustomResolution: -1 + m_Strength: 1 + m_Bias: 0.05 + m_NormalBias: 0.4 + m_NearPlane: 0.2 + m_Cookie: {fileID: 0} + m_DrawHalo: 0 + m_Flare: {fileID: 0} + m_RenderMode: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_Lightmapping: 4 + m_AreaSize: {x: 1, y: 1} + m_BounceIntensity: 1 + m_ColorTemperature: 6570 + m_UseColorTemperature: 0 + m_ShadowRadius: 0 + m_ShadowAngle: 0 +--- !u!4 &941817063 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 941817061} + m_LocalRotation: {x: 0.40821788, y: -0.23456968, z: 0.10938163, w: 0.8754261} + m_LocalPosition: {x: -0.5947815, y: -0.55055016, z: 0.5245318} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 50, y: -30, z: 0} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/FaceAnchorScene.unity.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/FaceAnchorScene.unity.meta new file mode 100644 index 000000000..56ebea5c2 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/FaceAnchorScene.unity.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 46e299c2ec1244fbaa1b9b14e2ab198a +timeCreated: 1505775273 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/FaceBlendshapeScene.unity b/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/FaceBlendshapeScene.unity new file mode 100644 index 000000000..2f0547f1f --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/FaceBlendshapeScene.unity @@ -0,0 +1,481 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!29 &1 +OcclusionCullingSettings: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_OcclusionBakeSettings: + smallestOccluder: 5 + smallestHole: 0.25 + backfaceThreshold: 100 + m_SceneGUID: 00000000000000000000000000000000 + m_OcclusionCullingData: {fileID: 0} +--- !u!104 &2 +RenderSettings: + m_ObjectHideFlags: 0 + serializedVersion: 8 + m_Fog: 0 + m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_FogMode: 3 + m_FogDensity: 0.01 + m_LinearFogStart: 0 + m_LinearFogEnd: 300 + m_AmbientSkyColor: {r: 0.2, g: 0.2, b: 0.2, a: 0} + m_AmbientEquatorColor: {r: 0.098908, g: 0.100485, b: 0.119403, a: 1} + m_AmbientGroundColor: {r: 0.098908, g: 0.100485, b: 0.119403, a: 1} + m_AmbientIntensity: 1 + m_AmbientMode: 3 + m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} + m_SkyboxMaterial: {fileID: 0} + m_HaloStrength: 0.5 + m_FlareStrength: 1 + m_FlareFadeSpeed: 3 + m_HaloTexture: {fileID: 0} + m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0} + m_DefaultReflectionMode: 0 + m_DefaultReflectionResolution: 128 + m_ReflectionBounces: 1 + m_ReflectionIntensity: 1 + m_CustomReflection: {fileID: 0} + m_Sun: {fileID: 0} + m_IndirectSpecularColor: {r: 0, g: 0, b: 0, a: 1} +--- !u!157 &4 +LightmapSettings: + m_ObjectHideFlags: 0 + serializedVersion: 9 + m_GIWorkflowMode: 1 + m_GISettings: + serializedVersion: 2 + m_BounceScale: 1 + m_IndirectOutputScale: 1 + m_AlbedoBoost: 1 + m_TemporalCoherenceThreshold: 1 + m_EnvironmentLightingMode: 0 + m_EnableBakedLightmaps: 1 + m_EnableRealtimeLightmaps: 0 + m_LightmapEditorSettings: + serializedVersion: 8 + m_Resolution: 1 + m_BakeResolution: 50 + m_TextureWidth: 1024 + m_TextureHeight: 1024 + m_AO: 1 + m_AOMaxDistance: 1 + m_CompAOExponent: 1 + m_CompAOExponentDirect: 0 + m_Padding: 2 + m_LightmapParameters: {fileID: 0} + m_LightmapsBakeMode: 1 + m_TextureCompression: 0 + m_FinalGather: 0 + m_FinalGatherFiltering: 1 + m_FinalGatherRayCount: 256 + m_ReflectionCompression: 2 + m_MixedBakeMode: 1 + m_BakeBackend: 0 + m_PVRSampling: 1 + m_PVRDirectSampleCount: 32 + m_PVRSampleCount: 500 + m_PVRBounces: 2 + m_PVRFiltering: 0 + m_PVRFilteringMode: 1 + m_PVRCulling: 1 + m_PVRFilteringGaussRadiusDirect: 1 + m_PVRFilteringGaussRadiusIndirect: 5 + m_PVRFilteringGaussRadiusAO: 2 + m_PVRFilteringAtrousColorSigma: 1 + m_PVRFilteringAtrousNormalSigma: 1 + m_PVRFilteringAtrousPositionSigma: 1 + m_LightingDataAsset: {fileID: 0} + m_ShadowMaskMode: 2 +--- !u!196 &5 +NavMeshSettings: + serializedVersion: 2 + m_ObjectHideFlags: 0 + m_BuildSettings: + serializedVersion: 2 + agentTypeID: 0 + agentRadius: 0.4 + agentHeight: 1.8 + agentSlope: 45 + agentClimb: 0.9 + ledgeDropHeight: 0 + maxJumpAcrossDistance: 0 + minRegionArea: 2 + manualCellSize: 0 + cellSize: 0.13333333 + manualTileSize: 0 + tileSize: 256 + accuratePlacement: 0 + m_NavMeshData: {fileID: 0} +--- !u!1 &7 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 9} + - component: {fileID: 10} + - component: {fileID: 12} + - component: {fileID: 13} + - component: {fileID: 11} + - component: {fileID: 8} + - component: {fileID: 14} + m_Layer: 0 + m_Name: Main Camera + m_TagString: MainCamera + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &8 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b58ecea7a196242dd879c814ac05084c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_ClearMaterial: {fileID: 2100000, guid: f1d9352050a75486f878ab19fa578f16, type: 2} +--- !u!4 &9 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 229804521} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!20 &10 +Camera: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 + serializedVersion: 2 + m_ClearFlags: 3 + m_BackGroundColor: {r: 0.19788063, g: 0.2953552, b: 0.44852942, a: 0.019608} + m_NormalizedViewPortRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + near clip plane: 0.1 + far clip plane: 30 + field of view: 60 + orthographic: 0 + orthographic size: 100 + m_Depth: -1 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingPath: -1 + m_TargetTexture: {fileID: 0} + m_TargetDisplay: 0 + m_TargetEye: 3 + m_HDR: 0 + m_AllowMSAA: 1 + m_ForceIntoRT: 0 + m_OcclusionCulling: 1 + m_StereoConvergence: 10 + m_StereoSeparation: 0.022 + m_StereoMirrorMode: 0 +--- !u!81 &11 +AudioListener: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 +--- !u!92 &12 +Behaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 +--- !u!124 &13 +Behaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 +--- !u!114 &14 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: ce437cef046e841aabd6070890e79d41, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &229804520 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 229804521} + m_Layer: 0 + m_Name: CameraParent + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &229804521 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 229804520} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 9} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &392764811 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 392764813} + - component: {fileID: 392764812} + m_Layer: 0 + m_Name: ARCameraTracker + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &392764812 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 392764811} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 961e52c3648614224b2a9dffa3055c07, type: 3} + m_Name: + m_EditorClassIdentifier: + trackedCamera: {fileID: 10} +--- !u!4 &392764813 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 392764811} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &539730392 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 539730393} + - component: {fileID: 539730394} + m_Layer: 0 + m_Name: BlendshapeOutput + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &539730393 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 539730392} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &539730394 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 539730392} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: bc6438cd254de46d9aab501d3d1660b4, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &1121666029 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1121666033} + - component: {fileID: 1121666032} + - component: {fileID: 1121666031} + - component: {fileID: 1121666030} + m_Layer: 0 + m_Name: ARFaceMeshManager + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!33 &1121666030 +MeshFilter: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1121666029} + m_Mesh: {fileID: 0} +--- !u!23 &1121666031 +MeshRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1121666029} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_Materials: + - {fileID: 10303, guid: 0000000000000000f000000000000000, type: 0} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!114 &1121666032 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1121666029} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: baec72e2006ae48df9dcbf0eb13377f9, type: 3} + m_Name: + m_EditorClassIdentifier: + meshFilter: {fileID: 1121666030} +--- !u!4 &1121666033 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1121666029} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: -180, z: 0} +--- !u!1 &1176133656 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1176133658} + - component: {fileID: 1176133657} + m_Layer: 0 + m_Name: Directional light + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!108 &1176133657 +Light: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1176133656} + m_Enabled: 1 + serializedVersion: 8 + m_Type: 1 + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Intensity: 1 + m_Range: 10 + m_SpotAngle: 30 + m_CookieSize: 10 + m_Shadows: + m_Type: 0 + m_Resolution: -1 + m_CustomResolution: -1 + m_Strength: 1 + m_Bias: 0.05 + m_NormalBias: 0.4 + m_NearPlane: 0.2 + m_Cookie: {fileID: 0} + m_DrawHalo: 0 + m_Flare: {fileID: 0} + m_RenderMode: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_Lightmapping: 4 + m_AreaSize: {x: 1, y: 1} + m_BounceIntensity: 1 + m_ColorTemperature: 6570 + m_UseColorTemperature: 0 + m_ShadowRadius: 0 + m_ShadowAngle: 0 +--- !u!4 &1176133658 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1176133656} + m_LocalRotation: {x: 0.40821788, y: -0.23456968, z: 0.10938163, w: 0.8754261} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 50, y: -30, z: 0} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/FaceBlendshapeScene.unity.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/FaceBlendshapeScene.unity.meta new file mode 100644 index 000000000..8fc604463 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/FaceBlendshapeScene.unity.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 74c2619dd419d4704bba49146f77161d +timeCreated: 1505775273 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/FaceBlendshapeSloth.unity b/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/FaceBlendshapeSloth.unity new file mode 100644 index 000000000..cb6892afd --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/FaceBlendshapeSloth.unity @@ -0,0 +1,582 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!29 &1 +OcclusionCullingSettings: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_OcclusionBakeSettings: + smallestOccluder: 5 + smallestHole: 0.25 + backfaceThreshold: 100 + m_SceneGUID: 00000000000000000000000000000000 + m_OcclusionCullingData: {fileID: 0} +--- !u!104 &2 +RenderSettings: + m_ObjectHideFlags: 0 + serializedVersion: 8 + m_Fog: 0 + m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_FogMode: 3 + m_FogDensity: 0.01 + m_LinearFogStart: 0 + m_LinearFogEnd: 300 + m_AmbientSkyColor: {r: 0.2, g: 0.2, b: 0.2, a: 0} + m_AmbientEquatorColor: {r: 0.098908, g: 0.100485, b: 0.119403, a: 1} + m_AmbientGroundColor: {r: 0.098908, g: 0.100485, b: 0.119403, a: 1} + m_AmbientIntensity: 1 + m_AmbientMode: 3 + m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} + m_SkyboxMaterial: {fileID: 0} + m_HaloStrength: 0.5 + m_FlareStrength: 1 + m_FlareFadeSpeed: 3 + m_HaloTexture: {fileID: 0} + m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0} + m_DefaultReflectionMode: 0 + m_DefaultReflectionResolution: 128 + m_ReflectionBounces: 1 + m_ReflectionIntensity: 1 + m_CustomReflection: {fileID: 0} + m_Sun: {fileID: 0} + m_IndirectSpecularColor: {r: 0, g: 0, b: 0, a: 1} +--- !u!157 &4 +LightmapSettings: + m_ObjectHideFlags: 0 + serializedVersion: 9 + m_GIWorkflowMode: 1 + m_GISettings: + serializedVersion: 2 + m_BounceScale: 1 + m_IndirectOutputScale: 1 + m_AlbedoBoost: 1 + m_TemporalCoherenceThreshold: 1 + m_EnvironmentLightingMode: 0 + m_EnableBakedLightmaps: 1 + m_EnableRealtimeLightmaps: 0 + m_LightmapEditorSettings: + serializedVersion: 8 + m_Resolution: 1 + m_BakeResolution: 50 + m_TextureWidth: 1024 + m_TextureHeight: 1024 + m_AO: 1 + m_AOMaxDistance: 1 + m_CompAOExponent: 1 + m_CompAOExponentDirect: 0 + m_Padding: 2 + m_LightmapParameters: {fileID: 0} + m_LightmapsBakeMode: 1 + m_TextureCompression: 0 + m_FinalGather: 0 + m_FinalGatherFiltering: 1 + m_FinalGatherRayCount: 256 + m_ReflectionCompression: 2 + m_MixedBakeMode: 1 + m_BakeBackend: 0 + m_PVRSampling: 1 + m_PVRDirectSampleCount: 32 + m_PVRSampleCount: 500 + m_PVRBounces: 2 + m_PVRFiltering: 0 + m_PVRFilteringMode: 1 + m_PVRCulling: 1 + m_PVRFilteringGaussRadiusDirect: 1 + m_PVRFilteringGaussRadiusIndirect: 5 + m_PVRFilteringGaussRadiusAO: 2 + m_PVRFilteringAtrousColorSigma: 1 + m_PVRFilteringAtrousNormalSigma: 1 + m_PVRFilteringAtrousPositionSigma: 1 + m_LightingDataAsset: {fileID: 0} + m_ShadowMaskMode: 2 +--- !u!196 &5 +NavMeshSettings: + serializedVersion: 2 + m_ObjectHideFlags: 0 + m_BuildSettings: + serializedVersion: 2 + agentTypeID: 0 + agentRadius: 0.4 + agentHeight: 1.8 + agentSlope: 45 + agentClimb: 0.9 + ledgeDropHeight: 0 + maxJumpAcrossDistance: 0 + minRegionArea: 2 + manualCellSize: 0 + cellSize: 0.13333333 + manualTileSize: 0 + tileSize: 256 + accuratePlacement: 0 + m_NavMeshData: {fileID: 0} +--- !u!1 &7 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 9} + - component: {fileID: 10} + - component: {fileID: 12} + - component: {fileID: 13} + - component: {fileID: 11} + - component: {fileID: 8} + - component: {fileID: 14} + m_Layer: 0 + m_Name: Main Camera + m_TagString: MainCamera + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &8 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b58ecea7a196242dd879c814ac05084c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_ClearMaterial: {fileID: 2100000, guid: f1d9352050a75486f878ab19fa578f16, type: 2} +--- !u!4 &9 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 229804521} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!20 &10 +Camera: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 + serializedVersion: 2 + m_ClearFlags: 2 + m_BackGroundColor: {r: 0.83823526, g: 0.8135813, b: 0.8135813, a: 0.019608} + m_NormalizedViewPortRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + near clip plane: 0.1 + far clip plane: 30 + field of view: 60 + orthographic: 0 + orthographic size: 100 + m_Depth: -1 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingPath: -1 + m_TargetTexture: {fileID: 0} + m_TargetDisplay: 0 + m_TargetEye: 3 + m_HDR: 0 + m_AllowMSAA: 1 + m_ForceIntoRT: 0 + m_OcclusionCulling: 1 + m_StereoConvergence: 10 + m_StereoSeparation: 0.022 + m_StereoMirrorMode: 0 +--- !u!81 &11 +AudioListener: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 +--- !u!92 &12 +Behaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 +--- !u!124 &13 +Behaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 +--- !u!114 &14 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: ce437cef046e841aabd6070890e79d41, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1001 &108640178 +Prefab: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: + - target: {fileID: 13700000, guid: 63ae12abc50414d5c882dbe18f6a820b, type: 3} + propertyPath: m_BlendShapeWeights.Array.size + value: 50 + objectReference: {fileID: 0} + - target: {fileID: 400004, guid: 63ae12abc50414d5c882dbe18f6a820b, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400004, guid: 63ae12abc50414d5c882dbe18f6a820b, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400004, guid: 63ae12abc50414d5c882dbe18f6a820b, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400004, guid: 63ae12abc50414d5c882dbe18f6a820b, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400004, guid: 63ae12abc50414d5c882dbe18f6a820b, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400004, guid: 63ae12abc50414d5c882dbe18f6a820b, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400004, guid: 63ae12abc50414d5c882dbe18f6a820b, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 400004, guid: 63ae12abc50414d5c882dbe18f6a820b, type: 3} + propertyPath: m_RootOrder + value: 5 + objectReference: {fileID: 0} + - target: {fileID: 13700000, guid: 63ae12abc50414d5c882dbe18f6a820b, type: 3} + propertyPath: m_AABB.m_Center.y + value: -0.015557218 + objectReference: {fileID: 0} + - target: {fileID: 13700000, guid: 63ae12abc50414d5c882dbe18f6a820b, type: 3} + propertyPath: m_AABB.m_Extent.x + value: 0.113363 + objectReference: {fileID: 0} + - target: {fileID: 13700000, guid: 63ae12abc50414d5c882dbe18f6a820b, type: 3} + propertyPath: m_AABB.m_Extent.y + value: 0.13194084 + objectReference: {fileID: 0} + - target: {fileID: 13700000, guid: 63ae12abc50414d5c882dbe18f6a820b, type: 3} + propertyPath: m_AABB.m_Extent.z + value: 0.13394047 + objectReference: {fileID: 0} + - target: {fileID: 13700000, guid: 63ae12abc50414d5c882dbe18f6a820b, type: 3} + propertyPath: m_DirtyAABB + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400002, guid: 63ae12abc50414d5c882dbe18f6a820b, type: 3} + propertyPath: m_LocalRotation.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 400002, guid: 63ae12abc50414d5c882dbe18f6a820b, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400002, guid: 63ae12abc50414d5c882dbe18f6a820b, type: 3} + propertyPath: m_LocalRotation.w + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400002, guid: 63ae12abc50414d5c882dbe18f6a820b, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 180 + objectReference: {fileID: 0} + - target: {fileID: 400002, guid: 63ae12abc50414d5c882dbe18f6a820b, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400002, guid: 63ae12abc50414d5c882dbe18f6a820b, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400002, guid: 63ae12abc50414d5c882dbe18f6a820b, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 13700000, guid: 63ae12abc50414d5c882dbe18f6a820b, type: 3} + propertyPath: m_BlendShapeWeights.Array.data[43] + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_ParentPrefab: {fileID: 100100000, guid: 63ae12abc50414d5c882dbe18f6a820b, type: 3} + m_IsPrefabParent: 0 +--- !u!1 &229804520 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 229804521} + m_Layer: 0 + m_Name: CameraParent + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &229804521 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 229804520} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 9} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &392764811 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 392764813} + - component: {fileID: 392764812} + m_Layer: 0 + m_Name: ARCameraTracker + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &392764812 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 392764811} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 961e52c3648614224b2a9dffa3055c07, type: 3} + m_Name: + m_EditorClassIdentifier: + trackedCamera: {fileID: 10} +--- !u!4 &392764813 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 392764811} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &750418576 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 750418578} + - component: {fileID: 750418577} + m_Layer: 0 + m_Name: ARFaceAnchorManager + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &750418577 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 750418576} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fbb9909788bbd469bbce3102485cc0d9, type: 3} + m_Name: + m_EditorClassIdentifier: + anchorPrefab: {fileID: 1485951615} +--- !u!4 &750418578 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 750418576} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &941817061 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 941817063} + - component: {fileID: 941817062} + m_Layer: 0 + m_Name: Directional light + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!108 &941817062 +Light: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 941817061} + m_Enabled: 1 + serializedVersion: 8 + m_Type: 1 + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Intensity: 1.5 + m_Range: 10 + m_SpotAngle: 30 + m_CookieSize: 10 + m_Shadows: + m_Type: 0 + m_Resolution: -1 + m_CustomResolution: -1 + m_Strength: 1 + m_Bias: 0.05 + m_NormalBias: 0.4 + m_NearPlane: 0.2 + m_Cookie: {fileID: 0} + m_DrawHalo: 0 + m_Flare: {fileID: 0} + m_RenderMode: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_Lightmapping: 4 + m_AreaSize: {x: 1, y: 1} + m_BounceIntensity: 1 + m_ColorTemperature: 6570 + m_UseColorTemperature: 0 + m_ShadowRadius: 0 + m_ShadowAngle: 0 +--- !u!4 &941817063 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 941817061} + m_LocalRotation: {x: 0.06905144, y: 0.42192638, z: -0.89212835, w: 0.14600354} + m_LocalPosition: {x: -0.5947815, y: -0.55055016, z: 0.5245318} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 129.377, y: 180, z: 18.58899} +--- !u!1 &1485951615 stripped +GameObject: + m_PrefabParentObject: {fileID: 100004, guid: 63ae12abc50414d5c882dbe18f6a820b, type: 3} + m_PrefabInternal: {fileID: 108640178} +--- !u!1 &1795977282 stripped +GameObject: + m_PrefabParentObject: {fileID: 100002, guid: 63ae12abc50414d5c882dbe18f6a820b, type: 3} + m_PrefabInternal: {fileID: 108640178} +--- !u!114 &1795977284 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1795977282} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b4b0f477e0af343a89cdf372c8f19c89, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &2063811114 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 2063811116} + - component: {fileID: 2063811115} + m_Layer: 0 + m_Name: Directional light (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!108 &2063811115 +Light: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2063811114} + m_Enabled: 1 + serializedVersion: 8 + m_Type: 1 + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Intensity: 1 + m_Range: 10 + m_SpotAngle: 30 + m_CookieSize: 10 + m_Shadows: + m_Type: 0 + m_Resolution: -1 + m_CustomResolution: -1 + m_Strength: 1 + m_Bias: 0.05 + m_NormalBias: 0.4 + m_NearPlane: 0.2 + m_Cookie: {fileID: 0} + m_DrawHalo: 0 + m_Flare: {fileID: 0} + m_RenderMode: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_Lightmapping: 4 + m_AreaSize: {x: 1, y: 1} + m_BounceIntensity: 1 + m_ColorTemperature: 6570 + m_UseColorTemperature: 0 + m_ShadowRadius: 0 + m_ShadowAngle: 0 +--- !u!4 &2063811116 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2063811114} + m_LocalRotation: {x: 0.89530635, y: -0.030857006, z: 0.1811015, w: -0.4058037} + m_LocalPosition: {x: -0.5947815, y: -0.55055016, z: 0.5245318} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 225.681, y: -30, z: 16.825989} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/FaceBlendshapeSloth.unity.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/FaceBlendshapeSloth.unity.meta new file mode 100644 index 000000000..78ee59b74 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/FaceBlendshapeSloth.unity.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b9bc483a4023d4829a88ddc3adff3caf +timeCreated: 1510188488 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/FaceDirectionalLightEstimate.unity b/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/FaceDirectionalLightEstimate.unity new file mode 100644 index 000000000..2dfa2be88 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/FaceDirectionalLightEstimate.unity @@ -0,0 +1,1680 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!29 &1 +OcclusionCullingSettings: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_OcclusionBakeSettings: + smallestOccluder: 5 + smallestHole: 0.25 + backfaceThreshold: 100 + m_SceneGUID: 00000000000000000000000000000000 + m_OcclusionCullingData: {fileID: 0} +--- !u!104 &2 +RenderSettings: + m_ObjectHideFlags: 0 + serializedVersion: 8 + m_Fog: 0 + m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_FogMode: 3 + m_FogDensity: 0.01 + m_LinearFogStart: 0 + m_LinearFogEnd: 300 + m_AmbientSkyColor: {r: 0.2, g: 0.2, b: 0.2, a: 0} + m_AmbientEquatorColor: {r: 0.098908, g: 0.100485, b: 0.119403, a: 1} + m_AmbientGroundColor: {r: 0.098908, g: 0.100485, b: 0.119403, a: 1} + m_AmbientIntensity: 1 + m_AmbientMode: 3 + m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} + m_SkyboxMaterial: {fileID: 0} + m_HaloStrength: 0.5 + m_FlareStrength: 1 + m_FlareFadeSpeed: 3 + m_HaloTexture: {fileID: 0} + m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0} + m_DefaultReflectionMode: 0 + m_DefaultReflectionResolution: 128 + m_ReflectionBounces: 1 + m_ReflectionIntensity: 1 + m_CustomReflection: {fileID: 0} + m_Sun: {fileID: 0} + m_IndirectSpecularColor: {r: 0, g: 0, b: 0, a: 1} +--- !u!157 &4 +LightmapSettings: + m_ObjectHideFlags: 0 + serializedVersion: 9 + m_GIWorkflowMode: 1 + m_GISettings: + serializedVersion: 2 + m_BounceScale: 1 + m_IndirectOutputScale: 1 + m_AlbedoBoost: 1 + m_TemporalCoherenceThreshold: 1 + m_EnvironmentLightingMode: 0 + m_EnableBakedLightmaps: 1 + m_EnableRealtimeLightmaps: 0 + m_LightmapEditorSettings: + serializedVersion: 8 + m_Resolution: 1 + m_BakeResolution: 50 + m_TextureWidth: 1024 + m_TextureHeight: 1024 + m_AO: 1 + m_AOMaxDistance: 1 + m_CompAOExponent: 1 + m_CompAOExponentDirect: 0 + m_Padding: 2 + m_LightmapParameters: {fileID: 0} + m_LightmapsBakeMode: 1 + m_TextureCompression: 0 + m_FinalGather: 0 + m_FinalGatherFiltering: 1 + m_FinalGatherRayCount: 256 + m_ReflectionCompression: 2 + m_MixedBakeMode: 1 + m_BakeBackend: 0 + m_PVRSampling: 1 + m_PVRDirectSampleCount: 32 + m_PVRSampleCount: 500 + m_PVRBounces: 2 + m_PVRFiltering: 0 + m_PVRFilteringMode: 1 + m_PVRCulling: 1 + m_PVRFilteringGaussRadiusDirect: 1 + m_PVRFilteringGaussRadiusIndirect: 5 + m_PVRFilteringGaussRadiusAO: 2 + m_PVRFilteringAtrousColorSigma: 1 + m_PVRFilteringAtrousNormalSigma: 1 + m_PVRFilteringAtrousPositionSigma: 1 + m_LightingDataAsset: {fileID: 0} + m_ShadowMaskMode: 2 +--- !u!196 &5 +NavMeshSettings: + serializedVersion: 2 + m_ObjectHideFlags: 0 + m_BuildSettings: + serializedVersion: 2 + agentTypeID: 0 + agentRadius: 0.4 + agentHeight: 1.8 + agentSlope: 45 + agentClimb: 0.9 + ledgeDropHeight: 0 + maxJumpAcrossDistance: 0 + minRegionArea: 2 + manualCellSize: 0 + cellSize: 0.13333333 + manualTileSize: 0 + tileSize: 256 + accuratePlacement: 0 + m_NavMeshData: {fileID: 0} +--- !u!1 &7 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 9} + - component: {fileID: 10} + - component: {fileID: 12} + - component: {fileID: 13} + - component: {fileID: 11} + - component: {fileID: 8} + - component: {fileID: 14} + m_Layer: 0 + m_Name: Main Camera + m_TagString: MainCamera + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &8 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b58ecea7a196242dd879c814ac05084c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_ClearMaterial: {fileID: 2100000, guid: f1d9352050a75486f878ab19fa578f16, type: 2} +--- !u!4 &9 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 229804521} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!20 &10 +Camera: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 + serializedVersion: 2 + m_ClearFlags: 1 + m_BackGroundColor: {r: 0.19788063, g: 0.2953552, b: 0.44852942, a: 0.019608} + m_NormalizedViewPortRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + near clip plane: 0.1 + far clip plane: 30 + field of view: 60 + orthographic: 0 + orthographic size: 100 + m_Depth: -1 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingPath: -1 + m_TargetTexture: {fileID: 0} + m_TargetDisplay: 0 + m_TargetEye: 3 + m_HDR: 0 + m_AllowMSAA: 1 + m_ForceIntoRT: 0 + m_OcclusionCulling: 1 + m_StereoConvergence: 10 + m_StereoSeparation: 0.022 + m_StereoMirrorMode: 0 +--- !u!81 &11 +AudioListener: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 +--- !u!92 &12 +Behaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 +--- !u!124 &13 +Behaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 +--- !u!114 &14 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: ce437cef046e841aabd6070890e79d41, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &6170189 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 6170191} + - component: {fileID: 6170190} + m_Layer: 0 + m_Name: ARFaceAnchorManager + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &6170190 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 6170189} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fbb9909788bbd469bbce3102485cc0d9, type: 3} + m_Name: + m_EditorClassIdentifier: + anchorPrefab: {fileID: 1374808482} +--- !u!4 &6170191 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 6170189} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &229804520 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 229804521} + m_Layer: 0 + m_Name: CameraParent + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &229804521 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 229804520} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 9} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &392764811 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 392764813} + - component: {fileID: 392764812} + m_Layer: 0 + m_Name: ARCameraTracker + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &392764812 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 392764811} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 961e52c3648614224b2a9dffa3055c07, type: 3} + m_Name: + m_EditorClassIdentifier: + trackedCamera: {fileID: 10} +--- !u!4 &392764813 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 392764811} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &441856550 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 441856551} + - component: {fileID: 441856555} + - component: {fileID: 441856554} + - component: {fileID: 441856553} + - component: {fileID: 441856552} + m_Layer: 0 + m_Name: LeftCamera + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &441856551 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 441856550} + m_LocalRotation: {x: -0, y: 0.7071068, z: -0, w: 0.7071068} + m_LocalPosition: {x: -4, y: 0, z: 0} + m_LocalScale: {x: 10, y: 10, z: 10} + m_Children: [] + m_Father: {fileID: 1374808486} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 90, z: 0} +--- !u!81 &441856552 +AudioListener: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 441856550} + m_Enabled: 1 +--- !u!92 &441856553 +Behaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 441856550} + m_Enabled: 1 +--- !u!124 &441856554 +Behaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 441856550} + m_Enabled: 1 +--- !u!20 &441856555 +Camera: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 441856550} + m_Enabled: 1 + serializedVersion: 2 + m_ClearFlags: 1 + m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0} + m_NormalizedViewPortRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + near clip plane: 0.3 + far clip plane: 10 + field of view: 17 + orthographic: 0 + orthographic size: 5 + m_Depth: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingPath: -1 + m_TargetTexture: {fileID: 8400000, guid: a9121db1a6b1c443fb39767c96cb1ed3, type: 2} + m_TargetDisplay: 0 + m_TargetEye: 3 + m_HDR: 1 + m_AllowMSAA: 1 + m_ForceIntoRT: 0 + m_OcclusionCulling: 1 + m_StereoConvergence: 10 + m_StereoSeparation: 0.022 + m_StereoMirrorMode: 0 +--- !u!1 &502808686 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 502808690} + - component: {fileID: 502808689} + - component: {fileID: 502808688} + - component: {fileID: 502808687} + m_Layer: 5 + m_Name: Canvas + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &502808687 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 502808686} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1301386320, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!114 &502808688 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 502808686} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1980459831, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_UiScaleMode: 0 + m_ReferencePixelsPerUnit: 100 + m_ScaleFactor: 1 + m_ReferenceResolution: {x: 800, y: 600} + m_ScreenMatchMode: 0 + m_MatchWidthOrHeight: 0 + m_PhysicalUnit: 3 + m_FallbackScreenDPI: 96 + m_DefaultSpriteDPI: 96 + m_DynamicPixelsPerUnit: 1 +--- !u!223 &502808689 +Canvas: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 502808686} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 0 + m_Camera: {fileID: 0} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_AdditionalShaderChannelsFlag: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!224 &502808690 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 502808686} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 1942819082} + - {fileID: 1021282578} + - {fileID: 617153813} + - {fileID: 2079179064} + - {fileID: 1480609582} + - {fileID: 1253721739} + m_Father: {fileID: 0} + m_RootOrder: 6 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0, y: 0} +--- !u!1 &524142605 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 524142606} + - component: {fileID: 524142610} + - component: {fileID: 524142609} + - component: {fileID: 524142608} + - component: {fileID: 524142607} + m_Layer: 0 + m_Name: TopCamera + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &524142606 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 524142605} + m_LocalRotation: {x: 0.7071068, y: -0, z: -0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 4, z: 0} + m_LocalScale: {x: 10, y: 10, z: 10} + m_Children: [] + m_Father: {fileID: 1374808486} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!81 &524142607 +AudioListener: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 524142605} + m_Enabled: 1 +--- !u!92 &524142608 +Behaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 524142605} + m_Enabled: 1 +--- !u!124 &524142609 +Behaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 524142605} + m_Enabled: 1 +--- !u!20 &524142610 +Camera: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 524142605} + m_Enabled: 1 + serializedVersion: 2 + m_ClearFlags: 1 + m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0} + m_NormalizedViewPortRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + near clip plane: 0.3 + far clip plane: 10 + field of view: 17 + orthographic: 0 + orthographic size: 5 + m_Depth: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingPath: -1 + m_TargetTexture: {fileID: 8400000, guid: 4bf99f420eecb4d14841917a1a5830fe, type: 2} + m_TargetDisplay: 0 + m_TargetEye: 3 + m_HDR: 1 + m_AllowMSAA: 1 + m_ForceIntoRT: 0 + m_OcclusionCulling: 1 + m_StereoConvergence: 10 + m_StereoSeparation: 0.022 + m_StereoMirrorMode: 0 +--- !u!1 &617153812 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 617153813} + - component: {fileID: 617153815} + - component: {fileID: 617153814} + m_Layer: 5 + m_Name: RawImageLeft + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &617153813 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 617153812} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 502808690} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.5} + m_AnchorMax: {x: 0, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 100, y: 100} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &617153814 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 617153812} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -98529514, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Texture: {fileID: 8400000, guid: a9121db1a6b1c443fb39767c96cb1ed3, type: 2} + m_UVRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 +--- !u!222 &617153815 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 617153812} +--- !u!1 &898814857 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 898814860} + - component: {fileID: 898814859} + - component: {fileID: 898814858} + m_Layer: 0 + m_Name: EventSystem + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &898814858 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 898814857} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1077351063, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_HorizontalAxis: Horizontal + m_VerticalAxis: Vertical + m_SubmitButton: Submit + m_CancelButton: Cancel + m_InputActionsPerSecond: 10 + m_RepeatDelay: 0.5 + m_ForceModuleActive: 0 +--- !u!114 &898814859 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 898814857} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -619905303, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_FirstSelected: {fileID: 0} + m_sendNavigationEvents: 1 + m_DragThreshold: 5 +--- !u!4 &898814860 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 898814857} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 7 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1021282577 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1021282578} + - component: {fileID: 1021282580} + - component: {fileID: 1021282579} + m_Layer: 5 + m_Name: RawImageBottom + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1021282578 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1021282577} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 502808690} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0} + m_AnchorMax: {x: 0.5, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 100, y: 100} + m_Pivot: {x: 0.5, y: 0} +--- !u!114 &1021282579 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1021282577} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -98529514, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Texture: {fileID: 8400000, guid: f547bf7e1be7a4cd794d316baa8f21fb, type: 2} + m_UVRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 +--- !u!222 &1021282580 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1021282577} +--- !u!1 &1253721738 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1253721739} + - component: {fileID: 1253721741} + - component: {fileID: 1253721740} + m_Layer: 5 + m_Name: RawImageFront + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1253721739 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1253721738} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 502808690} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 1, y: 0} + m_AnchorMax: {x: 1, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 100, y: 100} + m_Pivot: {x: 1, y: 0} +--- !u!114 &1253721740 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1253721738} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -98529514, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Texture: {fileID: 8400000, guid: e4a4722373175490a93a7956b23953ec, type: 2} + m_UVRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 +--- !u!222 &1253721741 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1253721738} +--- !u!1 &1299116141 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1299116143} + - component: {fileID: 1299116142} + m_Layer: 0 + m_Name: Light Probe Group + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!220 &1299116142 +LightProbeGroup: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1299116141} + m_Enabled: 1 + m_SourcePositions: + - {x: 1, y: 1, z: 1} + - {x: 1, y: 1, z: -1} + - {x: 1, y: -1, z: 1} + - {x: 1, y: -1, z: -1} + - {x: -1, y: 1, z: 1} + - {x: -1, y: 1, z: -1} + - {x: -1, y: -1, z: 1} + - {x: -1, y: -1, z: -1} +--- !u!4 &1299116143 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1299116141} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1312088809 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1312088811} + - component: {fileID: 1312088810} + m_Layer: 0 + m_Name: ARKitLightManager + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1312088810 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1312088809} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0b95baf0d5f840f4bd22de86c996c08, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!4 &1312088811 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1312088809} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1354140585 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1354140586} + - component: {fileID: 1354140590} + - component: {fileID: 1354140589} + - component: {fileID: 1354140588} + - component: {fileID: 1354140587} + m_Layer: 0 + m_Name: 'BackCamera ' + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1354140586 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1354140585} + m_LocalRotation: {x: -0, y: 1, z: -0, w: 0} + m_LocalPosition: {x: 0, y: 0, z: 4} + m_LocalScale: {x: 10, y: 10, z: 10} + m_Children: [] + m_Father: {fileID: 1374808486} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 180, z: 0} +--- !u!81 &1354140587 +AudioListener: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1354140585} + m_Enabled: 1 +--- !u!92 &1354140588 +Behaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1354140585} + m_Enabled: 1 +--- !u!124 &1354140589 +Behaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1354140585} + m_Enabled: 1 +--- !u!20 &1354140590 +Camera: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1354140585} + m_Enabled: 1 + serializedVersion: 2 + m_ClearFlags: 1 + m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0} + m_NormalizedViewPortRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + near clip plane: 0.3 + far clip plane: 10 + field of view: 17 + orthographic: 0 + orthographic size: 5 + m_Depth: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingPath: -1 + m_TargetTexture: {fileID: 8400000, guid: 8bf5451fa758d4c7cb976751e582bdc5, type: 2} + m_TargetDisplay: 0 + m_TargetEye: 3 + m_HDR: 1 + m_AllowMSAA: 1 + m_ForceIntoRT: 0 + m_OcclusionCulling: 1 + m_StereoConvergence: 10 + m_StereoSeparation: 0.022 + m_StereoMirrorMode: 0 +--- !u!1 &1374808482 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1374808486} + - component: {fileID: 1374808485} + - component: {fileID: 1374808484} + - component: {fileID: 1374808483} + m_Layer: 0 + m_Name: Sphere + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!23 &1374808483 +MeshRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1374808482} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_Materials: + - {fileID: 2100000, guid: df83d7f64be1a4ef7b2c936b6de3c7a0, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 1 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!135 &1374808484 +SphereCollider: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1374808482} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Radius: 0.5 + m_Center: {x: 0, y: 0, z: 0} +--- !u!33 &1374808485 +MeshFilter: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1374808482} + m_Mesh: {fileID: 10207, guid: 0000000000000000e000000000000000, type: 0} +--- !u!4 &1374808486 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1374808482} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 1} + m_LocalScale: {x: 0.1, y: 0.1, z: 0.1} + m_Children: + - {fileID: 2077901980} + - {fileID: 1354140586} + - {fileID: 524142606} + - {fileID: 1705525079} + - {fileID: 441856551} + - {fileID: 2049354840} + m_Father: {fileID: 0} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1480609581 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1480609582} + - component: {fileID: 1480609584} + - component: {fileID: 1480609583} + m_Layer: 5 + m_Name: RawImageBack + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1480609582 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1480609581} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 502808690} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 100, y: 100} + m_Pivot: {x: 0, y: 0} +--- !u!114 &1480609583 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1480609581} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -98529514, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Texture: {fileID: 8400000, guid: 8bf5451fa758d4c7cb976751e582bdc5, type: 2} + m_UVRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 +--- !u!222 &1480609584 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1480609581} +--- !u!1 &1705525078 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1705525079} + - component: {fileID: 1705525083} + - component: {fileID: 1705525082} + - component: {fileID: 1705525081} + - component: {fileID: 1705525080} + m_Layer: 0 + m_Name: 'BottomCamera ' + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1705525079 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1705525078} + m_LocalRotation: {x: -0.7071068, y: -0, z: -0, w: 0.7071068} + m_LocalPosition: {x: 0, y: -4, z: 0} + m_LocalScale: {x: 10, y: 10, z: 10} + m_Children: [] + m_Father: {fileID: 1374808486} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: -90, y: 0, z: 0} +--- !u!81 &1705525080 +AudioListener: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1705525078} + m_Enabled: 1 +--- !u!92 &1705525081 +Behaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1705525078} + m_Enabled: 1 +--- !u!124 &1705525082 +Behaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1705525078} + m_Enabled: 1 +--- !u!20 &1705525083 +Camera: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1705525078} + m_Enabled: 1 + serializedVersion: 2 + m_ClearFlags: 1 + m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0} + m_NormalizedViewPortRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + near clip plane: 0.3 + far clip plane: 10 + field of view: 17 + orthographic: 0 + orthographic size: 5 + m_Depth: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingPath: -1 + m_TargetTexture: {fileID: 8400000, guid: f547bf7e1be7a4cd794d316baa8f21fb, type: 2} + m_TargetDisplay: 0 + m_TargetEye: 3 + m_HDR: 1 + m_AllowMSAA: 1 + m_ForceIntoRT: 0 + m_OcclusionCulling: 1 + m_StereoConvergence: 10 + m_StereoSeparation: 0.022 + m_StereoMirrorMode: 0 +--- !u!1 &1715245184 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1715245185} + - component: {fileID: 1715245187} + - component: {fileID: 1715245186} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1715245185 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1715245184} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1942819082} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0} + m_AnchorMax: {x: 0.5, y: 0} + m_AnchoredPosition: {x: 0, y: -15} + m_SizeDelta: {x: 100, y: 30} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1715245186 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1715245184} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: Top +--- !u!222 &1715245187 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1715245184} +--- !u!1 &1942819081 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1942819082} + - component: {fileID: 1942819084} + - component: {fileID: 1942819083} + m_Layer: 5 + m_Name: RawImageTop + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1942819082 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1942819081} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1715245185} + m_Father: {fileID: 502808690} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 1} + m_AnchorMax: {x: 0.5, y: 1} + m_AnchoredPosition: {x: 0, y: -100} + m_SizeDelta: {x: 100, y: 100} + m_Pivot: {x: 0.5, y: 1} +--- !u!114 &1942819083 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1942819081} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -98529514, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Texture: {fileID: 8400000, guid: 4bf99f420eecb4d14841917a1a5830fe, type: 2} + m_UVRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 +--- !u!222 &1942819084 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1942819081} +--- !u!1 &2049354839 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 2049354840} + - component: {fileID: 2049354844} + - component: {fileID: 2049354843} + - component: {fileID: 2049354842} + - component: {fileID: 2049354841} + m_Layer: 0 + m_Name: RightCamera + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2049354840 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2049354839} + m_LocalRotation: {x: -0, y: -0.7071068, z: -0, w: 0.7071068} + m_LocalPosition: {x: 4, y: 0, z: 0} + m_LocalScale: {x: 10, y: 10, z: 10} + m_Children: [] + m_Father: {fileID: 1374808486} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: -90, z: 0} +--- !u!81 &2049354841 +AudioListener: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2049354839} + m_Enabled: 1 +--- !u!92 &2049354842 +Behaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2049354839} + m_Enabled: 1 +--- !u!124 &2049354843 +Behaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2049354839} + m_Enabled: 1 +--- !u!20 &2049354844 +Camera: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2049354839} + m_Enabled: 1 + serializedVersion: 2 + m_ClearFlags: 1 + m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0} + m_NormalizedViewPortRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + near clip plane: 0.3 + far clip plane: 10 + field of view: 17 + orthographic: 0 + orthographic size: 5 + m_Depth: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingPath: -1 + m_TargetTexture: {fileID: 8400000, guid: a9492362d6426443583dcad13f6515da, type: 2} + m_TargetDisplay: 0 + m_TargetEye: 3 + m_HDR: 1 + m_AllowMSAA: 1 + m_ForceIntoRT: 0 + m_OcclusionCulling: 1 + m_StereoConvergence: 10 + m_StereoSeparation: 0.022 + m_StereoMirrorMode: 0 +--- !u!1 &2077901979 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 2077901980} + - component: {fileID: 2077901984} + - component: {fileID: 2077901983} + - component: {fileID: 2077901982} + - component: {fileID: 2077901981} + m_Layer: 0 + m_Name: FrontCamera + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2077901980 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2077901979} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: -4} + m_LocalScale: {x: 10, y: 10, z: 10} + m_Children: [] + m_Father: {fileID: 1374808486} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!81 &2077901981 +AudioListener: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2077901979} + m_Enabled: 1 +--- !u!92 &2077901982 +Behaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2077901979} + m_Enabled: 1 +--- !u!124 &2077901983 +Behaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2077901979} + m_Enabled: 1 +--- !u!20 &2077901984 +Camera: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2077901979} + m_Enabled: 1 + serializedVersion: 2 + m_ClearFlags: 1 + m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0} + m_NormalizedViewPortRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + near clip plane: 0.3 + far clip plane: 10 + field of view: 17 + orthographic: 0 + orthographic size: 5 + m_Depth: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingPath: -1 + m_TargetTexture: {fileID: 8400000, guid: e4a4722373175490a93a7956b23953ec, type: 2} + m_TargetDisplay: 0 + m_TargetEye: 3 + m_HDR: 1 + m_AllowMSAA: 1 + m_ForceIntoRT: 0 + m_OcclusionCulling: 1 + m_StereoConvergence: 10 + m_StereoSeparation: 0.022 + m_StereoMirrorMode: 0 +--- !u!1 &2079179063 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 2079179064} + - component: {fileID: 2079179066} + - component: {fileID: 2079179065} + m_Layer: 5 + m_Name: RawImageRight + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2079179064 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2079179063} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 502808690} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 1, y: 0.5} + m_AnchorMax: {x: 1, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 100, y: 100} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &2079179065 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2079179063} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -98529514, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Texture: {fileID: 8400000, guid: a9492362d6426443583dcad13f6515da, type: 2} + m_UVRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 +--- !u!222 &2079179066 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2079179063} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/FaceDirectionalLightEstimate.unity.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/FaceDirectionalLightEstimate.unity.meta new file mode 100644 index 000000000..27bd5e50f --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/FaceDirectionalLightEstimate.unity.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 360fd35caee4f4e069485021a27c0b06 +timeCreated: 1507762821 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/FaceMeshScene.unity b/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/FaceMeshScene.unity new file mode 100644 index 000000000..1b7dac0c6 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/FaceMeshScene.unity @@ -0,0 +1,441 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!29 &1 +OcclusionCullingSettings: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_OcclusionBakeSettings: + smallestOccluder: 5 + smallestHole: 0.25 + backfaceThreshold: 100 + m_SceneGUID: 00000000000000000000000000000000 + m_OcclusionCullingData: {fileID: 0} +--- !u!104 &2 +RenderSettings: + m_ObjectHideFlags: 0 + serializedVersion: 8 + m_Fog: 0 + m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_FogMode: 3 + m_FogDensity: 0.01 + m_LinearFogStart: 0 + m_LinearFogEnd: 300 + m_AmbientSkyColor: {r: 0.2, g: 0.2, b: 0.2, a: 0} + m_AmbientEquatorColor: {r: 0.098908, g: 0.100485, b: 0.119403, a: 1} + m_AmbientGroundColor: {r: 0.098908, g: 0.100485, b: 0.119403, a: 1} + m_AmbientIntensity: 1 + m_AmbientMode: 3 + m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} + m_SkyboxMaterial: {fileID: 0} + m_HaloStrength: 0.5 + m_FlareStrength: 1 + m_FlareFadeSpeed: 3 + m_HaloTexture: {fileID: 0} + m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0} + m_DefaultReflectionMode: 0 + m_DefaultReflectionResolution: 128 + m_ReflectionBounces: 1 + m_ReflectionIntensity: 1 + m_CustomReflection: {fileID: 0} + m_Sun: {fileID: 0} + m_IndirectSpecularColor: {r: 0, g: 0, b: 0, a: 1} +--- !u!157 &4 +LightmapSettings: + m_ObjectHideFlags: 0 + serializedVersion: 9 + m_GIWorkflowMode: 1 + m_GISettings: + serializedVersion: 2 + m_BounceScale: 1 + m_IndirectOutputScale: 1 + m_AlbedoBoost: 1 + m_TemporalCoherenceThreshold: 1 + m_EnvironmentLightingMode: 0 + m_EnableBakedLightmaps: 1 + m_EnableRealtimeLightmaps: 0 + m_LightmapEditorSettings: + serializedVersion: 8 + m_Resolution: 1 + m_BakeResolution: 50 + m_TextureWidth: 1024 + m_TextureHeight: 1024 + m_AO: 1 + m_AOMaxDistance: 1 + m_CompAOExponent: 1 + m_CompAOExponentDirect: 0 + m_Padding: 2 + m_LightmapParameters: {fileID: 0} + m_LightmapsBakeMode: 1 + m_TextureCompression: 0 + m_FinalGather: 0 + m_FinalGatherFiltering: 1 + m_FinalGatherRayCount: 256 + m_ReflectionCompression: 2 + m_MixedBakeMode: 1 + m_BakeBackend: 0 + m_PVRSampling: 1 + m_PVRDirectSampleCount: 32 + m_PVRSampleCount: 500 + m_PVRBounces: 2 + m_PVRFiltering: 0 + m_PVRFilteringMode: 1 + m_PVRCulling: 1 + m_PVRFilteringGaussRadiusDirect: 1 + m_PVRFilteringGaussRadiusIndirect: 5 + m_PVRFilteringGaussRadiusAO: 2 + m_PVRFilteringAtrousColorSigma: 1 + m_PVRFilteringAtrousNormalSigma: 1 + m_PVRFilteringAtrousPositionSigma: 1 + m_LightingDataAsset: {fileID: 0} + m_ShadowMaskMode: 2 +--- !u!196 &5 +NavMeshSettings: + serializedVersion: 2 + m_ObjectHideFlags: 0 + m_BuildSettings: + serializedVersion: 2 + agentTypeID: 0 + agentRadius: 0.4 + agentHeight: 1.8 + agentSlope: 45 + agentClimb: 0.9 + ledgeDropHeight: 0 + maxJumpAcrossDistance: 0 + minRegionArea: 2 + manualCellSize: 0 + cellSize: 0.13333333 + manualTileSize: 0 + tileSize: 256 + accuratePlacement: 0 + m_NavMeshData: {fileID: 0} +--- !u!1 &7 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 9} + - component: {fileID: 10} + - component: {fileID: 12} + - component: {fileID: 13} + - component: {fileID: 11} + - component: {fileID: 8} + - component: {fileID: 14} + m_Layer: 0 + m_Name: Main Camera + m_TagString: MainCamera + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &8 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b58ecea7a196242dd879c814ac05084c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_ClearMaterial: {fileID: 2100000, guid: f1d9352050a75486f878ab19fa578f16, type: 2} +--- !u!4 &9 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 229804521} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!20 &10 +Camera: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 + serializedVersion: 2 + m_ClearFlags: 3 + m_BackGroundColor: {r: 0.19788063, g: 0.2953552, b: 0.44852942, a: 0.019608} + m_NormalizedViewPortRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + near clip plane: 0.1 + far clip plane: 30 + field of view: 60 + orthographic: 0 + orthographic size: 100 + m_Depth: -1 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingPath: -1 + m_TargetTexture: {fileID: 0} + m_TargetDisplay: 0 + m_TargetEye: 3 + m_HDR: 0 + m_AllowMSAA: 1 + m_ForceIntoRT: 0 + m_OcclusionCulling: 1 + m_StereoConvergence: 10 + m_StereoSeparation: 0.022 + m_StereoMirrorMode: 0 +--- !u!81 &11 +AudioListener: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 +--- !u!92 &12 +Behaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 +--- !u!124 &13 +Behaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 +--- !u!114 &14 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: ce437cef046e841aabd6070890e79d41, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &229804520 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 229804521} + m_Layer: 0 + m_Name: CameraParent + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &229804521 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 229804520} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 9} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &392764811 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 392764813} + - component: {fileID: 392764812} + m_Layer: 0 + m_Name: ARCameraTracker + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &392764812 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 392764811} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 961e52c3648614224b2a9dffa3055c07, type: 3} + m_Name: + m_EditorClassIdentifier: + trackedCamera: {fileID: 10} +--- !u!4 &392764813 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 392764811} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1121666029 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1121666033} + - component: {fileID: 1121666032} + - component: {fileID: 1121666031} + - component: {fileID: 1121666030} + m_Layer: 0 + m_Name: ARFaceMeshManager + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!33 &1121666030 +MeshFilter: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1121666029} + m_Mesh: {fileID: 0} +--- !u!23 &1121666031 +MeshRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1121666029} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_Materials: + - {fileID: 10303, guid: 0000000000000000f000000000000000, type: 0} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!114 &1121666032 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1121666029} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: baec72e2006ae48df9dcbf0eb13377f9, type: 3} + m_Name: + m_EditorClassIdentifier: + meshFilter: {fileID: 1121666030} +--- !u!4 &1121666033 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1121666029} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: -180, z: 0} +--- !u!1 &1176133656 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1176133658} + - component: {fileID: 1176133657} + m_Layer: 0 + m_Name: Directional light + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!108 &1176133657 +Light: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1176133656} + m_Enabled: 1 + serializedVersion: 8 + m_Type: 1 + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Intensity: 1 + m_Range: 10 + m_SpotAngle: 30 + m_CookieSize: 10 + m_Shadows: + m_Type: 0 + m_Resolution: -1 + m_CustomResolution: -1 + m_Strength: 1 + m_Bias: 0.05 + m_NormalBias: 0.4 + m_NearPlane: 0.2 + m_Cookie: {fileID: 0} + m_DrawHalo: 0 + m_Flare: {fileID: 0} + m_RenderMode: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_Lightmapping: 4 + m_AreaSize: {x: 1, y: 1} + m_BounceIntensity: 1 + m_ColorTemperature: 6570 + m_UseColorTemperature: 0 + m_ShadowRadius: 0 + m_ShadowAngle: 0 +--- !u!4 &1176133658 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1176133656} + m_LocalRotation: {x: 0.40821788, y: -0.23456968, z: 0.10938163, w: 0.8754261} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 50, y: -30, z: 0} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/FaceMeshScene.unity.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/FaceMeshScene.unity.meta new file mode 100644 index 000000000..88b809267 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/FaceMeshScene.unity.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e95b28d2a95b34b868e407dc86a3e6d2 +timeCreated: 1505775273 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/SlothCharacter.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/SlothCharacter.meta new file mode 100644 index 000000000..b4dfba9c3 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/SlothCharacter.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 9e6346a0e785540a49eaae82317b2dfd +folderAsset: yes +timeCreated: 1510601314 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/SlothCharacter/Materials.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/SlothCharacter/Materials.meta new file mode 100644 index 000000000..f1eebb5bb --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/SlothCharacter/Materials.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 82967c9358aa34ec6a0f6e29750c642a +folderAsset: yes +timeCreated: 1511933011 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/SlothCharacter/Materials/sloth_all_1001_AlbedoTransparency.mat b/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/SlothCharacter/Materials/sloth_all_1001_AlbedoTransparency.mat new file mode 100644 index 000000000..65fa59c93 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/SlothCharacter/Materials/sloth_all_1001_AlbedoTransparency.mat @@ -0,0 +1,76 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_Name: sloth_all_1001_AlbedoTransparency + m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0} + m_ShaderKeywords: _METALLICGLOSSMAP _NORMALMAP + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 27a1657365e7440158436bc8e151d931, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailAlbedoMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailMask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailNormalMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: b0a9b07b207264316bf3be95cdcf6a08, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 2800000, guid: 433a9cacc6e034c25a6a14eb6af1b09c, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: + - _BumpScale: 1 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _UVSec: 0 + - _ZWrite: 1 + m_Colors: + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/SlothCharacter/Materials/sloth_all_1001_AlbedoTransparency.mat.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/SlothCharacter/Materials/sloth_all_1001_AlbedoTransparency.mat.meta new file mode 100644 index 000000000..7fd082e9b --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/SlothCharacter/Materials/sloth_all_1001_AlbedoTransparency.mat.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 0eafc0c8e166e4cd2b0f64b71fda0c45 +timeCreated: 1511933011 +licenseType: Pro +NativeFormatImporter: + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/SlothCharacter/Textures.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/SlothCharacter/Textures.meta new file mode 100644 index 000000000..e4e76a95f --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/SlothCharacter/Textures.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: a488c610893e64a3289258a99af35e31 +folderAsset: yes +timeCreated: 1510204871 +licenseType: Free +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/SlothCharacter/Textures/sloth_all_1001_AlbedoTransparency.png b/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/SlothCharacter/Textures/sloth_all_1001_AlbedoTransparency.png new file mode 100644 index 000000000..48c8a492d Binary files /dev/null and b/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/SlothCharacter/Textures/sloth_all_1001_AlbedoTransparency.png differ diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/SlothCharacter/Textures/sloth_all_1001_AlbedoTransparency.png.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/SlothCharacter/Textures/sloth_all_1001_AlbedoTransparency.png.meta new file mode 100644 index 000000000..32ba23a13 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/SlothCharacter/Textures/sloth_all_1001_AlbedoTransparency.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: b0a9b07b207264316bf3be95cdcf6a08 +timeCreated: 1510333546 +licenseType: Free +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 4096 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 4096 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/SlothCharacter/Textures/sloth_all_1001_MetallicSmoothness.png b/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/SlothCharacter/Textures/sloth_all_1001_MetallicSmoothness.png new file mode 100644 index 000000000..e3d134474 Binary files /dev/null and b/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/SlothCharacter/Textures/sloth_all_1001_MetallicSmoothness.png differ diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/SlothCharacter/Textures/sloth_all_1001_MetallicSmoothness.png.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/SlothCharacter/Textures/sloth_all_1001_MetallicSmoothness.png.meta new file mode 100644 index 000000000..b757a69ee --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/SlothCharacter/Textures/sloth_all_1001_MetallicSmoothness.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 433a9cacc6e034c25a6a14eb6af1b09c +timeCreated: 1510333569 +licenseType: Free +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 4096 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 4096 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/SlothCharacter/Textures/sloth_all_1001_Normal.png b/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/SlothCharacter/Textures/sloth_all_1001_Normal.png new file mode 100644 index 000000000..75d0adc99 Binary files /dev/null and b/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/SlothCharacter/Textures/sloth_all_1001_Normal.png differ diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/SlothCharacter/Textures/sloth_all_1001_Normal.png.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/SlothCharacter/Textures/sloth_all_1001_Normal.png.meta new file mode 100644 index 000000000..c01220cfd --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/SlothCharacter/Textures/sloth_all_1001_Normal.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 27a1657365e7440158436bc8e151d931 +timeCreated: 1510333583 +licenseType: Free +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 1 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 4096 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 4096 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/SlothCharacter/sloth_head_blendshapes5.fbx b/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/SlothCharacter/sloth_head_blendshapes5.fbx new file mode 100644 index 000000000..d3342e3b0 Binary files /dev/null and b/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/SlothCharacter/sloth_head_blendshapes5.fbx differ diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/SlothCharacter/sloth_head_blendshapes5.fbx.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/SlothCharacter/sloth_head_blendshapes5.fbx.meta new file mode 100644 index 000000000..cee834eb4 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/SlothCharacter/sloth_head_blendshapes5.fbx.meta @@ -0,0 +1,86 @@ +fileFormatVersion: 2 +guid: 63ae12abc50414d5c882dbe18f6a820b +timeCreated: 1511933011 +licenseType: Pro +ModelImporter: + serializedVersion: 19 + fileIDToRecycleName: + 100000: blendshapes3 + 100002: Sloth_Head2 + 100004: //RootNode + 400000: blendshapes3 + 400002: Sloth_Head2 + 400004: //RootNode + 4300000: Sloth_Head2 + 9500000: //RootNode + 13700000: Sloth_Head2 + materials: + importMaterials: 1 + materialName: 0 + materialSearch: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + animationCompression: 1 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + clipAnimations: [] + isReadable: 1 + meshes: + lODScreenPercentages: [] + globalScale: 10 + meshCompression: 0 + addColliders: 0 + importBlendShapes: 1 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + optimizeMeshForGPU: 1 + keepQuads: 0 + weldVertices: 1 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVPackMargin: 4 + useFileScale: 1 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + importAnimation: 1 + copyAvatar: 0 + humanDescription: + serializedVersion: 2 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + rootMotionBoneName: + rootMotionBoneRotation: {x: 0, y: 0, z: 0, w: 1} + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + animationType: 2 + humanoidOversampling: 1 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/UnityARFaceAnchorManager.cs b/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/UnityARFaceAnchorManager.cs new file mode 100644 index 000000000..7f6668193 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/UnityARFaceAnchorManager.cs @@ -0,0 +1,71 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEngine.XR.iOS; + +public class UnityARFaceAnchorManager : MonoBehaviour { + + [SerializeField] + private GameObject anchorPrefab; + + private UnityARSessionNativeInterface m_session; + + // Use this for initialization + void Start () { + m_session = UnityARSessionNativeInterface.GetARSessionNativeInterface(); + + Application.targetFrameRate = 60; + ARKitFaceTrackingConfiguration config = new ARKitFaceTrackingConfiguration(); + config.alignment = UnityARAlignment.UnityARAlignmentGravity; + config.enableLightEstimation = true; + + if (config.IsSupported ) { + + m_session.RunWithConfig (config); + + UnityARSessionNativeInterface.ARFaceAnchorAddedEvent += FaceAdded; + UnityARSessionNativeInterface.ARFaceAnchorUpdatedEvent += FaceUpdated; + UnityARSessionNativeInterface.ARFaceAnchorRemovedEvent += FaceRemoved; + + } + + } + + void FaceAdded (ARFaceAnchor anchorData) + { + anchorPrefab.transform.position = UnityARMatrixOps.GetPosition (anchorData.transform); + anchorPrefab.transform.rotation = UnityARMatrixOps.GetRotation (anchorData.transform); + anchorPrefab.SetActive (true); + } + + void FaceUpdated (ARFaceAnchor anchorData) + { + if (anchorPrefab.activeSelf != anchorData.isTracked) + { + anchorPrefab.SetActive (anchorData.isTracked); + } + + if (anchorData.isTracked) + { + anchorPrefab.transform.position = UnityARMatrixOps.GetPosition (anchorData.transform); + anchorPrefab.transform.rotation = UnityARMatrixOps.GetRotation (anchorData.transform); + } + } + + void FaceRemoved (ARFaceAnchor anchorData) + { + anchorPrefab.SetActive (false); + } + + + + // Update is called once per frame + void Update () { + + } + + void OnDestroy() + { + + } +} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/UnityARFaceAnchorManager.cs.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/UnityARFaceAnchorManager.cs.meta new file mode 100644 index 000000000..f6bdf03bd --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/UnityARFaceAnchorManager.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: fbb9909788bbd469bbce3102485cc0d9 +timeCreated: 1505951702 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/UnityARFaceMeshManager.cs b/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/UnityARFaceMeshManager.cs new file mode 100644 index 000000000..6de01ab71 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/UnityARFaceMeshManager.cs @@ -0,0 +1,84 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEngine.XR.iOS; + +public class UnityARFaceMeshManager : MonoBehaviour { + + [SerializeField] + private MeshFilter meshFilter; + + private UnityARSessionNativeInterface m_session; + private Mesh faceMesh; + + // Use this for initialization + void Start () { + m_session = UnityARSessionNativeInterface.GetARSessionNativeInterface(); + + Application.targetFrameRate = 60; + ARKitFaceTrackingConfiguration config = new ARKitFaceTrackingConfiguration(); + config.alignment = UnityARAlignment.UnityARAlignmentGravity; + config.enableLightEstimation = true; + + if (config.IsSupported && meshFilter != null) { + + m_session.RunWithConfig (config); + + UnityARSessionNativeInterface.ARFaceAnchorAddedEvent += FaceAdded; + UnityARSessionNativeInterface.ARFaceAnchorUpdatedEvent += FaceUpdated; + UnityARSessionNativeInterface.ARFaceAnchorRemovedEvent += FaceRemoved; + + } + + + } + + void FaceAdded (ARFaceAnchor anchorData) + { + gameObject.transform.localPosition = UnityARMatrixOps.GetPosition (anchorData.transform); + gameObject.transform.localRotation = UnityARMatrixOps.GetRotation (anchorData.transform); + + + faceMesh = new Mesh (); + faceMesh.vertices = anchorData.faceGeometry.vertices; + faceMesh.uv = anchorData.faceGeometry.textureCoordinates; + faceMesh.triangles = anchorData.faceGeometry.triangleIndices; + + // Assign the mesh object and update it. + faceMesh.RecalculateBounds(); + faceMesh.RecalculateNormals(); + meshFilter.mesh = faceMesh; + } + + void FaceUpdated (ARFaceAnchor anchorData) + { + if (faceMesh != null) { + gameObject.transform.localPosition = UnityARMatrixOps.GetPosition (anchorData.transform); + gameObject.transform.localRotation = UnityARMatrixOps.GetRotation (anchorData.transform); + faceMesh.vertices = anchorData.faceGeometry.vertices; + faceMesh.uv = anchorData.faceGeometry.textureCoordinates; + faceMesh.triangles = anchorData.faceGeometry.triangleIndices; + faceMesh.RecalculateBounds(); + faceMesh.RecalculateNormals(); + } + + } + + void FaceRemoved (ARFaceAnchor anchorData) + { + meshFilter.mesh = null; + faceMesh = null; + } + + + + // Update is called once per frame + void Update () { + + } + + void OnDestroy() + { + + } +} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/UnityARFaceMeshManager.cs.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/UnityARFaceMeshManager.cs.meta new file mode 100644 index 000000000..fba6cd1db --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/FaceTracking/UnityARFaceMeshManager.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: baec72e2006ae48df9dcbf0eb13377f9 +timeCreated: 1505951702 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/UnityARBallz.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityARBallz.meta new file mode 100644 index 000000000..d733f8db2 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityARBallz.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 2082e391775a848b3922eee55f9e6de2 +folderAsset: yes +timeCreated: 1503604404 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/UnityARBallz/BallMaker.cs b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityARBallz/BallMaker.cs new file mode 100644 index 000000000..3cae74638 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityARBallz/BallMaker.cs @@ -0,0 +1,82 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEngine.XR.iOS; + +public class BallMaker : MonoBehaviour { + + public GameObject ballPrefab; + public float createHeight; + public float maxRayDistance = 30.0f; + public LayerMask collisionLayer = 1 << 10; //ARKitPlane layer + private MaterialPropertyBlock props; + + // Use this for initialization + void Start () { + props = new MaterialPropertyBlock (); + + } + + void CreateBall(Vector3 atPosition) + { + GameObject ballGO = Instantiate (ballPrefab, atPosition, Quaternion.identity); + + + float r = Random.Range(0.0f, 1.0f); + float g = Random.Range(0.0f, 1.0f); + float b = Random.Range(0.0f, 1.0f); + + props.SetColor("_InstanceColor", new Color(r, g, b)); + + MeshRenderer renderer = ballGO.GetComponent(); + renderer.SetPropertyBlock(props); + + } + + // Update is called once per frame + void Update () { + #if UNITY_EDITOR //we will only use this script on the editor side, though there is nothing that would prevent it from working on device + if (Input.GetMouseButtonDown (0)) + { + Ray ray = Camera.main.ScreenPointToRay (Input.mousePosition); + RaycastHit hit; + + //we'll try to hit one of the plane collider gameobjects that were generated by the plugin + //effectively similar to calling HitTest with ARHitTestResultType.ARHitTestResultTypeExistingPlaneUsingExtent + if (Physics.Raycast (ray, out hit, maxRayDistance, collisionLayer)) + { + CreateBall (new Vector3 (hit.point.x, hit.point.y + createHeight, hit.point.z)); + + //we're going to get the position from the contact point + Debug.Log (string.Format ("x:{0:0.######} y:{1:0.######} z:{2:0.######}", hit.point.x, hit.point.y, hit.point.z)); + } + } + #else + if (Input.touchCount > 0 ) + { + var touch = Input.GetTouch(0); + if (touch.phase == TouchPhase.Began) + { + var screenPosition = Camera.main.ScreenToViewportPoint(touch.position); + ARPoint point = new ARPoint { + x = screenPosition.x, + y = screenPosition.y + }; + + List hitResults = UnityARSessionNativeInterface.GetARSessionNativeInterface ().HitTest (point, + ARHitTestResultType.ARHitTestResultTypeExistingPlaneUsingExtent); + if (hitResults.Count > 0) { + foreach (var hitResult in hitResults) { + Vector3 position = UnityARMatrixOps.GetPosition (hitResult.worldTransform); + CreateBall (new Vector3 (position.x, position.y + createHeight, position.z)); + break; + } + } + + } + } + #endif + + } + +} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/UnityARBallz/BallMaker.cs.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityARBallz/BallMaker.cs.meta new file mode 100644 index 000000000..7d2d9ab7d --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityARBallz/BallMaker.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: e8d14a82591ec4fcabb481f075ffeb53 +timeCreated: 1496972819 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/UnityARBallz/BallMover.cs b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityARBallz/BallMover.cs new file mode 100644 index 000000000..894b99163 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityARBallz/BallMover.cs @@ -0,0 +1,99 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEngine.XR.iOS; + +public class BallMover : MonoBehaviour { + + public GameObject collBallPrefab; + public float maxRayDistance = 30.0f; + public LayerMask collisionLayer = 1 << 10; //ARKitPlane layer + private GameObject collBallGO; + + // Use this for initialization + void Start () { + collBallGO = null; + } + + void CreateMoveBall( Vector3 explodePosition) + { + collBallGO = Instantiate (collBallPrefab, explodePosition, Quaternion.identity); + } + + // Update is called once per frame + void Update () { + #if UNITY_EDITOR //we will only use this script on the editor side, though there is nothing that would prevent it from working on device + if (Input.GetMouseButton (0)) + { + Ray ray = Camera.main.ScreenPointToRay (Input.mousePosition); + RaycastHit hit; + + //we'll try to hit one of the plane collider gameobjects that were generated by the plugin + //effectively similar to calling HitTest with ARHitTestResultType.ARHitTestResultTypeExistingPlaneUsingExtent + if (Physics.Raycast (ray, out hit, maxRayDistance, collisionLayer)) + { + //we're going to get the position from the contact point + Debug.Log (string.Format ("x:{0:0.######} y:{1:0.######} z:{2:0.######}", hit.point.x, hit.point.y, hit.point.z)); + + if (collBallGO == null) + { + CreateMoveBall (hit.point); + } + else + { + collBallGO.transform.position = Vector3.MoveTowards (collBallGO.transform.position, hit.point, 0.05f); + } + } + } + else + { + //mouse button no longer down + Destroy(collBallGO); + collBallGO = null; + } + #else + if (Input.touchCount > 0 ) + { + var touch = Input.GetTouch(0); + if (touch.phase == TouchPhase.Began) { + var screenPosition = Camera.main.ScreenToViewportPoint (touch.position); + ARPoint point = new ARPoint { + x = screenPosition.x, + y = screenPosition.y + }; + + List hitResults = UnityARSessionNativeInterface.GetARSessionNativeInterface ().HitTest (point, + ARHitTestResultType.ARHitTestResultTypeExistingPlaneUsingExtent); + if (hitResults.Count > 0) { + foreach (var hitResult in hitResults) { + Vector3 position = UnityARMatrixOps.GetPosition (hitResult.worldTransform); + CreateMoveBall (position); + break; + } + } + + } else if (touch.phase == TouchPhase.Moved && collBallGO != null) { + var screenPosition = Camera.main.ScreenToViewportPoint (touch.position); + ARPoint point = new ARPoint { + x = screenPosition.x, + y = screenPosition.y + }; + + List hitResults = UnityARSessionNativeInterface.GetARSessionNativeInterface ().HitTest (point, + ARHitTestResultType.ARHitTestResultTypeExistingPlaneUsingExtent); + if (hitResults.Count > 0) { + foreach (var hitResult in hitResults) { + Vector3 position = UnityARMatrixOps.GetPosition (hitResult.worldTransform); + collBallGO.transform.position = Vector3.MoveTowards (collBallGO.transform.position, position, 0.05f); + break; + } + } + } else if (touch.phase != TouchPhase.Stationary) { //ended or cancelled + Destroy(collBallGO); + collBallGO = null; + + } + } + #endif + } +} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/UnityARBallz/BallMover.cs.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityARBallz/BallMover.cs.meta new file mode 100644 index 000000000..96aed0368 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityARBallz/BallMover.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: d7f6cc13442cf445295719af5da92de8 +timeCreated: 1496974880 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/UnityARBallz/Ballz.cs b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityARBallz/Ballz.cs new file mode 100644 index 000000000..8e4c237bd --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityARBallz/Ballz.cs @@ -0,0 +1,23 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + +public class Ballz : MonoBehaviour { + + public float yDistanceThreshold; + + private float startingY; + + // Use this for initialization + void Start () { + startingY = transform.position.y; + } + + // Update is called once per frame + void Update () { + + if (Mathf.Abs (startingY - transform.position.y) > yDistanceThreshold) { + Destroy (gameObject); + } + } +} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/UnityARBallz/Ballz.cs.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityARBallz/Ballz.cs.meta new file mode 100644 index 000000000..134078c74 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityARBallz/Ballz.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 2a2b4127da4fa4302b8db592636b3d55 +timeCreated: 1496967378 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/UnityARBallz/ModeSwitcher.cs b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityARBallz/ModeSwitcher.cs new file mode 100644 index 000000000..7e0499b0c --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityARBallz/ModeSwitcher.cs @@ -0,0 +1,39 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + +public class ModeSwitcher : MonoBehaviour { + + public GameObject ballMake; + public GameObject ballMove; + + private int appMode = 0; + // Use this for initialization + void Start () { + + } + + // Update is called once per frame + void Update () { + + } + + void EnableBallCreation(bool enable) + { + ballMake.SetActive (enable); + ballMove.SetActive (!enable); + + } + + void OnGUI() + { + string modeString = appMode == 0 ? "MAKE" : "BREAK"; + if (GUI.Button(new Rect(Screen.width -150.0f, 0.0f, 150.0f, 100.0f), modeString)) + { + appMode = (appMode + 1) % 2; + EnableBallCreation (appMode == 0); + } + + } + +} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/UnityARBallz/ModeSwitcher.cs.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityARBallz/ModeSwitcher.cs.meta new file mode 100644 index 000000000..6cefde894 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityARBallz/ModeSwitcher.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: b892a4b0455dd4e378c69c09e1d48df4 +timeCreated: 1496987845 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/UnityARBallz/UnityARBallz.unity b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityARBallz/UnityARBallz.unity new file mode 100644 index 000000000..646f12814 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityARBallz/UnityARBallz.unity @@ -0,0 +1,539 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!29 &1 +OcclusionCullingSettings: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_OcclusionBakeSettings: + smallestOccluder: 5 + smallestHole: 0.25 + backfaceThreshold: 100 + m_SceneGUID: 00000000000000000000000000000000 + m_OcclusionCullingData: {fileID: 0} +--- !u!104 &2 +RenderSettings: + m_ObjectHideFlags: 0 + serializedVersion: 8 + m_Fog: 0 + m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_FogMode: 3 + m_FogDensity: 0.01 + m_LinearFogStart: 0 + m_LinearFogEnd: 300 + m_AmbientSkyColor: {r: 0.2, g: 0.2, b: 0.2, a: 0} + m_AmbientEquatorColor: {r: 0.098908, g: 0.100485, b: 0.119403, a: 1} + m_AmbientGroundColor: {r: 0.098908, g: 0.100485, b: 0.119403, a: 1} + m_AmbientIntensity: 1 + m_AmbientMode: 3 + m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} + m_SkyboxMaterial: {fileID: 0} + m_HaloStrength: 0.5 + m_FlareStrength: 1 + m_FlareFadeSpeed: 3 + m_HaloTexture: {fileID: 0} + m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0} + m_DefaultReflectionMode: 0 + m_DefaultReflectionResolution: 128 + m_ReflectionBounces: 1 + m_ReflectionIntensity: 1 + m_CustomReflection: {fileID: 0} + m_Sun: {fileID: 0} + m_IndirectSpecularColor: {r: 0, g: 0, b: 0, a: 1} +--- !u!157 &4 +LightmapSettings: + m_ObjectHideFlags: 0 + serializedVersion: 9 + m_GIWorkflowMode: 1 + m_GISettings: + serializedVersion: 2 + m_BounceScale: 1 + m_IndirectOutputScale: 1 + m_AlbedoBoost: 1 + m_TemporalCoherenceThreshold: 1 + m_EnvironmentLightingMode: 0 + m_EnableBakedLightmaps: 1 + m_EnableRealtimeLightmaps: 0 + m_LightmapEditorSettings: + serializedVersion: 8 + m_Resolution: 1 + m_BakeResolution: 50 + m_TextureWidth: 1024 + m_TextureHeight: 1024 + m_AO: 1 + m_AOMaxDistance: 1 + m_CompAOExponent: 1 + m_CompAOExponentDirect: 0 + m_Padding: 2 + m_LightmapParameters: {fileID: 0} + m_LightmapsBakeMode: 1 + m_TextureCompression: 0 + m_FinalGather: 0 + m_FinalGatherFiltering: 1 + m_FinalGatherRayCount: 256 + m_ReflectionCompression: 2 + m_MixedBakeMode: 1 + m_BakeBackend: 0 + m_PVRSampling: 1 + m_PVRDirectSampleCount: 32 + m_PVRSampleCount: 500 + m_PVRBounces: 2 + m_PVRFiltering: 0 + m_PVRFilteringMode: 1 + m_PVRCulling: 1 + m_PVRFilteringGaussRadiusDirect: 1 + m_PVRFilteringGaussRadiusIndirect: 5 + m_PVRFilteringGaussRadiusAO: 2 + m_PVRFilteringAtrousColorSigma: 1 + m_PVRFilteringAtrousNormalSigma: 1 + m_PVRFilteringAtrousPositionSigma: 1 + m_LightingDataAsset: {fileID: 0} + m_ShadowMaskMode: 2 +--- !u!196 &5 +NavMeshSettings: + serializedVersion: 2 + m_ObjectHideFlags: 0 + m_BuildSettings: + serializedVersion: 2 + agentTypeID: 0 + agentRadius: 0.4 + agentHeight: 1.8 + agentSlope: 45 + agentClimb: 0.9 + ledgeDropHeight: 0 + maxJumpAcrossDistance: 0 + minRegionArea: 2 + manualCellSize: 0 + cellSize: 0.13333333 + manualTileSize: 0 + tileSize: 256 + accuratePlacement: 0 + m_NavMeshData: {fileID: 0} +--- !u!1 &7 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 9} + - component: {fileID: 10} + - component: {fileID: 12} + - component: {fileID: 13} + - component: {fileID: 11} + - component: {fileID: 8} + - component: {fileID: 14} + m_Layer: 0 + m_Name: Main Camera + m_TagString: MainCamera + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &8 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b58ecea7a196242dd879c814ac05084c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_ClearMaterial: {fileID: 2100000, guid: f1d9352050a75486f878ab19fa578f16, type: 2} +--- !u!4 &9 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 229804521} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!20 &10 +Camera: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 + serializedVersion: 2 + m_ClearFlags: 3 + m_BackGroundColor: {r: 0.19788063, g: 0.2953552, b: 0.44852942, a: 0.019608} + m_NormalizedViewPortRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + near clip plane: 0.1 + far clip plane: 30 + field of view: 60 + orthographic: 0 + orthographic size: 100 + m_Depth: -1 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingPath: -1 + m_TargetTexture: {fileID: 0} + m_TargetDisplay: 0 + m_TargetEye: 3 + m_HDR: 0 + m_AllowMSAA: 1 + m_ForceIntoRT: 0 + m_OcclusionCulling: 1 + m_StereoConvergence: 10 + m_StereoSeparation: 0.022 + m_StereoMirrorMode: 0 +--- !u!81 &11 +AudioListener: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 +--- !u!92 &12 +Behaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 +--- !u!124 &13 +Behaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 +--- !u!114 &14 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: ce437cef046e841aabd6070890e79d41, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &16 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 20} + - component: {fileID: 29} + - component: {fileID: 17} + m_Layer: 0 + m_Name: Directional light + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &17 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 16} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5587c957048494a2f96db36e0995449e, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!4 &20 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 16} + m_LocalRotation: {x: -0.31668198, y: -0.33227497, z: 0.119525984, w: -0.8803519} + m_LocalPosition: {x: -2.359002, y: 2.21, z: -3.580904} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!108 &29 +Light: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 16} + m_Enabled: 1 + serializedVersion: 8 + m_Type: 1 + m_Color: {r: 1, g: 0.997495, b: 0.955224, a: 1} + m_Intensity: 1 + m_Range: 10 + m_SpotAngle: 30 + m_CookieSize: 10 + m_Shadows: + m_Type: 0 + m_Resolution: -1 + m_CustomResolution: -1 + m_Strength: 1 + m_Bias: 0.05 + m_NormalBias: 0.4 + m_NearPlane: 0.2 + m_Cookie: {fileID: 0} + m_DrawHalo: 0 + m_Flare: {fileID: 0} + m_RenderMode: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_Lightmapping: 1 + m_AreaSize: {x: 1, y: 1} + m_BounceIntensity: 1 + m_ColorTemperature: 6570 + m_UseColorTemperature: 0 + m_ShadowRadius: 0 + m_ShadowAngle: 0 +--- !u!1 &225607811 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 225607813} + - component: {fileID: 225607812} + m_Layer: 0 + m_Name: ModeChooser + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &225607812 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 225607811} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b892a4b0455dd4e378c69c09e1d48df4, type: 3} + m_Name: + m_EditorClassIdentifier: + ballMake: {fileID: 1845880258} + ballMove: {fileID: 1244397730} +--- !u!4 &225607813 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 225607811} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 6 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &229804520 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 229804521} + m_Layer: 0 + m_Name: CameraParent + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &229804521 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 229804520} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 9} + m_Father: {fileID: 0} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1121666029 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1121666033} + - component: {fileID: 1121666030} + m_Layer: 0 + m_Name: ARCameraManager + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1121666030 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1121666029} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 462d46d2423bb4f738d2497a397b1590, type: 3} + m_Name: + m_EditorClassIdentifier: + m_camera: {fileID: 10} +--- !u!4 &1121666033 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1121666029} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1244397730 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1244397731} + - component: {fileID: 1244397732} + m_Layer: 0 + m_Name: BallMover + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!4 &1244397731 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1244397730} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1244397732 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1244397730} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d7f6cc13442cf445295719af5da92de8, type: 3} + m_Name: + m_EditorClassIdentifier: + collBallPrefab: {fileID: 1054048126866664, guid: 772733b9aeeb7481ea21ab0986f34715, + type: 2} +--- !u!1 &1308259102 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1308259104} + - component: {fileID: 1308259103} + m_Layer: 0 + m_Name: GeneratePlanes + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1308259103 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1308259102} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 31cac8edf84834043ac167deaeba16a9, type: 3} + m_Name: + m_EditorClassIdentifier: + planePrefab: {fileID: 1372998203143648, guid: f879aaf3eeb0c467eb22cbaf08dc97a4, + type: 2} +--- !u!4 &1308259104 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1308259102} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1845880258 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1845880259} + - component: {fileID: 1845880260} + m_Layer: 0 + m_Name: BallMaker + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1845880259 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1845880258} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1845880260 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1845880258} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e8d14a82591ec4fcabb481f075ffeb53, type: 3} + m_Name: + m_EditorClassIdentifier: + ballPrefab: {fileID: 1154719652421038, guid: e11b49885a57845e3b22a6355928ed72, type: 2} + createHeight: 0.03 diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/UnityARBallz/UnityARBallz.unity.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityARBallz/UnityARBallz.unity.meta new file mode 100644 index 000000000..76ac0fd5e --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityARBallz/UnityARBallz.unity.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 75972bcfc855b486593ec2ec68da0b81 +timeCreated: 1496964608 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/UnityARKitScene/UnityARKitScene.unity b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityARKitScene/UnityARKitScene.unity index b36ae1287..a19c57b9f 100644 --- a/sdkproject/Assets/UnityARKitPlugin/Examples/UnityARKitScene/UnityARKitScene.unity +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityARKitScene/UnityARKitScene.unity @@ -42,7 +42,7 @@ RenderSettings: --- !u!157 &4 LightmapSettings: m_ObjectHideFlags: 0 - serializedVersion: 9 + serializedVersion: 11 m_GIWorkflowMode: 1 m_GISettings: serializedVersion: 2 @@ -54,7 +54,7 @@ LightmapSettings: m_EnableBakedLightmaps: 1 m_EnableRealtimeLightmaps: 0 m_LightmapEditorSettings: - serializedVersion: 8 + serializedVersion: 9 m_Resolution: 1 m_BakeResolution: 50 m_TextureWidth: 1024 @@ -77,17 +77,19 @@ LightmapSettings: m_PVRDirectSampleCount: 32 m_PVRSampleCount: 500 m_PVRBounces: 2 - m_PVRFiltering: 0 + m_PVRFilterTypeDirect: 0 + m_PVRFilterTypeIndirect: 0 + m_PVRFilterTypeAO: 0 m_PVRFilteringMode: 1 m_PVRCulling: 1 m_PVRFilteringGaussRadiusDirect: 1 m_PVRFilteringGaussRadiusIndirect: 5 m_PVRFilteringGaussRadiusAO: 2 - m_PVRFilteringAtrousColorSigma: 1 - m_PVRFilteringAtrousNormalSigma: 1 - m_PVRFilteringAtrousPositionSigma: 1 + m_PVRFilteringAtrousPositionSigmaDirect: 0.5 + m_PVRFilteringAtrousPositionSigmaIndirect: 2 + m_PVRFilteringAtrousPositionSigmaAO: 1 m_LightingDataAsset: {fileID: 0} - m_ShadowMaskMode: 2 + m_UseShadowmask: 1 --- !u!196 &5 NavMeshSettings: serializedVersion: 2 @@ -675,6 +677,10 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_HitTransform: {fileID: 1286139108} + maxRayDistance: 30 + collisionLayer: + serializedVersion: 2 + m_Bits: 1024 --- !u!1 &1121666029 GameObject: m_ObjectHideFlags: 0 @@ -703,6 +709,10 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_camera: {fileID: 10} + startAlignment: 0 + planeDetection: 3 + getPointCloud: 1 + enableLightEstimation: 1 --- !u!4 &1121666033 Transform: m_ObjectHideFlags: 0 diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/UnityAROcclusion.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityAROcclusion.meta new file mode 100644 index 000000000..c96a40d06 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityAROcclusion.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: ec50d8f0023aa44bc8abca2884b2c337 +folderAsset: yes +timeCreated: 1503626045 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/UnityAROcclusion/UnityAROcclusion.unity b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityAROcclusion/UnityAROcclusion.unity new file mode 100644 index 000000000..e1996a74a --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityAROcclusion/UnityAROcclusion.unity @@ -0,0 +1,1037 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!29 &1 +OcclusionCullingSettings: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_OcclusionBakeSettings: + smallestOccluder: 5 + smallestHole: 0.25 + backfaceThreshold: 100 + m_SceneGUID: 00000000000000000000000000000000 + m_OcclusionCullingData: {fileID: 0} +--- !u!104 &2 +RenderSettings: + m_ObjectHideFlags: 0 + serializedVersion: 8 + m_Fog: 0 + m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_FogMode: 3 + m_FogDensity: 0.01 + m_LinearFogStart: 0 + m_LinearFogEnd: 300 + m_AmbientSkyColor: {r: 0.2, g: 0.2, b: 0.2, a: 0} + m_AmbientEquatorColor: {r: 0.098908, g: 0.100485, b: 0.119403, a: 1} + m_AmbientGroundColor: {r: 0.098908, g: 0.100485, b: 0.119403, a: 1} + m_AmbientIntensity: 1 + m_AmbientMode: 3 + m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} + m_SkyboxMaterial: {fileID: 0} + m_HaloStrength: 0.5 + m_FlareStrength: 1 + m_FlareFadeSpeed: 3 + m_HaloTexture: {fileID: 0} + m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0} + m_DefaultReflectionMode: 0 + m_DefaultReflectionResolution: 128 + m_ReflectionBounces: 1 + m_ReflectionIntensity: 1 + m_CustomReflection: {fileID: 0} + m_Sun: {fileID: 0} + m_IndirectSpecularColor: {r: 0, g: 0, b: 0, a: 1} +--- !u!157 &4 +LightmapSettings: + m_ObjectHideFlags: 0 + serializedVersion: 11 + m_GIWorkflowMode: 1 + m_GISettings: + serializedVersion: 2 + m_BounceScale: 1 + m_IndirectOutputScale: 1 + m_AlbedoBoost: 1 + m_TemporalCoherenceThreshold: 1 + m_EnvironmentLightingMode: 0 + m_EnableBakedLightmaps: 1 + m_EnableRealtimeLightmaps: 0 + m_LightmapEditorSettings: + serializedVersion: 9 + m_Resolution: 1 + m_BakeResolution: 50 + m_TextureWidth: 1024 + m_TextureHeight: 1024 + m_AO: 1 + m_AOMaxDistance: 1 + m_CompAOExponent: 1 + m_CompAOExponentDirect: 0 + m_Padding: 2 + m_LightmapParameters: {fileID: 0} + m_LightmapsBakeMode: 1 + m_TextureCompression: 0 + m_FinalGather: 0 + m_FinalGatherFiltering: 1 + m_FinalGatherRayCount: 256 + m_ReflectionCompression: 2 + m_MixedBakeMode: 1 + m_BakeBackend: 0 + m_PVRSampling: 1 + m_PVRDirectSampleCount: 32 + m_PVRSampleCount: 500 + m_PVRBounces: 2 + m_PVRFiltering: 0 + m_PVRFilteringMode: 1 + m_PVRCulling: 1 + m_PVRFilteringGaussRadiusDirect: 1 + m_PVRFilteringGaussRadiusIndirect: 5 + m_PVRFilteringGaussRadiusAO: 2 + m_PVRFilteringAtrousColorSigma: 1 + m_PVRFilteringAtrousNormalSigma: 1 + m_PVRFilteringAtrousPositionSigma: 1 + m_LightingDataAsset: {fileID: 0} + m_UseShadowmask: 1 +--- !u!196 &5 +NavMeshSettings: + serializedVersion: 2 + m_ObjectHideFlags: 0 + m_BuildSettings: + serializedVersion: 2 + agentTypeID: 0 + agentRadius: 0.4 + agentHeight: 1.8 + agentSlope: 45 + agentClimb: 0.9 + ledgeDropHeight: 0 + maxJumpAcrossDistance: 0 + minRegionArea: 2 + manualCellSize: 0 + cellSize: 0.13333333 + manualTileSize: 0 + tileSize: 256 + accuratePlacement: 0 + m_NavMeshData: {fileID: 0} +--- !u!1 &7 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 9} + - component: {fileID: 10} + - component: {fileID: 12} + - component: {fileID: 13} + - component: {fileID: 11} + - component: {fileID: 8} + - component: {fileID: 14} + m_Layer: 0 + m_Name: Main Camera + m_TagString: MainCamera + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &8 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b58ecea7a196242dd879c814ac05084c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_ClearMaterial: {fileID: 2100000, guid: f1d9352050a75486f878ab19fa578f16, type: 2} +--- !u!4 &9 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 229804521} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!20 &10 +Camera: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 + serializedVersion: 2 + m_ClearFlags: 3 + m_BackGroundColor: {r: 0.19788063, g: 0.2953552, b: 0.44852942, a: 0.019608} + m_NormalizedViewPortRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + near clip plane: 0.1 + far clip plane: 30 + field of view: 60 + orthographic: 0 + orthographic size: 100 + m_Depth: -1 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingPath: -1 + m_TargetTexture: {fileID: 0} + m_TargetDisplay: 0 + m_TargetEye: 3 + m_HDR: 0 + m_AllowMSAA: 1 + m_ForceIntoRT: 0 + m_OcclusionCulling: 1 + m_StereoConvergence: 10 + m_StereoSeparation: 0.022 + m_StereoMirrorMode: 0 +--- !u!81 &11 +AudioListener: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 +--- !u!92 &12 +Behaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 +--- !u!124 &13 +Behaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 +--- !u!114 &14 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: ce437cef046e841aabd6070890e79d41, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &16 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 20} + - component: {fileID: 29} + - component: {fileID: 17} + m_Layer: 0 + m_Name: Directional light + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &17 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 16} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5587c957048494a2f96db36e0995449e, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!4 &20 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 16} + m_LocalRotation: {x: -0.31668198, y: -0.33227497, z: 0.119525984, w: -0.8803519} + m_LocalPosition: {x: -2.359002, y: 2.21, z: -3.580904} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!108 &29 +Light: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 16} + m_Enabled: 1 + serializedVersion: 8 + m_Type: 1 + m_Color: {r: 1, g: 0.997495, b: 0.955224, a: 1} + m_Intensity: 1 + m_Range: 10 + m_SpotAngle: 30 + m_CookieSize: 10 + m_Shadows: + m_Type: 1 + m_Resolution: 1 + m_CustomResolution: -1 + m_Strength: 0.437 + m_Bias: 0 + m_NormalBias: 0.52 + m_NearPlane: 0.1 + m_Cookie: {fileID: 0} + m_DrawHalo: 0 + m_Flare: {fileID: 0} + m_RenderMode: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_Lightmapping: 1 + m_AreaSize: {x: 1, y: 1} + m_BounceIntensity: 1 + m_FalloffTable: + m_Table[0]: 0 + m_Table[1]: 0 + m_Table[2]: 0 + m_Table[3]: 0 + m_Table[4]: 0 + m_Table[5]: 0 + m_Table[6]: 0 + m_Table[7]: 0 + m_Table[8]: 0 + m_Table[9]: 0 + m_Table[10]: 0 + m_Table[11]: 0 + m_Table[12]: 0 + m_ColorTemperature: 6570 + m_UseColorTemperature: 0 + m_ShadowRadius: 0 + m_ShadowAngle: 0 +--- !u!1 &229804520 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 229804521} + m_Layer: 0 + m_Name: CameraParent + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &229804521 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 229804520} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 9} + m_Father: {fileID: 0} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &481742511 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 481742512} + - component: {fileID: 481742513} + m_Layer: 0 + m_Name: PointCloudParticleExample + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &481742512 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 481742511} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 8 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &481742513 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 481742511} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: ec20d460fbb7e4f92b4d84a10da98cd9, type: 3} + m_Name: + m_EditorClassIdentifier: + pointCloudParticlePrefab: {fileID: 198314236125653888, guid: 87db9decf4b3e4cb8bf3eea22ccd37f5, + type: 2} + maxPointsToShow: 10000 + particleSize: 0.01 +--- !u!1 &555720247 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 555720248} + - component: {fileID: 555720249} + m_Layer: 0 + m_Name: AR3DOFCameraManager + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!4 &555720248 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 555720247} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 9 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &555720249 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 555720247} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0ff614c6973544218b2c1e3036b8de0a, type: 3} + m_Name: + m_EditorClassIdentifier: + m_camera: {fileID: 10} +--- !u!23 &732268494 +MeshRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 922811256} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_Materials: + - {fileID: 2100000, guid: 66fbc43c67b564bb4a4c2c2dcd6c1970, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 1 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!65 &732268495 +BoxCollider: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 922811256} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 1, y: 1, z: 1} + m_Center: {x: 0, y: 0, z: 0} +--- !u!33 &732268496 +MeshFilter: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 922811256} + m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} +--- !u!4 &732268497 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 922811256} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 1} + m_LocalScale: {x: 0.3058, y: 0.3058, z: 0.3058} + m_Children: + - {fileID: 1563586580} + - {fileID: 985089624} + - {fileID: 2134794027} + m_Father: {fileID: 0} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &922811256 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 732268497} + - component: {fileID: 732268496} + - component: {fileID: 732268495} + - component: {fileID: 732268494} + m_Layer: 0 + m_Name: RandomCube + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &985089623 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 985089624} + - component: {fileID: 985089627} + - component: {fileID: 985089626} + - component: {fileID: 985089625} + m_Layer: 0 + m_Name: XAxis + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &985089624 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 985089623} + m_LocalRotation: {x: -0.0000037178397, y: 0.0000024586916, z: -0.7071033, w: -0.7071102} + m_LocalPosition: {x: 1, y: 0, z: 0} + m_LocalScale: {x: 0.03270111, y: 1.3080443, z: 0.03270111} + m_Children: [] + m_Father: {fileID: 732268497} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 10.865001, y: 2.6820002, z: 90} +--- !u!23 &985089625 +MeshRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 985089623} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_Materials: + - {fileID: 2100000, guid: aaae8be92ba59487a9946818d7a2017f, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 1 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!65 &985089626 +BoxCollider: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 985089623} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 1, y: 1, z: 1} + m_Center: {x: 0, y: 0, z: 0} +--- !u!33 &985089627 +MeshFilter: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 985089623} + m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} +--- !u!1 &1052679867 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1052679871} + - component: {fileID: 1052679870} + - component: {fileID: 1052679868} + - component: {fileID: 1052679872} + m_Layer: 0 + m_Name: HitPlayer + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!23 &1052679868 +MeshRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1052679867} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_Materials: + - {fileID: 2100000, guid: 3ea44298aa419344dbdcf87dd1a50533, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 1 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!33 &1052679870 +MeshFilter: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1052679867} + m_Mesh: {fileID: 4300002, guid: f1d84cc28597f5641a3d9cbc4df7e306, type: 3} +--- !u!4 &1052679871 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1052679867} + m_LocalRotation: {x: 0, y: 1, z: 0, w: 0} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1286139108} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 180, z: 0} +--- !u!114 &1052679872 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1052679867} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 6941ec02ead994c9b848d640887441f1, type: 3} + m_Name: + m_EditorClassIdentifier: + m_HitTransform: {fileID: 1286139108} +--- !u!1 &1121666029 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1121666033} + - component: {fileID: 1121666030} + m_Layer: 0 + m_Name: ARCameraManager + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1121666030 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1121666029} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 462d46d2423bb4f738d2497a397b1590, type: 3} + m_Name: + m_EditorClassIdentifier: + m_camera: {fileID: 10} +--- !u!4 &1121666033 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1121666029} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1153389248 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1153389250} + - component: {fileID: 1153389249} + m_Layer: 0 + m_Name: ARKitControl + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1153389249 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1153389248} + m_Enabled: 0 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4977b930c0f8843c8b8a101ba5bf3c8f, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!4 &1153389250 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1153389248} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 6 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1286139107 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1286139108} + m_Layer: 0 + m_Name: HitCubeParent + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1286139108 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1286139107} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: -0, z: -2.98} + m_LocalScale: {x: 0.1, y: 0.1, z: 0.1} + m_Children: + - {fileID: 1052679871} + m_Father: {fileID: 0} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1308259102 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1308259104} + - component: {fileID: 1308259103} + m_Layer: 0 + m_Name: GeneratePlanes + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1308259103 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1308259102} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 31cac8edf84834043ac167deaeba16a9, type: 3} + m_Name: + m_EditorClassIdentifier: + planePrefab: {fileID: 1983520619281468, guid: 9eb96f002ffce4560879b18f2e0502e5, + type: 2} +--- !u!4 &1308259104 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1308259102} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1563586579 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1563586580} + - component: {fileID: 1563586583} + - component: {fileID: 1563586582} + - component: {fileID: 1563586581} + m_Layer: 0 + m_Name: YAxis + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1563586580 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1563586579} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 1, z: 0} + m_LocalScale: {x: 0.03270111, y: 1.3080444, z: 0.032701116} + m_Children: [] + m_Father: {fileID: 732268497} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!23 &1563586581 +MeshRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1563586579} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_Materials: + - {fileID: 2100000, guid: 8fa2e9e7c08844dd4a8d581610839228, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 1 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!65 &1563586582 +BoxCollider: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1563586579} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 1, y: 1, z: 1} + m_Center: {x: 0, y: 0, z: 0} +--- !u!33 &1563586583 +MeshFilter: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1563586579} + m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} +--- !u!1 &2101518924 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 2101518926} + - component: {fileID: 2101518925} + m_Layer: 0 + m_Name: PointCloudExample + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!114 &2101518925 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2101518924} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: c5ab0fdfbf2334e8dbbcdda6ceada7e3, type: 3} + m_Name: + m_EditorClassIdentifier: + numPointsToShow: 400 + PointCloudPrefab: {fileID: 1845574417345784, guid: 02d2a544d8d594d30b790e76398d0873, + type: 2} +--- !u!4 &2101518926 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2101518924} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0.16720128, y: 0.18012214, z: 1.1454113} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 7 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &2134794026 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 2134794027} + - component: {fileID: 2134794030} + - component: {fileID: 2134794029} + - component: {fileID: 2134794028} + m_Layer: 0 + m_Name: ZAxis + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2134794027 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2134794026} + m_LocalRotation: {x: 0.49999562, y: 0.5000044, z: 0.49999562, w: 0.5000044} + m_LocalPosition: {x: -0.05, y: 0, z: 1} + m_LocalScale: {x: 0.03270111, y: 1.3080443, z: 0.032701112} + m_Children: [] + m_Father: {fileID: 732268497} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 90, z: 89.999} +--- !u!23 &2134794028 +MeshRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2134794026} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_Materials: + - {fileID: 2100000, guid: d55ccb0db00e54a1696c1e96094d706d, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 1 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!65 &2134794029 +BoxCollider: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2134794026} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 1, y: 1, z: 1} + m_Center: {x: 0, y: 0, z: 0} +--- !u!33 &2134794030 +MeshFilter: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2134794026} + m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/UnityAROcclusion/UnityAROcclusion.unity.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityAROcclusion/UnityAROcclusion.unity.meta new file mode 100644 index 000000000..d21f71278 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityAROcclusion/UnityAROcclusion.unity.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7f026c59fb9d6489ab924c6e0e119760 +timeCreated: 1497467387 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/UnityARShadows.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityARShadows.meta new file mode 100644 index 000000000..d64b2a0e7 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityARShadows.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 2c5a49210742e49f6b01cc06377465be +folderAsset: yes +timeCreated: 1503626042 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/UnityARShadows/UnityARShadows.unity b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityARShadows/UnityARShadows.unity new file mode 100644 index 000000000..faab08e30 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityARShadows/UnityARShadows.unity @@ -0,0 +1,1023 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!29 &1 +OcclusionCullingSettings: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_OcclusionBakeSettings: + smallestOccluder: 5 + smallestHole: 0.25 + backfaceThreshold: 100 + m_SceneGUID: 00000000000000000000000000000000 + m_OcclusionCullingData: {fileID: 0} +--- !u!104 &2 +RenderSettings: + m_ObjectHideFlags: 0 + serializedVersion: 8 + m_Fog: 0 + m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_FogMode: 3 + m_FogDensity: 0.01 + m_LinearFogStart: 0 + m_LinearFogEnd: 300 + m_AmbientSkyColor: {r: 0.2, g: 0.2, b: 0.2, a: 0} + m_AmbientEquatorColor: {r: 0.098908, g: 0.100485, b: 0.119403, a: 1} + m_AmbientGroundColor: {r: 0.098908, g: 0.100485, b: 0.119403, a: 1} + m_AmbientIntensity: 1 + m_AmbientMode: 3 + m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} + m_SkyboxMaterial: {fileID: 0} + m_HaloStrength: 0.5 + m_FlareStrength: 1 + m_FlareFadeSpeed: 3 + m_HaloTexture: {fileID: 0} + m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0} + m_DefaultReflectionMode: 0 + m_DefaultReflectionResolution: 128 + m_ReflectionBounces: 1 + m_ReflectionIntensity: 1 + m_CustomReflection: {fileID: 0} + m_Sun: {fileID: 0} + m_IndirectSpecularColor: {r: 0, g: 0, b: 0, a: 1} +--- !u!157 &4 +LightmapSettings: + m_ObjectHideFlags: 0 + serializedVersion: 9 + m_GIWorkflowMode: 1 + m_GISettings: + serializedVersion: 2 + m_BounceScale: 1 + m_IndirectOutputScale: 1 + m_AlbedoBoost: 1 + m_TemporalCoherenceThreshold: 1 + m_EnvironmentLightingMode: 0 + m_EnableBakedLightmaps: 1 + m_EnableRealtimeLightmaps: 0 + m_LightmapEditorSettings: + serializedVersion: 8 + m_Resolution: 1 + m_BakeResolution: 50 + m_TextureWidth: 1024 + m_TextureHeight: 1024 + m_AO: 1 + m_AOMaxDistance: 1 + m_CompAOExponent: 1 + m_CompAOExponentDirect: 0 + m_Padding: 2 + m_LightmapParameters: {fileID: 0} + m_LightmapsBakeMode: 1 + m_TextureCompression: 0 + m_FinalGather: 0 + m_FinalGatherFiltering: 1 + m_FinalGatherRayCount: 256 + m_ReflectionCompression: 2 + m_MixedBakeMode: 1 + m_BakeBackend: 0 + m_PVRSampling: 1 + m_PVRDirectSampleCount: 32 + m_PVRSampleCount: 500 + m_PVRBounces: 2 + m_PVRFiltering: 0 + m_PVRFilteringMode: 1 + m_PVRCulling: 1 + m_PVRFilteringGaussRadiusDirect: 1 + m_PVRFilteringGaussRadiusIndirect: 5 + m_PVRFilteringGaussRadiusAO: 2 + m_PVRFilteringAtrousColorSigma: 1 + m_PVRFilteringAtrousNormalSigma: 1 + m_PVRFilteringAtrousPositionSigma: 1 + m_LightingDataAsset: {fileID: 0} + m_ShadowMaskMode: 2 +--- !u!196 &5 +NavMeshSettings: + serializedVersion: 2 + m_ObjectHideFlags: 0 + m_BuildSettings: + serializedVersion: 2 + agentTypeID: 0 + agentRadius: 0.4 + agentHeight: 1.8 + agentSlope: 45 + agentClimb: 0.9 + ledgeDropHeight: 0 + maxJumpAcrossDistance: 0 + minRegionArea: 2 + manualCellSize: 0 + cellSize: 0.13333333 + manualTileSize: 0 + tileSize: 256 + accuratePlacement: 0 + m_NavMeshData: {fileID: 0} +--- !u!1 &7 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 9} + - component: {fileID: 10} + - component: {fileID: 12} + - component: {fileID: 13} + - component: {fileID: 11} + - component: {fileID: 8} + - component: {fileID: 14} + m_Layer: 0 + m_Name: Main Camera + m_TagString: MainCamera + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &8 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b58ecea7a196242dd879c814ac05084c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_ClearMaterial: {fileID: 2100000, guid: f1d9352050a75486f878ab19fa578f16, type: 2} +--- !u!4 &9 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 229804521} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!20 &10 +Camera: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 + serializedVersion: 2 + m_ClearFlags: 3 + m_BackGroundColor: {r: 0.19788063, g: 0.2953552, b: 0.44852942, a: 0.019608} + m_NormalizedViewPortRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + near clip plane: 0.1 + far clip plane: 30 + field of view: 60 + orthographic: 0 + orthographic size: 100 + m_Depth: -1 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingPath: -1 + m_TargetTexture: {fileID: 0} + m_TargetDisplay: 0 + m_TargetEye: 3 + m_HDR: 0 + m_AllowMSAA: 1 + m_ForceIntoRT: 0 + m_OcclusionCulling: 1 + m_StereoConvergence: 10 + m_StereoSeparation: 0.022 + m_StereoMirrorMode: 0 +--- !u!81 &11 +AudioListener: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 +--- !u!92 &12 +Behaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 +--- !u!124 &13 +Behaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 +--- !u!114 &14 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: ce437cef046e841aabd6070890e79d41, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &16 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 20} + - component: {fileID: 29} + - component: {fileID: 17} + m_Layer: 0 + m_Name: Directional light + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &17 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 16} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5587c957048494a2f96db36e0995449e, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!4 &20 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 16} + m_LocalRotation: {x: -0.31668198, y: -0.33227497, z: 0.119525984, w: -0.8803519} + m_LocalPosition: {x: -2.359002, y: 2.21, z: -3.580904} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!108 &29 +Light: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 16} + m_Enabled: 1 + serializedVersion: 8 + m_Type: 1 + m_Color: {r: 1, g: 0.997495, b: 0.955224, a: 1} + m_Intensity: 1 + m_Range: 10 + m_SpotAngle: 30 + m_CookieSize: 10 + m_Shadows: + m_Type: 1 + m_Resolution: 1 + m_CustomResolution: -1 + m_Strength: 0.437 + m_Bias: 0 + m_NormalBias: 0.52 + m_NearPlane: 0.1 + m_Cookie: {fileID: 0} + m_DrawHalo: 0 + m_Flare: {fileID: 0} + m_RenderMode: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_Lightmapping: 1 + m_AreaSize: {x: 1, y: 1} + m_BounceIntensity: 1 + m_ColorTemperature: 6570 + m_UseColorTemperature: 0 + m_ShadowRadius: 0 + m_ShadowAngle: 0 +--- !u!1 &229804520 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 229804521} + m_Layer: 0 + m_Name: CameraParent + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &229804521 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 229804520} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 9} + m_Father: {fileID: 0} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &481742511 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 481742512} + - component: {fileID: 481742513} + m_Layer: 0 + m_Name: PointCloudParticleExample + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &481742512 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 481742511} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 8 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &481742513 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 481742511} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: ec20d460fbb7e4f92b4d84a10da98cd9, type: 3} + m_Name: + m_EditorClassIdentifier: + pointCloudParticlePrefab: {fileID: 198314236125653888, guid: 87db9decf4b3e4cb8bf3eea22ccd37f5, + type: 2} + maxPointsToShow: 10000 + particleSize: 0.01 +--- !u!1 &555720247 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 555720248} + - component: {fileID: 555720249} + m_Layer: 0 + m_Name: AR3DOFCameraManager + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!4 &555720248 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 555720247} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 9 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &555720249 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 555720247} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0ff614c6973544218b2c1e3036b8de0a, type: 3} + m_Name: + m_EditorClassIdentifier: + m_camera: {fileID: 10} +--- !u!23 &732268494 +MeshRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 922811256} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_Materials: + - {fileID: 2100000, guid: 66fbc43c67b564bb4a4c2c2dcd6c1970, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 1 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!65 &732268495 +BoxCollider: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 922811256} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 1, y: 1, z: 1} + m_Center: {x: 0, y: 0, z: 0} +--- !u!33 &732268496 +MeshFilter: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 922811256} + m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} +--- !u!4 &732268497 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 922811256} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 1} + m_LocalScale: {x: 0.3058, y: 0.3058, z: 0.3058} + m_Children: + - {fileID: 1563586580} + - {fileID: 985089624} + - {fileID: 2134794027} + m_Father: {fileID: 0} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &922811256 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 732268497} + - component: {fileID: 732268496} + - component: {fileID: 732268495} + - component: {fileID: 732268494} + m_Layer: 0 + m_Name: RandomCube + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &985089623 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 985089624} + - component: {fileID: 985089627} + - component: {fileID: 985089626} + - component: {fileID: 985089625} + m_Layer: 0 + m_Name: XAxis + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &985089624 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 985089623} + m_LocalRotation: {x: -0.0000037178397, y: 0.0000024586916, z: -0.7071033, w: -0.7071102} + m_LocalPosition: {x: 1, y: 0, z: 0} + m_LocalScale: {x: 0.03270111, y: 1.3080443, z: 0.03270111} + m_Children: [] + m_Father: {fileID: 732268497} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 10.865001, y: 2.6820002, z: 90} +--- !u!23 &985089625 +MeshRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 985089623} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_Materials: + - {fileID: 2100000, guid: aaae8be92ba59487a9946818d7a2017f, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 1 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!65 &985089626 +BoxCollider: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 985089623} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 1, y: 1, z: 1} + m_Center: {x: 0, y: 0, z: 0} +--- !u!33 &985089627 +MeshFilter: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 985089623} + m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} +--- !u!1 &1052679867 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1052679871} + - component: {fileID: 1052679870} + - component: {fileID: 1052679868} + - component: {fileID: 1052679872} + m_Layer: 0 + m_Name: HitPlayer + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!23 &1052679868 +MeshRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1052679867} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_Materials: + - {fileID: 2100000, guid: 3ea44298aa419344dbdcf87dd1a50533, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 1 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!33 &1052679870 +MeshFilter: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1052679867} + m_Mesh: {fileID: 4300002, guid: f1d84cc28597f5641a3d9cbc4df7e306, type: 3} +--- !u!4 &1052679871 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1052679867} + m_LocalRotation: {x: 0, y: 1, z: 0, w: 0} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1286139108} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 180, z: 0} +--- !u!114 &1052679872 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1052679867} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 6941ec02ead994c9b848d640887441f1, type: 3} + m_Name: + m_EditorClassIdentifier: + m_HitTransform: {fileID: 1286139108} +--- !u!1 &1121666029 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1121666033} + - component: {fileID: 1121666030} + m_Layer: 0 + m_Name: ARCameraManager + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1121666030 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1121666029} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 462d46d2423bb4f738d2497a397b1590, type: 3} + m_Name: + m_EditorClassIdentifier: + m_camera: {fileID: 10} +--- !u!4 &1121666033 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1121666029} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1153389248 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1153389250} + - component: {fileID: 1153389249} + m_Layer: 0 + m_Name: ARKitControl + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1153389249 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1153389248} + m_Enabled: 0 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4977b930c0f8843c8b8a101ba5bf3c8f, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!4 &1153389250 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1153389248} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 6 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1286139107 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1286139108} + m_Layer: 0 + m_Name: HitCubeParent + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1286139108 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1286139107} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: -0, z: -2.98} + m_LocalScale: {x: 0.1, y: 0.1, z: 0.1} + m_Children: + - {fileID: 1052679871} + m_Father: {fileID: 0} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1308259102 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1308259104} + - component: {fileID: 1308259103} + m_Layer: 0 + m_Name: GeneratePlanes + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1308259103 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1308259102} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 31cac8edf84834043ac167deaeba16a9, type: 3} + m_Name: + m_EditorClassIdentifier: + planePrefab: {fileID: 1983520619281468, guid: 696855730620a483c9ae4c242e312b28, + type: 2} +--- !u!4 &1308259104 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1308259102} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1563586579 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1563586580} + - component: {fileID: 1563586583} + - component: {fileID: 1563586582} + - component: {fileID: 1563586581} + m_Layer: 0 + m_Name: YAxis + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1563586580 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1563586579} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 1, z: 0} + m_LocalScale: {x: 0.03270111, y: 1.3080444, z: 0.032701116} + m_Children: [] + m_Father: {fileID: 732268497} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!23 &1563586581 +MeshRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1563586579} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_Materials: + - {fileID: 2100000, guid: 8fa2e9e7c08844dd4a8d581610839228, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 1 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!65 &1563586582 +BoxCollider: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1563586579} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 1, y: 1, z: 1} + m_Center: {x: 0, y: 0, z: 0} +--- !u!33 &1563586583 +MeshFilter: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1563586579} + m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} +--- !u!1 &2101518924 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 2101518926} + - component: {fileID: 2101518925} + m_Layer: 0 + m_Name: PointCloudExample + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!114 &2101518925 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2101518924} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: c5ab0fdfbf2334e8dbbcdda6ceada7e3, type: 3} + m_Name: + m_EditorClassIdentifier: + numPointsToShow: 400 + PointCloudPrefab: {fileID: 1845574417345784, guid: 02d2a544d8d594d30b790e76398d0873, + type: 2} +--- !u!4 &2101518926 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2101518924} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0.16720128, y: 0.18012214, z: 1.1454113} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 7 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &2134794026 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 2134794027} + - component: {fileID: 2134794030} + - component: {fileID: 2134794029} + - component: {fileID: 2134794028} + m_Layer: 0 + m_Name: ZAxis + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2134794027 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2134794026} + m_LocalRotation: {x: 0.49999562, y: 0.5000044, z: 0.49999562, w: 0.5000044} + m_LocalPosition: {x: -0.05, y: 0, z: 1} + m_LocalScale: {x: 0.03270111, y: 1.3080443, z: 0.032701112} + m_Children: [] + m_Father: {fileID: 732268497} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 90, z: 89.999} +--- !u!23 &2134794028 +MeshRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2134794026} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_Materials: + - {fileID: 2100000, guid: d55ccb0db00e54a1696c1e96094d706d, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 1 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!65 &2134794029 +BoxCollider: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2134794026} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 1, y: 1, z: 1} + m_Center: {x: 0, y: 0, z: 0} +--- !u!33 &2134794030 +MeshFilter: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2134794026} + m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/UnityARShadows/UnityARShadows.unity.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityARShadows/UnityARShadows.unity.meta new file mode 100644 index 000000000..20facb93d --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityARShadows/UnityARShadows.unity.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 14d17ec7304f440b48e6b953ba7a5895 +timeCreated: 1497467387 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter.meta new file mode 100644 index 000000000..9b7ce0111 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: e746d1dc46f384723a49592cf820da3a +folderAsset: yes +timeCreated: 1503626042 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker.meta new file mode 100644 index 000000000..b5a60c8c0 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 42ca15f1893ea4df79823e4a752e0032 +folderAsset: yes +timeCreated: 1494022978 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/Editor.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/Editor.meta new file mode 100644 index 000000000..5eaa116ad --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/Editor.meta @@ -0,0 +1,5 @@ +fileFormatVersion: 2 +guid: 2a9e9df3c14e9034eb587348635c8f09 +folderAsset: yes +DefaultImporter: + userData: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/Editor/BoxSliderEditor.cs b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/Editor/BoxSliderEditor.cs new file mode 100644 index 000000000..8e7cf4508 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/Editor/BoxSliderEditor.cs @@ -0,0 +1,65 @@ +using System.Collections.Generic; +using UnityEngine; +using UnityEngine.UI; + +namespace UnityEditor.UI +{ + [CustomEditor(typeof(BoxSlider), true)] + [CanEditMultipleObjects] + public class BoxSliderEditor : SelectableEditor + { + + SerializedProperty m_HandleRect; + SerializedProperty m_MinValue; + SerializedProperty m_MaxValue; + SerializedProperty m_WholeNumbers; + SerializedProperty m_Value; + SerializedProperty m_ValueY; + SerializedProperty m_OnValueChanged; + + protected override void OnEnable() + { + base.OnEnable(); + m_HandleRect = serializedObject.FindProperty("m_HandleRect"); + + m_MinValue = serializedObject.FindProperty("m_MinValue"); + m_MaxValue = serializedObject.FindProperty("m_MaxValue"); + m_WholeNumbers = serializedObject.FindProperty("m_WholeNumbers"); + m_Value = serializedObject.FindProperty("m_Value"); + m_ValueY = serializedObject.FindProperty("m_ValueY"); + m_OnValueChanged = serializedObject.FindProperty("m_OnValueChanged"); + } + + public override void OnInspectorGUI() + { + base.OnInspectorGUI(); + EditorGUILayout.Space(); + + serializedObject.Update(); + + EditorGUILayout.PropertyField(m_HandleRect); + + if (m_HandleRect.objectReferenceValue != null) + { + EditorGUI.BeginChangeCheck(); + + + EditorGUILayout.PropertyField(m_MinValue); + EditorGUILayout.PropertyField(m_MaxValue); + EditorGUILayout.PropertyField(m_WholeNumbers); + EditorGUILayout.Slider(m_Value, m_MinValue.floatValue, m_MaxValue.floatValue); + EditorGUILayout.Slider(m_ValueY, m_MinValue.floatValue, m_MaxValue.floatValue); + + // Draw the event notification options + EditorGUILayout.Space(); + EditorGUILayout.PropertyField(m_OnValueChanged); + } + else + { + EditorGUILayout.HelpBox("Specify a RectTransform for the slider fill or the slider handle or both. Each must have a parent RectTransform that it can slide within.", MessageType.Info); + } + + serializedObject.ApplyModifiedProperties(); + } + } +} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/Editor/BoxSliderEditor.cs.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/Editor/BoxSliderEditor.cs.meta new file mode 100644 index 000000000..a2c5e7669 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/Editor/BoxSliderEditor.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 8701e045b26e51f4eb345f2ccb3c13f5 +timeCreated: 1426804458 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/Enums.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/Enums.meta new file mode 100644 index 000000000..82e713f87 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/Enums.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 5d3904d3d18ddd544820bd8518990fee +folderAsset: yes +timeCreated: 1442586617 +licenseType: Free +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/Enums/ColorValues.cs b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/Enums/ColorValues.cs new file mode 100644 index 000000000..e6d6d6b30 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/Enums/ColorValues.cs @@ -0,0 +1,13 @@ +using UnityEngine; + +public enum ColorValues +{ + R, + G, + B, + A, + + Hue, + Saturation, + Value +} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/Enums/ColorValues.cs.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/Enums/ColorValues.cs.meta new file mode 100644 index 000000000..14a9745ad --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/Enums/ColorValues.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 859a1720e083e504cb68917f781e87c7 +timeCreated: 1442586608 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/Events.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/Events.meta new file mode 100644 index 000000000..cd2c8e5fb --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/Events.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 6bb0d49c64210014e9a24ed9345928c2 +folderAsset: yes +timeCreated: 1442747310 +licenseType: Free +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/Events/ColorChangedEvent.cs b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/Events/ColorChangedEvent.cs new file mode 100644 index 000000000..936378149 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/Events/ColorChangedEvent.cs @@ -0,0 +1,9 @@ +using UnityEngine; +using System; +using UnityEngine.Events; + +[Serializable] +public class ColorChangedEvent : UnityEvent +{ + +} \ No newline at end of file diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/Events/ColorChangedEvent.cs.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/Events/ColorChangedEvent.cs.meta new file mode 100644 index 000000000..1bfe4df78 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/Events/ColorChangedEvent.cs.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ff46fbecea7739f4690e4285c88f53c5 +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/Events/HSVChangedEvent.cs b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/Events/HSVChangedEvent.cs new file mode 100644 index 000000000..11c5fa363 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/Events/HSVChangedEvent.cs @@ -0,0 +1,7 @@ +using UnityEngine; +using UnityEngine.Events; + +public class HSVChangedEvent : UnityEvent +{ + +} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/Events/HSVChangedEvent.cs.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/Events/HSVChangedEvent.cs.meta new file mode 100644 index 000000000..4387ddaef --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/Events/HSVChangedEvent.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 3d95ce8fba3dbbf4eb14411412169b88 +timeCreated: 1442747317 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/Other.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/Other.meta new file mode 100644 index 000000000..4a3612d39 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/Other.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 304681ea793fc054aa8ed2beab28d0b1 +folderAsset: yes +timeCreated: 1442751317 +licenseType: Free +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/Other/ColorPickerTester.cs b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/Other/ColorPickerTester.cs new file mode 100644 index 000000000..27fbdaf70 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/Other/ColorPickerTester.cs @@ -0,0 +1,24 @@ +using UnityEngine; +using System.Collections; + +public class ColorPickerTester : MonoBehaviour +{ + + public new Renderer renderer; + public ColorPicker picker; + + // Use this for initialization + void Start () + { + picker.onValueChanged.AddListener(color => + { + renderer.material.color = color; + }); + renderer.material.color = picker.CurrentColor; + } + + // Update is called once per frame + void Update () { + + } +} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/Other/ColorPickerTester.cs.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/Other/ColorPickerTester.cs.meta new file mode 100644 index 000000000..9c93c12c3 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/Other/ColorPickerTester.cs.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 06851a815227e5044b0e3c1bf9b3a282 +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/Other/TiltWindow.cs b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/Other/TiltWindow.cs new file mode 100644 index 000000000..8325504f8 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/Other/TiltWindow.cs @@ -0,0 +1,29 @@ +using UnityEngine; + +public class TiltWindow : MonoBehaviour +{ + public Vector2 range = new Vector2(5f, 3f); + + Transform mTrans; + Quaternion mStart; + Vector2 mRot = Vector2.zero; + + void Start () + { + mTrans = transform; + mStart = mTrans.localRotation; + } + + void Update () + { + Vector3 pos = Input.mousePosition; + + float halfWidth = Screen.width * 0.5f; + float halfHeight = Screen.height * 0.5f; + float x = Mathf.Clamp((pos.x - halfWidth) / halfWidth, -1f, 1f); + float y = Mathf.Clamp((pos.y - halfHeight) / halfHeight, -1f, 1f); + mRot = Vector2.Lerp(mRot, new Vector2(x, y), Time.deltaTime * 5f); + + mTrans.localRotation = mStart * Quaternion.Euler(-mRot.y * range.y, mRot.x * range.x, 0f); + } +} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/Other/TiltWindow.cs.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/Other/TiltWindow.cs.meta new file mode 100644 index 000000000..2d4c0750a --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/Other/TiltWindow.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: f2aa04a3e088320429a06194a3483daa +timeCreated: 1426051352 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/Picker 2.0.prefab b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/Picker 2.0.prefab new file mode 100644 index 000000000..915b91872 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/Picker 2.0.prefab @@ -0,0 +1,7144 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &102730 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22464350} + m_Layer: 5 + m_Name: Handle Slide Area + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &103988 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22419704} + - component: {fileID: 22202916} + - component: {fileID: 11461748} + - component: {fileID: 11434628} + m_Layer: 5 + m_Name: Background + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &108322 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22463192} + m_Layer: 5 + m_Name: Handle Slide Area + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &109170 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22483054} + - component: {fileID: 22289050} + - component: {fileID: 11460492} + - component: {fileID: 11448474} + - component: {fileID: 11400974} + m_Layer: 5 + m_Name: ValueText + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &109276 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22497436} + - component: {fileID: 11475674} + m_Layer: 5 + m_Name: ColorBox + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &109518 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22473052} + - component: {fileID: 11455040} + m_Layer: 5 + m_Name: A + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &109650 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22471500} + - component: {fileID: 11413242} + - component: {fileID: 11459034} + - component: {fileID: 11481106} + m_Layer: 5 + m_Name: Slider + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &109862 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22463646} + - component: {fileID: 22208894} + - component: {fileID: 11419324} + m_Layer: 5 + m_Name: Placeholder + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &109976 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22499384} + - component: {fileID: 22236658} + - component: {fileID: 11484674} + m_Layer: 5 + m_Name: Handle + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &110962 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22407396} + - component: {fileID: 22269076} + - component: {fileID: 11443566} + - component: {fileID: 11469678} + - component: {fileID: 11453686} + m_Layer: 5 + m_Name: Preset (8) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!1 &113042 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22498948} + m_Layer: 5 + m_Name: Handle Slide Area + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &113862 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22449618} + - component: {fileID: 11452006} + m_Layer: 5 + m_Name: R + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &114640 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22462156} + - component: {fileID: 11499806} + - component: {fileID: 11469788} + m_Layer: 5 + m_Name: Hue + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &117174 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22446600} + - component: {fileID: 22261740} + - component: {fileID: 11457280} + - component: {fileID: 11463028} + - component: {fileID: 11483982} + m_Layer: 5 + m_Name: InputField + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &118516 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22404596} + - component: {fileID: 22258132} + - component: {fileID: 11435316} + - component: {fileID: 11482782} + - component: {fileID: 11479482} + m_Layer: 5 + m_Name: ValueText + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &118568 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22462880} + - component: {fileID: 11424766} + - component: {fileID: 22222454} + - component: {fileID: 11436574} + - component: {fileID: 11463516} + m_Layer: 5 + m_Name: BoxSlider + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &118848 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22422480} + - component: {fileID: 11451352} + m_Layer: 5 + m_Name: Seperator + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &119204 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22486906} + m_Layer: 5 + m_Name: ColorBox Container + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &119286 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22467618} + - component: {fileID: 22215766} + - component: {fileID: 11475176} + - component: {fileID: 11433944} + - component: {fileID: 11411592} + m_Layer: 5 + m_Name: ValueText + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &120788 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22479018} + - component: {fileID: 22267742} + - component: {fileID: 11449214} + - component: {fileID: 11431864} + m_Layer: 5 + m_Name: Background + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &123062 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22409896} + - component: {fileID: 22213064} + - component: {fileID: 11499970} + - component: {fileID: 11480596} + - component: {fileID: 11417916} + m_Layer: 5 + m_Name: ValueText + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &124486 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22488338} + - component: {fileID: 22252030} + - component: {fileID: 11417700} + - component: {fileID: 11496660} + - component: {fileID: 11491764} + m_Layer: 5 + m_Name: Preset (2) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &127516 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22475824} + m_Layer: 5 + m_Name: Handle Slide Area + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &134460 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22448238} + m_Layer: 5 + m_Name: Handle Slide Area + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &134618 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22446644} + - component: {fileID: 22206792} + - component: {fileID: 11428072} + - component: {fileID: 11453048} + m_Layer: 5 + m_Name: LeftText + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &135120 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22469358} + - component: {fileID: 22294074} + - component: {fileID: 11498926} + m_Layer: 5 + m_Name: Handle + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &137072 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22432592} + - component: {fileID: 22241672} + - component: {fileID: 11429028} + m_Layer: 5 + m_Name: Handle + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &138390 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22477690} + - component: {fileID: 22214548} + - component: {fileID: 11443082} + - component: {fileID: 11412718} + m_Layer: 5 + m_Name: LeftText + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &141026 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22429276} + - component: {fileID: 22296874} + - component: {fileID: 11478032} + m_Layer: 5 + m_Name: Handle + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &142866 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22465820} + - component: {fileID: 22217064} + - component: {fileID: 11487346} + - component: {fileID: 11468552} + - component: {fileID: 11477610} + m_Layer: 5 + m_Name: Preset (6) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!1 &144296 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22475684} + - component: {fileID: 11493476} + m_Layer: 5 + m_Name: H + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &145996 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22402782} + - component: {fileID: 22281664} + - component: {fileID: 11477674} + m_Layer: 5 + m_Name: Handle + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &147170 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22410840} + m_Layer: 5 + m_Name: Handle Slide Area + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &150014 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22431826} + - component: {fileID: 22214676} + - component: {fileID: 11426072} + - component: {fileID: 11487120} + - component: {fileID: 11424714} + m_Layer: 5 + m_Name: ValueText + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &150098 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22478158} + - component: {fileID: 11496146} + m_Layer: 5 + m_Name: S + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &150874 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22498864} + - component: {fileID: 22223566} + - component: {fileID: 11469324} + - component: {fileID: 11410684} + m_Layer: 5 + m_Name: Background + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &152064 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22466750} + - component: {fileID: 22224878} + - component: {fileID: 11487462} + - component: {fileID: 11431838} + m_Layer: 5 + m_Name: LeftText + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &154358 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22489920} + - component: {fileID: 11469644} + - component: {fileID: 11495366} + - component: {fileID: 11422346} + m_Layer: 5 + m_Name: Slider + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &155710 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22485188} + - component: {fileID: 11437434} + - component: {fileID: 11400472} + - component: {fileID: 22284168} + - component: {fileID: 11401494} + m_Layer: 5 + m_Name: Presets + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &157080 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22465756} + - component: {fileID: 22222340} + - component: {fileID: 11457780} + - component: {fileID: 11404692} + m_Layer: 5 + m_Name: Background + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &157272 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22448498} + - component: {fileID: 22269110} + - component: {fileID: 11426166} + - component: {fileID: 11423364} + m_Layer: 5 + m_Name: Picker 2.0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &157484 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22447314} + - component: {fileID: 22257106} + - component: {fileID: 11437926} + - component: {fileID: 11482438} + - component: {fileID: 11443026} + m_Layer: 5 + m_Name: Preset (0) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &158070 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22441130} + - component: {fileID: 22216992} + - component: {fileID: 11464698} + m_Layer: 5 + m_Name: Handle + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &160884 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22437272} + - component: {fileID: 22226060} + - component: {fileID: 11432620} + m_Layer: 5 + m_Name: Handle + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &161688 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22416876} + - component: {fileID: 11456442} + - component: {fileID: 11415364} + - component: {fileID: 11472300} + m_Layer: 5 + m_Name: Slider + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &163020 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22413650} + - component: {fileID: 22221616} + - component: {fileID: 11407460} + - component: {fileID: 11482098} + m_Layer: 5 + m_Name: Background + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &165534 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22445236} + - component: {fileID: 22243436} + - component: {fileID: 11415580} + m_Layer: 5 + m_Name: Handle + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &165936 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22412396} + - component: {fileID: 11452336} + m_Layer: 5 + m_Name: V + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &165956 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22468756} + m_Layer: 5 + m_Name: HSVField + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &167088 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22490310} + - component: {fileID: 22296602} + - component: {fileID: 11419450} + - component: {fileID: 11428986} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &167200 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22431028} + m_Layer: 5 + m_Name: Handle Slide Area + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &167636 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22453238} + - component: {fileID: 22224940} + - component: {fileID: 11425880} + - component: {fileID: 11455240} + - component: {fileID: 11495652} + m_Layer: 5 + m_Name: Preset (9) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!1 &167830 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22487740} + - component: {fileID: 22228438} + - component: {fileID: 11489756} + - component: {fileID: 11401102} + - component: {fileID: 11482746} + m_Layer: 5 + m_Name: Create Button + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &168798 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22463286} + - component: {fileID: 11459258} + m_Layer: 5 + m_Name: B + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &168892 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22490412} + - component: {fileID: 22218658} + - component: {fileID: 11448266} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &169152 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22422416} + - component: {fileID: 22287232} + - component: {fileID: 11430666} + - component: {fileID: 11421370} + m_Layer: 5 + m_Name: LeftText + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &169390 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22415604} + - component: {fileID: 11463640} + m_Layer: 5 + m_Name: Sliders + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &169426 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22464540} + - component: {fileID: 11444998} + - component: {fileID: 11427848} + - component: {fileID: 11446360} + m_Layer: 5 + m_Name: Slider + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &173810 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22445984} + - component: {fileID: 22216614} + - component: {fileID: 11426590} + - component: {fileID: 11487238} + - component: {fileID: 11408032} + m_Layer: 5 + m_Name: Preset (5) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!1 &174742 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22460006} + - component: {fileID: 22260376} + - component: {fileID: 11494638} + - component: {fileID: 11485084} + - component: {fileID: 11469158} + m_Layer: 5 + m_Name: Preset (3) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!1 &176944 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22446496} + - component: {fileID: 22208798} + - component: {fileID: 11459056} + - component: {fileID: 11488000} + m_Layer: 5 + m_Name: Fill + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &184328 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22455926} + - component: {fileID: 22240504} + - component: {fileID: 11425336} + - component: {fileID: 11485672} + - component: {fileID: 11482218} + m_Layer: 5 + m_Name: Preset (7) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!1 &185536 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22423050} + - component: {fileID: 22282672} + - component: {fileID: 11489330} + - component: {fileID: 11403544} + m_Layer: 5 + m_Name: Background + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &185578 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22439774} + - component: {fileID: 22263392} + - component: {fileID: 11429486} + - component: {fileID: 11481940} + m_Layer: 5 + m_Name: Background + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &186436 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22468616} + m_Layer: 5 + m_Name: Handle Slide Area + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &187878 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22484834} + - component: {fileID: 22278160} + - component: {fileID: 11441004} + - component: {fileID: 11452934} + - component: {fileID: 11439404} + m_Layer: 5 + m_Name: Preset (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &188196 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22493148} + - component: {fileID: 22254392} + - component: {fileID: 11421558} + - component: {fileID: 11418062} + m_Layer: 5 + m_Name: LeftText + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &188290 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22460246} + - component: {fileID: 11435842} + m_Layer: 5 + m_Name: Seperator + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &189222 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22474838} + - component: {fileID: 11460148} + - component: {fileID: 11477176} + - component: {fileID: 11411114} + m_Layer: 5 + m_Name: Slider + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &190312 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22462776} + - component: {fileID: 22230530} + - component: {fileID: 11430478} + - component: {fileID: 11436886} + m_Layer: 5 + m_Name: LeftText + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &190688 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22410532} + - component: {fileID: 22222836} + - component: {fileID: 11410848} + - component: {fileID: 11435758} + - component: {fileID: 11414424} + m_Layer: 5 + m_Name: ValueText + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &191318 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22476772} + - component: {fileID: 11423356} + - component: {fileID: 11488972} + - component: {fileID: 11457668} + m_Layer: 5 + m_Name: Slider + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &192330 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22413792} + - component: {fileID: 22255370} + - component: {fileID: 11461114} + m_Layer: 5 + m_Name: Color + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &192924 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22471252} + - component: {fileID: 22247702} + - component: {fileID: 11454424} + m_Layer: 5 + m_Name: Handle + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &194224 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22489814} + - component: {fileID: 11476502} + m_Layer: 5 + m_Name: ColorField + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &194704 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22415658} + - component: {fileID: 22220132} + - component: {fileID: 11418286} + - component: {fileID: 11470716} + - component: {fileID: 11415596} + m_Layer: 5 + m_Name: Preset (4) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!1 &194772 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22407456} + - component: {fileID: 22254790} + - component: {fileID: 11476698} + - component: {fileID: 11493426} + m_Layer: 5 + m_Name: LeftText + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &196384 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22449292} + - component: {fileID: 11417476} + - component: {fileID: 11468650} + - component: {fileID: 11424932} + m_Layer: 5 + m_Name: Slider + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &196948 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22421016} + - component: {fileID: 11407234} + m_Layer: 5 + m_Name: G + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &197314 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22400824} + - component: {fileID: 22221412} + - component: {fileID: 11407662} + - component: {fileID: 11413310} + m_Layer: 5 + m_Name: Background + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &197864 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22405742} + - component: {fileID: 22217712} + - component: {fileID: 11415718} + - component: {fileID: 11429994} + - component: {fileID: 11445998} + m_Layer: 5 + m_Name: ValueText + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &198926 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 22419058} + m_Layer: 5 + m_Name: Handle Slide Area + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &11400472 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 155710} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -405508275, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 1 + m_Right: 1 + m_Top: 1 + m_Bottom: 1 + m_ChildAlignment: 0 + m_Spacing: 1 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 1 + m_ChildControlHeight: 1 +--- !u!114 &11400974 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 109170} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 25 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &11401102 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 167830} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 11489756} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 11437434} + m_MethodName: CreatePresetButton + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &11401494 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 155710} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.1544118, g: 0.1544118, b: 0.1544118, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 0} + m_Type: 2 + m_PreserveAspect: 0 + m_FillCenter: 0 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!114 &11403544 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 185536} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7ca76dd9ad6eb204c9b0481aece34497, type: 3} + m_Name: + m_EditorClassIdentifier: + picker: {fileID: 11423364} + type: 2 + direction: 0 +--- !u!114 &11404692 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 157080} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7ca76dd9ad6eb204c9b0481aece34497, type: 3} + m_Name: + m_EditorClassIdentifier: + picker: {fileID: 11423364} + type: 1 + direction: 0 +--- !u!114 &11407234 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 196948} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -405508275, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 5 + m_Right: 5 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 5 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 1 + m_ChildControlHeight: 1 +--- !u!114 &11407460 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 163020} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -98529514, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Texture: {fileID: 0} + m_UVRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 2 +--- !u!114 &11407662 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 197314} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -98529514, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Texture: {fileID: 0} + m_UVRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 2 +--- !u!114 &11408032 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 173810} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 20 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &11410684 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 150874} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7ca76dd9ad6eb204c9b0481aece34497, type: 3} + m_Name: + m_EditorClassIdentifier: + picker: {fileID: 11423364} + type: 6 + direction: 0 +--- !u!114 &11410848 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 190688} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: 255 +--- !u!114 &11411114 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 189222} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: c600592efa0cf25479655321bf4fb08a, type: 3} + m_Name: + m_EditorClassIdentifier: + hsvpicker: {fileID: 11423364} + type: 2 +--- !u!114 &11411592 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 119286} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 25 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &11412718 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 138390} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 15 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &11413242 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 109650} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -113659843, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 11415580} + m_FillRect: {fileID: 0} + m_HandleRect: {fileID: 22445236} + m_Direction: 0 + m_MinValue: 0 + m_MaxValue: 1 + m_WholeNumbers: 0 + m_Value: 0 + m_OnValueChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.Slider+SliderEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &11413310 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 197314} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7ca76dd9ad6eb204c9b0481aece34497, type: 3} + m_Name: + m_EditorClassIdentifier: + picker: {fileID: 11423364} + type: 0 + direction: 0 +--- !u!114 &11414424 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 190688} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 25 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &11415364 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 161688} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: -1 + m_PreferredHeight: 16 + m_FlexibleWidth: 1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &11415580 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 165534} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!114 &11415596 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 194704} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 20 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &11415718 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 197864} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: 0 +--- !u!114 &11417476 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 196384} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -113659843, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 11478032} + m_FillRect: {fileID: 0} + m_HandleRect: {fileID: 22429276} + m_Direction: 0 + m_MinValue: 0 + m_MaxValue: 1 + m_WholeNumbers: 0 + m_Value: 0 + m_OnValueChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.Slider+SliderEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &11417700 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 124486} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.7205882, g: 0.5700394, b: 0.1748486, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!114 &11417916 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 123062} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 25 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &11418062 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 188196} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 15 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &11418286 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 194704} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!114 &11419324 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 109862} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 0.5} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 2 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: Enter text... +--- !u!114 &11419450 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 167088} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 1 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: + +--- !u!114 &11421370 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 169152} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 15 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &11421558 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 188196} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: A +--- !u!114 &11422346 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 154358} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: c600592efa0cf25479655321bf4fb08a, type: 3} + m_Name: + m_EditorClassIdentifier: + hsvpicker: {fileID: 11423364} + type: 5 +--- !u!114 &11423356 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 191318} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -113659843, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 11432620} + m_FillRect: {fileID: 0} + m_HandleRect: {fileID: 22437272} + m_Direction: 0 + m_MinValue: 0 + m_MaxValue: 1 + m_WholeNumbers: 0 + m_Value: 0 + m_OnValueChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.Slider+SliderEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &11423364 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 157272} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 8262e4a8322117f4da079921eaa72834, type: 3} + m_Name: + m_EditorClassIdentifier: + onValueChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: ColorChangedEvent, Assembly-CSharp, Version=0.0.0.0, Culture=neutral, + PublicKeyToken=null +--- !u!114 &11424714 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 150014} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 25 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &11424766 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 118568} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 37c44bc94a9a7f241b5b552f3ff89458, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 0 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: 4e6f726d616c + m_HighlightedTrigger: 486967686c696768746564 + m_PressedTrigger: 50726573736564 + m_DisabledTrigger: 44697361626c6564 + m_Interactable: 1 + m_TargetGraphic: {fileID: 11436574} + m_HandleRect: {fileID: 22499384} + m_MinValue: 0 + m_MaxValue: 1 + m_WholeNumbers: 0 + m_Value: 1 + m_ValueY: 1 + m_OnValueChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.BoxSlider+BoxSliderEvent, Assembly-CSharp, Version=0.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &11424932 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 196384} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: c600592efa0cf25479655321bf4fb08a, type: 3} + m_Name: + m_EditorClassIdentifier: + hsvpicker: {fileID: 11423364} + type: 6 +--- !u!114 &11425336 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 184328} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!114 &11425880 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 167636} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!114 &11426072 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 150014} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: 0 +--- !u!114 &11426166 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 157272} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 0.392} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 10907, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!114 &11426590 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 173810} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!114 &11427848 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 169426} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: -1 + m_PreferredHeight: 16 + m_FlexibleWidth: 1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &11428072 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 134618} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: G +--- !u!114 &11428986 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 167088} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -900027084, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_EffectColor: {r: 0, g: 0, b: 0, a: 0.5} + m_EffectDistance: {x: 1, y: -1} + m_UseGraphicAlpha: 1 +--- !u!114 &11429028 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 137072} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!114 &11429486 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 185578} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -98529514, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Texture: {fileID: 0} + m_UVRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 2 + height: 1 +--- !u!114 &11429994 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 197864} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 6b10e832a32d2d14facd8a3f489ee8d6, type: 3} + m_Name: + m_EditorClassIdentifier: + picker: {fileID: 11423364} + type: 5 + prefix: + minValue: 0 + maxValue: 255 + precision: 0 +--- !u!114 &11430478 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 190312} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: R +--- !u!114 &11430666 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 169152} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: S +--- !u!114 &11431838 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 152064} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 15 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &11431864 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 120788} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7ca76dd9ad6eb204c9b0481aece34497, type: 3} + m_Name: + m_EditorClassIdentifier: + picker: {fileID: 11423364} + type: 4 + direction: 0 +--- !u!114 &11432620 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 160884} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!114 &11433944 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 119286} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 6b10e832a32d2d14facd8a3f489ee8d6, type: 3} + m_Name: + m_EditorClassIdentifier: + picker: {fileID: 11423364} + type: 1 + prefix: + minValue: 0 + maxValue: 255 + precision: 0 +--- !u!114 &11434628 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 103988} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7ca76dd9ad6eb204c9b0481aece34497, type: 3} + m_Name: + m_EditorClassIdentifier: + picker: {fileID: 11423364} + type: 5 + direction: 0 +--- !u!114 &11435316 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 118516} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: 0 +--- !u!114 &11435758 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 190688} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 6b10e832a32d2d14facd8a3f489ee8d6, type: 3} + m_Name: + m_EditorClassIdentifier: + picker: {fileID: 11423364} + type: 3 + prefix: + minValue: 0 + maxValue: 255 + precision: 0 +--- !u!114 &11435842 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 188290} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: -1 + m_PreferredHeight: -1 + m_FlexibleWidth: 1 + m_FlexibleHeight: 1 + m_LayoutPriority: 1 +--- !u!114 &11436574 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 118568} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -98529514, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Texture: {fileID: 0} + m_UVRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 +--- !u!114 &11436886 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 190312} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 15 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &11437434 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 155710} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0923373e76e77402c9c53a2f1250ad3e, type: 3} + m_Name: + m_EditorClassIdentifier: + picker: {fileID: 11423364} + presets: + - {fileID: 157484} + - {fileID: 187878} + - {fileID: 124486} + - {fileID: 174742} + - {fileID: 194704} + - {fileID: 173810} + - {fileID: 142866} + - {fileID: 184328} + - {fileID: 110962} + - {fileID: 167636} + createPresetImage: {fileID: 11489756} +--- !u!114 &11437926 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 157484} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.7647059, g: 0.19117647, b: 0.19117647, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!114 &11439404 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 187878} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 20 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &11441004 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 187878} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.21366784, g: 0.7647059, b: 0.30867442, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!114 &11443026 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 157484} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 18 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &11443082 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 138390} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: V +--- !u!114 &11443566 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 110962} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!114 &11444998 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 169426} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -113659843, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 11498926} + m_FillRect: {fileID: 0} + m_HandleRect: {fileID: 22469358} + m_Direction: 0 + m_MinValue: 0 + m_MaxValue: 1 + m_WholeNumbers: 0 + m_Value: 0 + m_OnValueChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.Slider+SliderEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &11445998 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 197864} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 25 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &11446360 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 169426} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: c600592efa0cf25479655321bf4fb08a, type: 3} + m_Name: + m_EditorClassIdentifier: + hsvpicker: {fileID: 11423364} + type: 1 +--- !u!114 &11448266 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 168892} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 0 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: +--- !u!114 &11448474 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 109170} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 6b10e832a32d2d14facd8a3f489ee8d6, type: 3} + m_Name: + m_EditorClassIdentifier: + picker: {fileID: 11423364} + type: 4 + prefix: + minValue: 0 + maxValue: 255 + precision: 0 +--- !u!114 &11449214 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 120788} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -98529514, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Texture: {fileID: 0} + m_UVRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 2 +--- !u!114 &11451352 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 118848} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: -1 + m_PreferredHeight: -1 + m_FlexibleWidth: 1 + m_FlexibleHeight: 1 + m_LayoutPriority: 1 +--- !u!114 &11452006 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 113862} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -405508275, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 5 + m_Right: 5 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 5 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 1 + m_ChildControlHeight: 1 +--- !u!114 &11452336 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 165936} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -405508275, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 5 + m_Right: 5 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 5 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 1 + m_ChildControlHeight: 1 +--- !u!114 &11452934 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 187878} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 11441004} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 11437434} + m_MethodName: PresetSelect + m_Mode: 2 + m_Arguments: + m_ObjectArgument: {fileID: 11441004} + m_ObjectArgumentAssemblyTypeName: UnityEngine.UI.Image, UnityEngine.UI + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &11453048 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 134618} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 15 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &11453686 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 110962} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 20 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &11454424 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 192924} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!114 &11455040 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 109518} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -405508275, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 5 + m_Right: 5 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 5 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 1 + m_ChildControlHeight: 1 +--- !u!114 &11455240 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 167636} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 11425880} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 11437434} + m_MethodName: PresetSelect + m_Mode: 2 + m_Arguments: + m_ObjectArgument: {fileID: 11425880} + m_ObjectArgumentAssemblyTypeName: UnityEngine.UI.Image, UnityEngine.UI + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &11456442 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 161688} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -113659843, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 11477674} + m_FillRect: {fileID: 0} + m_HandleRect: {fileID: 22402782} + m_Direction: 0 + m_MinValue: 0 + m_MaxValue: 1 + m_WholeNumbers: 0 + m_Value: 0 + m_OnValueChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.Slider+SliderEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &11457280 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 117174} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 10911, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!114 &11457668 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 191318} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: c600592efa0cf25479655321bf4fb08a, type: 3} + m_Name: + m_EditorClassIdentifier: + hsvpicker: {fileID: 11423364} + type: 4 +--- !u!114 &11457780 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 157080} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -98529514, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Texture: {fileID: 0} + m_UVRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 2 +--- !u!114 &11459034 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 109650} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: -1 + m_PreferredHeight: 16 + m_FlexibleWidth: 1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &11459056 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 176944} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 10911, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!114 &11459258 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 168798} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -405508275, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 5 + m_Right: 5 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 5 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 1 + m_ChildControlHeight: 1 +--- !u!114 &11460148 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 189222} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -113659843, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 11429028} + m_FillRect: {fileID: 0} + m_HandleRect: {fileID: 22432592} + m_Direction: 0 + m_MinValue: 0 + m_MaxValue: 1 + m_WholeNumbers: 0 + m_Value: 0 + m_OnValueChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.Slider+SliderEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &11460492 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 109170} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: 0 +--- !u!114 &11461114 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 192330} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0.39215687} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 10911, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 0 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!114 &11461748 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 103988} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -98529514, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Texture: {fileID: 0} + m_UVRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 2 +--- !u!114 &11463028 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 117174} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 575553740, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 11457280} + m_TextComponent: {fileID: 11448266} + m_Placeholder: {fileID: 11419324} + m_ContentType: 0 + m_InputType: 0 + m_AsteriskChar: 42 + m_KeyboardType: 0 + m_LineType: 0 + m_HideMobileInput: 0 + m_CharacterValidation: 0 + m_CharacterLimit: 0 + m_OnEndEdit: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.InputField+SubmitEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null + m_OnValueChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.InputField+OnChangeEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null + m_CaretColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_CustomCaretColor: 0 + m_SelectionColor: {r: 0.65882355, g: 0.80784315, b: 1, a: 0.7529412} + m_Text: + m_CaretBlinkRate: 0.85 + m_CaretWidth: 1 + m_ReadOnly: 0 +--- !u!114 &11463516 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 118568} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 1e4240873631f724496efec97d7151b3, type: 3} + m_Name: + m_EditorClassIdentifier: + picker: {fileID: 11423364} +--- !u!114 &11463640 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 169390} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1297475563, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 0 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 1 + m_ChildControlHeight: 1 +--- !u!114 &11464698 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 158070} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 10911, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!114 &11468552 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 142866} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 11487346} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 11437434} + m_MethodName: PresetSelect + m_Mode: 2 + m_Arguments: + m_ObjectArgument: {fileID: 11487346} + m_ObjectArgumentAssemblyTypeName: UnityEngine.UI.Image, UnityEngine.UI + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &11468650 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 196384} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: -1 + m_PreferredHeight: 16 + m_FlexibleWidth: 1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &11469158 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 174742} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 20 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &11469324 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 150874} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -98529514, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Texture: {fileID: 0} + m_UVRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 2 +--- !u!114 &11469644 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 154358} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -113659843, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 11454424} + m_FillRect: {fileID: 0} + m_HandleRect: {fileID: 22471252} + m_Direction: 0 + m_MinValue: 0 + m_MaxValue: 1 + m_WholeNumbers: 0 + m_Value: 0 + m_OnValueChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.Slider+SliderEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &11469678 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 110962} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 11443566} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 11437434} + m_MethodName: PresetSelect + m_Mode: 2 + m_Arguments: + m_ObjectArgument: {fileID: 11443566} + m_ObjectArgumentAssemblyTypeName: UnityEngine.UI.Image, UnityEngine.UI + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &11469788 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 114640} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: c600592efa0cf25479655321bf4fb08a, type: 3} + m_Name: + m_EditorClassIdentifier: + hsvpicker: {fileID: 11423364} + type: 4 +--- !u!114 &11470716 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 194704} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 11418286} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 11437434} + m_MethodName: PresetSelect + m_Mode: 2 + m_Arguments: + m_ObjectArgument: {fileID: 11418286} + m_ObjectArgumentAssemblyTypeName: UnityEngine.UI.Image, UnityEngine.UI + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &11472300 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 161688} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: c600592efa0cf25479655321bf4fb08a, type: 3} + m_Name: + m_EditorClassIdentifier: + hsvpicker: {fileID: 11423364} + type: 0 +--- !u!114 &11475176 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 119286} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: 0 +--- !u!114 &11475674 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 109276} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -1254083943, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_AspectMode: 3 + m_AspectRatio: 1 +--- !u!114 &11476502 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 194224} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -405508275, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 5 + m_Right: 5 + m_Top: 10 + m_Bottom: 10 + m_ChildAlignment: 0 + m_Spacing: 10 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 1 + m_ChildControlHeight: 1 +--- !u!114 &11476698 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 194772} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: B +--- !u!114 &11477176 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 189222} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: -1 + m_PreferredHeight: 16 + m_FlexibleWidth: 1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &11477610 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 142866} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 20 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &11477674 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 145996} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!114 &11478032 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 141026} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!114 &11479482 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 118516} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 25 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &11480596 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 123062} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 6b10e832a32d2d14facd8a3f489ee8d6, type: 3} + m_Name: + m_EditorClassIdentifier: + picker: {fileID: 11423364} + type: 0 + prefix: + minValue: 0 + maxValue: 255 + precision: 0 +--- !u!114 &11481106 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 109650} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: c600592efa0cf25479655321bf4fb08a, type: 3} + m_Name: + m_EditorClassIdentifier: + hsvpicker: {fileID: 11423364} + type: 3 +--- !u!114 &11481940 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 185578} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7ca76dd9ad6eb204c9b0481aece34497, type: 3} + m_Name: + m_EditorClassIdentifier: + picker: {fileID: 11423364} + type: 4 + direction: 2 +--- !u!114 &11482098 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 163020} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7ca76dd9ad6eb204c9b0481aece34497, type: 3} + m_Name: + m_EditorClassIdentifier: + picker: {fileID: 11423364} + type: 3 + direction: 0 +--- !u!114 &11482218 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 184328} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 20 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &11482438 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 157484} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 11437926} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 11437434} + m_MethodName: PresetSelect + m_Mode: 2 + m_Arguments: + m_ObjectArgument: {fileID: 11437926} + m_ObjectArgumentAssemblyTypeName: UnityEngine.UI.Image, UnityEngine.UI + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &11482746 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 167830} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 20 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &11482782 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 118516} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 6b10e832a32d2d14facd8a3f489ee8d6, type: 3} + m_Name: + m_EditorClassIdentifier: + picker: {fileID: 11423364} + type: 2 + prefix: + minValue: 0 + maxValue: 255 + precision: 0 +--- !u!114 &11483982 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 117174} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d85c534b3c1560544b09d0996dfeba84, type: 3} + m_Name: + m_EditorClassIdentifier: + hsvpicker: {fileID: 11423364} + displayAlpha: 0 +--- !u!114 &11484674 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 109976} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 10913, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!114 &11485084 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 174742} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 11494638} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 11437434} + m_MethodName: PresetSelect + m_Mode: 2 + m_Arguments: + m_ObjectArgument: {fileID: 11494638} + m_ObjectArgumentAssemblyTypeName: UnityEngine.UI.Image, UnityEngine.UI + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &11485672 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 184328} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 11425336} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 11437434} + m_MethodName: PresetSelect + m_Mode: 2 + m_Arguments: + m_ObjectArgument: {fileID: 11425336} + m_ObjectArgumentAssemblyTypeName: UnityEngine.UI.Image, UnityEngine.UI + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &11487120 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 150014} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 6b10e832a32d2d14facd8a3f489ee8d6, type: 3} + m_Name: + m_EditorClassIdentifier: + picker: {fileID: 11423364} + type: 6 + prefix: + minValue: 0 + maxValue: 255 + precision: 0 +--- !u!114 &11487238 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 173810} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 11426590} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 11437434} + m_MethodName: PresetSelect + m_Mode: 2 + m_Arguments: + m_ObjectArgument: {fileID: 11426590} + m_ObjectArgumentAssemblyTypeName: UnityEngine.UI.Image, UnityEngine.UI + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &11487346 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 142866} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!114 &11487462 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 152064} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: H +--- !u!114 &11488000 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 176944} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 6bca58eb07ad66b498a2f158bcb13225, type: 3} + m_Name: + m_EditorClassIdentifier: + picker: {fileID: 11423364} +--- !u!114 &11488972 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 191318} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: -1 + m_PreferredHeight: 16 + m_FlexibleWidth: 1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &11489330 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 185536} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -98529514, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Texture: {fileID: 0} + m_UVRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 2 +--- !u!114 &11489756 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 167830} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!114 &11491764 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 124486} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 20 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &11493426 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 194772} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 15 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &11493476 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 144296} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -405508275, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 5 + m_Right: 5 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 5 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 1 + m_ChildControlHeight: 1 +--- !u!114 &11494638 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 174742} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!114 &11495366 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 154358} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: -1 + m_PreferredHeight: 16 + m_FlexibleWidth: 1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &11495652 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 167636} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 20 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &11496146 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 150098} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -405508275, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 5 + m_Right: 5 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 5 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 1 + m_ChildControlHeight: 1 +--- !u!114 &11496660 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 124486} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 11417700} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 11437434} + m_MethodName: PresetSelect + m_Mode: 2 + m_Arguments: + m_ObjectArgument: {fileID: 11417700} + m_ObjectArgumentAssemblyTypeName: UnityEngine.UI.Image, UnityEngine.UI + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &11498926 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 135120} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!114 &11499806 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 114640} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -113659843, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 11464698} + m_FillRect: {fileID: 0} + m_HandleRect: {fileID: 22441130} + m_Direction: 2 + m_MinValue: 0 + m_MaxValue: 1 + m_WholeNumbers: 0 + m_Value: 0 + m_OnValueChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.Slider+SliderEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &11499970 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 123062} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: 0 +--- !u!222 &22202916 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 103988} +--- !u!222 &22206792 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 134618} +--- !u!222 &22208798 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 176944} +--- !u!222 &22208894 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 109862} +--- !u!222 &22213064 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 123062} +--- !u!222 &22214548 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 138390} +--- !u!222 &22214676 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 150014} +--- !u!222 &22215766 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 119286} +--- !u!222 &22216614 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 173810} +--- !u!222 &22216992 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 158070} +--- !u!222 &22217064 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 142866} +--- !u!222 &22217712 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 197864} +--- !u!222 &22218658 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 168892} +--- !u!222 &22220132 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 194704} +--- !u!222 &22221412 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 197314} +--- !u!222 &22221616 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 163020} +--- !u!222 &22222340 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 157080} +--- !u!222 &22222454 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 118568} +--- !u!222 &22222836 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 190688} +--- !u!222 &22223566 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 150874} +--- !u!222 &22224878 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 152064} +--- !u!222 &22224940 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 167636} +--- !u!222 &22226060 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 160884} +--- !u!222 &22228438 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 167830} +--- !u!222 &22230530 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 190312} +--- !u!222 &22236658 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 109976} +--- !u!222 &22240504 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 184328} +--- !u!222 &22241672 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 137072} +--- !u!222 &22243436 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 165534} +--- !u!222 &22247702 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 192924} +--- !u!222 &22252030 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 124486} +--- !u!222 &22254392 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 188196} +--- !u!222 &22254790 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 194772} +--- !u!222 &22255370 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 192330} +--- !u!222 &22257106 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 157484} +--- !u!222 &22258132 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 118516} +--- !u!222 &22260376 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 174742} +--- !u!222 &22261740 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 117174} +--- !u!222 &22263392 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 185578} +--- !u!222 &22267742 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 120788} +--- !u!222 &22269076 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 110962} +--- !u!222 &22269110 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 157272} +--- !u!222 &22278160 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 187878} +--- !u!222 &22281664 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 145996} +--- !u!222 &22282672 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 185536} +--- !u!222 &22284168 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 155710} +--- !u!222 &22287232 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 169152} +--- !u!222 &22289050 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 109170} +--- !u!222 &22294074 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 135120} +--- !u!222 &22296602 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 167088} +--- !u!222 &22296874 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 141026} +--- !u!224 &22400824 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 197314} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 22416876} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.25} + m_AnchorMax: {x: 1, y: 0.75} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22402782 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 145996} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 22498948} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 5, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22404596 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 118516} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 22463286} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22405742 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 197864} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 22478158} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22407396 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 110962} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 22485188} + m_RootOrder: 8 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 185.45453, y: -10} + m_SizeDelta: {x: 21.818182, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22407456 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 194772} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 22463286} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22409896 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 123062} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 22449618} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22410532 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 190688} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 22473052} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22410840 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 147170} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 22469358} + m_Father: {fileID: 22464540} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22412396 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 165936} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 22477690} + - {fileID: 22449292} + - {fileID: 22431826} + m_Father: {fileID: 22415604} + m_RootOrder: 6 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22413650 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 163020} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 22471500} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.25} + m_AnchorMax: {x: 1, y: 0.75} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22413792 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 192330} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 22446496} + m_Father: {fileID: 22489814} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22415604 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 169390} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 22449618} + - {fileID: 22421016} + - {fileID: 22463286} + - {fileID: 22460246} + - {fileID: 22475684} + - {fileID: 22478158} + - {fileID: 22412396} + - {fileID: 22422480} + - {fileID: 22473052} + m_Father: {fileID: 22448498} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 0} + m_AnchoredPosition: {x: 0, y: 170} + m_SizeDelta: {x: 0, y: 145} + m_Pivot: {x: 0.5, y: 1} +--- !u!224 &22415658 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 194704} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 22485188} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 98.181816, y: -10} + m_SizeDelta: {x: 21.818182, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22416876 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 161688} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 22400824} + - {fileID: 22498948} + m_Father: {fileID: 22449618} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22419058 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 198926} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 22471252} + m_Father: {fileID: 22489920} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22419704 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 103988} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 22489920} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.25} + m_AnchorMax: {x: 1, y: 0.75} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22421016 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 196948} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 22446644} + - {fileID: 22464540} + - {fileID: 22467618} + m_Father: {fileID: 22415604} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22422416 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 169152} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 22478158} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22422480 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 118848} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 22415604} + m_RootOrder: 7 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22423050 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 185536} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 22474838} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.25} + m_AnchorMax: {x: 1, y: 0.75} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22429276 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 141026} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 22431028} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 5, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22431028 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 167200} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 22429276} + m_Father: {fileID: 22449292} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22431826 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 150014} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 22412396} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22432592 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 137072} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 22463192} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 5, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22437272 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 160884} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 22475824} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 5, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22439774 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 185578} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 22462156} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22441130 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 158070} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 22468616} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 8} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22445236 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 165534} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 22464350} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 5, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22445984 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 173810} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 22485188} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 120, y: -10} + m_SizeDelta: {x: 21.818182, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22446496 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 176944} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 22413792} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22446600 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 117174} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 22463646} + - {fileID: 22490412} + m_Father: {fileID: 22489814} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22446644 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 134618} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 22421016} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22447314 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 157484} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 22485188} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22448238 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 134460} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 22499384} + m_Father: {fileID: 22462880} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: -20, y: -20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22448498 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 157272} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 22489814} + - {fileID: 22468756} + - {fileID: 22415604} + - {fileID: 22485188} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 800, y: 800} + m_Pivot: {x: 0, y: 1} +--- !u!224 &22449292 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 196384} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 22498864} + - {fileID: 22431028} + m_Father: {fileID: 22412396} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22449618 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 113862} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 22462776} + - {fileID: 22416876} + - {fileID: 22409896} + m_Father: {fileID: 22415604} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22453238 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 167636} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 22485188} + m_RootOrder: 9 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 207.2727, y: -10} + m_SizeDelta: {x: 21.818182, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22455926 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 184328} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 22485188} + m_RootOrder: 7 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 163.63635, y: -10} + m_SizeDelta: {x: 21.818182, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22460006 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 174742} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 22485188} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 76.36363, y: -10} + m_SizeDelta: {x: 21.818182, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22460246 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 188290} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 22415604} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22462156 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 114640} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 22439774} + - {fileID: 22468616} + m_Father: {fileID: 22468756} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 1, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: -25, y: -5} + m_SizeDelta: {x: 20, y: -10} + m_Pivot: {x: 0, y: 1} +--- !u!224 &22462776 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 190312} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 22449618} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22462880 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 118568} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 22448238} + m_Father: {fileID: 22497436} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22463192 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 108322} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 22432592} + m_Father: {fileID: 22474838} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22463286 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 168798} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 22407456} + - {fileID: 22474838} + - {fileID: 22404596} + m_Father: {fileID: 22415604} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22463646 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 109862} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 22446600} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: -0.5} + m_SizeDelta: {x: -20, y: -13} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22464350 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 102730} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 22445236} + m_Father: {fileID: 22471500} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22464540 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 169426} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 22465756} + - {fileID: 22410840} + m_Father: {fileID: 22421016} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22465756 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 157080} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 22464540} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.25} + m_AnchorMax: {x: 1, y: 0.75} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22465820 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 142866} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 22485188} + m_RootOrder: 6 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 141.81818, y: -10} + m_SizeDelta: {x: 21.818182, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22466750 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 152064} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 22475684} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22467618 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 119286} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 22421016} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22468616 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 186436} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 22441130} + m_Father: {fileID: 22462156} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22468756 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 165956} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 22486906} + - {fileID: 22462156} + m_Father: {fileID: 22448498} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 60} + m_SizeDelta: {x: 0, y: -220} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22469358 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 135120} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 22410840} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 5, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22471252 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 192924} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 22419058} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 5, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22471500 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 109650} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 22413650} + - {fileID: 22464350} + m_Father: {fileID: 22473052} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22473052 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 109518} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 22493148} + - {fileID: 22471500} + - {fileID: 22410532} + m_Father: {fileID: 22415604} + m_RootOrder: 8 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22474838 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 189222} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 22423050} + - {fileID: 22463192} + m_Father: {fileID: 22463286} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22475684 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 144296} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 22466750} + - {fileID: 22476772} + - {fileID: 22483054} + m_Father: {fileID: 22415604} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22475824 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 127516} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 22437272} + m_Father: {fileID: 22476772} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22476772 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 191318} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 22479018} + - {fileID: 22475824} + m_Father: {fileID: 22475684} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22477690 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 138390} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 22412396} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22478158 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 150098} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 22422416} + - {fileID: 22489920} + - {fileID: 22405742} + m_Father: {fileID: 22415604} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22479018 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 120788} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 22476772} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.25} + m_AnchorMax: {x: 1, y: 0.75} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22483054 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 109170} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 22475684} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22484834 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 187878} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 22485188} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22485188 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 155710} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 22447314} + - {fileID: 22484834} + - {fileID: 22488338} + - {fileID: 22460006} + - {fileID: 22415658} + - {fileID: 22445984} + - {fileID: 22465820} + - {fileID: 22455926} + - {fileID: 22407396} + - {fileID: 22453238} + - {fileID: 22487740} + m_Father: {fileID: 22448498} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 0} + m_AnchoredPosition: {x: 0, y: 13} + m_SizeDelta: {x: -6, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22486906 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 119204} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 22497436} + m_Father: {fileID: 22468756} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: -12.5, y: 0} + m_SizeDelta: {x: -35, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22487740 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 167830} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 22490310} + m_Father: {fileID: 22485188} + m_RootOrder: 10 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22488338 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 124486} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 22485188} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22489814 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 194224} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 22413792} + - {fileID: 22446600} + m_Father: {fileID: 22448498} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 50} + m_Pivot: {x: 0.5, y: 1} +--- !u!224 &22489920 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 154358} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 22419704} + - {fileID: 22419058} + m_Father: {fileID: 22478158} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22490310 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 167088} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 22487740} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22490412 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 168892} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 22446600} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: -0.5} + m_SizeDelta: {x: -20, y: -13} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22493148 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 188196} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 22473052} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22497436 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 109276} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 22462880} + m_Father: {fileID: 22486906} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22498864 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 150874} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 22449292} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.25} + m_AnchorMax: {x: 1, y: 0.75} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22498948 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 113042} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 22402782} + m_Father: {fileID: 22416876} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22499384 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 109976} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 22448238} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 20, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1001 &100100000 +Prefab: + m_ObjectHideFlags: 1 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: [] + m_RemovedComponents: [] + m_ParentPrefab: {fileID: 0} + m_RootGameObject: {fileID: 157272} + m_IsPrefabParent: 1 diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/Picker 2.0.prefab.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/Picker 2.0.prefab.meta new file mode 100644 index 000000000..55845f468 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/Picker 2.0.prefab.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 916ee089a0d7b63419075f91e1c657ec +timeCreated: 1442747914 +licenseType: Free +NativeFormatImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/PickerTest.unity b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/PickerTest.unity new file mode 100644 index 000000000..f81822295 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/PickerTest.unity @@ -0,0 +1,16529 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!29 &1 +OcclusionCullingSettings: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_OcclusionBakeSettings: + smallestOccluder: 5 + smallestHole: 0.25 + backfaceThreshold: 100 + m_SceneGUID: 00000000000000000000000000000000 + m_OcclusionCullingData: {fileID: 0} +--- !u!104 &2 +RenderSettings: + m_ObjectHideFlags: 0 + serializedVersion: 8 + m_Fog: 0 + m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_FogMode: 3 + m_FogDensity: 0.01 + m_LinearFogStart: 0 + m_LinearFogEnd: 300 + m_AmbientSkyColor: {r: 0.2, g: 0.2, b: 0.2, a: 1} + m_AmbientEquatorColor: {r: 0.2, g: 0.2, b: 0.2, a: 1} + m_AmbientGroundColor: {r: 0.2, g: 0.2, b: 0.2, a: 1} + m_AmbientIntensity: 1 + m_AmbientMode: 3 + m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} + m_SkyboxMaterial: {fileID: 0} + m_HaloStrength: 0.5 + m_FlareStrength: 1 + m_FlareFadeSpeed: 3 + m_HaloTexture: {fileID: 0} + m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0} + m_DefaultReflectionMode: 0 + m_DefaultReflectionResolution: 128 + m_ReflectionBounces: 1 + m_ReflectionIntensity: 1 + m_CustomReflection: {fileID: 0} + m_Sun: {fileID: 0} + m_IndirectSpecularColor: {r: 0, g: 0, b: 0, a: 1} +--- !u!157 &4 +LightmapSettings: + m_ObjectHideFlags: 0 + serializedVersion: 11 + m_GIWorkflowMode: 1 + m_GISettings: + serializedVersion: 2 + m_BounceScale: 1 + m_IndirectOutputScale: 1 + m_AlbedoBoost: 1 + m_TemporalCoherenceThreshold: 1 + m_EnvironmentLightingMode: 0 + m_EnableBakedLightmaps: 1 + m_EnableRealtimeLightmaps: 0 + m_LightmapEditorSettings: + serializedVersion: 9 + m_Resolution: 1 + m_BakeResolution: 50 + m_TextureWidth: 1024 + m_TextureHeight: 1024 + m_AO: 0 + m_AOMaxDistance: 1 + m_CompAOExponent: 0 + m_CompAOExponentDirect: 0 + m_Padding: 2 + m_LightmapParameters: {fileID: 0} + m_LightmapsBakeMode: 1 + m_TextureCompression: 0 + m_FinalGather: 0 + m_FinalGatherFiltering: 1 + m_FinalGatherRayCount: 1024 + m_ReflectionCompression: 2 + m_MixedBakeMode: 1 + m_BakeBackend: 0 + m_PVRSampling: 1 + m_PVRDirectSampleCount: 32 + m_PVRSampleCount: 500 + m_PVRBounces: 2 + m_PVRFiltering: 0 + m_PVRFilteringMode: 1 + m_PVRCulling: 1 + m_PVRFilteringGaussRadiusDirect: 1 + m_PVRFilteringGaussRadiusIndirect: 5 + m_PVRFilteringGaussRadiusAO: 2 + m_PVRFilteringAtrousColorSigma: 1 + m_PVRFilteringAtrousNormalSigma: 1 + m_PVRFilteringAtrousPositionSigma: 1 + m_LightingDataAsset: {fileID: 0} + m_UseShadowmask: 0 +--- !u!196 &5 +NavMeshSettings: + serializedVersion: 2 + m_ObjectHideFlags: 0 + m_BuildSettings: + serializedVersion: 2 + agentTypeID: 0 + agentRadius: 0.5 + agentHeight: 2 + agentSlope: 45 + agentClimb: 0.4 + ledgeDropHeight: 0 + maxJumpAcrossDistance: 0 + minRegionArea: 2 + manualCellSize: 0 + cellSize: 0.16666666 + manualTileSize: 0 + tileSize: 256 + accuratePlacement: 0 + m_NavMeshData: {fileID: 0} +--- !u!1 &2240598 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 167636, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 2240599} + - component: {fileID: 2240603} + - component: {fileID: 2240602} + - component: {fileID: 2240601} + - component: {fileID: 2240600} + m_Layer: 5 + m_Name: Preset (9) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &2240599 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22453238, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 2240598} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 274021472} + m_RootOrder: 9 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 207.2727, y: -10} + m_SizeDelta: {x: 21.818182, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &2240600 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11495652, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 2240598} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 20 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &2240601 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11455240, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 2240598} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 2240602} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 274021473} + m_MethodName: PresetSelect + m_Mode: 2 + m_Arguments: + m_ObjectArgument: {fileID: 2240602} + m_ObjectArgumentAssemblyTypeName: UnityEngine.UI.Image, UnityEngine.UI + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &2240602 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11425880, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 2240598} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &2240603 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22224940, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 2240598} +--- !u!1 &20473274 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 196384, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 20473275} + - component: {fileID: 20473278} + - component: {fileID: 20473277} + - component: {fileID: 20473276} + m_Layer: 5 + m_Name: Slider + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &20473275 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22449292, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 20473274} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 529874091} + - {fileID: 1331100897} + m_Father: {fileID: 1324958792} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 115, y: -8} + m_SizeDelta: {x: 180, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &20473276 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11424932, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 20473274} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: c600592efa0cf25479655321bf4fb08a, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &20473277 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11468650, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 20473274} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: -1 + m_PreferredHeight: 16 + m_FlexibleWidth: 1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &20473278 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11417476, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 20473274} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -113659843, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 408284503} + m_FillRect: {fileID: 0} + m_HandleRect: {fileID: 408284502} + m_Direction: 0 + m_MinValue: 0 + m_MaxValue: 1 + m_WholeNumbers: 0 + m_Value: 0 + m_OnValueChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.Slider+SliderEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!1 &36804163 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 168892, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 36804164} + - component: {fileID: 36804166} + - component: {fileID: 36804165} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &36804164 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22490412, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 36804163} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 997851834} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: -0.5} + m_SizeDelta: {x: -20, y: -13} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &36804165 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11448266, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 36804163} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 0 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: +--- !u!222 &36804166 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22218658, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 36804163} +--- !u!1 &57913837 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 188290, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 57913838} + - component: {fileID: 57913839} + m_Layer: 5 + m_Name: Seperator + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &57913838 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22460246, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 57913837} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1869602467} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &57913839 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11435842, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 57913837} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: -1 + m_PreferredHeight: -1 + m_FlexibleWidth: 1 + m_FlexibleHeight: 1 + m_LayoutPriority: 1 +--- !u!1 &104575432 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 188196, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 104575433} + - component: {fileID: 104575436} + - component: {fileID: 104575435} + - component: {fileID: 104575434} + m_Layer: 5 + m_Name: LeftText + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &104575433 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22493148, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 104575432} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1260621562} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 12.5, y: -8} + m_SizeDelta: {x: 15, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &104575434 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11418062, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 104575432} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 15 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &104575435 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11421558, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 104575432} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: A +--- !u!222 &104575436 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22254392, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 104575432} +--- !u!1 &109164929 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 194224, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 109164930} + - component: {fileID: 109164931} + m_Layer: 5 + m_Name: ColorField + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &109164930 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22489814, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 109164929} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1790845646} + - {fileID: 997851834} + m_Father: {fileID: 710150150} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 50} + m_Pivot: {x: 0.5, y: 1} +--- !u!114 &109164931 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11476502, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 109164929} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -405508275, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 5 + m_Right: 5 + m_Top: 10 + m_Bottom: 10 + m_ChildAlignment: 0 + m_Spacing: 10 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 1 + m_ChildControlHeight: 1 +--- !u!1 &124845412 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 113862, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 124845413} + - component: {fileID: 124845414} + m_Layer: 5 + m_Name: R + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &124845413 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22449618, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 124845412} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 294614440} + - {fileID: 1177867577} + - {fileID: 471830859} + m_Father: {fileID: 766560829} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &124845414 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11452006, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 124845412} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -405508275, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 5 + m_Right: 5 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 5 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 1 + m_ChildControlHeight: 1 +--- !u!1 &137937714 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 167636, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 137937715} + - component: {fileID: 137937719} + - component: {fileID: 137937718} + - component: {fileID: 137937717} + - component: {fileID: 137937716} + m_Layer: 5 + m_Name: Preset (9) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &137937715 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22453238, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 137937714} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 694136810} + m_RootOrder: 9 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 207.2727, y: -10} + m_SizeDelta: {x: 21.818182, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &137937716 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11495652, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 137937714} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 20 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &137937717 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11455240, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 137937714} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 137937718} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 694136811} + m_MethodName: PresetSelect + m_Mode: 2 + m_Arguments: + m_ObjectArgument: {fileID: 137937718} + m_ObjectArgumentAssemblyTypeName: UnityEngine.UI.Image, UnityEngine.UI + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &137937718 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11425880, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 137937714} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &137937719 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22224940, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 137937714} +--- !u!1 &145101537 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 160884, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 145101538} + - component: {fileID: 145101540} + - component: {fileID: 145101539} + m_Layer: 5 + m_Name: Handle + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &145101538 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22437272, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 145101537} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1659989094} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 5, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &145101539 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11432620, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 145101537} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &145101540 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22226060, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 145101537} +--- !u!1 &146467717 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 141026, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 146467718} + - component: {fileID: 146467720} + - component: {fileID: 146467719} + m_Layer: 5 + m_Name: Handle + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &146467718 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22429276, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 146467717} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1396656502} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 5, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &146467719 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11478032, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 146467717} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &146467720 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22296874, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 146467717} +--- !u!1 &147682392 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 103988, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 147682393} + - component: {fileID: 147682396} + - component: {fileID: 147682395} + - component: {fileID: 147682394} + m_Layer: 5 + m_Name: Background + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &147682393 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22419704, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 147682392} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 175796671} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.25} + m_AnchorMax: {x: 1, y: 0.75} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &147682394 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11434628, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 147682392} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7ca76dd9ad6eb204c9b0481aece34497, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &147682395 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11461748, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 147682392} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -98529514, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Texture: {fileID: 0} + m_UVRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 2 +--- !u!222 &147682396 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22202916, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 147682392} +--- !u!1 &148584818 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 185536, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 148584819} + - component: {fileID: 148584822} + - component: {fileID: 148584821} + - component: {fileID: 148584820} + m_Layer: 5 + m_Name: Background + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &148584819 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22423050, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 148584818} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 2093402360} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.25} + m_AnchorMax: {x: 1, y: 0.75} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &148584820 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11403544, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 148584818} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7ca76dd9ad6eb204c9b0481aece34497, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &148584821 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11489330, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 148584818} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -98529514, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Texture: {fileID: 0} + m_UVRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 2 +--- !u!222 &148584822 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22282672, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 148584818} +--- !u!1 &173212153 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 157484, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 173212154} + - component: {fileID: 173212158} + - component: {fileID: 173212157} + - component: {fileID: 173212156} + - component: {fileID: 173212155} + m_Layer: 5 + m_Name: Preset (0) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &173212154 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22447314, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 173212153} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 274021472} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &173212155 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11443026, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 173212153} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 18 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &173212156 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11482438, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 173212153} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 173212157} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 274021473} + m_MethodName: PresetSelect + m_Mode: 2 + m_Arguments: + m_ObjectArgument: {fileID: 173212157} + m_ObjectArgumentAssemblyTypeName: UnityEngine.UI.Image, UnityEngine.UI + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &173212157 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11437926, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 173212153} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.7647059, g: 0.19117647, b: 0.19117647, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &173212158 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22257106, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 173212153} +--- !u!1 &175796670 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 154358, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 175796671} + - component: {fileID: 175796674} + - component: {fileID: 175796673} + - component: {fileID: 175796672} + m_Layer: 5 + m_Name: Slider + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &175796671 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22489920, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 175796670} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 147682393} + - {fileID: 210948850} + m_Father: {fileID: 1828906402} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 115, y: -8} + m_SizeDelta: {x: 180, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &175796672 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11422346, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 175796670} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: c600592efa0cf25479655321bf4fb08a, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &175796673 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11495366, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 175796670} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: -1 + m_PreferredHeight: 16 + m_FlexibleWidth: 1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &175796674 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11469644, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 175796670} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -113659843, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 988343896} + m_FillRect: {fileID: 0} + m_HandleRect: {fileID: 988343895} + m_Direction: 0 + m_MinValue: 0 + m_MaxValue: 1 + m_WholeNumbers: 0 + m_Value: 0 + m_OnValueChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.Slider+SliderEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!1 &180234992 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 186436, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 180234993} + m_Layer: 5 + m_Name: Handle Slide Area + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &180234993 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22468616, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 180234992} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1180372218} + m_Father: {fileID: 1368962646} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &191159562 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 167830, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 191159563} + - component: {fileID: 191159567} + - component: {fileID: 191159566} + - component: {fileID: 191159565} + - component: {fileID: 191159564} + m_Layer: 5 + m_Name: Create Button + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &191159563 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22487740, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 191159562} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 282537368} + m_Father: {fileID: 274021472} + m_RootOrder: 10 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &191159564 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11482746, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 191159562} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 20 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &191159565 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11401102, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 191159562} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 191159566} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 274021473} + m_MethodName: CreatePresetButton + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &191159566 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11489756, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 191159562} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &191159567 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22228438, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 191159562} +--- !u!1 &204528838 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 147170, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 204528839} + m_Layer: 5 + m_Name: Handle Slide Area + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &204528839 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22410840, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 204528838} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1008031676} + m_Father: {fileID: 1255765976} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &206875736 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 114640, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 206875737} + - component: {fileID: 206875739} + - component: {fileID: 206875738} + m_Layer: 5 + m_Name: Hue + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &206875737 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22462156, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 206875736} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 656307118} + - {fileID: 654651893} + m_Father: {fileID: 1981096033} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 1, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: -25, y: -5} + m_SizeDelta: {x: 20, y: -10} + m_Pivot: {x: 0, y: 1} +--- !u!114 &206875738 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11469788, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 206875736} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: c600592efa0cf25479655321bf4fb08a, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &206875739 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11499806, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 206875736} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -113659843, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1305298857} + m_FillRect: {fileID: 0} + m_HandleRect: {fileID: 1305298856} + m_Direction: 2 + m_MinValue: 0 + m_MaxValue: 1 + m_WholeNumbers: 0 + m_Value: 0 + m_OnValueChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.Slider+SliderEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!1 &210948849 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 198926, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 210948850} + m_Layer: 5 + m_Name: Handle Slide Area + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &210948850 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22419058, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 210948849} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 988343895} + m_Father: {fileID: 175796671} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &212132362 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 168798, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 212132363} + - component: {fileID: 212132364} + m_Layer: 5 + m_Name: B + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &212132363 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22463286, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 212132362} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1105082743} + - {fileID: 1301804701} + - {fileID: 1776062162} + m_Father: {fileID: 1869602467} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &212132364 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11459258, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 212132362} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -405508275, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 5 + m_Right: 5 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 5 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 1 + m_ChildControlHeight: 1 +--- !u!1 &237396850 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 102730, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 237396851} + m_Layer: 5 + m_Name: Handle Slide Area + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &237396851 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22464350, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 237396850} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 476636624} + m_Father: {fileID: 741290795} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &242528464 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 145996, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 242528465} + - component: {fileID: 242528467} + - component: {fileID: 242528466} + m_Layer: 5 + m_Name: Handle + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &242528465 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22402782, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 242528464} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1756926528} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 5, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &242528466 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11477674, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 242528464} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &242528467 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22281664, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 242528464} +--- !u!1 &244200429 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 109170, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 244200430} + - component: {fileID: 244200434} + - component: {fileID: 244200433} + - component: {fileID: 244200432} + - component: {fileID: 244200431} + m_Layer: 5 + m_Name: ValueText + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &244200430 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22483054, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 244200429} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1424261726} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 222.5, y: -8} + m_SizeDelta: {x: 25, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &244200431 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11400974, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 244200429} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 25 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &244200432 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11448474, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 244200429} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 6b10e832a32d2d14facd8a3f489ee8d6, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &244200433 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11460492, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 244200429} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: 0 +--- !u!222 &244200434 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22289050, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 244200429} +--- !u!1 &253637415 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 167088, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 253637416} + - component: {fileID: 253637419} + - component: {fileID: 253637418} + - component: {fileID: 253637417} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &253637416 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22490310, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 253637415} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 648756982} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &253637417 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11428986, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 253637415} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -900027084, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_EffectColor: {r: 0, g: 0, b: 0, a: 0.5} + m_EffectDistance: {x: 1, y: -1} + m_UseGraphicAlpha: 1 +--- !u!114 &253637418 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11419450, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 253637415} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 1 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: + +--- !u!222 &253637419 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22296602, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 253637415} +--- !u!1 &253671663 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 194704, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 253671664} + - component: {fileID: 253671668} + - component: {fileID: 253671667} + - component: {fileID: 253671666} + - component: {fileID: 253671665} + m_Layer: 5 + m_Name: Preset (4) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &253671664 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22415658, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 253671663} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 274021472} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 98.181816, y: -10} + m_SizeDelta: {x: 21.818182, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &253671665 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11415596, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 253671663} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 20 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &253671666 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11470716, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 253671663} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 253671667} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 274021473} + m_MethodName: PresetSelect + m_Mode: 2 + m_Arguments: + m_ObjectArgument: {fileID: 253671667} + m_ObjectArgumentAssemblyTypeName: UnityEngine.UI.Image, UnityEngine.UI + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &253671667 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11418286, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 253671663} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &253671668 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22220132, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 253671663} +--- !u!1 &261232954 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 123062, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 261232955} + - component: {fileID: 261232959} + - component: {fileID: 261232958} + - component: {fileID: 261232957} + - component: {fileID: 261232956} + m_Layer: 5 + m_Name: ValueText + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &261232955 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22409896, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 261232954} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 2111239723} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &261232956 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11417916, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 261232954} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 25 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &261232957 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11480596, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 261232954} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 6b10e832a32d2d14facd8a3f489ee8d6, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &261232958 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11499970, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 261232954} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: 0 +--- !u!222 &261232959 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22213064, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 261232954} +--- !u!1 &274021471 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 155710, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 274021472} + - component: {fileID: 274021473} + - component: {fileID: 274021476} + - component: {fileID: 274021475} + - component: {fileID: 274021474} + m_Layer: 5 + m_Name: Presets + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &274021472 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22485188, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 274021471} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 173212154} + - {fileID: 1886394073} + - {fileID: 712688047} + - {fileID: 1746817117} + - {fileID: 253671664} + - {fileID: 1350650412} + - {fileID: 1102078668} + - {fileID: 1821474527} + - {fileID: 1157843069} + - {fileID: 2240599} + - {fileID: 191159563} + m_Father: {fileID: 367771814} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 0} + m_AnchoredPosition: {x: 0, y: 13} + m_SizeDelta: {x: -6, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &274021473 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11437434, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 274021471} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0923373e76e77402c9c53a2f1250ad3e, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &274021474 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11401494, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 274021471} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.1544118, g: 0.1544118, b: 0.1544118, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 0} + m_Type: 2 + m_PreserveAspect: 0 + m_FillCenter: 0 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &274021475 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22284168, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 274021471} +--- !u!114 &274021476 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11400472, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 274021471} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -405508275, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 1 + m_Right: 1 + m_Top: 1 + m_Bottom: 1 + m_ChildAlignment: 0 + m_Spacing: 1 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 1 + m_ChildControlHeight: 1 +--- !u!1 &282537367 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 167088, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 282537368} + - component: {fileID: 282537371} + - component: {fileID: 282537370} + - component: {fileID: 282537369} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &282537368 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22490310, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 282537367} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 191159563} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &282537369 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11428986, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 282537367} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -900027084, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_EffectColor: {r: 0, g: 0, b: 0, a: 0.5} + m_EffectDistance: {x: 1, y: -1} + m_UseGraphicAlpha: 1 +--- !u!114 &282537370 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11419450, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 282537367} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 1 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: + +--- !u!222 &282537371 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22296602, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 282537367} +--- !u!1 &294614439 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 190312, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 294614440} + - component: {fileID: 294614443} + - component: {fileID: 294614442} + - component: {fileID: 294614441} + m_Layer: 5 + m_Name: LeftText + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &294614440 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22462776, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 294614439} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 124845413} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 12.5, y: -8} + m_SizeDelta: {x: 15, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &294614441 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11436886, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 294614439} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 15 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &294614442 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11430478, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 294614439} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: R +--- !u!222 &294614443 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22230530, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 294614439} +--- !u!1 &295115041 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 187878, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 295115042} + - component: {fileID: 295115046} + - component: {fileID: 295115045} + - component: {fileID: 295115044} + - component: {fileID: 295115043} + m_Layer: 5 + m_Name: Preset (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &295115042 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22484834, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 295115041} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 694136810} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &295115043 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11439404, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 295115041} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 20 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &295115044 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11452934, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 295115041} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 295115045} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 694136811} + m_MethodName: PresetSelect + m_Mode: 2 + m_Arguments: + m_ObjectArgument: {fileID: 295115045} + m_ObjectArgumentAssemblyTypeName: UnityEngine.UI.Image, UnityEngine.UI + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &295115045 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11441004, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 295115041} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.21366784, g: 0.7647059, b: 0.30867442, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &295115046 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22278160, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 295115041} +--- !u!1 &361808358 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 150098, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 361808359} + - component: {fileID: 361808360} + m_Layer: 5 + m_Name: S + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &361808359 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22478158, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 361808358} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 883675859} + - {fileID: 740175640} + - {fileID: 679403834} + m_Father: {fileID: 1869602467} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &361808360 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11496146, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 361808358} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -405508275, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 5 + m_Right: 5 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 5 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 1 + m_ChildControlHeight: 1 +--- !u!224 &367771814 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22448498, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1837440034} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 2062443902} + - {fileID: 371570537} + - {fileID: 1869602467} + - {fileID: 274021472} + m_Father: {fileID: 2090454929} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 240, y: 400} + m_Pivot: {x: 0, y: 1} +--- !u!114 &367771815 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11423364, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1837440034} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 8262e4a8322117f4da079921eaa72834, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &368395698 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 163020, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 368395699} + - component: {fileID: 368395702} + - component: {fileID: 368395701} + - component: {fileID: 368395700} + m_Layer: 5 + m_Name: Background + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &368395699 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22413650, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 368395698} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 832625941} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.25} + m_AnchorMax: {x: 1, y: 0.75} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &368395700 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11482098, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 368395698} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7ca76dd9ad6eb204c9b0481aece34497, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &368395701 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11407460, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 368395698} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -98529514, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Texture: {fileID: 0} + m_UVRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 2 +--- !u!222 &368395702 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22221616, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 368395698} +--- !u!1 &369634461 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 145996, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 369634462} + - component: {fileID: 369634464} + - component: {fileID: 369634463} + m_Layer: 5 + m_Name: Handle + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &369634462 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22402782, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 369634461} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 431094530} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 5, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &369634463 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11477674, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 369634461} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &369634464 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22281664, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 369634461} +--- !u!1 &371570536 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 165956, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 371570537} + m_Layer: 5 + m_Name: HSVField + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &371570537 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22468756, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 371570536} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1645107938} + - {fileID: 1368962646} + m_Father: {fileID: 367771814} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 60} + m_SizeDelta: {x: 0, y: -220} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &376809585 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 173810, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 376809586} + - component: {fileID: 376809590} + - component: {fileID: 376809589} + - component: {fileID: 376809588} + - component: {fileID: 376809587} + m_Layer: 5 + m_Name: Preset (5) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &376809586 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22445984, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 376809585} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 694136810} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 120, y: -10} + m_SizeDelta: {x: 21.818182, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &376809587 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11408032, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 376809585} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 20 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &376809588 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11487238, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 376809585} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 376809589} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 694136811} + m_MethodName: PresetSelect + m_Mode: 2 + m_Arguments: + m_ObjectArgument: {fileID: 376809589} + m_ObjectArgumentAssemblyTypeName: UnityEngine.UI.Image, UnityEngine.UI + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &376809589 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11426590, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 376809585} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &376809590 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22216614, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 376809585} +--- !u!1 &408284501 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 141026, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 408284502} + - component: {fileID: 408284504} + - component: {fileID: 408284503} + m_Layer: 5 + m_Name: Handle + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &408284502 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22429276, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 408284501} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1331100897} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 5, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &408284503 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11478032, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 408284501} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &408284504 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22296874, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 408284501} +--- !u!1 &411092137 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 196384, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 411092138} + - component: {fileID: 411092141} + - component: {fileID: 411092140} + - component: {fileID: 411092139} + m_Layer: 5 + m_Name: Slider + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &411092138 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22449292, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 411092137} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1302429623} + - {fileID: 1396656502} + m_Father: {fileID: 1852080013} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &411092139 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11424932, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 411092137} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: c600592efa0cf25479655321bf4fb08a, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &411092140 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11468650, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 411092137} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: -1 + m_PreferredHeight: 16 + m_FlexibleWidth: 1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &411092141 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11417476, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 411092137} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -113659843, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 146467719} + m_FillRect: {fileID: 0} + m_HandleRect: {fileID: 146467718} + m_Direction: 0 + m_MinValue: 0 + m_MaxValue: 1 + m_WholeNumbers: 0 + m_Value: 0 + m_OnValueChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.Slider+SliderEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!1 &431094529 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 113042, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 431094530} + m_Layer: 5 + m_Name: Handle Slide Area + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &431094530 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22498948, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 431094529} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 369634462} + m_Father: {fileID: 1177867577} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &451330291 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 144296, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 451330292} + - component: {fileID: 451330293} + m_Layer: 5 + m_Name: H + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &451330292 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22475684, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 451330291} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1939675298} + - {fileID: 1268005417} + - {fileID: 1428027843} + m_Father: {fileID: 1869602467} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &451330293 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11493476, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 451330291} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -405508275, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 5 + m_Right: 5 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 5 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 1 + m_ChildControlHeight: 1 +--- !u!1 &471830858 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 123062, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 471830859} + - component: {fileID: 471830863} + - component: {fileID: 471830862} + - component: {fileID: 471830861} + - component: {fileID: 471830860} + m_Layer: 5 + m_Name: ValueText + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &471830859 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22409896, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 471830858} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 124845413} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 222.5, y: -8} + m_SizeDelta: {x: 25, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &471830860 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11417916, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 471830858} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 25 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &471830861 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11480596, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 471830858} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 6b10e832a32d2d14facd8a3f489ee8d6, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &471830862 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11499970, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 471830858} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: 0 +--- !u!222 &471830863 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22213064, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 471830858} +--- !u!1 &476636623 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 165534, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 476636624} + - component: {fileID: 476636626} + - component: {fileID: 476636625} + m_Layer: 5 + m_Name: Handle + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &476636624 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22445236, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 476636623} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 237396851} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 5, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &476636625 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11415580, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 476636623} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &476636626 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22243436, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 476636623} +--- !u!1 &487821597 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 487821602} + - component: {fileID: 487821601} + - component: {fileID: 487821600} + - component: {fileID: 487821599} + - component: {fileID: 487821598} + m_Layer: 0 + m_Name: Cube worldSpace + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &487821598 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 487821597} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 06851a815227e5044b0e3c1bf9b3a282, type: 3} + m_Name: + m_EditorClassIdentifier: + renderer: {fileID: 487821599} + picker: {fileID: 710150151} +--- !u!23 &487821599 +MeshRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 487821597} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 0 + m_ReflectionProbeUsage: 1 + m_Materials: + - {fileID: 10302, guid: 0000000000000000f000000000000000, type: 0} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!65 &487821600 +BoxCollider: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 487821597} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 1, y: 1, z: 1} + m_Center: {x: 0, y: 0, z: 0} +--- !u!33 &487821601 +MeshFilter: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 487821597} + m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} +--- !u!4 &487821602 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 487821597} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0.05, y: -1.89, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &493804170 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 152064, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 493804171} + - component: {fileID: 493804174} + - component: {fileID: 493804173} + - component: {fileID: 493804172} + m_Layer: 5 + m_Name: LeftText + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &493804171 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22466750, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 493804170} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1424261726} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 12.5, y: -8} + m_SizeDelta: {x: 15, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &493804172 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11431838, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 493804170} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 15 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &493804173 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11487462, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 493804170} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: H +--- !u!222 &493804174 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22224878, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 493804170} +--- !u!1 &507677671 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 169426, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 507677672} + - component: {fileID: 507677675} + - component: {fileID: 507677674} + - component: {fileID: 507677673} + m_Layer: 5 + m_Name: Slider + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &507677672 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22464540, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 507677671} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1175511622} + - {fileID: 1118411272} + m_Father: {fileID: 1566327407} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 115, y: -8} + m_SizeDelta: {x: 180, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &507677673 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11446360, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 507677671} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: c600592efa0cf25479655321bf4fb08a, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &507677674 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11427848, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 507677671} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: -1 + m_PreferredHeight: 16 + m_FlexibleWidth: 1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &507677675 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11444998, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 507677671} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -113659843, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 593354544} + m_FillRect: {fileID: 0} + m_HandleRect: {fileID: 593354543} + m_Direction: 0 + m_MinValue: 0 + m_MaxValue: 1 + m_WholeNumbers: 0 + m_Value: 0 + m_OnValueChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.Slider+SliderEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!1 &529874090 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 150874, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 529874091} + - component: {fileID: 529874094} + - component: {fileID: 529874093} + - component: {fileID: 529874092} + m_Layer: 5 + m_Name: Background + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &529874091 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22498864, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 529874090} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 20473275} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.25} + m_AnchorMax: {x: 1, y: 0.75} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &529874092 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11410684, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 529874090} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7ca76dd9ad6eb204c9b0481aece34497, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &529874093 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11469324, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 529874090} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -98529514, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Texture: {fileID: 0} + m_UVRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 2 +--- !u!222 &529874094 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22223566, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 529874090} +--- !u!1 &570113572 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 570113577} + - component: {fileID: 570113576} + - component: {fileID: 570113575} + - component: {fileID: 570113574} + - component: {fileID: 570113573} + m_Layer: 0 + m_Name: Main Camera + m_TagString: MainCamera + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!81 &570113573 +AudioListener: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 570113572} + m_Enabled: 1 +--- !u!124 &570113574 +Behaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 570113572} + m_Enabled: 1 +--- !u!92 &570113575 +Behaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 570113572} + m_Enabled: 1 +--- !u!20 &570113576 +Camera: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 570113572} + m_Enabled: 1 + serializedVersion: 2 + m_ClearFlags: 1 + m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0.019607844} + m_BackgroundMaterial: {fileID: 0} + m_NormalizedViewPortRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + near clip plane: 0.3 + far clip plane: 1000 + field of view: 60 + orthographic: 0 + orthographic size: 5 + m_Depth: -1 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingPath: -1 + m_TargetTexture: {fileID: 0} + m_TargetDisplay: 0 + m_TargetEye: 3 + m_HDR: 0 + m_AllowMSAA: 1 + m_ForceIntoRT: 0 + m_OcclusionCulling: 1 + m_StereoConvergence: 10 + m_StereoSeparation: 0.022 + m_StereoMirrorMode: 0 +--- !u!4 &570113577 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 570113572} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 1, z: -10} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1895047780} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &593354542 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 135120, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 593354543} + - component: {fileID: 593354545} + - component: {fileID: 593354544} + m_Layer: 5 + m_Name: Handle + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &593354543 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22469358, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 593354542} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1118411272} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 5, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &593354544 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11498926, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 593354542} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &593354545 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22294074, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 593354542} +--- !u!1 &604423529 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 174742, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 604423530} + - component: {fileID: 604423534} + - component: {fileID: 604423533} + - component: {fileID: 604423532} + - component: {fileID: 604423531} + m_Layer: 5 + m_Name: Preset (3) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &604423530 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22460006, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 604423529} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 694136810} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 76.36363, y: -10} + m_SizeDelta: {x: 21.818182, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &604423531 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11469158, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 604423529} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 20 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &604423532 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11485084, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 604423529} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 604423533} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 694136811} + m_MethodName: PresetSelect + m_Mode: 2 + m_Arguments: + m_ObjectArgument: {fileID: 604423533} + m_ObjectArgumentAssemblyTypeName: UnityEngine.UI.Image, UnityEngine.UI + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &604423533 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11494638, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 604423529} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &604423534 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22260376, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 604423529} +--- !u!1 &629615631 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 134460, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 629615632} + m_Layer: 5 + m_Name: Handle Slide Area + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &629615632 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22448238, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 629615631} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 721625611} + m_Father: {fileID: 1901109258} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: -20, y: -20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &637085006 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 109862, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 637085007} + - component: {fileID: 637085009} + - component: {fileID: 637085008} + m_Layer: 5 + m_Name: Placeholder + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &637085007 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22463646, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 637085006} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 997851834} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: -0.5} + m_SizeDelta: {x: -20, y: -13} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &637085008 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11419324, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 637085006} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 0.5} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 2 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: Enter text... +--- !u!222 &637085009 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22208894, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 637085006} +--- !u!1 &648756981 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 167830, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 648756982} + - component: {fileID: 648756986} + - component: {fileID: 648756985} + - component: {fileID: 648756984} + - component: {fileID: 648756983} + m_Layer: 5 + m_Name: Create Button + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &648756982 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22487740, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 648756981} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 253637416} + m_Father: {fileID: 694136810} + m_RootOrder: 10 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &648756983 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11482746, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 648756981} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 20 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &648756984 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11401102, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 648756981} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 648756985} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 694136811} + m_MethodName: CreatePresetButton + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &648756985 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11489756, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 648756981} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &648756986 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22228438, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 648756981} +--- !u!1 &650216811 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 197314, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 650216812} + - component: {fileID: 650216815} + - component: {fileID: 650216814} + - component: {fileID: 650216813} + m_Layer: 5 + m_Name: Background + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &650216812 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22400824, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 650216811} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1177867577} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.25} + m_AnchorMax: {x: 1, y: 0.75} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &650216813 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11413310, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 650216811} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7ca76dd9ad6eb204c9b0481aece34497, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &650216814 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11407662, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 650216811} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -98529514, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Texture: {fileID: 0} + m_UVRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 2 +--- !u!222 &650216815 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22221412, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 650216811} +--- !u!1 &654651892 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 186436, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 654651893} + m_Layer: 5 + m_Name: Handle Slide Area + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &654651893 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22468616, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 654651892} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1305298856} + m_Father: {fileID: 206875737} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &656307117 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 185578, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 656307118} + - component: {fileID: 656307121} + - component: {fileID: 656307120} + - component: {fileID: 656307119} + m_Layer: 5 + m_Name: Background + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &656307118 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22439774, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 656307117} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 206875737} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &656307119 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11481940, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 656307117} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7ca76dd9ad6eb204c9b0481aece34497, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &656307120 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11429486, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 656307117} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -98529514, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Texture: {fileID: 0} + m_UVRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 2 + height: 1 +--- !u!222 &656307121 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22263392, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 656307117} +--- !u!1 &657443832 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 157080, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 657443833} + - component: {fileID: 657443836} + - component: {fileID: 657443835} + - component: {fileID: 657443834} + m_Layer: 5 + m_Name: Background + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &657443833 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22465756, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 657443832} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1255765976} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.25} + m_AnchorMax: {x: 1, y: 0.75} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &657443834 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11404692, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 657443832} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7ca76dd9ad6eb204c9b0481aece34497, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &657443835 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11457780, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 657443832} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -98529514, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Texture: {fileID: 0} + m_UVRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 2 +--- !u!222 &657443836 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22222340, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 657443832} +--- !u!1 &666443671 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 184328, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 666443672} + - component: {fileID: 666443676} + - component: {fileID: 666443675} + - component: {fileID: 666443674} + - component: {fileID: 666443673} + m_Layer: 5 + m_Name: Preset (7) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &666443672 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22455926, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 666443671} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 694136810} + m_RootOrder: 7 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 163.63635, y: -10} + m_SizeDelta: {x: 21.818182, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &666443673 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11482218, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 666443671} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 20 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &666443674 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11485672, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 666443671} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 666443675} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 694136811} + m_MethodName: PresetSelect + m_Mode: 2 + m_Arguments: + m_ObjectArgument: {fileID: 666443675} + m_ObjectArgumentAssemblyTypeName: UnityEngine.UI.Image, UnityEngine.UI + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &666443675 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11425336, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 666443671} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &666443676 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22240504, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 666443671} +--- !u!1 &679403833 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 197864, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 679403834} + - component: {fileID: 679403838} + - component: {fileID: 679403837} + - component: {fileID: 679403836} + - component: {fileID: 679403835} + m_Layer: 5 + m_Name: ValueText + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &679403834 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22405742, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 679403833} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 361808359} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &679403835 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11445998, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 679403833} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 25 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &679403836 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11429994, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 679403833} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 6b10e832a32d2d14facd8a3f489ee8d6, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &679403837 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11415718, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 679403833} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: 0 +--- !u!222 &679403838 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22217712, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 679403833} +--- !u!1 &694136809 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 155710, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 694136810} + - component: {fileID: 694136811} + - component: {fileID: 694136814} + - component: {fileID: 694136813} + - component: {fileID: 694136812} + m_Layer: 5 + m_Name: Presets + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &694136810 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22485188, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 694136809} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 996149346} + - {fileID: 295115042} + - {fileID: 714742308} + - {fileID: 604423530} + - {fileID: 1269579309} + - {fileID: 376809586} + - {fileID: 1486541060} + - {fileID: 666443672} + - {fileID: 1497405588} + - {fileID: 137937715} + - {fileID: 648756982} + m_Father: {fileID: 710150150} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 0} + m_AnchoredPosition: {x: 0, y: 13} + m_SizeDelta: {x: -6, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &694136811 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11437434, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 694136809} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0923373e76e77402c9c53a2f1250ad3e, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &694136812 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11401494, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 694136809} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.1544118, g: 0.1544118, b: 0.1544118, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 0} + m_Type: 2 + m_PreserveAspect: 0 + m_FillCenter: 0 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &694136813 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22284168, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 694136809} +--- !u!114 &694136814 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11400472, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 694136809} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -405508275, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 1 + m_Right: 1 + m_Top: 1 + m_Bottom: 1 + m_ChildAlignment: 0 + m_Spacing: 1 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 1 + m_ChildControlHeight: 1 +--- !u!224 &710150150 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22448498, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1878514645} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 109164930} + - {fileID: 1981096033} + - {fileID: 766560829} + - {fileID: 694136810} + m_Father: {fileID: 1895047780} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 903.3, y: -441.9} + m_SizeDelta: {x: 240, y: 400} + m_Pivot: {x: 0, y: 1} +--- !u!114 &710150151 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11423364, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1878514645} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 8262e4a8322117f4da079921eaa72834, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &712688046 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 124486, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 712688047} + - component: {fileID: 712688051} + - component: {fileID: 712688050} + - component: {fileID: 712688049} + - component: {fileID: 712688048} + m_Layer: 5 + m_Name: Preset (2) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &712688047 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22488338, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 712688046} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 274021472} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &712688048 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11491764, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 712688046} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 20 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &712688049 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11496660, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 712688046} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 712688050} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 274021473} + m_MethodName: PresetSelect + m_Mode: 2 + m_Arguments: + m_ObjectArgument: {fileID: 712688050} + m_ObjectArgumentAssemblyTypeName: UnityEngine.UI.Image, UnityEngine.UI + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &712688050 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11417700, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 712688046} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.7205882, g: 0.5700394, b: 0.1748486, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &712688051 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22252030, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 712688046} +--- !u!1 &714742307 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 124486, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 714742308} + - component: {fileID: 714742312} + - component: {fileID: 714742311} + - component: {fileID: 714742310} + - component: {fileID: 714742309} + m_Layer: 5 + m_Name: Preset (2) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &714742308 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22488338, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 714742307} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 694136810} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &714742309 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11491764, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 714742307} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 20 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &714742310 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11496660, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 714742307} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 714742311} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 694136811} + m_MethodName: PresetSelect + m_Mode: 2 + m_Arguments: + m_ObjectArgument: {fileID: 714742311} + m_ObjectArgumentAssemblyTypeName: UnityEngine.UI.Image, UnityEngine.UI + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &714742311 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11417700, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 714742307} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.7205882, g: 0.5700394, b: 0.1748486, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &714742312 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22252030, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 714742307} +--- !u!1 &721625610 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 109976, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 721625611} + - component: {fileID: 721625613} + - component: {fileID: 721625612} + m_Layer: 5 + m_Name: Handle + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &721625611 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22499384, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 721625610} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 629615632} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 1, y: 1} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 20, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &721625612 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11484674, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 721625610} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 10913, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &721625613 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22236658, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 721625610} +--- !u!1 &740175639 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 154358, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 740175640} + - component: {fileID: 740175643} + - component: {fileID: 740175642} + - component: {fileID: 740175641} + m_Layer: 5 + m_Name: Slider + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &740175640 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22489920, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 740175639} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1941335922} + - {fileID: 1046740783} + m_Father: {fileID: 361808359} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &740175641 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11422346, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 740175639} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: c600592efa0cf25479655321bf4fb08a, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &740175642 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11495366, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 740175639} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: -1 + m_PreferredHeight: 16 + m_FlexibleWidth: 1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &740175643 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11469644, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 740175639} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -113659843, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 918932757} + m_FillRect: {fileID: 0} + m_HandleRect: {fileID: 918932756} + m_Direction: 0 + m_MinValue: 0 + m_MaxValue: 1 + m_WholeNumbers: 0 + m_Value: 0 + m_OnValueChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.Slider+SliderEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!1 &741290794 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 109650, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 741290795} + - component: {fileID: 741290798} + - component: {fileID: 741290797} + - component: {fileID: 741290796} + m_Layer: 5 + m_Name: Slider + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &741290795 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22471500, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 741290794} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 925368622} + - {fileID: 237396851} + m_Father: {fileID: 1244806539} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &741290796 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11481106, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 741290794} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: c600592efa0cf25479655321bf4fb08a, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &741290797 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11459034, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 741290794} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: -1 + m_PreferredHeight: 16 + m_FlexibleWidth: 1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &741290798 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11413242, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 741290794} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -113659843, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 476636625} + m_FillRect: {fileID: 0} + m_HandleRect: {fileID: 476636624} + m_Direction: 0 + m_MinValue: 0 + m_MaxValue: 1 + m_WholeNumbers: 0 + m_Value: 0 + m_OnValueChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.Slider+SliderEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!1 &766560828 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 169390, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 766560829} + - component: {fileID: 766560830} + m_Layer: 5 + m_Name: Sliders + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &766560829 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22415604, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 766560828} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 124845413} + - {fileID: 1566327407} + - {fileID: 953654619} + - {fileID: 1227911805} + - {fileID: 1424261726} + - {fileID: 1828906402} + - {fileID: 1324958792} + - {fileID: 1959037691} + - {fileID: 1260621562} + m_Father: {fileID: 710150150} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 0} + m_AnchoredPosition: {x: 0, y: 170} + m_SizeDelta: {x: 0, y: 145} + m_Pivot: {x: 0.5, y: 1} +--- !u!114 &766560830 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11463640, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 766560828} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1297475563, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 0 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 1 + m_ChildControlHeight: 1 +--- !u!1 &832625940 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 109650, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 832625941} + - component: {fileID: 832625944} + - component: {fileID: 832625943} + - component: {fileID: 832625942} + m_Layer: 5 + m_Name: Slider + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &832625941 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22471500, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 832625940} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 368395699} + - {fileID: 1090620061} + m_Father: {fileID: 1260621562} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 115, y: -8} + m_SizeDelta: {x: 180, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &832625942 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11481106, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 832625940} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: c600592efa0cf25479655321bf4fb08a, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &832625943 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11459034, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 832625940} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: -1 + m_PreferredHeight: 16 + m_FlexibleWidth: 1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &832625944 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11413242, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 832625940} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -113659843, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 2048501440} + m_FillRect: {fileID: 0} + m_HandleRect: {fileID: 2048501439} + m_Direction: 0 + m_MinValue: 0 + m_MaxValue: 1 + m_WholeNumbers: 0 + m_Value: 0 + m_OnValueChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.Slider+SliderEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!1 &836404685 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 192330, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 836404686} + - component: {fileID: 836404688} + - component: {fileID: 836404687} + m_Layer: 5 + m_Name: Color + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &836404686 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22413792, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 836404685} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1490811192} + m_Father: {fileID: 2062443902} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &836404687 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11461114, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 836404685} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0.39215687} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 10911, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 0 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &836404688 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22255370, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 836404685} +--- !u!1 &841830425 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 841830430} + - component: {fileID: 841830429} + - component: {fileID: 841830428} + - component: {fileID: 841830427} + - component: {fileID: 841830426} + m_Layer: 0 + m_Name: Cube + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &841830426 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 841830425} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 06851a815227e5044b0e3c1bf9b3a282, type: 3} + m_Name: + m_EditorClassIdentifier: + renderer: {fileID: 841830427} + picker: {fileID: 367771815} +--- !u!23 &841830427 +MeshRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 841830425} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 0 + m_ReflectionProbeUsage: 1 + m_Materials: + - {fileID: 10302, guid: 0000000000000000f000000000000000, type: 0} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!65 &841830428 +BoxCollider: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 841830425} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 1, y: 1, z: 1} + m_Center: {x: 0, y: 0, z: 0} +--- !u!33 &841830429 +MeshFilter: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 841830425} + m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} +--- !u!4 &841830430 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 841830425} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: -1.08, y: 4.08, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &842308283 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 137072, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 842308284} + - component: {fileID: 842308286} + - component: {fileID: 842308285} + m_Layer: 5 + m_Name: Handle + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &842308284 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22432592, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 842308283} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1118961867} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 5, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &842308285 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11429028, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 842308283} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &842308286 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22241672, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 842308283} +--- !u!1 &859183414 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 859183418} + - component: {fileID: 859183417} + - component: {fileID: 859183416} + - component: {fileID: 859183415} + m_Layer: 0 + m_Name: EventSystem + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &859183415 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 859183414} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1997211142, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_ForceModuleActive: 0 +--- !u!114 &859183416 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 859183414} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1077351063, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_HorizontalAxis: Horizontal + m_VerticalAxis: Vertical + m_SubmitButton: Submit + m_CancelButton: Cancel + m_InputActionsPerSecond: 10 + m_RepeatDelay: 0.5 + m_ForceModuleActive: 0 +--- !u!114 &859183417 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 859183414} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -619905303, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_FirstSelected: {fileID: 0} + m_sendNavigationEvents: 1 + m_DragThreshold: 5 +--- !u!4 &859183418 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 859183414} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &875044582 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 134460, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 875044583} + m_Layer: 5 + m_Name: Handle Slide Area + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &875044583 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22448238, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 875044582} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1329222748} + m_Father: {fileID: 1798666491} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: -20, y: -20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &883675858 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 169152, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 883675859} + - component: {fileID: 883675862} + - component: {fileID: 883675861} + - component: {fileID: 883675860} + m_Layer: 5 + m_Name: LeftText + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &883675859 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22422416, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 883675858} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 361808359} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &883675860 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11421370, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 883675858} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 15 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &883675861 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11430666, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 883675858} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: S +--- !u!222 &883675862 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22287232, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 883675858} +--- !u!1 &917512077 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 138390, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 917512078} + - component: {fileID: 917512081} + - component: {fileID: 917512080} + - component: {fileID: 917512079} + m_Layer: 5 + m_Name: LeftText + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &917512078 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22477690, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 917512077} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1324958792} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 12.5, y: -8} + m_SizeDelta: {x: 15, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &917512079 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11412718, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 917512077} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 15 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &917512080 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11443082, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 917512077} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: V +--- !u!222 &917512081 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22214548, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 917512077} +--- !u!1 &918932755 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 192924, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 918932756} + - component: {fileID: 918932758} + - component: {fileID: 918932757} + m_Layer: 5 + m_Name: Handle + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &918932756 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22471252, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 918932755} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1046740783} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 5, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &918932757 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11454424, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 918932755} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &918932758 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22247702, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 918932755} +--- !u!1 &925368621 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 163020, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 925368622} + - component: {fileID: 925368625} + - component: {fileID: 925368624} + - component: {fileID: 925368623} + m_Layer: 5 + m_Name: Background + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &925368622 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22413650, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 925368621} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 741290795} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.25} + m_AnchorMax: {x: 1, y: 0.75} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &925368623 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11482098, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 925368621} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7ca76dd9ad6eb204c9b0481aece34497, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &925368624 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11407460, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 925368621} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -98529514, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Texture: {fileID: 0} + m_UVRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 2 +--- !u!222 &925368625 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22221616, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 925368621} +--- !u!1 &936723342 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 120788, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 936723343} + - component: {fileID: 936723346} + - component: {fileID: 936723345} + - component: {fileID: 936723344} + m_Layer: 5 + m_Name: Background + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &936723343 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22479018, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 936723342} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1211834307} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.25} + m_AnchorMax: {x: 1, y: 0.75} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &936723344 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11431864, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 936723342} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7ca76dd9ad6eb204c9b0481aece34497, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &936723345 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11449214, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 936723342} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -98529514, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Texture: {fileID: 0} + m_UVRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 2 +--- !u!222 &936723346 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22267742, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 936723342} +--- !u!1 &953654618 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 168798, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 953654619} + - component: {fileID: 953654620} + m_Layer: 5 + m_Name: B + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &953654619 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22463286, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 953654618} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1790010519} + - {fileID: 2093402360} + - {fileID: 1499836824} + m_Father: {fileID: 766560829} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &953654620 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11459258, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 953654618} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -405508275, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 5 + m_Right: 5 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 5 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 1 + m_ChildControlHeight: 1 +--- !u!1 &988343894 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 192924, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 988343895} + - component: {fileID: 988343897} + - component: {fileID: 988343896} + m_Layer: 5 + m_Name: Handle + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &988343895 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22471252, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 988343894} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 210948850} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 5, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &988343896 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11454424, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 988343894} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &988343897 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22247702, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 988343894} +--- !u!1 &996149345 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 157484, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 996149346} + - component: {fileID: 996149350} + - component: {fileID: 996149349} + - component: {fileID: 996149348} + - component: {fileID: 996149347} + m_Layer: 5 + m_Name: Preset (0) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &996149346 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22447314, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 996149345} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 694136810} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &996149347 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11443026, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 996149345} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 18 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &996149348 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11482438, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 996149345} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 996149349} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 694136811} + m_MethodName: PresetSelect + m_Mode: 2 + m_Arguments: + m_ObjectArgument: {fileID: 996149349} + m_ObjectArgumentAssemblyTypeName: UnityEngine.UI.Image, UnityEngine.UI + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &996149349 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11437926, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 996149345} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.7647059, g: 0.19117647, b: 0.19117647, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &996149350 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22257106, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 996149345} +--- !u!1 &997851833 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 117174, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 997851834} + - component: {fileID: 997851838} + - component: {fileID: 997851837} + - component: {fileID: 997851836} + - component: {fileID: 997851835} + m_Layer: 5 + m_Name: InputField + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &997851834 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22446600, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 997851833} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 637085007} + - {fileID: 36804164} + m_Father: {fileID: 109164930} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &997851835 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11483982, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 997851833} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d85c534b3c1560544b09d0996dfeba84, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &997851836 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11463028, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 997851833} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 575553740, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 997851837} + m_TextComponent: {fileID: 36804165} + m_Placeholder: {fileID: 637085008} + m_ContentType: 0 + m_InputType: 0 + m_AsteriskChar: 42 + m_KeyboardType: 0 + m_LineType: 0 + m_HideMobileInput: 0 + m_CharacterValidation: 0 + m_CharacterLimit: 0 + m_OnEndEdit: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.InputField+SubmitEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null + m_OnValueChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.InputField+OnChangeEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null + m_CaretColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_CustomCaretColor: 0 + m_SelectionColor: {r: 0.65882355, g: 0.80784315, b: 1, a: 0.7529412} + m_Text: + m_CaretBlinkRate: 0.85 + m_CaretWidth: 1 + m_ReadOnly: 0 +--- !u!114 &997851837 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11457280, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 997851833} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 10911, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &997851838 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22261740, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 997851833} +--- !u!1 &1008031675 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 135120, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 1008031676} + - component: {fileID: 1008031678} + - component: {fileID: 1008031677} + m_Layer: 5 + m_Name: Handle + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1008031676 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22469358, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1008031675} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 204528839} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 5, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1008031677 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11498926, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1008031675} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1008031678 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22294074, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1008031675} +--- !u!1 &1029991560 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 118848, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 1029991561} + - component: {fileID: 1029991562} + m_Layer: 5 + m_Name: Seperator + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1029991561 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22422480, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1029991560} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1869602467} + m_RootOrder: 7 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1029991562 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11451352, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1029991560} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: -1 + m_PreferredHeight: -1 + m_FlexibleWidth: 1 + m_FlexibleHeight: 1 + m_LayoutPriority: 1 +--- !u!1 &1046740782 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 198926, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 1046740783} + m_Layer: 5 + m_Name: Handle Slide Area + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1046740783 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22419058, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1046740782} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 918932756} + m_Father: {fileID: 740175640} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1001 &1064925107 +Prefab: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1895047780} + m_Modifications: + - target: {fileID: 22499384, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.x + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22499384, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22499384, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.x + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22499384, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22497436, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.x + value: -25 + objectReference: {fileID: 0} + - target: {fileID: 22448498, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22448498, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22448498, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22448498, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22448498, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22448498, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22448498, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22448498, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22448498, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.x + value: 903.3 + objectReference: {fileID: 0} + - target: {fileID: 22448498, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.y + value: -441.9 + objectReference: {fileID: 0} + - target: {fileID: 22448498, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.x + value: 240 + objectReference: {fileID: 0} + - target: {fileID: 22448498, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.y + value: 400 + objectReference: {fileID: 0} + - target: {fileID: 22448498, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22448498, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22448498, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22448498, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22448498, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_Pivot.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22448498, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_Pivot.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22402782, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22469358, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22432592, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22437272, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22471252, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22429276, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22445236, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 11429486, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_Texture + value: + objectReference: {fileID: 0} + - target: {fileID: 11407460, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_Texture + value: + objectReference: {fileID: 0} + - target: {fileID: 11469324, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_Texture + value: + objectReference: {fileID: 0} + - target: {fileID: 11461748, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_Texture + value: + objectReference: {fileID: 0} + - target: {fileID: 11449214, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_Texture + value: + objectReference: {fileID: 0} + - target: {fileID: 11489330, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_Texture + value: + objectReference: {fileID: 0} + - target: {fileID: 11457780, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_Texture + value: + objectReference: {fileID: 0} + - target: {fileID: 11407662, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_Texture + value: + objectReference: {fileID: 0} + - target: {fileID: 11436574, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_Texture + value: + objectReference: {fileID: 0} + - target: {fileID: 22462776, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22462776, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22462776, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.x + value: 12.5 + objectReference: {fileID: 0} + - target: {fileID: 22462776, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.y + value: -8 + objectReference: {fileID: 0} + - target: {fileID: 22462776, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.x + value: 15 + objectReference: {fileID: 0} + - target: {fileID: 22462776, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 22416876, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22416876, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22416876, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.x + value: 115 + objectReference: {fileID: 0} + - target: {fileID: 22416876, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.y + value: -8 + objectReference: {fileID: 0} + - target: {fileID: 22416876, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.x + value: 180 + objectReference: {fileID: 0} + - target: {fileID: 22416876, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 22409896, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22409896, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22409896, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.x + value: 222.5 + objectReference: {fileID: 0} + - target: {fileID: 22409896, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.y + value: -8 + objectReference: {fileID: 0} + - target: {fileID: 22409896, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.x + value: 25 + objectReference: {fileID: 0} + - target: {fileID: 22409896, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 22446644, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22446644, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22446644, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.x + value: 12.5 + objectReference: {fileID: 0} + - target: {fileID: 22446644, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.y + value: -8 + objectReference: {fileID: 0} + - target: {fileID: 22446644, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.x + value: 15 + objectReference: {fileID: 0} + - target: {fileID: 22446644, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 22464540, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22464540, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22464540, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.x + value: 115 + objectReference: {fileID: 0} + - target: {fileID: 22464540, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.y + value: -8 + objectReference: {fileID: 0} + - target: {fileID: 22464540, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.x + value: 180 + objectReference: {fileID: 0} + - target: {fileID: 22464540, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 22467618, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22467618, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22467618, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.x + value: 222.5 + objectReference: {fileID: 0} + - target: {fileID: 22467618, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.y + value: -8 + objectReference: {fileID: 0} + - target: {fileID: 22467618, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.x + value: 25 + objectReference: {fileID: 0} + - target: {fileID: 22467618, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 22407456, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22407456, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22407456, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.x + value: 12.5 + objectReference: {fileID: 0} + - target: {fileID: 22407456, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.y + value: -8 + objectReference: {fileID: 0} + - target: {fileID: 22407456, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.x + value: 15 + objectReference: {fileID: 0} + - target: {fileID: 22407456, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 22474838, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22474838, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22474838, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.x + value: 115 + objectReference: {fileID: 0} + - target: {fileID: 22474838, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.y + value: -8 + objectReference: {fileID: 0} + - target: {fileID: 22474838, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.x + value: 180 + objectReference: {fileID: 0} + - target: {fileID: 22474838, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 22404596, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22404596, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22404596, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.x + value: 222.5 + objectReference: {fileID: 0} + - target: {fileID: 22404596, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.y + value: -8 + objectReference: {fileID: 0} + - target: {fileID: 22404596, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.x + value: 25 + objectReference: {fileID: 0} + - target: {fileID: 22404596, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 22466750, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22466750, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22466750, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.x + value: 12.5 + objectReference: {fileID: 0} + - target: {fileID: 22466750, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.y + value: -8 + objectReference: {fileID: 0} + - target: {fileID: 22466750, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.x + value: 15 + objectReference: {fileID: 0} + - target: {fileID: 22466750, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 22476772, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22476772, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22476772, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.x + value: 115 + objectReference: {fileID: 0} + - target: {fileID: 22476772, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.y + value: -8 + objectReference: {fileID: 0} + - target: {fileID: 22476772, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.x + value: 180 + objectReference: {fileID: 0} + - target: {fileID: 22476772, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 22483054, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22483054, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22483054, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.x + value: 222.5 + objectReference: {fileID: 0} + - target: {fileID: 22483054, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.y + value: -8 + objectReference: {fileID: 0} + - target: {fileID: 22483054, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.x + value: 25 + objectReference: {fileID: 0} + - target: {fileID: 22483054, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 22422416, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22422416, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22422416, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.x + value: 12.5 + objectReference: {fileID: 0} + - target: {fileID: 22422416, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.y + value: -8 + objectReference: {fileID: 0} + - target: {fileID: 22422416, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.x + value: 15 + objectReference: {fileID: 0} + - target: {fileID: 22422416, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 22489920, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22489920, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22489920, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.x + value: 115 + objectReference: {fileID: 0} + - target: {fileID: 22489920, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.y + value: -8 + objectReference: {fileID: 0} + - target: {fileID: 22489920, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.x + value: 180 + objectReference: {fileID: 0} + - target: {fileID: 22489920, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 22405742, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22405742, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22405742, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.x + value: 222.5 + objectReference: {fileID: 0} + - target: {fileID: 22405742, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.y + value: -8 + objectReference: {fileID: 0} + - target: {fileID: 22405742, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.x + value: 25 + objectReference: {fileID: 0} + - target: {fileID: 22405742, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 22477690, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22477690, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22477690, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.x + value: 12.5 + objectReference: {fileID: 0} + - target: {fileID: 22477690, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.y + value: -8 + objectReference: {fileID: 0} + - target: {fileID: 22477690, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.x + value: 15 + objectReference: {fileID: 0} + - target: {fileID: 22477690, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 22449292, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22449292, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22449292, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.x + value: 115 + objectReference: {fileID: 0} + - target: {fileID: 22449292, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.y + value: -8 + objectReference: {fileID: 0} + - target: {fileID: 22449292, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.x + value: 180 + objectReference: {fileID: 0} + - target: {fileID: 22449292, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 22431826, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22431826, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22431826, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.x + value: 222.5 + objectReference: {fileID: 0} + - target: {fileID: 22431826, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.y + value: -8 + objectReference: {fileID: 0} + - target: {fileID: 22431826, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.x + value: 25 + objectReference: {fileID: 0} + - target: {fileID: 22431826, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 22493148, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22493148, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22493148, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.x + value: 12.5 + objectReference: {fileID: 0} + - target: {fileID: 22493148, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.y + value: -8 + objectReference: {fileID: 0} + - target: {fileID: 22493148, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.x + value: 15 + objectReference: {fileID: 0} + - target: {fileID: 22493148, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 22471500, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22471500, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22471500, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.x + value: 115 + objectReference: {fileID: 0} + - target: {fileID: 22471500, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.y + value: -8 + objectReference: {fileID: 0} + - target: {fileID: 22471500, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.x + value: 180 + objectReference: {fileID: 0} + - target: {fileID: 22471500, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 22410532, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22410532, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22410532, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.x + value: 222.5 + objectReference: {fileID: 0} + - target: {fileID: 22410532, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.y + value: -8 + objectReference: {fileID: 0} + - target: {fileID: 22410532, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.x + value: 25 + objectReference: {fileID: 0} + - target: {fileID: 22410532, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 22449618, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22449618, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22449618, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22449618, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22449618, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22449618, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22421016, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22421016, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22421016, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22421016, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22421016, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22421016, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22463286, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22463286, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22463286, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22463286, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22463286, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22463286, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22460246, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22460246, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22460246, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22460246, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22460246, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22460246, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22475684, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22475684, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22475684, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22475684, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22475684, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22475684, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22478158, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22478158, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22478158, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22478158, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22478158, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22478158, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22412396, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22412396, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22412396, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22412396, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22412396, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22412396, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22422480, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22422480, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22422480, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22422480, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22422480, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22422480, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22473052, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22473052, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22473052, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22473052, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22473052, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22473052, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22413792, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22413792, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22413792, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22413792, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22413792, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22413792, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22446600, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22446600, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22446600, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22446600, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22446600, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22446600, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22448498, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_LocalScale.x + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22448498, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_LocalScale.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22448498, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_LocalScale.z + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22441130, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22497436, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.x + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22497436, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22497436, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22497436, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22497436, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22487740, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22487740, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22487740, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22487740, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22487740, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22487740, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22497436, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 22497436, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 22447314, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22447314, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22447314, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22447314, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22447314, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22447314, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22484834, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22484834, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22484834, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22484834, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22484834, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22484834, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22488338, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22488338, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22488338, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22488338, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22488338, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22488338, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_ParentPrefab: {fileID: 100100000, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_RootGameObject: {fileID: 1878514645} + m_IsPrefabParent: 0 +--- !u!1 &1076908621 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 185536, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 1076908622} + - component: {fileID: 1076908625} + - component: {fileID: 1076908624} + - component: {fileID: 1076908623} + m_Layer: 5 + m_Name: Background + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1076908622 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22423050, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1076908621} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1301804701} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.25} + m_AnchorMax: {x: 1, y: 0.75} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1076908623 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11403544, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1076908621} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7ca76dd9ad6eb204c9b0481aece34497, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &1076908624 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11489330, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1076908621} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -98529514, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Texture: {fileID: 0} + m_UVRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 2 +--- !u!222 &1076908625 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22282672, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1076908621} +--- !u!1 &1083435563 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 185578, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 1083435564} + - component: {fileID: 1083435567} + - component: {fileID: 1083435566} + - component: {fileID: 1083435565} + m_Layer: 5 + m_Name: Background + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1083435564 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22439774, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1083435563} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1368962646} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1083435565 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11481940, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1083435563} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7ca76dd9ad6eb204c9b0481aece34497, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &1083435566 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11429486, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1083435563} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -98529514, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Texture: {fileID: 0} + m_UVRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 2 + height: 1 +--- !u!222 &1083435567 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22263392, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1083435563} +--- !u!1 &1090620060 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 102730, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 1090620061} + m_Layer: 5 + m_Name: Handle Slide Area + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1090620061 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22464350, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1090620060} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 2048501439} + m_Father: {fileID: 832625941} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1102078667 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 142866, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 1102078668} + - component: {fileID: 1102078672} + - component: {fileID: 1102078671} + - component: {fileID: 1102078670} + - component: {fileID: 1102078669} + m_Layer: 5 + m_Name: Preset (6) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &1102078668 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22465820, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1102078667} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 274021472} + m_RootOrder: 6 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 141.81818, y: -10} + m_SizeDelta: {x: 21.818182, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1102078669 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11477610, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1102078667} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 20 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &1102078670 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11468552, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1102078667} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1102078671} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 274021473} + m_MethodName: PresetSelect + m_Mode: 2 + m_Arguments: + m_ObjectArgument: {fileID: 1102078671} + m_ObjectArgumentAssemblyTypeName: UnityEngine.UI.Image, UnityEngine.UI + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &1102078671 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11487346, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1102078667} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1102078672 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22217064, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1102078667} +--- !u!1 &1105082742 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 194772, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 1105082743} + - component: {fileID: 1105082746} + - component: {fileID: 1105082745} + - component: {fileID: 1105082744} + m_Layer: 5 + m_Name: LeftText + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1105082743 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22407456, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1105082742} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 212132363} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1105082744 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11493426, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1105082742} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 15 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &1105082745 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11476698, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1105082742} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: B +--- !u!222 &1105082746 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22254790, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1105082742} +--- !u!1 &1118411271 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 147170, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 1118411272} + m_Layer: 5 + m_Name: Handle Slide Area + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1118411272 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22410840, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1118411271} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 593354543} + m_Father: {fileID: 507677672} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1118961866 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 108322, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 1118961867} + m_Layer: 5 + m_Name: Handle Slide Area + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1118961867 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22463192, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1118961866} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 842308284} + m_Father: {fileID: 2093402360} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1127985419 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 150014, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 1127985420} + - component: {fileID: 1127985424} + - component: {fileID: 1127985423} + - component: {fileID: 1127985422} + - component: {fileID: 1127985421} + m_Layer: 5 + m_Name: ValueText + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1127985420 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22431826, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1127985419} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1324958792} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 222.5, y: -8} + m_SizeDelta: {x: 25, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1127985421 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11424714, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1127985419} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 25 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &1127985422 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11487120, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1127985419} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 6b10e832a32d2d14facd8a3f489ee8d6, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &1127985423 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11426072, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1127985419} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: 0 +--- !u!222 &1127985424 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22214676, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1127985419} +--- !u!1 &1157843068 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 110962, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 1157843069} + - component: {fileID: 1157843073} + - component: {fileID: 1157843072} + - component: {fileID: 1157843071} + - component: {fileID: 1157843070} + m_Layer: 5 + m_Name: Preset (8) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &1157843069 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22407396, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1157843068} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 274021472} + m_RootOrder: 8 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 185.45453, y: -10} + m_SizeDelta: {x: 21.818182, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1157843070 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11453686, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1157843068} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 20 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &1157843071 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11469678, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1157843068} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1157843072} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 274021473} + m_MethodName: PresetSelect + m_Mode: 2 + m_Arguments: + m_ObjectArgument: {fileID: 1157843072} + m_ObjectArgumentAssemblyTypeName: UnityEngine.UI.Image, UnityEngine.UI + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &1157843072 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11443566, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1157843068} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1157843073 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22269076, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1157843068} +--- !u!1001 &1173001356 +Prefab: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 2090454929} + m_Modifications: + - target: {fileID: 22448498, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22448498, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22448498, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22448498, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22448498, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22448498, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22448498, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22448498, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22448498, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22448498, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22448498, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.x + value: 240 + objectReference: {fileID: 0} + - target: {fileID: 22448498, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.y + value: 400 + objectReference: {fileID: 0} + - target: {fileID: 22448498, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22448498, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22448498, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22448498, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22448498, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_Pivot.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22448498, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_Pivot.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 11407662, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_Texture + value: + objectReference: {fileID: 0} + - target: {fileID: 11449214, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_Texture + value: + objectReference: {fileID: 0} + - target: {fileID: 11469324, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_Texture + value: + objectReference: {fileID: 0} + - target: {fileID: 11457780, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_Texture + value: + objectReference: {fileID: 0} + - target: {fileID: 11407460, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_Texture + value: + objectReference: {fileID: 0} + - target: {fileID: 11489330, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_Texture + value: + objectReference: {fileID: 0} + - target: {fileID: 11429486, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_Texture + value: + objectReference: {fileID: 0} + - target: {fileID: 11436574, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_Texture + value: + objectReference: {fileID: 0} + - target: {fileID: 11461748, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_Texture + value: + objectReference: {fileID: 0} + - target: {fileID: 22499384, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.x + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22499384, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22499384, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.x + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22499384, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22497436, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.x + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22497436, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22497436, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.x + value: -25 + objectReference: {fileID: 0} + - target: {fileID: 22402782, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22429276, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22469358, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22445236, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22432592, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22471252, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22441130, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22437272, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_ParentPrefab: {fileID: 100100000, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_RootGameObject: {fileID: 1837440034} + m_IsPrefabParent: 0 +--- !u!1 &1175511621 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 157080, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 1175511622} + - component: {fileID: 1175511625} + - component: {fileID: 1175511624} + - component: {fileID: 1175511623} + m_Layer: 5 + m_Name: Background + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1175511622 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22465756, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1175511621} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 507677672} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.25} + m_AnchorMax: {x: 1, y: 0.75} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1175511623 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11404692, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1175511621} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7ca76dd9ad6eb204c9b0481aece34497, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &1175511624 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11457780, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1175511621} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -98529514, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Texture: {fileID: 0} + m_UVRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 2 +--- !u!222 &1175511625 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22222340, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1175511621} +--- !u!1 &1177867576 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 161688, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 1177867577} + - component: {fileID: 1177867580} + - component: {fileID: 1177867579} + - component: {fileID: 1177867578} + m_Layer: 5 + m_Name: Slider + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1177867577 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22416876, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1177867576} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 650216812} + - {fileID: 431094530} + m_Father: {fileID: 124845413} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 115, y: -8} + m_SizeDelta: {x: 180, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1177867578 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11472300, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1177867576} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: c600592efa0cf25479655321bf4fb08a, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &1177867579 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11415364, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1177867576} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: -1 + m_PreferredHeight: 16 + m_FlexibleWidth: 1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &1177867580 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11456442, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1177867576} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -113659843, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 369634463} + m_FillRect: {fileID: 0} + m_HandleRect: {fileID: 369634462} + m_Direction: 0 + m_MinValue: 0 + m_MaxValue: 1 + m_WholeNumbers: 0 + m_Value: 0 + m_OnValueChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.Slider+SliderEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!1 &1180372217 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 158070, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 1180372218} + - component: {fileID: 1180372220} + - component: {fileID: 1180372219} + m_Layer: 5 + m_Name: Handle + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1180372218 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22441130, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1180372217} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 180234993} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 8} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1180372219 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11464698, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1180372217} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 10911, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1180372220 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22216992, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1180372217} +--- !u!1 &1194975999 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 138390, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 1194976000} + - component: {fileID: 1194976003} + - component: {fileID: 1194976002} + - component: {fileID: 1194976001} + m_Layer: 5 + m_Name: LeftText + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1194976000 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22477690, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1194975999} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1852080013} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1194976001 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11412718, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1194975999} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 15 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &1194976002 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11443082, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1194975999} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: V +--- !u!222 &1194976003 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22214548, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1194975999} +--- !u!1 &1211834306 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 191318, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 1211834307} + - component: {fileID: 1211834310} + - component: {fileID: 1211834309} + - component: {fileID: 1211834308} + m_Layer: 5 + m_Name: Slider + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1211834307 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22476772, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1211834306} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 936723343} + - {fileID: 1300273267} + m_Father: {fileID: 1424261726} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 115, y: -8} + m_SizeDelta: {x: 180, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1211834308 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11457668, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1211834306} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: c600592efa0cf25479655321bf4fb08a, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &1211834309 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11488972, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1211834306} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: -1 + m_PreferredHeight: 16 + m_FlexibleWidth: 1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &1211834310 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11423356, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1211834306} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -113659843, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1461736453} + m_FillRect: {fileID: 0} + m_HandleRect: {fileID: 1461736452} + m_Direction: 0 + m_MinValue: 0 + m_MaxValue: 1 + m_WholeNumbers: 0 + m_Value: 0 + m_OnValueChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.Slider+SliderEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!1 &1227911804 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 188290, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 1227911805} + - component: {fileID: 1227911806} + m_Layer: 5 + m_Name: Seperator + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1227911805 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22460246, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1227911804} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 766560829} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1227911806 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11435842, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1227911804} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: -1 + m_PreferredHeight: -1 + m_FlexibleWidth: 1 + m_FlexibleHeight: 1 + m_LayoutPriority: 1 +--- !u!1 &1244806538 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 109518, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 1244806539} + - component: {fileID: 1244806540} + m_Layer: 5 + m_Name: A + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1244806539 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22473052, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1244806538} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 2008219134} + - {fileID: 741290795} + - {fileID: 1818163275} + m_Father: {fileID: 1869602467} + m_RootOrder: 8 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1244806540 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11455040, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1244806538} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -405508275, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 5 + m_Right: 5 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 5 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 1 + m_ChildControlHeight: 1 +--- !u!1 &1255765975 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 169426, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 1255765976} + - component: {fileID: 1255765979} + - component: {fileID: 1255765978} + - component: {fileID: 1255765977} + m_Layer: 5 + m_Name: Slider + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1255765976 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22464540, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1255765975} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 657443833} + - {fileID: 204528839} + m_Father: {fileID: 1455122463} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1255765977 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11446360, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1255765975} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: c600592efa0cf25479655321bf4fb08a, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &1255765978 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11427848, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1255765975} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: -1 + m_PreferredHeight: 16 + m_FlexibleWidth: 1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &1255765979 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11444998, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1255765975} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -113659843, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1008031677} + m_FillRect: {fileID: 0} + m_HandleRect: {fileID: 1008031676} + m_Direction: 0 + m_MinValue: 0 + m_MaxValue: 1 + m_WholeNumbers: 0 + m_Value: 0 + m_OnValueChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.Slider+SliderEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!1 &1260621561 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 109518, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 1260621562} + - component: {fileID: 1260621563} + m_Layer: 5 + m_Name: A + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1260621562 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22473052, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1260621561} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 104575433} + - {fileID: 832625941} + - {fileID: 1399776228} + m_Father: {fileID: 766560829} + m_RootOrder: 8 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1260621563 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11455040, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1260621561} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -405508275, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 5 + m_Right: 5 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 5 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 1 + m_ChildControlHeight: 1 +--- !u!1 &1268005416 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 191318, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 1268005417} + - component: {fileID: 1268005420} + - component: {fileID: 1268005419} + - component: {fileID: 1268005418} + m_Layer: 5 + m_Name: Slider + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1268005417 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22476772, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1268005416} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1904021037} + - {fileID: 1659989094} + m_Father: {fileID: 451330292} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1268005418 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11457668, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1268005416} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: c600592efa0cf25479655321bf4fb08a, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &1268005419 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11488972, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1268005416} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: -1 + m_PreferredHeight: 16 + m_FlexibleWidth: 1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &1268005420 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11423356, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1268005416} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -113659843, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 145101539} + m_FillRect: {fileID: 0} + m_HandleRect: {fileID: 145101538} + m_Direction: 0 + m_MinValue: 0 + m_MaxValue: 1 + m_WholeNumbers: 0 + m_Value: 0 + m_OnValueChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.Slider+SliderEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!1 &1269579308 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 194704, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 1269579309} + - component: {fileID: 1269579313} + - component: {fileID: 1269579312} + - component: {fileID: 1269579311} + - component: {fileID: 1269579310} + m_Layer: 5 + m_Name: Preset (4) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &1269579309 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22415658, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1269579308} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 694136810} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 98.181816, y: -10} + m_SizeDelta: {x: 21.818182, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1269579310 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11415596, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1269579308} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 20 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &1269579311 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11470716, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1269579308} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1269579312} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 694136811} + m_MethodName: PresetSelect + m_Mode: 2 + m_Arguments: + m_ObjectArgument: {fileID: 1269579312} + m_ObjectArgumentAssemblyTypeName: UnityEngine.UI.Image, UnityEngine.UI + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &1269579312 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11418286, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1269579308} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1269579313 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22220132, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1269579308} +--- !u!1 &1300273266 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 127516, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 1300273267} + m_Layer: 5 + m_Name: Handle Slide Area + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1300273267 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22475824, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1300273266} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1461736452} + m_Father: {fileID: 1211834307} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1301804700 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 189222, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 1301804701} + - component: {fileID: 1301804704} + - component: {fileID: 1301804703} + - component: {fileID: 1301804702} + m_Layer: 5 + m_Name: Slider + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1301804701 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22474838, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1301804700} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1076908622} + - {fileID: 1582460084} + m_Father: {fileID: 212132363} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1301804702 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11411114, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1301804700} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: c600592efa0cf25479655321bf4fb08a, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &1301804703 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11477176, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1301804700} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: -1 + m_PreferredHeight: 16 + m_FlexibleWidth: 1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &1301804704 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11460148, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1301804700} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -113659843, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1914690397} + m_FillRect: {fileID: 0} + m_HandleRect: {fileID: 1914690396} + m_Direction: 0 + m_MinValue: 0 + m_MaxValue: 1 + m_WholeNumbers: 0 + m_Value: 0 + m_OnValueChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.Slider+SliderEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!1 &1302429622 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 150874, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 1302429623} + - component: {fileID: 1302429626} + - component: {fileID: 1302429625} + - component: {fileID: 1302429624} + m_Layer: 5 + m_Name: Background + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1302429623 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22498864, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1302429622} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 411092138} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.25} + m_AnchorMax: {x: 1, y: 0.75} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1302429624 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11410684, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1302429622} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7ca76dd9ad6eb204c9b0481aece34497, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &1302429625 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11469324, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1302429622} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -98529514, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Texture: {fileID: 0} + m_UVRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 2 +--- !u!222 &1302429626 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22223566, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1302429622} +--- !u!1 &1305298855 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 158070, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 1305298856} + - component: {fileID: 1305298858} + - component: {fileID: 1305298857} + m_Layer: 5 + m_Name: Handle + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1305298856 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22441130, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1305298855} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 654651893} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 8} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1305298857 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11464698, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1305298855} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 10911, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1305298858 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22216992, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1305298855} +--- !u!1 &1321495529 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 119286, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 1321495530} + - component: {fileID: 1321495534} + - component: {fileID: 1321495533} + - component: {fileID: 1321495532} + - component: {fileID: 1321495531} + m_Layer: 5 + m_Name: ValueText + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1321495530 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22467618, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1321495529} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1455122463} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1321495531 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11411592, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1321495529} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 25 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &1321495532 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11433944, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1321495529} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 6b10e832a32d2d14facd8a3f489ee8d6, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &1321495533 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11475176, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1321495529} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: 0 +--- !u!222 &1321495534 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22215766, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1321495529} +--- !u!1 &1324958791 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 165936, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 1324958792} + - component: {fileID: 1324958793} + m_Layer: 5 + m_Name: V + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1324958792 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22412396, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1324958791} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 917512078} + - {fileID: 20473275} + - {fileID: 1127985420} + m_Father: {fileID: 766560829} + m_RootOrder: 6 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1324958793 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11452336, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1324958791} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -405508275, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 5 + m_Right: 5 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 5 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 1 + m_ChildControlHeight: 1 +--- !u!1 &1329222747 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 109976, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 1329222748} + - component: {fileID: 1329222750} + - component: {fileID: 1329222749} + m_Layer: 5 + m_Name: Handle + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1329222748 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22499384, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1329222747} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 875044583} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 1, y: 1} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 20, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1329222749 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11484674, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1329222747} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 10913, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1329222750 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22236658, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1329222747} +--- !u!1 &1331100896 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 167200, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 1331100897} + m_Layer: 5 + m_Name: Handle Slide Area + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1331100897 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22431028, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1331100896} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 408284502} + m_Father: {fileID: 20473275} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1350650411 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 173810, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 1350650412} + - component: {fileID: 1350650416} + - component: {fileID: 1350650415} + - component: {fileID: 1350650414} + - component: {fileID: 1350650413} + m_Layer: 5 + m_Name: Preset (5) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &1350650412 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22445984, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1350650411} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 274021472} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 120, y: -10} + m_SizeDelta: {x: 21.818182, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1350650413 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11408032, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1350650411} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 20 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &1350650414 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11487238, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1350650411} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1350650415} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 274021473} + m_MethodName: PresetSelect + m_Mode: 2 + m_Arguments: + m_ObjectArgument: {fileID: 1350650415} + m_ObjectArgumentAssemblyTypeName: UnityEngine.UI.Image, UnityEngine.UI + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &1350650415 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11426590, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1350650411} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1350650416 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22216614, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1350650411} +--- !u!1 &1368962645 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 114640, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 1368962646} + - component: {fileID: 1368962648} + - component: {fileID: 1368962647} + m_Layer: 5 + m_Name: Hue + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1368962646 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22462156, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1368962645} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1083435564} + - {fileID: 180234993} + m_Father: {fileID: 371570537} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 1, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: -25, y: -5} + m_SizeDelta: {x: 20, y: -10} + m_Pivot: {x: 0, y: 1} +--- !u!114 &1368962647 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11469788, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1368962645} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: c600592efa0cf25479655321bf4fb08a, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &1368962648 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11499806, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1368962645} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -113659843, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1180372219} + m_FillRect: {fileID: 0} + m_HandleRect: {fileID: 1180372218} + m_Direction: 2 + m_MinValue: 0 + m_MaxValue: 1 + m_WholeNumbers: 0 + m_Value: 0 + m_OnValueChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.Slider+SliderEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!1 &1372827461 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 190312, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 1372827462} + - component: {fileID: 1372827465} + - component: {fileID: 1372827464} + - component: {fileID: 1372827463} + m_Layer: 5 + m_Name: LeftText + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1372827462 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22462776, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1372827461} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 2111239723} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1372827463 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11436886, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1372827461} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 15 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &1372827464 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11430478, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1372827461} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: R +--- !u!222 &1372827465 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22230530, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1372827461} +--- !u!1 &1395360686 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 134618, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 1395360687} + - component: {fileID: 1395360690} + - component: {fileID: 1395360689} + - component: {fileID: 1395360688} + m_Layer: 5 + m_Name: LeftText + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1395360687 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22446644, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1395360686} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1566327407} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 12.5, y: -8} + m_SizeDelta: {x: 15, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1395360688 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11453048, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1395360686} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 15 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &1395360689 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11428072, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1395360686} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: G +--- !u!222 &1395360690 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22206792, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1395360686} +--- !u!1 &1396656501 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 167200, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 1396656502} + m_Layer: 5 + m_Name: Handle Slide Area + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1396656502 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22431028, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1396656501} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 146467718} + m_Father: {fileID: 411092138} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1399776227 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 190688, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 1399776228} + - component: {fileID: 1399776232} + - component: {fileID: 1399776231} + - component: {fileID: 1399776230} + - component: {fileID: 1399776229} + m_Layer: 5 + m_Name: ValueText + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1399776228 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22410532, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1399776227} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1260621562} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 222.5, y: -8} + m_SizeDelta: {x: 25, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1399776229 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11414424, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1399776227} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 25 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &1399776230 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11435758, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1399776227} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 6b10e832a32d2d14facd8a3f489ee8d6, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &1399776231 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11410848, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1399776227} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: 255 +--- !u!222 &1399776232 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22222836, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1399776227} +--- !u!1 &1424261725 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 144296, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 1424261726} + - component: {fileID: 1424261727} + m_Layer: 5 + m_Name: H + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1424261726 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22475684, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1424261725} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 493804171} + - {fileID: 1211834307} + - {fileID: 244200430} + m_Father: {fileID: 766560829} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1424261727 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11493476, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1424261725} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -405508275, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 5 + m_Right: 5 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 5 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 1 + m_ChildControlHeight: 1 +--- !u!1 &1428027842 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 109170, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 1428027843} + - component: {fileID: 1428027847} + - component: {fileID: 1428027846} + - component: {fileID: 1428027845} + - component: {fileID: 1428027844} + m_Layer: 5 + m_Name: ValueText + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1428027843 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22483054, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1428027842} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 451330292} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1428027844 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11400974, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1428027842} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 25 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &1428027845 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11448474, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1428027842} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 6b10e832a32d2d14facd8a3f489ee8d6, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &1428027846 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11460492, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1428027842} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: 0 +--- !u!222 &1428027847 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22289050, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1428027842} +--- !u!1 &1444409342 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 168892, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 1444409343} + - component: {fileID: 1444409345} + - component: {fileID: 1444409344} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1444409343 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22490412, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1444409342} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1669242056} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: -0.5} + m_SizeDelta: {x: -20, y: -13} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1444409344 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11448266, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1444409342} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 0 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: +--- !u!222 &1444409345 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22218658, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1444409342} +--- !u!1 &1455122462 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 196948, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 1455122463} + - component: {fileID: 1455122464} + m_Layer: 5 + m_Name: G + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1455122463 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22421016, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1455122462} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1550277049} + - {fileID: 1255765976} + - {fileID: 1321495530} + m_Father: {fileID: 1869602467} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1455122464 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11407234, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1455122462} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -405508275, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 5 + m_Right: 5 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 5 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 1 + m_ChildControlHeight: 1 +--- !u!1 &1461736451 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 160884, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 1461736452} + - component: {fileID: 1461736454} + - component: {fileID: 1461736453} + m_Layer: 5 + m_Name: Handle + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1461736452 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22437272, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1461736451} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1300273267} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 5, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1461736453 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11432620, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1461736451} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1461736454 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22226060, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1461736451} +--- !u!1 &1486541059 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 142866, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 1486541060} + - component: {fileID: 1486541064} + - component: {fileID: 1486541063} + - component: {fileID: 1486541062} + - component: {fileID: 1486541061} + m_Layer: 5 + m_Name: Preset (6) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &1486541060 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22465820, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1486541059} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 694136810} + m_RootOrder: 6 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 141.81818, y: -10} + m_SizeDelta: {x: 21.818182, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1486541061 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11477610, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1486541059} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 20 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &1486541062 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11468552, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1486541059} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1486541063} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 694136811} + m_MethodName: PresetSelect + m_Mode: 2 + m_Arguments: + m_ObjectArgument: {fileID: 1486541063} + m_ObjectArgumentAssemblyTypeName: UnityEngine.UI.Image, UnityEngine.UI + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &1486541063 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11487346, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1486541059} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1486541064 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22217064, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1486541059} +--- !u!1 &1490019351 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 109276, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 1490019352} + - component: {fileID: 1490019353} + m_Layer: 5 + m_Name: ColorBox + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1490019352 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22497436, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1490019351} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1901109258} + m_Father: {fileID: 1785630327} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1490019353 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11475674, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1490019351} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -1254083943, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_AspectMode: 3 + m_AspectRatio: 1 +--- !u!1 &1490811191 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 176944, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 1490811192} + - component: {fileID: 1490811195} + - component: {fileID: 1490811194} + - component: {fileID: 1490811193} + m_Layer: 5 + m_Name: Fill + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1490811192 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22446496, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1490811191} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 836404686} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1490811193 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11488000, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1490811191} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 6bca58eb07ad66b498a2f158bcb13225, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &1490811194 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11459056, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1490811191} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 10911, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1490811195 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22208798, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1490811191} +--- !u!1 &1497405587 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 110962, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 1497405588} + - component: {fileID: 1497405592} + - component: {fileID: 1497405591} + - component: {fileID: 1497405590} + - component: {fileID: 1497405589} + m_Layer: 5 + m_Name: Preset (8) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &1497405588 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22407396, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1497405587} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 694136810} + m_RootOrder: 8 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 185.45453, y: -10} + m_SizeDelta: {x: 21.818182, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1497405589 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11453686, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1497405587} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 20 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &1497405590 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11469678, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1497405587} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1497405591} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 694136811} + m_MethodName: PresetSelect + m_Mode: 2 + m_Arguments: + m_ObjectArgument: {fileID: 1497405591} + m_ObjectArgumentAssemblyTypeName: UnityEngine.UI.Image, UnityEngine.UI + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &1497405591 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11443566, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1497405587} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1497405592 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22269076, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1497405587} +--- !u!1 &1499836823 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 118516, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 1499836824} + - component: {fileID: 1499836828} + - component: {fileID: 1499836827} + - component: {fileID: 1499836826} + - component: {fileID: 1499836825} + m_Layer: 5 + m_Name: ValueText + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1499836824 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22404596, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1499836823} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 953654619} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 222.5, y: -8} + m_SizeDelta: {x: 25, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1499836825 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11479482, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1499836823} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 25 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &1499836826 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11482782, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1499836823} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 6b10e832a32d2d14facd8a3f489ee8d6, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &1499836827 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11435316, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1499836823} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: 0 +--- !u!222 &1499836828 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22258132, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1499836823} +--- !u!1 &1550277048 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 134618, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 1550277049} + - component: {fileID: 1550277052} + - component: {fileID: 1550277051} + - component: {fileID: 1550277050} + m_Layer: 5 + m_Name: LeftText + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1550277049 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22446644, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1550277048} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1455122463} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1550277050 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11453048, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1550277048} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 15 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &1550277051 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11428072, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1550277048} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: G +--- !u!222 &1550277052 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22206792, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1550277048} +--- !u!1 &1566327406 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 196948, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 1566327407} + - component: {fileID: 1566327408} + m_Layer: 5 + m_Name: G + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1566327407 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22421016, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1566327406} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1395360687} + - {fileID: 507677672} + - {fileID: 1771447196} + m_Father: {fileID: 766560829} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1566327408 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11407234, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1566327406} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -405508275, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 5 + m_Right: 5 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 5 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 1 + m_ChildControlHeight: 1 +--- !u!1 &1582460083 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 108322, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 1582460084} + m_Layer: 5 + m_Name: Handle Slide Area + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1582460084 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22463192, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1582460083} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1914690396} + m_Father: {fileID: 1301804701} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1645107937 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 119204, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 1645107938} + m_Layer: 5 + m_Name: ColorBox Container + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1645107938 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22486906, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1645107937} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 2131444184} + m_Father: {fileID: 371570537} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: -12.5, y: 0} + m_SizeDelta: {x: -35, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1659989093 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 127516, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 1659989094} + m_Layer: 5 + m_Name: Handle Slide Area + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1659989094 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22475824, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1659989093} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 145101538} + m_Father: {fileID: 1268005417} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1669242055 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 117174, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 1669242056} + - component: {fileID: 1669242060} + - component: {fileID: 1669242059} + - component: {fileID: 1669242058} + - component: {fileID: 1669242057} + m_Layer: 5 + m_Name: InputField + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1669242056 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22446600, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1669242055} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1932986643} + - {fileID: 1444409343} + m_Father: {fileID: 2062443902} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1669242057 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11483982, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1669242055} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d85c534b3c1560544b09d0996dfeba84, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &1669242058 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11463028, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1669242055} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 575553740, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1669242059} + m_TextComponent: {fileID: 1444409344} + m_Placeholder: {fileID: 1932986644} + m_ContentType: 0 + m_InputType: 0 + m_AsteriskChar: 42 + m_KeyboardType: 0 + m_LineType: 0 + m_HideMobileInput: 0 + m_CharacterValidation: 0 + m_CharacterLimit: 0 + m_OnEndEdit: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.InputField+SubmitEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null + m_OnValueChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.InputField+OnChangeEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null + m_CaretColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_CustomCaretColor: 0 + m_SelectionColor: {r: 0.65882355, g: 0.80784315, b: 1, a: 0.7529412} + m_Text: + m_CaretBlinkRate: 0.85 + m_CaretWidth: 1 + m_ReadOnly: 0 +--- !u!114 &1669242059 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11457280, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1669242055} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 10911, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1669242060 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22261740, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1669242055} +--- !u!1 &1689461654 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 176944, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 1689461655} + - component: {fileID: 1689461658} + - component: {fileID: 1689461657} + - component: {fileID: 1689461656} + m_Layer: 5 + m_Name: Fill + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1689461655 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22446496, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1689461654} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1790845646} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1689461656 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11488000, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1689461654} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 6bca58eb07ad66b498a2f158bcb13225, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &1689461657 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11459056, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1689461654} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 10911, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1689461658 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22208798, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1689461654} +--- !u!1 &1708059822 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 197314, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 1708059823} + - component: {fileID: 1708059826} + - component: {fileID: 1708059825} + - component: {fileID: 1708059824} + m_Layer: 5 + m_Name: Background + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1708059823 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22400824, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1708059822} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 2047505125} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.25} + m_AnchorMax: {x: 1, y: 0.75} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1708059824 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11413310, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1708059822} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7ca76dd9ad6eb204c9b0481aece34497, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &1708059825 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11407662, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1708059822} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -98529514, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Texture: {fileID: 0} + m_UVRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 2 +--- !u!222 &1708059826 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22221412, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1708059822} +--- !u!1 &1742387425 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1742387427} + - component: {fileID: 1742387426} + m_Layer: 0 + m_Name: Directional light + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!108 &1742387426 +Light: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1742387425} + m_Enabled: 1 + serializedVersion: 8 + m_Type: 1 + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Intensity: 1 + m_Range: 10 + m_SpotAngle: 30 + m_CookieSize: 10 + m_Shadows: + m_Type: 0 + m_Resolution: -1 + m_CustomResolution: -1 + m_Strength: 1 + m_Bias: 0.05 + m_NormalBias: 0.4 + m_NearPlane: 0.2 + m_Cookie: {fileID: 0} + m_DrawHalo: 0 + m_Flare: {fileID: 0} + m_RenderMode: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_Lightmapping: 1 + m_AreaSize: {x: 1, y: 1} + m_BounceIntensity: 1 + m_FalloffTable: + m_Table[0]: 0 + m_Table[1]: 0 + m_Table[2]: 0 + m_Table[3]: 0 + m_Table[4]: 0 + m_Table[5]: 0 + m_Table[6]: 0 + m_Table[7]: 0 + m_Table[8]: 0 + m_Table[9]: 0 + m_Table[10]: 0 + m_Table[11]: 0 + m_Table[12]: 0 + m_ColorTemperature: 6570 + m_UseColorTemperature: 0 + m_ShadowRadius: 0 + m_ShadowAngle: 0 +--- !u!4 &1742387427 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1742387425} + m_LocalRotation: {x: 0.40821794, y: -0.23456973, z: 0.10938166, w: 0.8754261} + m_LocalPosition: {x: 248.80728, y: 762.6799, z: 227.12805} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1745333869 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 150014, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 1745333870} + - component: {fileID: 1745333874} + - component: {fileID: 1745333873} + - component: {fileID: 1745333872} + - component: {fileID: 1745333871} + m_Layer: 5 + m_Name: ValueText + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1745333870 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22431826, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1745333869} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1852080013} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1745333871 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11424714, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1745333869} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 25 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &1745333872 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11487120, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1745333869} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 6b10e832a32d2d14facd8a3f489ee8d6, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &1745333873 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11426072, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1745333869} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: 0 +--- !u!222 &1745333874 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22214676, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1745333869} +--- !u!1 &1746817116 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 174742, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 1746817117} + - component: {fileID: 1746817121} + - component: {fileID: 1746817120} + - component: {fileID: 1746817119} + - component: {fileID: 1746817118} + m_Layer: 5 + m_Name: Preset (3) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &1746817117 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22460006, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1746817116} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 274021472} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 76.36363, y: -10} + m_SizeDelta: {x: 21.818182, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1746817118 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11469158, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1746817116} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 20 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &1746817119 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11485084, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1746817116} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1746817120} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 274021473} + m_MethodName: PresetSelect + m_Mode: 2 + m_Arguments: + m_ObjectArgument: {fileID: 1746817120} + m_ObjectArgumentAssemblyTypeName: UnityEngine.UI.Image, UnityEngine.UI + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &1746817120 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11494638, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1746817116} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1746817121 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22260376, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1746817116} +--- !u!1 &1756926527 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 113042, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 1756926528} + m_Layer: 5 + m_Name: Handle Slide Area + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1756926528 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22498948, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1756926527} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 242528465} + m_Father: {fileID: 2047505125} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1771447195 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 119286, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 1771447196} + - component: {fileID: 1771447200} + - component: {fileID: 1771447199} + - component: {fileID: 1771447198} + - component: {fileID: 1771447197} + m_Layer: 5 + m_Name: ValueText + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1771447196 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22467618, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1771447195} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1566327407} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 222.5, y: -8} + m_SizeDelta: {x: 25, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1771447197 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11411592, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1771447195} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 25 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &1771447198 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11433944, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1771447195} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 6b10e832a32d2d14facd8a3f489ee8d6, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &1771447199 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11475176, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1771447195} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: 0 +--- !u!222 &1771447200 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22215766, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1771447195} +--- !u!1 &1776062161 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 118516, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 1776062162} + - component: {fileID: 1776062166} + - component: {fileID: 1776062165} + - component: {fileID: 1776062164} + - component: {fileID: 1776062163} + m_Layer: 5 + m_Name: ValueText + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1776062162 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22404596, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1776062161} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 212132363} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1776062163 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11479482, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1776062161} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 25 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &1776062164 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11482782, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1776062161} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 6b10e832a32d2d14facd8a3f489ee8d6, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &1776062165 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11435316, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1776062161} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: 0 +--- !u!222 &1776062166 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22258132, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1776062161} +--- !u!1 &1785630326 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 119204, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 1785630327} + m_Layer: 5 + m_Name: ColorBox Container + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1785630327 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22486906, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1785630326} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1490019352} + m_Father: {fileID: 1981096033} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: -12.5, y: 0} + m_SizeDelta: {x: -35, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1790010518 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 194772, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 1790010519} + - component: {fileID: 1790010522} + - component: {fileID: 1790010521} + - component: {fileID: 1790010520} + m_Layer: 5 + m_Name: LeftText + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1790010519 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22407456, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1790010518} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 953654619} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 12.5, y: -8} + m_SizeDelta: {x: 15, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1790010520 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11493426, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1790010518} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 15 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &1790010521 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11476698, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1790010518} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: B +--- !u!222 &1790010522 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22254790, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1790010518} +--- !u!1 &1790845645 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 192330, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 1790845646} + - component: {fileID: 1790845648} + - component: {fileID: 1790845647} + m_Layer: 5 + m_Name: Color + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1790845646 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22413792, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1790845645} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1689461655} + m_Father: {fileID: 109164930} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1790845647 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11461114, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1790845645} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0.39215687} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 10911, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 0 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1790845648 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22255370, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1790845645} +--- !u!1 &1798666490 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 118568, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 1798666491} + - component: {fileID: 1798666495} + - component: {fileID: 1798666494} + - component: {fileID: 1798666493} + - component: {fileID: 1798666492} + m_Layer: 5 + m_Name: BoxSlider + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1798666491 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22462880, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1798666490} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 875044583} + m_Father: {fileID: 2131444184} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1798666492 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11463516, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1798666490} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 1e4240873631f724496efec97d7151b3, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &1798666493 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11436574, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1798666490} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -98529514, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Texture: {fileID: 0} + m_UVRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 +--- !u!222 &1798666494 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22222454, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1798666490} +--- !u!114 &1798666495 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11424766, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1798666490} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 37c44bc94a9a7f241b5b552f3ff89458, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &1818163274 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 190688, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 1818163275} + - component: {fileID: 1818163279} + - component: {fileID: 1818163278} + - component: {fileID: 1818163277} + - component: {fileID: 1818163276} + m_Layer: 5 + m_Name: ValueText + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1818163275 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22410532, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1818163274} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1244806539} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1818163276 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11414424, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1818163274} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 25 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &1818163277 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11435758, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1818163274} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 6b10e832a32d2d14facd8a3f489ee8d6, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &1818163278 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11410848, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1818163274} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: 255 +--- !u!222 &1818163279 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22222836, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1818163274} +--- !u!1 &1821474526 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 184328, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 1821474527} + - component: {fileID: 1821474531} + - component: {fileID: 1821474530} + - component: {fileID: 1821474529} + - component: {fileID: 1821474528} + m_Layer: 5 + m_Name: Preset (7) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &1821474527 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22455926, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1821474526} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 274021472} + m_RootOrder: 7 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 163.63635, y: -10} + m_SizeDelta: {x: 21.818182, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1821474528 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11482218, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1821474526} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 20 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &1821474529 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11485672, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1821474526} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1821474530} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 274021473} + m_MethodName: PresetSelect + m_Mode: 2 + m_Arguments: + m_ObjectArgument: {fileID: 1821474530} + m_ObjectArgumentAssemblyTypeName: UnityEngine.UI.Image, UnityEngine.UI + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &1821474530 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11425336, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1821474526} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1821474531 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22240504, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1821474526} +--- !u!1 &1828906401 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 150098, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 1828906402} + - component: {fileID: 1828906403} + m_Layer: 5 + m_Name: S + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1828906402 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22478158, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1828906401} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 2006820090} + - {fileID: 175796671} + - {fileID: 2017415519} + m_Father: {fileID: 766560829} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1828906403 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11496146, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1828906401} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -405508275, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 5 + m_Right: 5 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 5 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 1 + m_ChildControlHeight: 1 +--- !u!1 &1837440034 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 157272, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 367771814} + - component: {fileID: 1837440036} + - component: {fileID: 1837440035} + - component: {fileID: 367771815} + m_Layer: 5 + m_Name: Picker 2.0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1837440035 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11426166, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1837440034} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 0.392} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 10907, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1837440036 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22269110, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1837440034} +--- !u!1 &1852080012 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 165936, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 1852080013} + - component: {fileID: 1852080014} + m_Layer: 5 + m_Name: V + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1852080013 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22412396, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1852080012} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1194976000} + - {fileID: 411092138} + - {fileID: 1745333870} + m_Father: {fileID: 1869602467} + m_RootOrder: 6 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1852080014 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11452336, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1852080012} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -405508275, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 5 + m_Right: 5 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 5 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 1 + m_ChildControlHeight: 1 +--- !u!1 &1869602466 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 169390, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 1869602467} + - component: {fileID: 1869602468} + m_Layer: 5 + m_Name: Sliders + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1869602467 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22415604, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1869602466} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 2111239723} + - {fileID: 1455122463} + - {fileID: 212132363} + - {fileID: 57913838} + - {fileID: 451330292} + - {fileID: 361808359} + - {fileID: 1852080013} + - {fileID: 1029991561} + - {fileID: 1244806539} + m_Father: {fileID: 367771814} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 0} + m_AnchoredPosition: {x: 0, y: 170} + m_SizeDelta: {x: 0, y: 145} + m_Pivot: {x: 0.5, y: 1} +--- !u!114 &1869602468 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11463640, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1869602466} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1297475563, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 0 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 1 + m_ChildControlHeight: 1 +--- !u!1 &1878514645 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 157272, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 710150150} + - component: {fileID: 1878514647} + - component: {fileID: 1878514646} + - component: {fileID: 710150151} + m_Layer: 5 + m_Name: Picker 2.0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1878514646 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11426166, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1878514645} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 0.392} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 10907, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1878514647 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22269110, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1878514645} +--- !u!1 &1886394072 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 187878, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 1886394073} + - component: {fileID: 1886394077} + - component: {fileID: 1886394076} + - component: {fileID: 1886394075} + - component: {fileID: 1886394074} + m_Layer: 5 + m_Name: Preset (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1886394073 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22484834, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1886394072} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 274021472} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1886394074 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11439404, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1886394072} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 20 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &1886394075 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11452934, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1886394072} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1886394076} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 274021473} + m_MethodName: PresetSelect + m_Mode: 2 + m_Arguments: + m_ObjectArgument: {fileID: 1886394076} + m_ObjectArgumentAssemblyTypeName: UnityEngine.UI.Image, UnityEngine.UI + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &1886394076 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11441004, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1886394072} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.21366784, g: 0.7647059, b: 0.30867442, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1886394077 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22278160, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1886394072} +--- !u!1 &1895047779 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1895047780} + - component: {fileID: 1895047783} + - component: {fileID: 1895047782} + - component: {fileID: 1895047781} + m_Layer: 5 + m_Name: Canvas + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1895047780 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1895047779} + m_LocalRotation: {x: 0, y: 0.2159284, z: 0, w: 0.9764092} + m_LocalPosition: {x: 0, y: 0, z: 10} + m_LocalScale: {x: 0.01, y: 0.01, z: 0.01} + m_Children: + - {fileID: 710150150} + m_Father: {fileID: 570113577} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 1274, y: 909} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1895047781 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1895047779} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1301386320, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!114 &1895047782 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1895047779} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1980459831, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_UiScaleMode: 0 + m_ReferencePixelsPerUnit: 100 + m_ScaleFactor: 1 + m_ReferenceResolution: {x: 800, y: 600} + m_ScreenMatchMode: 0 + m_MatchWidthOrHeight: 0 + m_PhysicalUnit: 3 + m_FallbackScreenDPI: 96 + m_DefaultSpriteDPI: 96 + m_DynamicPixelsPerUnit: 1 +--- !u!223 &1895047783 +Canvas: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1895047779} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 2 + m_Camera: {fileID: 0} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_AdditionalShaderChannelsFlag: 25 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!1 &1901109257 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 118568, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 1901109258} + - component: {fileID: 1901109262} + - component: {fileID: 1901109261} + - component: {fileID: 1901109260} + - component: {fileID: 1901109259} + m_Layer: 5 + m_Name: BoxSlider + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1901109258 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22462880, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1901109257} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 629615632} + m_Father: {fileID: 1490019352} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1901109259 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11463516, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1901109257} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 1e4240873631f724496efec97d7151b3, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &1901109260 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11436574, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1901109257} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -98529514, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Texture: {fileID: 0} + m_UVRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 +--- !u!222 &1901109261 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22222454, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1901109257} +--- !u!114 &1901109262 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11424766, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1901109257} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 37c44bc94a9a7f241b5b552f3ff89458, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &1904021036 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 120788, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 1904021037} + - component: {fileID: 1904021040} + - component: {fileID: 1904021039} + - component: {fileID: 1904021038} + m_Layer: 5 + m_Name: Background + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1904021037 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22479018, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1904021036} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1268005417} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.25} + m_AnchorMax: {x: 1, y: 0.75} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1904021038 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11431864, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1904021036} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7ca76dd9ad6eb204c9b0481aece34497, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &1904021039 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11449214, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1904021036} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -98529514, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Texture: {fileID: 0} + m_UVRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 2 +--- !u!222 &1904021040 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22267742, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1904021036} +--- !u!1 &1914690395 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 137072, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 1914690396} + - component: {fileID: 1914690398} + - component: {fileID: 1914690397} + m_Layer: 5 + m_Name: Handle + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1914690396 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22432592, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1914690395} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1582460084} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 5, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1914690397 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11429028, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1914690395} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1914690398 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22241672, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1914690395} +--- !u!1 &1932986642 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 109862, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 1932986643} + - component: {fileID: 1932986645} + - component: {fileID: 1932986644} + m_Layer: 5 + m_Name: Placeholder + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1932986643 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22463646, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1932986642} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1669242056} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: -0.5} + m_SizeDelta: {x: -20, y: -13} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1932986644 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11419324, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1932986642} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 0.5} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 2 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: Enter text... +--- !u!222 &1932986645 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22208894, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1932986642} +--- !u!1 &1939675297 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 152064, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 1939675298} + - component: {fileID: 1939675301} + - component: {fileID: 1939675300} + - component: {fileID: 1939675299} + m_Layer: 5 + m_Name: LeftText + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1939675298 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22466750, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1939675297} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 451330292} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1939675299 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11431838, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1939675297} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 15 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &1939675300 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11487462, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1939675297} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: H +--- !u!222 &1939675301 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22224878, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1939675297} +--- !u!1 &1941335921 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 103988, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 1941335922} + - component: {fileID: 1941335925} + - component: {fileID: 1941335924} + - component: {fileID: 1941335923} + m_Layer: 5 + m_Name: Background + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1941335922 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22419704, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1941335921} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 740175640} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.25} + m_AnchorMax: {x: 1, y: 0.75} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1941335923 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11434628, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1941335921} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7ca76dd9ad6eb204c9b0481aece34497, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &1941335924 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11461748, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1941335921} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -98529514, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Texture: {fileID: 0} + m_UVRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 2 +--- !u!222 &1941335925 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22202916, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 1941335921} +--- !u!1 &1959037690 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 118848, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 1959037691} + - component: {fileID: 1959037692} + m_Layer: 5 + m_Name: Seperator + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1959037691 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22422480, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1959037690} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 766560829} + m_RootOrder: 7 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1959037692 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11451352, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1959037690} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: -1 + m_PreferredHeight: -1 + m_FlexibleWidth: 1 + m_FlexibleHeight: 1 + m_LayoutPriority: 1 +--- !u!1 &1981096032 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 165956, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 1981096033} + m_Layer: 5 + m_Name: HSVField + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1981096033 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22468756, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 1981096032} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1785630327} + - {fileID: 206875737} + m_Father: {fileID: 710150150} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 60} + m_SizeDelta: {x: 0, y: -220} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &2006820089 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 169152, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 2006820090} + - component: {fileID: 2006820093} + - component: {fileID: 2006820092} + - component: {fileID: 2006820091} + m_Layer: 5 + m_Name: LeftText + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2006820090 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22422416, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 2006820089} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1828906402} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 12.5, y: -8} + m_SizeDelta: {x: 15, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &2006820091 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11421370, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 2006820089} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 15 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &2006820092 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11430666, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 2006820089} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: S +--- !u!222 &2006820093 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22287232, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 2006820089} +--- !u!1 &2008219133 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 188196, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 2008219134} + - component: {fileID: 2008219137} + - component: {fileID: 2008219136} + - component: {fileID: 2008219135} + m_Layer: 5 + m_Name: LeftText + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2008219134 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22493148, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 2008219133} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1244806539} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &2008219135 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11418062, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 2008219133} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 15 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &2008219136 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11421558, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 2008219133} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: A +--- !u!222 &2008219137 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22254392, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 2008219133} +--- !u!1 &2017415518 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 197864, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 2017415519} + - component: {fileID: 2017415523} + - component: {fileID: 2017415522} + - component: {fileID: 2017415521} + - component: {fileID: 2017415520} + m_Layer: 5 + m_Name: ValueText + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2017415519 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22405742, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 2017415518} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1828906402} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 222.5, y: -8} + m_SizeDelta: {x: 25, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &2017415520 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11445998, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 2017415518} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: 25 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &2017415521 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11429994, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 2017415518} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 6b10e832a32d2d14facd8a3f489ee8d6, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &2017415522 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11415718, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 2017415518} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: 0 +--- !u!222 &2017415523 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22217712, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 2017415518} +--- !u!1 &2047505124 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 161688, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 2047505125} + - component: {fileID: 2047505128} + - component: {fileID: 2047505127} + - component: {fileID: 2047505126} + m_Layer: 5 + m_Name: Slider + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2047505125 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22416876, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 2047505124} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1708059823} + - {fileID: 1756926528} + m_Father: {fileID: 2111239723} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &2047505126 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11472300, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 2047505124} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: c600592efa0cf25479655321bf4fb08a, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &2047505127 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11415364, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 2047505124} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: -1 + m_PreferredHeight: 16 + m_FlexibleWidth: 1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &2047505128 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11456442, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 2047505124} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -113659843, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 242528466} + m_FillRect: {fileID: 0} + m_HandleRect: {fileID: 242528465} + m_Direction: 0 + m_MinValue: 0 + m_MaxValue: 1 + m_WholeNumbers: 0 + m_Value: 0 + m_OnValueChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.Slider+SliderEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!1 &2048501438 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 165534, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 2048501439} + - component: {fileID: 2048501441} + - component: {fileID: 2048501440} + m_Layer: 5 + m_Name: Handle + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2048501439 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22445236, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 2048501438} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1090620061} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 5, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &2048501440 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11415580, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 2048501438} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &2048501441 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22243436, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 2048501438} +--- !u!1 &2062443901 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 194224, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 2062443902} + - component: {fileID: 2062443903} + m_Layer: 5 + m_Name: ColorField + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2062443902 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22489814, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 2062443901} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 836404686} + - {fileID: 1669242056} + m_Father: {fileID: 367771814} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 50} + m_Pivot: {x: 0.5, y: 1} +--- !u!114 &2062443903 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11476502, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 2062443901} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -405508275, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 5 + m_Right: 5 + m_Top: 10 + m_Bottom: 10 + m_ChildAlignment: 0 + m_Spacing: 10 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 1 + m_ChildControlHeight: 1 +--- !u!1 &2090454928 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 2090454929} + - component: {fileID: 2090454932} + - component: {fileID: 2090454931} + - component: {fileID: 2090454930} + m_Layer: 5 + m_Name: Canvas + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2090454929 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2090454928} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 367771814} + m_Father: {fileID: 0} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0, y: 0} +--- !u!114 &2090454930 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2090454928} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1301386320, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!114 &2090454931 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2090454928} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1980459831, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_UiScaleMode: 0 + m_ReferencePixelsPerUnit: 100 + m_ScaleFactor: 1 + m_ReferenceResolution: {x: 800, y: 600} + m_ScreenMatchMode: 0 + m_MatchWidthOrHeight: 0 + m_PhysicalUnit: 3 + m_FallbackScreenDPI: 96 + m_DefaultSpriteDPI: 96 + m_DynamicPixelsPerUnit: 1 +--- !u!223 &2090454932 +Canvas: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2090454928} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 0 + m_Camera: {fileID: 0} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_AdditionalShaderChannelsFlag: 25 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!1 &2093402359 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 189222, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1064925107} + serializedVersion: 5 + m_Component: + - component: {fileID: 2093402360} + - component: {fileID: 2093402363} + - component: {fileID: 2093402362} + - component: {fileID: 2093402361} + m_Layer: 5 + m_Name: Slider + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2093402360 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22474838, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 2093402359} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 148584819} + - {fileID: 1118961867} + m_Father: {fileID: 953654619} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 115, y: -8} + m_SizeDelta: {x: 180, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &2093402361 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11411114, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 2093402359} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: c600592efa0cf25479655321bf4fb08a, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &2093402362 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11477176, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 2093402359} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1679637790, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: -1 + m_PreferredHeight: 16 + m_FlexibleWidth: 1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &2093402363 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11460148, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1064925107} + m_GameObject: {fileID: 2093402359} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -113659843, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 842308285} + m_FillRect: {fileID: 0} + m_HandleRect: {fileID: 842308284} + m_Direction: 0 + m_MinValue: 0 + m_MaxValue: 1 + m_WholeNumbers: 0 + m_Value: 0 + m_OnValueChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.Slider+SliderEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!1 &2111239722 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 113862, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 2111239723} + - component: {fileID: 2111239724} + m_Layer: 5 + m_Name: R + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2111239723 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22449618, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 2111239722} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1372827462} + - {fileID: 2047505125} + - {fileID: 261232955} + m_Father: {fileID: 1869602467} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &2111239724 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11452006, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 2111239722} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -405508275, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 5 + m_Right: 5 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 5 + m_ChildForceExpandWidth: 0 + m_ChildForceExpandHeight: 0 + m_ChildControlWidth: 1 + m_ChildControlHeight: 1 +--- !u!1 &2131444183 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 109276, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_PrefabInternal: {fileID: 1173001356} + serializedVersion: 5 + m_Component: + - component: {fileID: 2131444184} + - component: {fileID: 2131444185} + m_Layer: 5 + m_Name: ColorBox + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2131444184 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 22497436, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 2131444183} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1798666491} + m_Father: {fileID: 1645107938} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &2131444185 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 11475674, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1173001356} + m_GameObject: {fileID: 2131444183} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -1254083943, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_AspectMode: 3 + m_AspectRatio: 1 diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/PickerTest.unity.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/PickerTest.unity.meta new file mode 100644 index 000000000..f7ac8702e --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/PickerTest.unity.meta @@ -0,0 +1,4 @@ +fileFormatVersion: 2 +guid: ce46c07f0028e314ab7767577ab5e7a6 +DefaultImporter: + userData: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/UI.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/UI.meta new file mode 100644 index 000000000..861a83237 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/UI.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 2b5fe4e314cbd9944bcaa93e814e9bd5 +folderAsset: yes +timeCreated: 1442586536 +licenseType: Free +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/UI/ColorImage.cs b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/UI/ColorImage.cs new file mode 100644 index 000000000..087b17ab5 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/UI/ColorImage.cs @@ -0,0 +1,27 @@ +using UnityEngine; +using UnityEngine.UI; +using System.Collections; + +[RequireComponent(typeof(Image))] +public class ColorImage : MonoBehaviour +{ + public ColorPicker picker; + + private Image image; + + private void Awake() + { + image = GetComponent(); + picker.onValueChanged.AddListener(ColorChanged); + } + + private void OnDestroy() + { + picker.onValueChanged.RemoveListener(ColorChanged); + } + + private void ColorChanged(Color newColor) + { + image.color = newColor; + } +} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/UI/ColorImage.cs.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/UI/ColorImage.cs.meta new file mode 100644 index 000000000..a3d87fb63 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/UI/ColorImage.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 6bca58eb07ad66b498a2f158bcb13225 +timeCreated: 1442675622 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/UI/ColorLabel.cs b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/UI/ColorLabel.cs new file mode 100644 index 000000000..17e492352 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/UI/ColorLabel.cs @@ -0,0 +1,83 @@ +using UnityEngine; +using UnityEngine.UI; +using System; + +[RequireComponent(typeof(Text))] +public class ColorLabel : MonoBehaviour +{ + public ColorPicker picker; + + public ColorValues type; + + public string prefix = "R: "; + public float minValue = 0; + public float maxValue = 255; + + public int precision = 0; + + private Text label; + + private void Awake() + { + label = GetComponent(); + + } + + private void OnEnable() + { + if (Application.isPlaying && picker != null) + { + picker.onValueChanged.AddListener(ColorChanged); + picker.onHSVChanged.AddListener(HSVChanged); + } + } + + private void OnDestroy() + { + if (picker != null) + { + picker.onValueChanged.RemoveListener(ColorChanged); + picker.onHSVChanged.RemoveListener(HSVChanged); + } + } + +#if UNITY_EDITOR + private void OnValidate() + { + label = GetComponent(); + UpdateValue(); + } +#endif + + private void ColorChanged(Color color) + { + UpdateValue(); + } + + private void HSVChanged(float hue, float sateration, float value) + { + UpdateValue(); + } + + private void UpdateValue() + { + if (picker == null) + { + label.text = prefix + "-"; + } + else + { + float value = minValue + (picker.GetValue(type) * (maxValue - minValue)); + + label.text = prefix + ConvertToDisplayString(value); + } + } + + private string ConvertToDisplayString(float value) + { + if (precision > 0) + return value.ToString("f " + precision); + else + return Mathf.FloorToInt(value).ToString(); + } +} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/UI/ColorLabel.cs.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/UI/ColorLabel.cs.meta new file mode 100644 index 000000000..5fe625451 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/UI/ColorLabel.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 6b10e832a32d2d14facd8a3f489ee8d6 +timeCreated: 1442587803 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/UI/ColorPicker.cs b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/UI/ColorPicker.cs new file mode 100644 index 000000000..7f089e6be --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/UI/ColorPicker.cs @@ -0,0 +1,255 @@ +using UnityEngine; +using System.Collections; +using UnityEngine.UI; +using UnityEngine.Events; + +public class ColorPicker : MonoBehaviour +{ + private float _hue = 0; + private float _saturation = 0; + private float _brightness = 0; + + private float _red = 0; + private float _green = 0; + private float _blue = 0; + + private float _alpha = 1; + + public ColorChangedEvent onValueChanged = new ColorChangedEvent(); + public HSVChangedEvent onHSVChanged = new HSVChangedEvent(); + + public Color CurrentColor + { + get + { + return new Color(_red, _green, _blue, _alpha); + } + set + { + if (CurrentColor == value) + return; + + _red = value.r; + _green = value.g; + _blue = value.b; + _alpha = value.a; + + RGBChanged(); + + SendChangedEvent(); + } + } + + private void Start() + { + SendChangedEvent(); + } + + public float H + { + get + { + return _hue; + } + set + { + if (_hue == value) + return; + + _hue = value; + + HSVChanged(); + + SendChangedEvent(); + } + } + + public float S + { + get + { + return _saturation; + } + set + { + if (_saturation == value) + return; + + _saturation = value; + + HSVChanged(); + + SendChangedEvent(); + } + } + + public float V + { + get + { + return _brightness; + } + set + { + if (_brightness == value) + return; + + _brightness = value; + + HSVChanged(); + + SendChangedEvent(); + } + } + + public float R + { + get + { + return _red; + } + set + { + if (_red == value) + return; + + _red = value; + + RGBChanged(); + + SendChangedEvent(); + } + } + + public float G + { + get + { + return _green; + } + set + { + if (_green == value) + return; + + _green = value; + + RGBChanged(); + + SendChangedEvent(); + } + } + + public float B + { + get + { + return _blue; + } + set + { + if (_blue == value) + return; + + _blue = value; + + RGBChanged(); + + SendChangedEvent(); + } + } + + private float A + { + get + { + return _alpha; + } + set + { + if (_alpha == value) + return; + + _alpha = value; + + SendChangedEvent(); + } + } + + private void RGBChanged() + { + HsvColor color = HSVUtil.ConvertRgbToHsv(CurrentColor); + + _hue = color.normalizedH; + _saturation = color.normalizedS; + _brightness = color.normalizedV; + } + + private void HSVChanged() + { + Color color = HSVUtil.ConvertHsvToRgb(_hue * 360, _saturation, _brightness, _alpha); + + _red = color.r; + _green = color.g; + _blue = color.b; + } + + private void SendChangedEvent() + { + onValueChanged.Invoke(CurrentColor); + onHSVChanged.Invoke(_hue, _saturation, _brightness); + } + + public void AssignColor(ColorValues type, float value) + { + switch (type) + { + case ColorValues.R: + R = value; + break; + case ColorValues.G: + G = value; + break; + case ColorValues.B: + B = value; + break; + case ColorValues.A: + A = value; + break; + case ColorValues.Hue: + H = value; + break; + case ColorValues.Saturation: + S = value; + break; + case ColorValues.Value: + V = value; + break; + default: + break; + } + } + + public float GetValue(ColorValues type) + { + switch (type) + { + case ColorValues.R: + return R; + case ColorValues.G: + return G; + case ColorValues.B: + return B; + case ColorValues.A: + return A; + case ColorValues.Hue: + return H; + case ColorValues.Saturation: + return S; + case ColorValues.Value: + return V; + default: + throw new System.NotImplementedException(""); + } + } +} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/UI/ColorPicker.cs.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/UI/ColorPicker.cs.meta new file mode 100644 index 000000000..d4aac35f1 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/UI/ColorPicker.cs.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8262e4a8322117f4da079921eaa72834 +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/UI/ColorPresets.cs b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/UI/ColorPresets.cs new file mode 100644 index 000000000..de078338b --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/UI/ColorPresets.cs @@ -0,0 +1,44 @@ +using UnityEngine; +using UnityEngine.UI; + +public class ColorPresets : MonoBehaviour +{ + public ColorPicker picker; + public GameObject[] presets; + public Image createPresetImage; + + void Awake() + { +// picker.onHSVChanged.AddListener(HSVChanged); + picker.onValueChanged.AddListener(ColorChanged); + } + + public void CreatePresetButton() + { + for (var i = 0; i < presets.Length; i++) + { + if (!presets[i].activeSelf) + { + presets[i].SetActive(true); + presets[i].GetComponent().color = picker.CurrentColor; + break; + } + } + } + + public void PresetSelect(Image sender) + { + picker.CurrentColor = sender.color; + } + + // Not working, it seems ConvertHsvToRgb() is broken. It doesn't work when fed + // input h, s, v as shown below. +// private void HSVChanged(float h, float s, float v) +// { +// createPresetImage.color = HSVUtil.ConvertHsvToRgb(h, s, v, 1); +// } + private void ColorChanged(Color color) + { + createPresetImage.color = color; + } +} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/UI/ColorPresets.cs.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/UI/ColorPresets.cs.meta new file mode 100644 index 000000000..8901adad6 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/UI/ColorPresets.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 0923373e76e77402c9c53a2f1250ad3e +timeCreated: 1456875791 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/UI/ColorSlider.cs b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/UI/ColorSlider.cs new file mode 100644 index 000000000..a91ef7db3 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/UI/ColorSlider.cs @@ -0,0 +1,91 @@ +using UnityEngine; +using UnityEngine.UI; +using System; + +/// +/// Displays one of the color values of aColorPicker +/// +[RequireComponent(typeof(Slider))] +public class ColorSlider : MonoBehaviour +{ + public ColorPicker hsvpicker; + + /// + /// Which value this slider can edit. + /// + public ColorValues type; + + private Slider slider; + + private bool listen = true; + + private void Awake() + { + slider = GetComponent(); + + hsvpicker.onValueChanged.AddListener(ColorChanged); + hsvpicker.onHSVChanged.AddListener(HSVChanged); + slider.onValueChanged.AddListener(SliderChanged); + } + + private void OnDestroy() + { + hsvpicker.onValueChanged.RemoveListener(ColorChanged); + hsvpicker.onHSVChanged.RemoveListener(HSVChanged); + slider.onValueChanged.RemoveListener(SliderChanged); + } + + private void ColorChanged(Color newColor) + { + listen = false; + switch (type) + { + case ColorValues.R: + slider.normalizedValue = newColor.r; + break; + case ColorValues.G: + slider.normalizedValue = newColor.g; + break; + case ColorValues.B: + slider.normalizedValue = newColor.b; + break; + case ColorValues.A: + slider.normalizedValue = newColor.a; + break; + default: + break; + } + } + + private void HSVChanged(float hue, float saturation, float value) + { + listen = false; + switch (type) + { + case ColorValues.Hue: + slider.normalizedValue = hue; //1 - hue; + break; + case ColorValues.Saturation: + slider.normalizedValue = saturation; + break; + case ColorValues.Value: + slider.normalizedValue = value; + break; + default: + break; + } + } + + private void SliderChanged(float newValue) + { + if (listen) + { + newValue = slider.normalizedValue; + //if (type == ColorValues.Hue) + // newValue = 1 - newValue; + + hsvpicker.AssignColor(type, newValue); + } + listen = true; + } +} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/UI/ColorSlider.cs.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/UI/ColorSlider.cs.meta new file mode 100644 index 000000000..c516b5e78 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/UI/ColorSlider.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: c600592efa0cf25479655321bf4fb08a +timeCreated: 1442586558 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/UI/ColorSliderImage.cs b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/UI/ColorSliderImage.cs new file mode 100644 index 000000000..4121ded2d --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/UI/ColorSliderImage.cs @@ -0,0 +1,212 @@ +using UnityEngine; +using UnityEngine.UI; +using System.Collections; + +[RequireComponent(typeof(RawImage)), ExecuteInEditMode()] +public class ColorSliderImage : MonoBehaviour +{ + public ColorPicker picker; + + /// + /// Which value this slider can edit. + /// + public ColorValues type; + + public Slider.Direction direction; + + private RawImage image; + + private RectTransform rectTransform + { + get + { + return transform as RectTransform; + } + } + + private void Awake() + { + image = GetComponent(); + + RegenerateTexture(); + } + + private void OnEnable() + { + if (picker != null && Application.isPlaying) + { + picker.onValueChanged.AddListener(ColorChanged); + picker.onHSVChanged.AddListener(HSVChanged); + } + } + + private void OnDisable() + { + if (picker != null) + { + picker.onValueChanged.RemoveListener(ColorChanged); + picker.onHSVChanged.RemoveListener(HSVChanged); + } + } + + private void OnDestroy() + { + if (image.texture != null) + DestroyImmediate(image.texture); + } + +#if UNITY_EDITOR + private void OnValidate() + { + image = GetComponent(); + RegenerateTexture(); + } +#endif + + private void ColorChanged(Color newColor) + { + switch (type) + { + case ColorValues.R: + case ColorValues.G: + case ColorValues.B: + case ColorValues.Saturation: + case ColorValues.Value: + RegenerateTexture(); + break; + case ColorValues.A: + case ColorValues.Hue: + default: + break; + } + } + + private void HSVChanged(float hue, float saturation, float value) + { + switch (type) + { + case ColorValues.R: + case ColorValues.G: + case ColorValues.B: + case ColorValues.Saturation: + case ColorValues.Value: + RegenerateTexture(); + break; + case ColorValues.A: + case ColorValues.Hue: + default: + break; + } + } + + private void RegenerateTexture() + { + Color32 baseColor = picker != null ? picker.CurrentColor : Color.black; + + float h = picker != null ? picker.H : 0; + float s = picker != null ? picker.S : 0; + float v = picker != null ? picker.V : 0; + + Texture2D texture; + Color32[] colors; + + bool vertical = direction == Slider.Direction.BottomToTop || direction == Slider.Direction.TopToBottom; + bool inverted = direction == Slider.Direction.TopToBottom || direction == Slider.Direction.RightToLeft; + + int size; + switch (type) + { + case ColorValues.R: + case ColorValues.G: + case ColorValues.B: + case ColorValues.A: + size = 255; + break; + case ColorValues.Hue: + size = 360; + break; + case ColorValues.Saturation: + case ColorValues.Value: + size = 100; + break; + default: + throw new System.NotImplementedException(""); + } + if (vertical) + texture = new Texture2D(1, size); + else + texture = new Texture2D(size, 1); + + texture.hideFlags = HideFlags.DontSave; + colors = new Color32[size]; + + switch (type) + { + case ColorValues.R: + for (byte i = 0; i < size; i++) + { + colors[inverted ? size - 1 - i : i] = new Color32(i, baseColor.g, baseColor.b, 255); + } + break; + case ColorValues.G: + for (byte i = 0; i < size; i++) + { + colors[inverted ? size - 1 - i : i] = new Color32(baseColor.r, i, baseColor.b, 255); + } + break; + case ColorValues.B: + for (byte i = 0; i < size; i++) + { + colors[inverted ? size - 1 - i : i] = new Color32(baseColor.r, baseColor.g, i, 255); + } + break; + case ColorValues.A: + for (byte i = 0; i < size; i++) + { + colors[inverted ? size - 1 - i : i] = new Color32(i, i, i, 255); + } + break; + case ColorValues.Hue: + for (int i = 0; i < size; i++) + { + colors[inverted ? size - 1 - i : i] = HSVUtil.ConvertHsvToRgb(i, 1, 1, 1); + } + break; + case ColorValues.Saturation: + for (int i = 0; i < size; i++) + { + colors[inverted ? size - 1 - i : i] = HSVUtil.ConvertHsvToRgb(h * 360, (float)i / size, v, 1); + } + break; + case ColorValues.Value: + for (int i = 0; i < size; i++) + { + colors[inverted ? size - 1 - i : i] = HSVUtil.ConvertHsvToRgb(h * 360, s, (float)i / size, 1); + } + break; + default: + throw new System.NotImplementedException(""); + } + texture.SetPixels32(colors); + texture.Apply(); + + if (image.texture != null) + DestroyImmediate(image.texture); + image.texture = texture; + + switch (direction) + { + case Slider.Direction.BottomToTop: + case Slider.Direction.TopToBottom: + image.uvRect = new Rect(0, 0, 2, 1); + break; + case Slider.Direction.LeftToRight: + case Slider.Direction.RightToLeft: + image.uvRect = new Rect(0, 0, 1, 2); + break; + default: + break; + } + } + +} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/UI/ColorSliderImage.cs.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/UI/ColorSliderImage.cs.meta new file mode 100644 index 000000000..2deb1fe28 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/UI/ColorSliderImage.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 7ca76dd9ad6eb204c9b0481aece34497 +timeCreated: 1442682013 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/UI/HexColorField.cs b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/UI/HexColorField.cs new file mode 100644 index 000000000..a0af5a092 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/UI/HexColorField.cs @@ -0,0 +1,98 @@ +using UnityEngine; +using System.Collections; +using UnityEngine.UI; +using System.Text; +using System.Globalization; + +[RequireComponent(typeof(InputField))] +public class HexColorField : MonoBehaviour +{ + public ColorPicker hsvpicker; + + public bool displayAlpha; + + private InputField hexInputField; + + private const string hexRegex = "^#?(?:[0-9a-fA-F]{3,4}){1,2}$"; + + private void Awake() + { + hexInputField = GetComponent(); + + // Add listeners to keep text (and color) up to date + hexInputField.onEndEdit.AddListener(UpdateColor); + hsvpicker.onValueChanged.AddListener(UpdateHex); + } + + private void OnDestroy() + { + hexInputField.onValueChanged.RemoveListener(UpdateColor); + hsvpicker.onValueChanged.RemoveListener(UpdateHex); + } + + private void UpdateHex(Color newColor) + { + hexInputField.text = ColorToHex(newColor); + } + + private void UpdateColor(string newHex) + { + Color32 color; + if (HexToColor(newHex, out color)) + hsvpicker.CurrentColor = color; + else + Debug.Log("hex value is in the wrong format, valid formats are: #RGB, #RGBA, #RRGGBB and #RRGGBBAA (# is optional)"); + } + + private string ColorToHex(Color32 color) + { + if (displayAlpha) + return string.Format("#{0:X2}{1:X2}{2:X2}{3:X2}", color.r, color.g, color.b, color.a); + else + return string.Format("#{0:X2}{1:X2}{2:X2}", color.r, color.g, color.b); + } + + public static bool HexToColor(string hex, out Color32 color) + { + // Check if this is a valid hex string (# is optional) + if (System.Text.RegularExpressions.Regex.IsMatch(hex, hexRegex)) + { + int startIndex = hex.StartsWith("#") ? 1 : 0; + + if (hex.Length == startIndex + 8) //#RRGGBBAA + { + color = new Color32(byte.Parse(hex.Substring(startIndex, 2), NumberStyles.AllowHexSpecifier), + byte.Parse(hex.Substring(startIndex + 2, 2), NumberStyles.AllowHexSpecifier), + byte.Parse(hex.Substring(startIndex + 4, 2), NumberStyles.AllowHexSpecifier), + byte.Parse(hex.Substring(startIndex + 6, 2), NumberStyles.AllowHexSpecifier)); + } + else if (hex.Length == startIndex + 6) //#RRGGBB + { + color = new Color32(byte.Parse(hex.Substring(startIndex, 2), NumberStyles.AllowHexSpecifier), + byte.Parse(hex.Substring(startIndex + 2, 2), NumberStyles.AllowHexSpecifier), + byte.Parse(hex.Substring(startIndex + 4, 2), NumberStyles.AllowHexSpecifier), + 255); + } + else if (hex.Length == startIndex + 4) //#RGBA + { + color = new Color32(byte.Parse("" + hex[startIndex] + hex[startIndex], NumberStyles.AllowHexSpecifier), + byte.Parse("" + hex[startIndex + 1] + hex[startIndex + 1], NumberStyles.AllowHexSpecifier), + byte.Parse("" + hex[startIndex + 2] + hex[startIndex + 2], NumberStyles.AllowHexSpecifier), + byte.Parse("" + hex[startIndex + 3] + hex[startIndex + 3], NumberStyles.AllowHexSpecifier)); + } + else //#RGB + { + color = new Color32(byte.Parse("" + hex[startIndex] + hex[startIndex], NumberStyles.AllowHexSpecifier), + byte.Parse("" + hex[startIndex + 1] + hex[startIndex + 1], NumberStyles.AllowHexSpecifier), + byte.Parse("" + hex[startIndex + 2] + hex[startIndex + 2], NumberStyles.AllowHexSpecifier), + 255); + } + return true; + } + else + { + color = new Color32(); + return false; + } + } +} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/UI/HexColorField.cs.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/UI/HexColorField.cs.meta new file mode 100644 index 000000000..5fa9f8de7 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/UI/HexColorField.cs.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d85c534b3c1560544b09d0996dfeba84 +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/UI/SVBoxSlider.cs b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/UI/SVBoxSlider.cs new file mode 100644 index 000000000..f51a7473d --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/UI/SVBoxSlider.cs @@ -0,0 +1,118 @@ +using UnityEngine; +using UnityEngine.UI; +using System.Collections; + +[RequireComponent(typeof(BoxSlider), typeof(RawImage)), ExecuteInEditMode()] +public class SVBoxSlider : MonoBehaviour +{ + public ColorPicker picker; + + private BoxSlider slider; + private RawImage image; + + private float lastH = -1; + private bool listen = true; + + public RectTransform rectTransform + { + get + { + return transform as RectTransform; + } + } + + private void Awake() + { + slider = GetComponent(); + image = GetComponent(); + + RegenerateSVTexture(); + } + + private void OnEnable() + { + if (Application.isPlaying && picker != null) + { + slider.onValueChanged.AddListener(SliderChanged); + picker.onHSVChanged.AddListener(HSVChanged); + } + } + + private void OnDisable() + { + if (picker != null) + { + slider.onValueChanged.RemoveListener(SliderChanged); + picker.onHSVChanged.RemoveListener(HSVChanged); + } + } + + private void OnDestroy() + { + if (image.texture != null) + DestroyImmediate(image.texture); + } + +#if UNITY_EDITOR + private void OnValidate() + { + image = GetComponent(); + RegenerateSVTexture(); + } +#endif + + private void SliderChanged(float saturation, float value) + { + if (listen) + { + picker.AssignColor(ColorValues.Saturation, saturation); + picker.AssignColor(ColorValues.Value, value); + } + listen = true; + } + + private void HSVChanged(float h, float s, float v) + { + if (lastH != h) + { + lastH = h; + RegenerateSVTexture(); + } + + if (s != slider.normalizedValue) + { + listen = false; + slider.normalizedValue = s; + } + + if (v != slider.normalizedValueY) + { + listen = false; + slider.normalizedValueY = v; + } + } + + private void RegenerateSVTexture() + { + double h = picker != null ? picker.H * 360 : 0; + + if (image.texture != null) + DestroyImmediate(image.texture); + + Texture2D texture = new Texture2D(100, 100); + texture.hideFlags = HideFlags.DontSave; + + for (int s = 0; s < 100; s++) + { + Color32[] colors = new Color32[100]; + for (int v = 0; v < 100; v++) + { + colors[v] = HSVUtil.ConvertHsvToRgb(h, (float)s / 100, (float)v / 100, 1); + } + texture.SetPixels32(s, 0, 1, 100, colors); + } + texture.Apply(); + + image.texture = texture; + } +} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/UI/SVBoxSlider.cs.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/UI/SVBoxSlider.cs.meta new file mode 100644 index 000000000..5b57beb3b --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/UI/SVBoxSlider.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 1e4240873631f724496efec97d7151b3 +timeCreated: 1442650713 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/UtilityScripts.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/UtilityScripts.meta new file mode 100644 index 000000000..87cb4f595 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/UtilityScripts.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 2b33138f525222146865861432dbe845 +folderAsset: yes +timeCreated: 1426051345 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/UtilityScripts/BoxSlider.cs b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/UtilityScripts/BoxSlider.cs new file mode 100644 index 000000000..31c53d74c --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/UtilityScripts/BoxSlider.cs @@ -0,0 +1,448 @@ +using System; +using UnityEngine.Events; +using UnityEngine.EventSystems; + +namespace UnityEngine.UI +{ + [AddComponentMenu("UI/BoxSlider", 35)] + [RequireComponent(typeof(RectTransform))] + public class BoxSlider : Selectable, IDragHandler, IInitializePotentialDragHandler, ICanvasElement + { + public enum Direction + { + LeftToRight, + RightToLeft, + BottomToTop, + TopToBottom, + } + + [Serializable] + public class BoxSliderEvent : UnityEvent { } + + [SerializeField] + private RectTransform m_HandleRect; + public RectTransform handleRect { get { return m_HandleRect; } set { if (SetClass(ref m_HandleRect, value)) { UpdateCachedReferences(); UpdateVisuals(); } } } + + [Space(6)] + + [SerializeField] + private float m_MinValue = 0; + public float minValue { get { return m_MinValue; } set { if (SetStruct(ref m_MinValue, value)) { Set(m_Value); SetY (m_ValueY); UpdateVisuals(); } } } + + [SerializeField] + private float m_MaxValue = 1; + public float maxValue { get { return m_MaxValue; } set { if (SetStruct(ref m_MaxValue, value)) { Set(m_Value); SetY (m_ValueY); UpdateVisuals(); } } } + + [SerializeField] + private bool m_WholeNumbers = false; + public bool wholeNumbers { get { return m_WholeNumbers; } set { if (SetStruct(ref m_WholeNumbers, value)) { Set(m_Value); SetY (m_ValueY); UpdateVisuals(); } } } + + [SerializeField] + private float m_Value = 1f; + public float value + { + get + { + if (wholeNumbers) + return Mathf.Round(m_Value); + return m_Value; + } + set + { + Set(value); + } + } + + public float normalizedValue + { + get + { + if (Mathf.Approximately(minValue, maxValue)) + return 0; + return Mathf.InverseLerp(minValue, maxValue, value); + } + set + { + this.value = Mathf.Lerp(minValue, maxValue, value); + } + } + + [SerializeField] + private float m_ValueY = 1f; + public float valueY + { + get + { + if (wholeNumbers) + return Mathf.Round(m_ValueY); + return m_ValueY; + } + set + { + SetY(value); + } + } + + public float normalizedValueY + { + get + { + if (Mathf.Approximately(minValue, maxValue)) + return 0; + return Mathf.InverseLerp(minValue, maxValue, valueY); + } + set + { + this.valueY = Mathf.Lerp(minValue, maxValue, value); + } + } + + [Space(6)] + + // Allow for delegate-based subscriptions for faster events than 'eventReceiver', and allowing for multiple receivers. + [SerializeField] + private BoxSliderEvent m_OnValueChanged = new BoxSliderEvent(); + public BoxSliderEvent onValueChanged { get { return m_OnValueChanged; } set { m_OnValueChanged = value; } } + + // Private fields + + //private Image m_FillImage; + //private Transform m_FillTransform; + //private RectTransform m_FillContainerRect; + private Transform m_HandleTransform; + private RectTransform m_HandleContainerRect; + + // The offset from handle position to mouse down position + private Vector2 m_Offset = Vector2.zero; + + private DrivenRectTransformTracker m_Tracker; + + // Size of each step. + float stepSize { get { return wholeNumbers ? 1 : (maxValue - minValue) * 0.1f; } } + + protected BoxSlider() + { } + + #if UNITY_EDITOR + protected override void OnValidate() + { + base.OnValidate(); + + if (wholeNumbers) + { + m_MinValue = Mathf.Round(m_MinValue); + m_MaxValue = Mathf.Round(m_MaxValue); + } + //Onvalidate is called before OnEnabled. We need to make sure not to touch any other objects before OnEnable is run. + if (IsActive()) + { + UpdateCachedReferences(); + Set(m_Value, false); + SetY(m_ValueY, false); + // Update rects since other things might affect them even if value didn't change. + UpdateVisuals(); + } + + #if UNITY_2018_3_OR_NEWER + //handle new prefab API + var prefabType = UnityEditor.PrefabUtility.GetPrefabAssetType(this); + if (prefabType != UnityEditor.PrefabAssetType.Regular && !Application.isPlaying) + CanvasUpdateRegistry.RegisterCanvasElementForLayoutRebuild(this); + #else + var prefabType = UnityEditor.PrefabUtility.GetPrefabType(this); + if (prefabType != UnityEditor.PrefabType.Prefab && !Application.isPlaying) + CanvasUpdateRegistry.RegisterCanvasElementForLayoutRebuild(this); + #endif + } + + #endif // if UNITY_EDITOR + + public virtual void Rebuild(CanvasUpdate executing) + { + #if UNITY_EDITOR + if (executing == CanvasUpdate.Prelayout) + onValueChanged.Invoke(value, valueY); + #endif + } + + public void LayoutComplete() + { + + } + + public void GraphicUpdateComplete() + { + + } + + public static bool SetClass(ref T currentValue, T newValue) where T: class + { + if ((currentValue == null && newValue == null) || (currentValue != null && currentValue.Equals(newValue))) + return false; + + currentValue = newValue; + return true; + } + + public static bool SetStruct(ref T currentValue, T newValue) where T: struct + { + if (currentValue.Equals(newValue)) + return false; + + currentValue = newValue; + return true; + } + + protected override void OnEnable() + { + base.OnEnable(); + UpdateCachedReferences(); + Set(m_Value, false); + SetY(m_ValueY, false); + // Update rects since they need to be initialized correctly. + UpdateVisuals(); + } + + protected override void OnDisable() + { + m_Tracker.Clear(); + base.OnDisable(); + } + + void UpdateCachedReferences() + { + + if (m_HandleRect) + { + m_HandleTransform = m_HandleRect.transform; + if (m_HandleTransform.parent != null) + m_HandleContainerRect = m_HandleTransform.parent.GetComponent(); + } + else + { + m_HandleContainerRect = null; + } + } + + // Set the valueUpdate the visible Image. + void Set(float input) + { + Set(input, true); + } + + void Set(float input, bool sendCallback) + { + // Clamp the input + float newValue = Mathf.Clamp(input, minValue, maxValue); + if (wholeNumbers) + newValue = Mathf.Round(newValue); + + // If the stepped value doesn't match the last one, it's time to update + if (m_Value == newValue) + return; + + m_Value = newValue; + UpdateVisuals(); + if (sendCallback) + m_OnValueChanged.Invoke(newValue, valueY); + } + + void SetY(float input) + { + SetY(input, true); + } + + void SetY(float input, bool sendCallback) + { + // Clamp the input + float newValue = Mathf.Clamp(input, minValue, maxValue); + if (wholeNumbers) + newValue = Mathf.Round(newValue); + + // If the stepped value doesn't match the last one, it's time to update + if (m_ValueY == newValue) + return; + + m_ValueY = newValue; + UpdateVisuals(); + if (sendCallback) + m_OnValueChanged.Invoke(value, newValue); + } + + + protected override void OnRectTransformDimensionsChange() + { + base.OnRectTransformDimensionsChange(); + //This can be invoked before OnEnabled is called. So we shouldn't be accessing other objects, before OnEnable is called. + if (!IsActive()) + return; + UpdateVisuals(); + } + + enum Axis + { + Horizontal = 0, + Vertical = 1 + } + + + // Force-update the slider. Useful if you've changed the properties and want it to update visually. + private void UpdateVisuals() + { + #if UNITY_EDITOR + if (!Application.isPlaying) + UpdateCachedReferences(); + #endif + + m_Tracker.Clear(); + + + //to business! + if (m_HandleContainerRect != null) + { + m_Tracker.Add(this, m_HandleRect, DrivenTransformProperties.Anchors); + Vector2 anchorMin = Vector2.zero; + Vector2 anchorMax = Vector2.one; + anchorMin[0] = anchorMax[0] = (normalizedValue); + anchorMin[1] = anchorMax[1] = ( normalizedValueY); + + m_HandleRect.anchorMin = anchorMin; + m_HandleRect.anchorMax = anchorMax; + } + } + + // Update the slider's position based on the mouse. + void UpdateDrag(PointerEventData eventData, Camera cam) + { + RectTransform clickRect = m_HandleContainerRect; + if (clickRect != null && clickRect.rect.size[0] > 0) + { + Vector2 localCursor; + if (!RectTransformUtility.ScreenPointToLocalPointInRectangle(clickRect, eventData.position, cam, out localCursor)) + return; + localCursor -= clickRect.rect.position; + + float val = Mathf.Clamp01((localCursor - m_Offset)[0] / clickRect.rect.size[0]); + normalizedValue = (val); + + float valY = Mathf.Clamp01((localCursor - m_Offset)[1] / clickRect.rect.size[1]); + normalizedValueY = ( valY); + + } + } + + private bool MayDrag(PointerEventData eventData) + { + return IsActive() && IsInteractable() && eventData.button == PointerEventData.InputButton.Left; + } + + public override void OnPointerDown(PointerEventData eventData) + { + if (!MayDrag(eventData)) + return; + + base.OnPointerDown(eventData); + + m_Offset = Vector2.zero; + if (m_HandleContainerRect != null && RectTransformUtility.RectangleContainsScreenPoint(m_HandleRect, eventData.position, eventData.enterEventCamera)) + { + Vector2 localMousePos; + if (RectTransformUtility.ScreenPointToLocalPointInRectangle(m_HandleRect, eventData.position, eventData.pressEventCamera, out localMousePos)) + m_Offset = localMousePos; + m_Offset.y = -m_Offset.y; + } + else + { + // Outside the slider handle - jump to this point instead + UpdateDrag(eventData, eventData.pressEventCamera); + } + } + + public virtual void OnDrag(PointerEventData eventData) + { + if (!MayDrag(eventData)) + return; + + UpdateDrag(eventData, eventData.pressEventCamera); + } + + //public override void OnMove(AxisEventData eventData) + //{ + // if (!IsActive() || !IsInteractable()) + // { + // base.OnMove(eventData); + // return; + // } + + // switch (eventData.moveDir) + // { + // case MoveDirection.Left: + // if (axis == Axis.Horizontal && FindSelectableOnLeft() == null) { + // Set(reverseValue ? value + stepSize : value - stepSize); + // SetY (reverseValue ? valueY + stepSize : valueY - stepSize); + // } + // else + // base.OnMove(eventData); + // break; + // case MoveDirection.Right: + // if (axis == Axis.Horizontal && FindSelectableOnRight() == null) { + // Set(reverseValue ? value - stepSize : value + stepSize); + // SetY(reverseValue ? valueY - stepSize : valueY + stepSize); + // } + // else + // base.OnMove(eventData); + // break; + // case MoveDirection.Up: + // if (axis == Axis.Vertical && FindSelectableOnUp() == null) { + // Set(reverseValue ? value - stepSize : value + stepSize); + // SetY(reverseValue ? valueY - stepSize : valueY + stepSize); + // } + // else + // base.OnMove(eventData); + // break; + // case MoveDirection.Down: + // if (axis == Axis.Vertical && FindSelectableOnDown() == null) { + // Set(reverseValue ? value + stepSize : value - stepSize); + // SetY(reverseValue ? valueY + stepSize : valueY - stepSize); + // } + // else + // base.OnMove(eventData); + // break; + // } + //} + + //public override Selectable FindSelectableOnLeft() + //{ + // if (navigation.mode == Navigation.Mode.Automatic && axis == Axis.Horizontal) + // return null; + // return base.FindSelectableOnLeft(); + //} + + //public override Selectable FindSelectableOnRight() + //{ + // if (navigation.mode == Navigation.Mode.Automatic && axis == Axis.Horizontal) + // return null; + // return base.FindSelectableOnRight(); + //} + + //public override Selectable FindSelectableOnUp() + //{ + // if (navigation.mode == Navigation.Mode.Automatic && axis == Axis.Vertical) + // return null; + // return base.FindSelectableOnUp(); + //} + + //public override Selectable FindSelectableOnDown() + //{ + // if (navigation.mode == Navigation.Mode.Automatic && axis == Axis.Vertical) + // return null; + // return base.FindSelectableOnDown(); + //} + + public virtual void OnInitializePotentialDrag(PointerEventData eventData) + { + eventData.useDragThreshold = false; + } + + } +} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/UtilityScripts/BoxSlider.cs.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/UtilityScripts/BoxSlider.cs.meta new file mode 100644 index 000000000..0c384ec6c --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/UtilityScripts/BoxSlider.cs.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 37c44bc94a9a7f241b5b552f3ff89458 +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/UtilityScripts/HSVUtil.cs b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/UtilityScripts/HSVUtil.cs new file mode 100644 index 000000000..f131b57ae --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/UtilityScripts/HSVUtil.cs @@ -0,0 +1,211 @@ +using UnityEngine; +using System.Collections; +using System.Collections.Generic; +using System; + + + +#region ColorUtilities + +public static class HSVUtil +{ + + public static HsvColor ConvertRgbToHsv(Color color) + { + return ConvertRgbToHsv((int)(color.r * 255), (int)(color.g * 255), (int)(color.b * 255)); + } + + //Converts an RGB color to an HSV color. + public static HsvColor ConvertRgbToHsv(double r, double b, double g) + { + double delta, min; + double h = 0, s, v; + + min = Math.Min(Math.Min(r, g), b); + v = Math.Max(Math.Max(r, g), b); + delta = v - min; + + if (v == 0.0) + s = 0; + else + s = delta / v; + + if (s == 0) + h = 360; + else + { + if (r == v) + h = (g - b) / delta; + else if (g == v) + h = 2 + (b - r) / delta; + else if (b == v) + h = 4 + (r - g) / delta; + + h *= 60; + if (h <= 0.0) + h += 360; + } + + HsvColor hsvColor = new HsvColor(); + hsvColor.H = 360 - h; + hsvColor.S = s; + hsvColor.V = v / 255; + + return hsvColor; + + } + + // Converts an HSV color to an RGB color. + public static Color ConvertHsvToRgb(double h, double s, double v, float alpha) + { + + double r = 0, g = 0, b = 0; + + if (s == 0) + { + r = v; + g = v; + b = v; + } + + else + { + int i; + double f, p, q, t; + + + if (h == 360) + h = 0; + else + h = h / 60; + + i = (int)(h); + f = h - i; + + p = v * (1.0 - s); + q = v * (1.0 - (s * f)); + t = v * (1.0 - (s * (1.0f - f))); + + + switch (i) + { + case 0: + r = v; + g = t; + b = p; + break; + + case 1: + r = q; + g = v; + b = p; + break; + + case 2: + r = p; + g = v; + b = t; + break; + + case 3: + r = p; + g = q; + b = v; + break; + + case 4: + r = t; + g = p; + b = v; + break; + + default: + r = v; + g = p; + b = q; + break; + } + + } + + return new Color((float)r, (float)g, (float)b, alpha); + + } +} + + +#endregion ColorUtilities + + +// Describes a color in terms of +// Hue, Saturation, and Value (brightness) +#region HsvColor +public struct HsvColor +{ + /// + /// The Hue, ranges between 0 and 360 + /// + public double H; + + /// + /// The saturation, ranges between 0 and 1 + /// + public double S; + + // The value (brightness), ranges between 0 and 1 + public double V; + + public float normalizedH + { + get + { + return (float)H / 360f; + } + + set + { + H = (double)value * 360; + } + } + + public float normalizedS + { + get + { + return (float)S; + } + set + { + S = (double)value; + } + } + + public float normalizedV + { + get + { + return (float)V; + } + set + { + V = (double)value; + } + } + + public HsvColor(double h, double s, double v) + { + this.H = h; + this.S = s; + this.V = v; + } + + public override string ToString() + { + return "{" + H.ToString("f2") + "," + S.ToString("f2") + "," + V.ToString("f2") + "}"; + } +} +#endregion HsvColor + + + + diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/UtilityScripts/HSVUtil.cs.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/UtilityScripts/HSVUtil.cs.meta new file mode 100644 index 000000000..f84f89a1c --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/HSVPicker/UtilityScripts/HSVUtil.cs.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4f3189246d7fc204faba7a1e9c08e0af +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/ParticlePainter.cs b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/ParticlePainter.cs new file mode 100644 index 000000000..10cedfd48 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/ParticlePainter.cs @@ -0,0 +1,88 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEngine.XR.iOS; + +public class ParticlePainter : MonoBehaviour { + public ParticleSystem painterParticlePrefab; + public float minDistanceThreshold; + public float maxDistanceThreshold; + private bool frameUpdated = false; + public float particleSize = .1f; + public float penDistance = 0.2f; + public ColorPicker colorPicker; + private ParticleSystem currentPS; + private ParticleSystem.Particle [] particles; + private Vector3 previousPosition = Vector3.zero; //camera starts from origin + private List currentPaintVertices; + private Color currentColor = Color.white; + private List paintSystems; + private int paintMode = 0; //0 = off, 1 = pick color, 2 = paint + + // Use this for initialization + void Start () { + UnityARSessionNativeInterface.ARFrameUpdatedEvent += ARFrameUpdated; + currentPS = Instantiate (painterParticlePrefab); + currentPaintVertices = new List (); + paintSystems = new List (); + frameUpdated = false; + colorPicker.onValueChanged.AddListener( newColor => currentColor = newColor); + colorPicker.gameObject.SetActive (false); + } + + public void ARFrameUpdated(UnityARCamera camera) + { + Matrix4x4 matrix = new Matrix4x4(); + matrix.SetColumn(3, camera.worldTransform.column3); + + Vector3 currentPositon = UnityARMatrixOps.GetPosition(matrix) + (Camera.main.transform.forward * penDistance); + if (Vector3.Distance (currentPositon, previousPosition) > minDistanceThreshold) { + if (paintMode == 2) currentPaintVertices.Add (currentPositon); + frameUpdated = true; + previousPosition = currentPositon; + } + } + + void OnGUI() + { + string modeString = paintMode == 0 ? "OFF" : (paintMode == 1 ? "PICK" : "PAINT"); + if (GUI.Button(new Rect(Screen.width -100.0f, 0.0f, 100.0f, 50.0f), modeString)) + { + paintMode = (paintMode + 1) % 3; + colorPicker.gameObject.SetActive (paintMode == 1); + if (paintMode == 2) + RestartPainting (); + } + + } + + void RestartPainting() + { + paintSystems.Add (currentPS); + currentPS = Instantiate (painterParticlePrefab); + currentPaintVertices = new List (); + } + + // Update is called once per frame + void Update () { + if (frameUpdated && paintMode == 2) { + if ( currentPaintVertices.Count > 0) { + int numParticles = currentPaintVertices.Count; + ParticleSystem.Particle[] particles = new ParticleSystem.Particle[numParticles]; + int index = 0; + foreach (Vector3 currentPoint in currentPaintVertices) { + particles [index].position = currentPoint; + particles [index].startColor = currentColor; + particles [index].startSize = particleSize; + index++; + } + currentPS.SetParticles (particles, numParticles); + } else { + ParticleSystem.Particle[] particles = new ParticleSystem.Particle[1]; + particles [0].startSize = 0.0f; + currentPS.SetParticles (particles, 1); + } + frameUpdated = false; + } + } +} diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/ParticlePainter.cs.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/ParticlePainter.cs.meta new file mode 100644 index 000000000..3f1a04d37 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/ParticlePainter.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: a3a20b380ef854b22b8541736614c00e +timeCreated: 1494016368 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/UnityParticlePainter.unity b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/UnityParticlePainter.unity new file mode 100644 index 000000000..447cd277b --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/UnityParticlePainter.unity @@ -0,0 +1,1635 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!29 &1 +OcclusionCullingSettings: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_OcclusionBakeSettings: + smallestOccluder: 5 + smallestHole: 0.25 + backfaceThreshold: 100 + m_SceneGUID: 00000000000000000000000000000000 + m_OcclusionCullingData: {fileID: 0} +--- !u!104 &2 +RenderSettings: + m_ObjectHideFlags: 0 + serializedVersion: 8 + m_Fog: 0 + m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_FogMode: 3 + m_FogDensity: 0.01 + m_LinearFogStart: 0 + m_LinearFogEnd: 300 + m_AmbientSkyColor: {r: 0.2, g: 0.2, b: 0.2, a: 0} + m_AmbientEquatorColor: {r: 0.098908, g: 0.100485, b: 0.119403, a: 1} + m_AmbientGroundColor: {r: 0.098908, g: 0.100485, b: 0.119403, a: 1} + m_AmbientIntensity: 1 + m_AmbientMode: 3 + m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} + m_SkyboxMaterial: {fileID: 0} + m_HaloStrength: 0.5 + m_FlareStrength: 1 + m_FlareFadeSpeed: 3 + m_HaloTexture: {fileID: 0} + m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0} + m_DefaultReflectionMode: 0 + m_DefaultReflectionResolution: 128 + m_ReflectionBounces: 1 + m_ReflectionIntensity: 1 + m_CustomReflection: {fileID: 0} + m_Sun: {fileID: 0} + m_IndirectSpecularColor: {r: 0, g: 0, b: 0, a: 1} +--- !u!157 &4 +LightmapSettings: + m_ObjectHideFlags: 0 + serializedVersion: 11 + m_GIWorkflowMode: 1 + m_GISettings: + serializedVersion: 2 + m_BounceScale: 1 + m_IndirectOutputScale: 1 + m_AlbedoBoost: 1 + m_TemporalCoherenceThreshold: 1 + m_EnvironmentLightingMode: 0 + m_EnableBakedLightmaps: 1 + m_EnableRealtimeLightmaps: 0 + m_LightmapEditorSettings: + serializedVersion: 9 + m_Resolution: 1 + m_BakeResolution: 50 + m_TextureWidth: 1024 + m_TextureHeight: 1024 + m_AO: 1 + m_AOMaxDistance: 1 + m_CompAOExponent: 1 + m_CompAOExponentDirect: 0 + m_Padding: 2 + m_LightmapParameters: {fileID: 0} + m_LightmapsBakeMode: 1 + m_TextureCompression: 0 + m_FinalGather: 0 + m_FinalGatherFiltering: 1 + m_FinalGatherRayCount: 256 + m_ReflectionCompression: 2 + m_MixedBakeMode: 1 + m_BakeBackend: 0 + m_PVRSampling: 1 + m_PVRDirectSampleCount: 32 + m_PVRSampleCount: 500 + m_PVRBounces: 2 + m_PVRFiltering: 0 + m_PVRFilteringMode: 1 + m_PVRCulling: 1 + m_PVRFilteringGaussRadiusDirect: 1 + m_PVRFilteringGaussRadiusIndirect: 5 + m_PVRFilteringGaussRadiusAO: 2 + m_PVRFilteringAtrousColorSigma: 1 + m_PVRFilteringAtrousNormalSigma: 1 + m_PVRFilteringAtrousPositionSigma: 1 + m_LightingDataAsset: {fileID: 0} + m_UseShadowmask: 1 +--- !u!196 &5 +NavMeshSettings: + serializedVersion: 2 + m_ObjectHideFlags: 0 + m_BuildSettings: + serializedVersion: 2 + agentTypeID: 0 + agentRadius: 0.4 + agentHeight: 1.8 + agentSlope: 45 + agentClimb: 0.9 + ledgeDropHeight: 0 + maxJumpAcrossDistance: 0 + minRegionArea: 2 + manualCellSize: 0 + cellSize: 0.13333333 + manualTileSize: 0 + tileSize: 256 + accuratePlacement: 0 + m_NavMeshData: {fileID: 0} +--- !u!1 &7 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 9} + - component: {fileID: 10} + - component: {fileID: 12} + - component: {fileID: 13} + - component: {fileID: 11} + - component: {fileID: 8} + m_Layer: 0 + m_Name: Main Camera + m_TagString: MainCamera + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &8 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b58ecea7a196242dd879c814ac05084c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_ClearMaterial: {fileID: 2100000, guid: f1d9352050a75486f878ab19fa578f16, type: 2} +--- !u!4 &9 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 229804521} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!20 &10 +Camera: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 + serializedVersion: 2 + m_ClearFlags: 3 + m_BackGroundColor: {r: 0.19788063, g: 0.2953552, b: 0.44852942, a: 0.019608} + m_BackgroundMaterial: {fileID: 0} + m_NormalizedViewPortRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + near clip plane: 0.1 + far clip plane: 30 + field of view: 60 + orthographic: 0 + orthographic size: 100 + m_Depth: -1 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingPath: -1 + m_TargetTexture: {fileID: 0} + m_TargetDisplay: 0 + m_TargetEye: 3 + m_HDR: 0 + m_AllowMSAA: 1 + m_ForceIntoRT: 0 + m_OcclusionCulling: 1 + m_StereoConvergence: 10 + m_StereoSeparation: 0.022 + m_StereoMirrorMode: 0 +--- !u!81 &11 +AudioListener: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 +--- !u!92 &12 +Behaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 +--- !u!124 &13 +Behaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 7} + m_Enabled: 1 +--- !u!1 &16 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 20} + - component: {fileID: 29} + - component: {fileID: 17} + m_Layer: 0 + m_Name: Directional light + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &17 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 16} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5587c957048494a2f96db36e0995449e, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!4 &20 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 16} + m_LocalRotation: {x: -0.31668198, y: -0.33227497, z: 0.119525984, w: -0.8803519} + m_LocalPosition: {x: -2.359002, y: 2.21, z: -3.580904} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!108 &29 +Light: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 16} + m_Enabled: 1 + serializedVersion: 8 + m_Type: 1 + m_Color: {r: 1, g: 0.997495, b: 0.955224, a: 1} + m_Intensity: 1 + m_Range: 10 + m_SpotAngle: 30 + m_CookieSize: 10 + m_Shadows: + m_Type: 0 + m_Resolution: -1 + m_CustomResolution: -1 + m_Strength: 1 + m_Bias: 0.05 + m_NormalBias: 0.4 + m_NearPlane: 0.2 + m_Cookie: {fileID: 0} + m_DrawHalo: 0 + m_Flare: {fileID: 0} + m_RenderMode: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_Lightmapping: 1 + m_AreaSize: {x: 1, y: 1} + m_BounceIntensity: 1 + m_FalloffTable: + m_Table[0]: 0 + m_Table[1]: 0 + m_Table[2]: 0 + m_Table[3]: 0 + m_Table[4]: 0 + m_Table[5]: 0 + m_Table[6]: 0 + m_Table[7]: 0 + m_Table[8]: 0 + m_Table[9]: 0 + m_Table[10]: 0 + m_Table[11]: 0 + m_Table[12]: 0 + m_ColorTemperature: 6570 + m_UseColorTemperature: 0 + m_ShadowRadius: 0 + m_ShadowAngle: 0 +--- !u!1 &159264908 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 159264909} + - component: {fileID: 159264911} + - component: {fileID: 159264910} + m_Layer: 5 + m_Name: EventSystem + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &159264909 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 159264908} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 584460312} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &159264910 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 159264908} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1077351063, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_HorizontalAxis: Horizontal + m_VerticalAxis: Vertical + m_SubmitButton: Submit + m_CancelButton: Cancel + m_InputActionsPerSecond: 10 + m_RepeatDelay: 0.5 + m_ForceModuleActive: 0 +--- !u!114 &159264911 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 159264908} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -619905303, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_FirstSelected: {fileID: 0} + m_sendNavigationEvents: 1 + m_DragThreshold: 5 +--- !u!1 &209779403 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 209779405} + - component: {fileID: 209779404} + m_Layer: 0 + m_Name: ParticlePainter + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &209779404 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 209779403} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: a3a20b380ef854b22b8541736614c00e, type: 3} + m_Name: + m_EditorClassIdentifier: + painterParticlePrefab: {fileID: 198095342896748244, guid: 200646a121c9c46f69245ca2c1b789ee, + type: 2} + minDistanceThreshold: 0.05 + maxDistanceThreshold: 1 + particleSize: 0.2 + penDistance: 0.2 + colorPicker: {fileID: 612194366} +--- !u!4 &209779405 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 209779403} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &229804520 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 229804521} + m_Layer: 0 + m_Name: CameraParent + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &229804521 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 229804520} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 9} + m_Father: {fileID: 0} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &584460308 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 584460312} + - component: {fileID: 584460311} + - component: {fileID: 584460310} + - component: {fileID: 584460309} + m_Layer: 5 + m_Name: Canvas + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &584460309 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 584460308} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1301386320, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!114 &584460310 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 584460308} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1980459831, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_UiScaleMode: 0 + m_ReferencePixelsPerUnit: 100 + m_ScaleFactor: 1 + m_ReferenceResolution: {x: 800, y: 600} + m_ScreenMatchMode: 0 + m_MatchWidthOrHeight: 0 + m_PhysicalUnit: 3 + m_FallbackScreenDPI: 96 + m_DefaultSpriteDPI: 96 + m_DynamicPixelsPerUnit: 1 +--- !u!223 &584460311 +Canvas: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 584460308} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 0 + m_Camera: {fileID: 0} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_AdditionalShaderChannelsFlag: 25 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!224 &584460312 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 584460308} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 612194365} + - {fileID: 159264909} + m_Father: {fileID: 0} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0, y: 0} +--- !u!224 &612194365 stripped +RectTransform: + m_PrefabParentObject: {fileID: 22448498, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1997614655} +--- !u!114 &612194366 stripped +MonoBehaviour: + m_PrefabParentObject: {fileID: 11423364, guid: 916ee089a0d7b63419075f91e1c657ec, + type: 2} + m_PrefabInternal: {fileID: 1997614655} + m_Script: {fileID: 11500000, guid: 8262e4a8322117f4da079921eaa72834, type: 3} +--- !u!1 &1121666029 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1121666033} + - component: {fileID: 1121666030} + m_Layer: 0 + m_Name: ARCameraManager + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1121666030 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1121666029} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 462d46d2423bb4f738d2497a397b1590, type: 3} + m_Name: + m_EditorClassIdentifier: + m_camera: {fileID: 10} +--- !u!4 &1121666033 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1121666029} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &1997614655 +Prefab: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 584460312} + m_Modifications: + - target: {fileID: 22448498, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22448498, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22448498, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22448498, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22448498, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22448498, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22448498, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22448498, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22448498, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22448498, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22448498, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.x + value: 800 + objectReference: {fileID: 0} + - target: {fileID: 22448498, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.y + value: 800 + objectReference: {fileID: 0} + - target: {fileID: 22448498, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22448498, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22448498, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22448498, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22448498, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_Pivot.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 22448498, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_Pivot.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 11461748, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_Texture + value: + objectReference: {fileID: 0} + - target: {fileID: 11449214, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_Texture + value: + objectReference: {fileID: 0} + - target: {fileID: 11436574, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_Texture + value: + objectReference: {fileID: 0} + - target: {fileID: 11407662, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_Texture + value: + objectReference: {fileID: 0} + - target: {fileID: 11469324, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_Texture + value: + objectReference: {fileID: 0} + - target: {fileID: 11429486, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_Texture + value: + objectReference: {fileID: 0} + - target: {fileID: 11489330, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_Texture + value: + objectReference: {fileID: 0} + - target: {fileID: 11407460, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_Texture + value: + objectReference: {fileID: 0} + - target: {fileID: 11457780, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_Texture + value: + objectReference: {fileID: 0} + - target: {fileID: 22499384, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.x + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22499384, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22499384, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.x + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22499384, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22497436, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.x + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22497436, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22497436, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.x + value: -185 + objectReference: {fileID: 0} + - target: {fileID: 22429276, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22471252, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22445236, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22469358, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22437272, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22432592, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22441130, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.x + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22402782, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22422416, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22422416, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22422416, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.x + value: 12.5 + objectReference: {fileID: 0} + - target: {fileID: 22422416, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.y + value: -8 + objectReference: {fileID: 0} + - target: {fileID: 22422416, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.x + value: 15 + objectReference: {fileID: 0} + - target: {fileID: 22422416, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 22489920, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22489920, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22489920, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.x + value: 395 + objectReference: {fileID: 0} + - target: {fileID: 22489920, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.y + value: -8 + objectReference: {fileID: 0} + - target: {fileID: 22489920, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.x + value: 740 + objectReference: {fileID: 0} + - target: {fileID: 22489920, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 22405742, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22405742, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22405742, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.x + value: 782.5 + objectReference: {fileID: 0} + - target: {fileID: 22405742, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.y + value: -8 + objectReference: {fileID: 0} + - target: {fileID: 22405742, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.x + value: 25 + objectReference: {fileID: 0} + - target: {fileID: 22405742, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 22407456, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22407456, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22407456, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.x + value: 12.5 + objectReference: {fileID: 0} + - target: {fileID: 22407456, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.y + value: -8 + objectReference: {fileID: 0} + - target: {fileID: 22407456, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.x + value: 15 + objectReference: {fileID: 0} + - target: {fileID: 22407456, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 22474838, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22474838, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22474838, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.x + value: 395 + objectReference: {fileID: 0} + - target: {fileID: 22474838, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.y + value: -8 + objectReference: {fileID: 0} + - target: {fileID: 22474838, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.x + value: 740 + objectReference: {fileID: 0} + - target: {fileID: 22474838, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 22404596, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22404596, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22404596, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.x + value: 782.5 + objectReference: {fileID: 0} + - target: {fileID: 22404596, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.y + value: -8 + objectReference: {fileID: 0} + - target: {fileID: 22404596, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.x + value: 25 + objectReference: {fileID: 0} + - target: {fileID: 22404596, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 22466750, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22466750, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22466750, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.x + value: 12.5 + objectReference: {fileID: 0} + - target: {fileID: 22466750, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.y + value: -8 + objectReference: {fileID: 0} + - target: {fileID: 22466750, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.x + value: 15 + objectReference: {fileID: 0} + - target: {fileID: 22466750, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 22476772, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22476772, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22476772, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.x + value: 395 + objectReference: {fileID: 0} + - target: {fileID: 22476772, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.y + value: -8 + objectReference: {fileID: 0} + - target: {fileID: 22476772, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.x + value: 740 + objectReference: {fileID: 0} + - target: {fileID: 22476772, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 22483054, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22483054, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22483054, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.x + value: 782.5 + objectReference: {fileID: 0} + - target: {fileID: 22483054, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.y + value: -8 + objectReference: {fileID: 0} + - target: {fileID: 22483054, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.x + value: 25 + objectReference: {fileID: 0} + - target: {fileID: 22483054, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 22477690, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22477690, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22477690, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.x + value: 12.5 + objectReference: {fileID: 0} + - target: {fileID: 22477690, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.y + value: -8 + objectReference: {fileID: 0} + - target: {fileID: 22477690, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.x + value: 15 + objectReference: {fileID: 0} + - target: {fileID: 22477690, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 22449292, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22449292, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22449292, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.x + value: 395 + objectReference: {fileID: 0} + - target: {fileID: 22449292, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.y + value: -8 + objectReference: {fileID: 0} + - target: {fileID: 22449292, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.x + value: 740 + objectReference: {fileID: 0} + - target: {fileID: 22449292, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 22431826, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22431826, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22431826, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.x + value: 782.5 + objectReference: {fileID: 0} + - target: {fileID: 22431826, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.y + value: -8 + objectReference: {fileID: 0} + - target: {fileID: 22431826, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.x + value: 25 + objectReference: {fileID: 0} + - target: {fileID: 22431826, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 22446644, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22446644, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22446644, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.x + value: 12.5 + objectReference: {fileID: 0} + - target: {fileID: 22446644, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.y + value: -8 + objectReference: {fileID: 0} + - target: {fileID: 22446644, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.x + value: 15 + objectReference: {fileID: 0} + - target: {fileID: 22446644, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 22464540, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22464540, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22464540, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.x + value: 395 + objectReference: {fileID: 0} + - target: {fileID: 22464540, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.y + value: -8 + objectReference: {fileID: 0} + - target: {fileID: 22464540, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.x + value: 740 + objectReference: {fileID: 0} + - target: {fileID: 22464540, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 22467618, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22467618, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22467618, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.x + value: 782.5 + objectReference: {fileID: 0} + - target: {fileID: 22467618, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.y + value: -8 + objectReference: {fileID: 0} + - target: {fileID: 22467618, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.x + value: 25 + objectReference: {fileID: 0} + - target: {fileID: 22467618, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 22493148, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22493148, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22493148, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.x + value: 12.5 + objectReference: {fileID: 0} + - target: {fileID: 22493148, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.y + value: -8 + objectReference: {fileID: 0} + - target: {fileID: 22493148, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.x + value: 15 + objectReference: {fileID: 0} + - target: {fileID: 22493148, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 22471500, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22471500, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22471500, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.x + value: 395 + objectReference: {fileID: 0} + - target: {fileID: 22471500, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.y + value: -8 + objectReference: {fileID: 0} + - target: {fileID: 22471500, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.x + value: 740 + objectReference: {fileID: 0} + - target: {fileID: 22471500, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 22410532, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22410532, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22410532, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.x + value: 782.5 + objectReference: {fileID: 0} + - target: {fileID: 22410532, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.y + value: -8 + objectReference: {fileID: 0} + - target: {fileID: 22410532, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.x + value: 25 + objectReference: {fileID: 0} + - target: {fileID: 22410532, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 22462776, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22462776, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22462776, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.x + value: 12.5 + objectReference: {fileID: 0} + - target: {fileID: 22462776, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.y + value: -8 + objectReference: {fileID: 0} + - target: {fileID: 22462776, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.x + value: 15 + objectReference: {fileID: 0} + - target: {fileID: 22462776, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 22416876, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22416876, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22416876, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.x + value: 395 + objectReference: {fileID: 0} + - target: {fileID: 22416876, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.y + value: -8 + objectReference: {fileID: 0} + - target: {fileID: 22416876, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.x + value: 740 + objectReference: {fileID: 0} + - target: {fileID: 22416876, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 22409896, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22409896, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22409896, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.x + value: 782.5 + objectReference: {fileID: 0} + - target: {fileID: 22409896, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.y + value: -8 + objectReference: {fileID: 0} + - target: {fileID: 22409896, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.x + value: 25 + objectReference: {fileID: 0} + - target: {fileID: 22409896, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 157272, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22413792, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22413792, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22413792, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.x + value: 202.5 + objectReference: {fileID: 0} + - target: {fileID: 22413792, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.y + value: -25 + objectReference: {fileID: 0} + - target: {fileID: 22413792, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.x + value: 395 + objectReference: {fileID: 0} + - target: {fileID: 22413792, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.y + value: 30 + objectReference: {fileID: 0} + - target: {fileID: 22446600, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22446600, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22446600, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.x + value: 602.5 + objectReference: {fileID: 0} + - target: {fileID: 22446600, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.y + value: -25 + objectReference: {fileID: 0} + - target: {fileID: 22446600, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.x + value: 385 + objectReference: {fileID: 0} + - target: {fileID: 22446600, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.y + value: 30 + objectReference: {fileID: 0} + - target: {fileID: 22449618, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22449618, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22449618, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.x + value: 400 + objectReference: {fileID: 0} + - target: {fileID: 22449618, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.y + value: -8 + objectReference: {fileID: 0} + - target: {fileID: 22449618, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.x + value: 800 + objectReference: {fileID: 0} + - target: {fileID: 22449618, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 22421016, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22421016, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22421016, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.x + value: 400 + objectReference: {fileID: 0} + - target: {fileID: 22421016, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.y + value: -24 + objectReference: {fileID: 0} + - target: {fileID: 22421016, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.x + value: 800 + objectReference: {fileID: 0} + - target: {fileID: 22421016, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 22463286, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22463286, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22463286, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.x + value: 400 + objectReference: {fileID: 0} + - target: {fileID: 22463286, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.y + value: -40 + objectReference: {fileID: 0} + - target: {fileID: 22463286, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.x + value: 800 + objectReference: {fileID: 0} + - target: {fileID: 22463286, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 22460246, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22460246, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22460246, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.x + value: 400 + objectReference: {fileID: 0} + - target: {fileID: 22460246, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.y + value: -56.25 + objectReference: {fileID: 0} + - target: {fileID: 22460246, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.x + value: 800 + objectReference: {fileID: 0} + - target: {fileID: 22460246, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.y + value: 16.5 + objectReference: {fileID: 0} + - target: {fileID: 22475684, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22475684, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22475684, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.x + value: 400 + objectReference: {fileID: 0} + - target: {fileID: 22475684, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.y + value: -72.5 + objectReference: {fileID: 0} + - target: {fileID: 22475684, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.x + value: 800 + objectReference: {fileID: 0} + - target: {fileID: 22475684, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 22478158, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22478158, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22478158, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.x + value: 400 + objectReference: {fileID: 0} + - target: {fileID: 22478158, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.y + value: -88.5 + objectReference: {fileID: 0} + - target: {fileID: 22478158, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.x + value: 800 + objectReference: {fileID: 0} + - target: {fileID: 22478158, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 22412396, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22412396, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22412396, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.x + value: 400 + objectReference: {fileID: 0} + - target: {fileID: 22412396, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.y + value: -104.5 + objectReference: {fileID: 0} + - target: {fileID: 22412396, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.x + value: 800 + objectReference: {fileID: 0} + - target: {fileID: 22412396, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 22422480, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22422480, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22422480, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.x + value: 400 + objectReference: {fileID: 0} + - target: {fileID: 22422480, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.y + value: -120.75 + objectReference: {fileID: 0} + - target: {fileID: 22422480, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.x + value: 800 + objectReference: {fileID: 0} + - target: {fileID: 22422480, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.y + value: 16.5 + objectReference: {fileID: 0} + - target: {fileID: 22473052, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22473052, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22473052, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.x + value: 400 + objectReference: {fileID: 0} + - target: {fileID: 22473052, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.y + value: -137 + objectReference: {fileID: 0} + - target: {fileID: 22473052, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.x + value: 800 + objectReference: {fileID: 0} + - target: {fileID: 22473052, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.y + value: 16 + objectReference: {fileID: 0} + - target: {fileID: 22447314, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22447314, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22447314, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.x + value: 10 + objectReference: {fileID: 0} + - target: {fileID: 22447314, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.y + value: -10 + objectReference: {fileID: 0} + - target: {fileID: 22447314, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.x + value: 18 + objectReference: {fileID: 0} + - target: {fileID: 22447314, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.y + value: 18 + objectReference: {fileID: 0} + - target: {fileID: 22484834, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22484834, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22484834, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.x + value: 30 + objectReference: {fileID: 0} + - target: {fileID: 22484834, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.y + value: -10 + objectReference: {fileID: 0} + - target: {fileID: 22484834, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.x + value: 20 + objectReference: {fileID: 0} + - target: {fileID: 22484834, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.y + value: 18 + objectReference: {fileID: 0} + - target: {fileID: 22488338, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22488338, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22488338, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.x + value: 51 + objectReference: {fileID: 0} + - target: {fileID: 22488338, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.y + value: -10 + objectReference: {fileID: 0} + - target: {fileID: 22488338, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.x + value: 20 + objectReference: {fileID: 0} + - target: {fileID: 22488338, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.y + value: 18 + objectReference: {fileID: 0} + - target: {fileID: 22487740, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMin.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22487740, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchorMax.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 22487740, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.x + value: 72 + objectReference: {fileID: 0} + - target: {fileID: 22487740, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_AnchoredPosition.y + value: -10 + objectReference: {fileID: 0} + - target: {fileID: 22487740, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.x + value: 20 + objectReference: {fileID: 0} + - target: {fileID: 22487740, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + propertyPath: m_SizeDelta.y + value: 18 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_ParentPrefab: {fileID: 100100000, guid: 916ee089a0d7b63419075f91e1c657ec, type: 2} + m_IsPrefabParent: 0 diff --git a/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/UnityParticlePainter.unity.meta b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/UnityParticlePainter.unity.meta new file mode 100644 index 000000000..f0846e713 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Examples/UnityParticlePainter/UnityParticlePainter.unity.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0327f0aa0142146c291df8203b848257 +timeCreated: 1494021616 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/ARReferenceImage.cs b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/ARReferenceImage.cs new file mode 100644 index 000000000..ae371f65c --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/ARReferenceImage.cs @@ -0,0 +1,13 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + +[CreateAssetMenu(fileName = "ARReferenceImage" , menuName = "UnityARKitPlugin/ARReferenceImage", order = 2)] +public class ARReferenceImage : ScriptableObject { + + public string imageName; + public Texture2D imageTexture; + public float physicalSize; + +} + diff --git a/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/ARReferenceImage.cs.meta b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/ARReferenceImage.cs.meta new file mode 100644 index 000000000..e2d38fb98 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/ARReferenceImage.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 0414577f9c6b244e696949154859a4af +timeCreated: 1517880235 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/ARReferenceImagesSet.cs b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/ARReferenceImagesSet.cs new file mode 100644 index 000000000..11a01f67d --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/ARReferenceImagesSet.cs @@ -0,0 +1,11 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + +[CreateAssetMenu(fileName = "ARReferenceImagesSet" , menuName = "UnityARKitPlugin/ARReferenceImagesSet", order = 3)] +public class ARReferenceImagesSet : ScriptableObject { + + public string resourceGroupName; + public ARReferenceImage [] referenceImages; + +} \ No newline at end of file diff --git a/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/ARReferenceImagesSet.cs.meta b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/ARReferenceImagesSet.cs.meta new file mode 100644 index 000000000..078d4dbae --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/ARReferenceImagesSet.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 1c37f7746917f4760aa00e7ff7fd81dc +timeCreated: 1518054368 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/ARReferenceObjectAsset.cs b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/ARReferenceObjectAsset.cs new file mode 100644 index 000000000..84676d6bb --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/ARReferenceObjectAsset.cs @@ -0,0 +1,11 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEngine.XR.iOS; + +[CreateAssetMenu(fileName = "ARReferenceObjectAsset" , menuName = "UnityARKitPlugin/ARReferenceObjectAsset", order = 4)] +public class ARReferenceObjectAsset : ScriptableObject { + public string objectName; + public Object referenceObject; + +} diff --git a/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/ARReferenceObjectAsset.cs.meta b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/ARReferenceObjectAsset.cs.meta new file mode 100644 index 000000000..34f0270e8 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/ARReferenceObjectAsset.cs.meta @@ -0,0 +1,13 @@ +fileFormatVersion: 2 +guid: ea5fe5050450e46b696fbcff74cf3370 +timeCreated: 1523901725 +licenseType: Pro +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/ARReferenceObjectsSetAsset.cs b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/ARReferenceObjectsSetAsset.cs new file mode 100644 index 000000000..52aa2af66 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/ARReferenceObjectsSetAsset.cs @@ -0,0 +1,41 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEngine.XR.iOS; +using System.IO; + +[CreateAssetMenu(fileName = "ARReferenceObjectsSetAsset" , menuName = "UnityARKitPlugin/ARReferenceObjectsSetAsset", order = 4)] +public class ARReferenceObjectsSetAsset : ScriptableObject { + + public string resourceGroupName; + public ARReferenceObjectAsset [] referenceObjectAssets; + + public List LoadReferenceObjectsInSet() + { + List listRefObjects = new List (); + + if (UnityARSessionNativeInterface.IsARKit_2_0_Supported() == false) + { + return listRefObjects; + } + + string folderPath = Application.streamingAssetsPath + "/ARReferenceObjects/" + resourceGroupName + ".arresourcegroup"; + string contentsJsonPath = Path.Combine(folderPath, "Contents.json"); + + ARResourceGroupContents resGroupContents = JsonUtility.FromJson(File.ReadAllText (contentsJsonPath)); + + foreach (ARResourceGroupResource arrgr in resGroupContents.resources) + { + string objectFolderPath = Path.Combine(folderPath, arrgr.filename); + string objJsonPath = Path.Combine (objectFolderPath, "Contents.json"); + ARReferenceObjectResourceContents resourceContents = JsonUtility.FromJson (File.ReadAllText (objJsonPath)); + string fileToLoad = Path.Combine (objectFolderPath, resourceContents.objects [0].filename); + ARReferenceObject arro = ARReferenceObject.Load(fileToLoad); + arro.name = resourceContents.referenceObjectName; + listRefObjects.Add (arro); + } + + return listRefObjects; + } + +} \ No newline at end of file diff --git a/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/ARReferenceObjectsSetAsset.cs.meta b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/ARReferenceObjectsSetAsset.cs.meta new file mode 100644 index 000000000..5dc31ae42 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/ARReferenceObjectsSetAsset.cs.meta @@ -0,0 +1,13 @@ +fileFormatVersion: 2 +guid: a5fac0b2c4da9499891f5a2e62563e15 +timeCreated: 1523901725 +licenseType: Pro +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/ARResourcesJSON.cs b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/ARResourcesJSON.cs new file mode 100644 index 000000000..24713196b --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/ARResourcesJSON.cs @@ -0,0 +1,63 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using System; + +namespace UnityEngine.XR.iOS +{ + [Serializable] + public class ARResourceGroupInfo + { + public int version; + public string author; + } + + [Serializable] + public class ARResourceGroupResource + { + public string filename; + } + + [Serializable] + public class ARResourceGroupContents + { + public ARResourceGroupInfo info; + public ARResourceGroupResource [] resources; + } + + [Serializable] + public class ARResourceInfo + { + public int version; + public string author; + } + + [Serializable] + public class ARResourceProperties + { + public float width; + } + + [Serializable] + public class ARResourceFilename + { + public string idiom; + public string filename; + } + + [Serializable] + public class ARResourceContents + { + public ARResourceFilename [] images; + public ARResourceInfo info; + public ARResourceProperties properties; + } + + [Serializable] + public class ARReferenceObjectResourceContents + { + public ARResourceFilename[] objects; + public ARResourceInfo info; + public string referenceObjectName; + } +} \ No newline at end of file diff --git a/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/ARResourcesJSON.cs.meta b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/ARResourcesJSON.cs.meta new file mode 100644 index 000000000..eb6ed2182 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/ARResourcesJSON.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: c96ff67f78bac414e844358bb0f999fb +timeCreated: 1518029034 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/Editor/UnityARBuildPostprocessor.cs b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/Editor/UnityARBuildPostprocessor.cs index 299f941b0..e9f41fa04 100644 --- a/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/Editor/UnityARBuildPostprocessor.cs +++ b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/Editor/UnityARBuildPostprocessor.cs @@ -4,75 +4,303 @@ #if UNITY_IOS using UnityEditor.iOS.Xcode; #endif +using UnityEngine.XR.iOS; using System.IO; using System.Collections.Generic; using System.Linq; using System.Text.RegularExpressions; using System; + public class UnityARBuildPostprocessor { - // Build postprocessor. Currently only needed on: - // - iOS: no dynamic libraries, so plugin source files have to be copied into Xcode project - [PostProcessBuild] - public static void OnPostprocessBuild(BuildTarget target, string pathToBuiltProject) + static List imageSets = new List(); + static List objectSets = new List(); + // Build postprocessor. Currently only needed on: + // - iOS: no dynamic libraries, so plugin source files have to be copied into Xcode project + [PostProcessBuild] + public static void OnPostprocessBuild(BuildTarget target, string pathToBuiltProject) + { + if (target == BuildTarget.iOS) + OnPostprocessBuildIOS(pathToBuiltProject); + } + + [PostProcessScene] + public static void OnPostProcessScene() + { + if (!BuildPipeline.isBuildingPlayer) + return; + + foreach (ARReferenceImagesSet ar in UnityEngine.Resources.FindObjectsOfTypeAll()) + { + if (!imageSets.Contains(ar)) + { + imageSets.Add(ar); + } + } + + foreach (ARReferenceObjectsSetAsset ar in UnityEngine.Resources.FindObjectsOfTypeAll()) + { + if (!objectSets.Contains(ar)) + { + objectSets.Add(ar); + } + } + + } + + private static UnityARKitPluginSettings LoadSettings() + { + UnityARKitPluginSettings loadedSettings = Resources.Load("UnityARKitPlugin/ARKitSettings"); + if (loadedSettings == null) + { + loadedSettings = ScriptableObject.CreateInstance(); + } + return loadedSettings; + } + + // Replaces the first C++ macro with the given name in the source file. Only changes + // single-line macro declarations, if multi-line macro declaration is detected, the + // function returns without changing it. Macro name must be a valid C++ identifier. + internal static bool ReplaceCppMacro(string[] lines, string name, string newValue) + { + bool replaced = false; + Regex matchRegex = new Regex(@"^.*#\s*define\s+" + name); + Regex replaceRegex = new Regex(@"^.*#\s*define\s+" + name + @"(:?|\s|\s.*[^\\])$"); + for (int i = 0; i < lines.Count(); i++) + { + if (matchRegex.Match(lines[i]).Success) + { + lines[i] = replaceRegex.Replace(lines[i], "#define " + name + " " + newValue); + replaced = true; + } + } + return replaced; + } + + internal static void AddOrReplaceCppMacro(ref string[] lines, string name, string newValue) + { + if (ReplaceCppMacro(lines, name, newValue) == false) + { + Array.Resize(ref lines, lines.Length + 1); + lines[lines.Length - 1] = "#define " + name + " " + newValue; + } + } + + static void UpdateDefinesInFile(string file, Dictionary valuesToUpdate) + { + string[] src = File.ReadAllLines(file); + var copy = (string[])src.Clone(); + + foreach (var kvp in valuesToUpdate) + AddOrReplaceCppMacro(ref copy, kvp.Key, kvp.Value ? "1" : "0"); + + if (!copy.SequenceEqual(src)) + File.WriteAllLines(file, copy); + } + +#if UNITY_IOS + static void AddReferenceImageToResourceGroup(ARReferenceImage arri, string parentFolderFullPath, string projectRelativePath, PBXProject project) { - if (target == BuildTarget.iOS) - OnPostprocessBuildIOS(pathToBuiltProject); + + ARResourceContents resourceContents = new ARResourceContents (); + resourceContents.info = new ARResourceInfo (); + resourceContents.info.author = "unity"; + resourceContents.info.version = 1; + + resourceContents.images = new ARResourceFilename[1]; + resourceContents.images [0] = new ARResourceFilename (); + resourceContents.images [0].idiom = "universal"; + + resourceContents.properties = new ARResourceProperties (); + resourceContents.properties.width = arri.physicalSize; + + //add folder for reference image + string folderToCreate = arri.imageName + ".arreferenceimage"; + string folderFullPath = Path.Combine (parentFolderFullPath, folderToCreate); + string projectRelativeFolder = Path.Combine (projectRelativePath, folderToCreate); + Directory.CreateDirectory (folderFullPath); + project.AddFolderReference (folderFullPath, projectRelativeFolder); + + //copy file from texture asset + string imagePath = AssetDatabase.GetAssetPath(arri.imageTexture); + string imageFilename = Path.GetFileName (imagePath); + var dstPath = Path.Combine(folderFullPath, imageFilename); + File.Copy(imagePath, dstPath, true); + project.AddFile (dstPath, Path.Combine (projectRelativeFolder, imageFilename)); + resourceContents.images [0].filename = imageFilename; + + //add contents.json file + string contentsJsonPath = Path.Combine(folderFullPath, "Contents.json"); + File.WriteAllText (contentsJsonPath, JsonUtility.ToJson (resourceContents, true)); + project.AddFile (contentsJsonPath, Path.Combine (projectRelativeFolder, "Contents.json")); + } - private static UnityARKitPluginSettings LoadSettings() + static void AddReferenceImagesSetToAssetCatalog(ARReferenceImagesSet aris, string pathToBuiltProject, PBXProject project) { - UnityARKitPluginSettings loadedSettings = Resources.Load ("UnityARKitPlugin/ARKitSettings"); - if (loadedSettings == null) { - loadedSettings = ScriptableObject.CreateInstance (); + List processedImages = new List (); + ARResourceGroupContents groupContents = new ARResourceGroupContents(); + groupContents.info = new ARResourceGroupInfo (); + groupContents.info.author = "unity"; + groupContents.info.version = 1; + string folderToCreate = "Unity-iPhone/Images.xcassets/" + aris.resourceGroupName + ".arresourcegroup"; + string folderFullPath = Path.Combine (pathToBuiltProject, folderToCreate); + Directory.CreateDirectory (folderFullPath); + project.AddFolderReference (folderFullPath, folderToCreate); + foreach (ARReferenceImage arri in aris.referenceImages) { + if (!processedImages.Contains (arri)) { + processedImages.Add (arri); //get rid of dupes + AddReferenceImageToResourceGroup(arri, folderFullPath, folderToCreate, project); + } } - return loadedSettings; + + groupContents.resources = new ARResourceGroupResource[processedImages.Count]; + int index = 0; + foreach (ARReferenceImage arri in processedImages) { + groupContents.resources [index] = new ARResourceGroupResource (); + groupContents.resources [index].filename = arri.imageName + ".arreferenceimage"; + index++; + } + string contentsJsonPath = Path.Combine(folderFullPath, "Contents.json"); + File.WriteAllText (contentsJsonPath, JsonUtility.ToJson (groupContents, true)); + project.AddFile (contentsJsonPath, Path.Combine (folderToCreate, "Contents.json")); } - // Replaces the first C++ macro with the given name in the source file. Only changes - // single-line macro declarations, if multi-line macro declaration is detected, the - // function returns without changing it. Macro name must be a valid C++ identifier. - internal static bool ReplaceCppMacro(string[] lines, string name, string newValue) + static void AddReferenceObjectAssetToStreamingAssets(ARReferenceObjectAsset arro, string parentFolderFullPath, string projectRelativePath) { - bool replaced = false; - Regex matchRegex = new Regex(@"^.*#\s*define\s+" + name); - Regex replaceRegex = new Regex(@"^.*#\s*define\s+" + name + @"(:?|\s|\s.*[^\\])$"); - for (int i = 0; i < lines.Count(); i++) - { - if (matchRegex.Match (lines [i]).Success) { - lines [i] = replaceRegex.Replace (lines [i], "#define " + name + " " + newValue); - replaced = true; - } - } - return replaced; + + ARReferenceObjectResourceContents resourceContents = new ARReferenceObjectResourceContents (); + resourceContents.info = new ARResourceInfo (); + resourceContents.info.author = "unity"; + resourceContents.info.version = 1; + + resourceContents.objects = new ARResourceFilename[1]; + resourceContents.objects [0] = new ARResourceFilename (); + resourceContents.objects [0].idiom = "universal"; + + resourceContents.referenceObjectName = arro.objectName; + + //add folder for reference image + string folderToCreate = arro.objectName + ".arreferenceobject"; + string folderFullPath = Path.Combine (parentFolderFullPath, folderToCreate); + string projectRelativeFolder = Path.Combine (projectRelativePath, folderToCreate); + Directory.CreateDirectory (folderFullPath); + + //copy file from refobject asset + string objectPath = AssetDatabase.GetAssetPath(arro.referenceObject); + string objectFilename = Path.GetFileName (objectPath); + var dstPath = Path.Combine(folderFullPath, objectFilename); + File.Copy(objectPath, dstPath, true); + resourceContents.objects [0].filename = objectFilename; + + //add contents.json file + string contentsJsonPath = Path.Combine(folderFullPath, "Contents.json"); + File.WriteAllText (contentsJsonPath, JsonUtility.ToJson (resourceContents, true)); } - internal static void AddOrReplaceCppMacro(ref string[] lines, string name, string newValue) + static void AddReferenceObjectsSetAssetToStreamingAssets(ARReferenceObjectsSetAsset aros, string pathToBuiltProject) { - if (ReplaceCppMacro (lines, name, newValue) == false) { - Array.Resize(ref lines, lines.Length + 1); - lines[lines.Length - 1] = "#define " + name + " " + newValue; + List processedObjects = new List (); + ARResourceGroupContents groupContents = new ARResourceGroupContents(); + groupContents.info = new ARResourceGroupInfo (); + groupContents.info.author = "xcode"; + groupContents.info.version = 1; + //On iOS, StreamingAssets end up at /Data/Raw + string folderToCreate = "Data/Raw/ARReferenceObjects/" + aros.resourceGroupName + ".arresourcegroup"; + string folderFullPath = Path.Combine (pathToBuiltProject, folderToCreate); + Directory.CreateDirectory (folderFullPath); + foreach (ARReferenceObjectAsset arro in aros.referenceObjectAssets) { + if (!processedObjects.Contains (arro)) { + processedObjects.Add (arro); //get rid of dupes + AddReferenceObjectAssetToStreamingAssets(arro, folderFullPath, folderToCreate); + } } + + groupContents.resources = new ARResourceGroupResource[processedObjects.Count]; + int index = 0; + foreach (ARReferenceObjectAsset arro in processedObjects) { + groupContents.resources [index] = new ARResourceGroupResource (); + groupContents.resources [index].filename = arro.objectName + ".arreferenceobject"; + index++; + } + string contentsJsonPath = Path.Combine(folderFullPath, "Contents.json"); + File.WriteAllText (contentsJsonPath, JsonUtility.ToJson (groupContents, true)); } - static void UpdateDefinesInFile(string file, Dictionary valuesToUpdate) + + #if ARREFERENCEOBJECT_XCODE_ASSET_CATALOG + static void AddReferenceObjectAssetToResourceGroup(ARReferenceObjectAsset arro, string parentFolderFullPath, string projectRelativePath, PBXProject project) { - string[] src = File.ReadAllLines(file); - var copy = (string[])src.Clone(); - foreach (var kvp in valuesToUpdate) - AddOrReplaceCppMacro(ref copy, kvp.Key, kvp.Value ? "1" : "0"); + ARReferenceObjectResourceContents resourceContents = new ARReferenceObjectResourceContents (); + resourceContents.info = new ARResourceInfo (); + resourceContents.info.author = "unity"; + resourceContents.info.version = 1; + + resourceContents.objects = new ARResourceFilename[1]; + resourceContents.objects [0] = new ARResourceFilename (); + resourceContents.objects [0].idiom = "universal"; + + //add folder for reference image + string folderToCreate = arro.objectName + ".arreferenceobject"; + string folderFullPath = Path.Combine (parentFolderFullPath, folderToCreate); + string projectRelativeFolder = Path.Combine (projectRelativePath, folderToCreate); + Directory.CreateDirectory (folderFullPath); + project.AddFolderReference (folderFullPath, projectRelativeFolder); + + //copy file from texture asset + string objectPath = AssetDatabase.GetAssetPath(arro.referenceObject); + string objectFilename = Path.GetFileName (objectPath); + var dstPath = Path.Combine(folderFullPath, objectFilename); + File.Copy(objectPath, dstPath, true); + project.AddFile (dstPath, Path.Combine (projectRelativeFolder, objectFilename)); + resourceContents.objects [0].filename = objectFilename; + + //add contents.json file + string contentsJsonPath = Path.Combine(folderFullPath, "Contents.json"); + File.WriteAllText (contentsJsonPath, JsonUtility.ToJson (resourceContents, true)); + project.AddFile (contentsJsonPath, Path.Combine (projectRelativeFolder, "Contents.json")); + + } + + static void AddReferenceObjectsSetAssetToAssetCatalog(ARReferenceObjectsSetAsset aros, string pathToBuiltProject, PBXProject project) + { + List processedObjects = new List (); + ARResourceGroupContents groupContents = new ARResourceGroupContents(); + groupContents.info = new ARResourceGroupInfo (); + groupContents.info.author = "xcode"; + groupContents.info.version = 1; + string folderToCreate = "Unity-iPhone/Images.xcassets/" + aros.resourceGroupName + ".arresourcegroup"; + string folderFullPath = Path.Combine (pathToBuiltProject, folderToCreate); + Directory.CreateDirectory (folderFullPath); + project.AddFolderReference (folderFullPath, folderToCreate); + foreach (ARReferenceObjectAsset arro in aros.referenceObjectAssets) { + if (!processedObjects.Contains (arro)) { + processedObjects.Add (arro); //get rid of dupes + AddReferenceObjectAssetToResourceGroup(arro, folderFullPath, folderToCreate, project); + } + } - if (!copy.SequenceEqual(src)) - File.WriteAllLines(file, copy); + groupContents.resources = new ARResourceGroupResource[processedObjects.Count]; + int index = 0; + foreach (ARReferenceObjectAsset arro in processedObjects) { + groupContents.resources [index] = new ARResourceGroupResource (); + groupContents.resources [index].filename = arro.objectName + ".arreferenceobject"; + index++; + } + string contentsJsonPath = Path.Combine(folderFullPath, "Contents.json"); + File.WriteAllText (contentsJsonPath, JsonUtility.ToJson (groupContents, true)); + project.AddFile (contentsJsonPath, Path.Combine (folderToCreate, "Contents.json")); } + #endif //ARREFERENCEOBJECT_XCODE_ASSET_CATALOG + +#endif //UNITY_IOS private static void OnPostprocessBuildIOS(string pathToBuiltProject) { // We use UnityEditor.iOS.Xcode API which only exists in iOS editor module - #if UNITY_IOS - +#if UNITY_IOS string projPath = pathToBuiltProject + "/Unity-iPhone.xcodeproj/project.pbxproj"; UnityEditor.iOS.Xcode.PBXProject proj = new UnityEditor.iOS.Xcode.PBXProject(); @@ -105,8 +333,28 @@ private static void OnPostprocessBuildIOS(string pathToBuiltProject) // Add "arkit" plist entry capsArray.AddString(arkitStr); } + + const string shareString = "UIFileSharingEnabled"; + rootDict.SetBoolean(shareString, true); + File.WriteAllText(plistPath, plist.WriteToString()); + foreach(ARReferenceImagesSet ar in imageSets) + { + AddReferenceImagesSetToAssetCatalog(ar, pathToBuiltProject, proj); + } + + foreach(ARReferenceObjectsSetAsset objSet in objectSets) + { + AddReferenceObjectsSetAssetToStreamingAssets(objSet, pathToBuiltProject); + } + + //TODO: remove this when XCode actool is able to handles ARResources despite deployment target + if (imageSets.Count > 0) + { + proj.SetBuildProperty(target, "IPHONEOS_DEPLOYMENT_TARGET", "11.3"); + } + // Add or replace define for facetracking UpdateDefinesInFile(pathToBuiltProject + "/Classes/Preprocessor.h", new Dictionary() { { "ARKIT_USES_FACETRACKING", ps.m_ARKitUsesFacetracking } @@ -127,6 +375,6 @@ private static void OnPostprocessBuildIOS(string pathToBuiltProject) } File.WriteAllText(projPath, proj.WriteToString()); - #endif // #if UNITY_IOS +#endif // #if UNITY_IOS } } diff --git a/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/Helpers/ARKitPlaneMeshRender.cs b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/Helpers/ARKitPlaneMeshRender.cs new file mode 100644 index 000000000..df3277e46 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/Helpers/ARKitPlaneMeshRender.cs @@ -0,0 +1,76 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEngine.XR.iOS; + +public class ARKitPlaneMeshRender : MonoBehaviour { + + [SerializeField] + private MeshFilter meshFilter; + [SerializeField] + private LineRenderer lineRenderer; + private Mesh planeMesh; + + public void InitiliazeMesh(ARPlaneAnchor arPlaneAnchor) + { + planeMesh = new Mesh (); + UpdateMesh (arPlaneAnchor); + meshFilter.mesh = planeMesh; + + } + + public void UpdateMesh(ARPlaneAnchor arPlaneAnchor) + { + if (UnityARSessionNativeInterface.IsARKit_1_5_Supported()) //otherwise we cannot access planeGeometry + { + if (arPlaneAnchor.planeGeometry.vertices.Length != planeMesh.vertices.Length || + arPlaneAnchor.planeGeometry.textureCoordinates.Length != planeMesh.uv.Length || + arPlaneAnchor.planeGeometry.triangleIndices.Length != planeMesh.triangles.Length) + { + planeMesh.Clear(); + } + + planeMesh.vertices = arPlaneAnchor.planeGeometry.vertices; + planeMesh.uv = arPlaneAnchor.planeGeometry.textureCoordinates; + planeMesh.triangles = arPlaneAnchor.planeGeometry.triangleIndices; + + lineRenderer.positionCount = arPlaneAnchor.planeGeometry.boundaryVertexCount; + lineRenderer.SetPositions(arPlaneAnchor.planeGeometry.boundaryVertices); + + // Assign the mesh object and update it. + planeMesh.RecalculateBounds(); + planeMesh.RecalculateNormals(); + } + + } + + void PrintOutMesh() + { + string outputMessage = "\n"; + outputMessage += "Vertices = " + planeMesh.vertices.GetLength (0); + outputMessage += "\nVertices = ["; + foreach (Vector3 v in planeMesh.vertices) { + outputMessage += v.ToString (); + outputMessage += ","; + } + outputMessage += "]\n Triangles = " + planeMesh.triangles.GetLength (0); + outputMessage += "\n Triangles = ["; + foreach (int i in planeMesh.triangles) { + outputMessage += i; + outputMessage += ","; + } + outputMessage += "]\n"; + Debug.Log (outputMessage); + + } + + // Use this for initialization + void Start () { + + } + + // Update is called once per frame + void Update () { + + } +} diff --git a/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/Helpers/ARKitPlaneMeshRender.cs.meta b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/Helpers/ARKitPlaneMeshRender.cs.meta new file mode 100644 index 000000000..2f4431d6e --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/Helpers/ARKitPlaneMeshRender.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: e8e41ddf2dd3348c18a8734d14dbb2ba +timeCreated: 1517429452 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/Helpers/LinkedListDictionary.cs b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/Helpers/LinkedListDictionary.cs new file mode 100644 index 000000000..1d394261a --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/Helpers/LinkedListDictionary.cs @@ -0,0 +1,114 @@ +using System.Collections; +using System.Collections.Generic; + +namespace Collections.Hybrid.Generic +{ + /// + /// LinkedList/Dictionary combo for constant time add/remove/contains. Memory usage is higher as expected. + /// -kazoo + /// + /// key value type. It is recomended that this be "int", for speed purposes. + /// The value type. Can be anything you like. + public class LinkedListDictionary + { + private readonly Dictionary dictionary = new Dictionary(); + private readonly LinkedList list = new LinkedList(); + + /// + /// Get The count. + /// + /// + public int Count + { + get { return list.Count; } + } + + /// + /// Is the key in the dictionary? + /// + /// key + /// true if key is present, false otherwise. + public bool ContainsKey(TK k) + { + return dictionary.ContainsKey(k); + } + + /// + /// Remove a key/value from the dictionary if present. + /// + /// key + /// True if removal worked. False if removal is not possible. + public bool Remove(TK k) + { + if (!ContainsKey(k)) + { + return false; + } + + LLEntry entry = dictionary[k]; + list.Remove(entry.vNode); + return dictionary.Remove(k); + } + + /// + /// Add an item. Replacement is allowed. + /// + /// key + /// value + public void Add(TK k, TV v) + { + Remove(k); + dictionary[k] = new LLEntry(v, list.AddLast(v)); + } + + /// + /// Retrieve an element by key. + /// + /// key + /// Value. If element is not present, default(V) will be returned. + public TV GetValue(TK k) + { + if (ContainsKey(k)) + { + return dictionary[k].v; + } + return default(TV); + } + + public TV this[TK k] + { + get { return GetValue(k); } + set { Add(k, value); } + } + + /// + /// Raw list of Values for garbage-free iteration. Do not modify. + /// + /// The values + public LinkedList Values + { + get + { + return list; + } + } + + public void Clear() + { + dictionary.Clear(); + list.Clear(); + } + + private struct LLEntry + { + public readonly TV v; + public readonly LinkedListNode vNode; + + public LLEntry(TV v, LinkedListNode vNode) + { + this.v = v; + this.vNode = vNode; + } + } + } +} diff --git a/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/Helpers/LinkedListDictionary.cs.meta b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/Helpers/LinkedListDictionary.cs.meta new file mode 100644 index 000000000..6ac8386c3 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/Helpers/LinkedListDictionary.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 356fa3989471245169edcc5abb89e6d7 +timeCreated: 1502403391 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/Helpers/PointCloudParticleExample.cs b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/Helpers/PointCloudParticleExample.cs index f770e1bba..21d270339 100644 --- a/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/Helpers/PointCloudParticleExample.cs +++ b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/Helpers/PointCloudParticleExample.cs @@ -1,50 +1,61 @@ -using System.Collections; -using System.Collections.Generic; -using UnityEngine; +using UnityEngine; using UnityEngine.XR.iOS; -public class PointCloudParticleExample : MonoBehaviour { +public class PointCloudParticleExample : MonoBehaviour +{ public ParticleSystem pointCloudParticlePrefab; public int maxPointsToShow; public float particleSize = 1.0f; - private Vector3[] m_PointCloudData; - private bool frameUpdated = false; - private ParticleSystem currentPS; - private ParticleSystem.Particle [] particles; + Vector3[] m_PointCloudData; + bool frameUpdated = false; + ParticleSystem currentPS; + ParticleSystem.Particle [] particles; - // Use this for initialization - void Start () { + // Use this for initialization + void Start () + { UnityARSessionNativeInterface.ARFrameUpdatedEvent += ARFrameUpdated; currentPS = Instantiate (pointCloudParticlePrefab); + m_PointCloudData = null; frameUpdated = false; - } - + } + public void ARFrameUpdated(UnityARCamera camera) { - m_PointCloudData = camera.pointCloudData; + if (camera.pointCloud != null) + { + m_PointCloudData = camera.pointCloud.Points; + } frameUpdated = true; } - // Update is called once per frame - void Update () { - if (frameUpdated) { - if (m_PointCloudData != null && m_PointCloudData.Length > 0) { + // Update is called once per frame + void Update () + { + if (frameUpdated) + { + if (m_PointCloudData != null && m_PointCloudData.Length > 0 && maxPointsToShow > 0) + { int numParticles = Mathf.Min (m_PointCloudData.Length, maxPointsToShow); ParticleSystem.Particle[] particles = new ParticleSystem.Particle[numParticles]; int index = 0; - foreach (Vector3 currentPoint in m_PointCloudData) { + foreach (Vector3 currentPoint in m_PointCloudData) + { particles [index].position = currentPoint; particles [index].startColor = new Color (1.0f, 1.0f, 1.0f); particles [index].startSize = particleSize; index++; + if (index >= numParticles) break; } currentPS.SetParticles (particles, numParticles); - } else { + } + else + { ParticleSystem.Particle[] particles = new ParticleSystem.Particle[1]; particles [0].startSize = 0.0f; currentPS.SetParticles (particles, 1); } frameUpdated = false; } - } + } } diff --git a/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/Helpers/UnityARAnchorManager.cs b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/Helpers/UnityARAnchorManager.cs index 503551383..4776c80e4 100644 --- a/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/Helpers/UnityARAnchorManager.cs +++ b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/Helpers/UnityARAnchorManager.cs @@ -1,6 +1,7 @@ using System; using System.Collections.Generic; using System.Linq; +using Collections.Hybrid.Generic; namespace UnityEngine.XR.iOS { @@ -8,12 +9,12 @@ public class UnityARAnchorManager { - private Dictionary planeAnchorMap; + private LinkedListDictionary planeAnchorMap; public UnityARAnchorManager () { - planeAnchorMap = new Dictionary (); + planeAnchorMap = new LinkedListDictionary (); UnityARSessionNativeInterface.ARAnchorAddedEvent += AddAnchor; UnityARSessionNativeInterface.ARAnchorUpdatedEvent += UpdateAnchor; UnityARSessionNativeInterface.ARAnchorRemovedEvent += RemoveAnchor; @@ -67,9 +68,9 @@ public void Destroy() UnsubscribeEvents(); } - public List GetCurrentPlaneAnchors() + public LinkedList GetCurrentPlaneAnchors() { - return planeAnchorMap.Values.ToList (); + return planeAnchorMap.Values; } } } diff --git a/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/Helpers/UnityARCameraManager.cs b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/Helpers/UnityARCameraManager.cs index 439df9f42..cf3215148 100644 --- a/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/Helpers/UnityARCameraManager.cs +++ b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/Helpers/UnityARCameraManager.cs @@ -7,58 +7,93 @@ public class UnityARCameraManager : MonoBehaviour { public Camera m_camera; private UnityARSessionNativeInterface m_session; - private Material savedClearMaterial; - - [Header("AR Config Options")] - public UnityARAlignment startAlignment = UnityARAlignment.UnityARAlignmentGravity; - public UnityARPlaneDetection planeDetection = UnityARPlaneDetection.Horizontal; - public bool getPointCloud = true; - public bool enableLightEstimation = true; - - // Use this for initialization - void Start () { - - m_session = UnityARSessionNativeInterface.GetARSessionNativeInterface(); - -#if !UNITY_EDITOR - Application.targetFrameRate = 60; - ARKitWorldTrackingSessionConfiguration config = new ARKitWorldTrackingSessionConfiguration(); - config.planeDetection = planeDetection; - config.alignment = startAlignment; - config.getPointCloudData = getPointCloud; - config.enableLightEstimation = enableLightEstimation; - m_session.RunWithConfig(config); - - if (m_camera == null) { - m_camera = Camera.main; - } -#else - //put some defaults so that it doesnt complain - UnityARCamera scamera = new UnityARCamera (); - scamera.worldTransform = new UnityARMatrix4x4 (new Vector4 (1, 0, 0, 0), new Vector4 (0, 1, 0, 0), new Vector4 (0, 0, 1, 0), new Vector4 (0, 0, 0, 1)); - Matrix4x4 projMat = Matrix4x4.Perspective (60.0f, 1.33f, 0.1f, 30.0f); - scamera.projectionMatrix = new UnityARMatrix4x4 (projMat.GetColumn(0),projMat.GetColumn(1),projMat.GetColumn(2),projMat.GetColumn(3)); - - UnityARSessionNativeInterface.SetStaticCamera (scamera); - -#endif - } - - public void SetCamera(Camera newCamera) - { - if (m_camera != null) { - UnityARVideo oldARVideo = m_camera.gameObject.GetComponent (); - if (oldARVideo != null) { - savedClearMaterial = oldARVideo.m_ClearMaterial; - Destroy (oldARVideo); + private Material savedClearMaterial; + + [Header("AR Config Options")] + public UnityARAlignment startAlignment = UnityARAlignment.UnityARAlignmentGravity; + public UnityARPlaneDetection planeDetection = UnityARPlaneDetection.Horizontal; + public bool getPointCloud = true; + public bool enableLightEstimation = true; + public bool enableAutoFocus = true; + public UnityAREnvironmentTexturing environmentTexturing = UnityAREnvironmentTexturing.UnityAREnvironmentTexturingNone; + + [Header("Image Tracking")] + public ARReferenceImagesSet detectionImages = null; + public int maximumNumberOfTrackedImages = 0; + + [Header("Object Tracking")] + public ARReferenceObjectsSetAsset detectionObjects = null; + private bool sessionStarted = false; + + public ARKitWorldTrackingSessionConfiguration sessionConfiguration + { + get + { + ARKitWorldTrackingSessionConfiguration config = new ARKitWorldTrackingSessionConfiguration (); + config.planeDetection = planeDetection; + config.alignment = startAlignment; + config.getPointCloudData = getPointCloud; + config.enableLightEstimation = enableLightEstimation; + config.enableAutoFocus = enableAutoFocus; + config.maximumNumberOfTrackedImages = maximumNumberOfTrackedImages; + config.environmentTexturing = environmentTexturing; + if (detectionImages != null) + config.referenceImagesGroupName = detectionImages.resourceGroupName; + + if (detectionObjects != null) + { + config.referenceObjectsGroupName = ""; //lets not read from XCode asset catalog right now + config.dynamicReferenceObjectsPtr = m_session.CreateNativeReferenceObjectsSet(detectionObjects.LoadReferenceObjectsInSet()); } - } - SetupNewCamera (newCamera); - } - private void SetupNewCamera(Camera newCamera) - { - m_camera = newCamera; + return config; + } + } + + // Use this for initialization + void Start () { + + m_session = UnityARSessionNativeInterface.GetARSessionNativeInterface(); + + Application.targetFrameRate = 60; + + var config = sessionConfiguration; + if (config.IsSupported) { + m_session.RunWithConfig (config); + UnityARSessionNativeInterface.ARFrameUpdatedEvent += FirstFrameUpdate; + } + + if (m_camera == null) { + m_camera = Camera.main; + } + } + + void OnDestroy() + { + m_session.Pause(); + } + + void FirstFrameUpdate(UnityARCamera cam) + { + sessionStarted = true; + UnityARSessionNativeInterface.ARFrameUpdatedEvent -= FirstFrameUpdate; + } + + public void SetCamera(Camera newCamera) + { + if (m_camera != null) { + UnityARVideo oldARVideo = m_camera.gameObject.GetComponent (); + if (oldARVideo != null) { + savedClearMaterial = oldARVideo.m_ClearMaterial; + Destroy (oldARVideo); + } + } + SetupNewCamera (newCamera); + } + + private void SetupNewCamera(Camera newCamera) + { + m_camera = newCamera; if (m_camera != null) { UnityARVideo unityARVideo = m_camera.gameObject.GetComponent (); @@ -69,22 +104,22 @@ private void SetupNewCamera(Camera newCamera) unityARVideo = m_camera.gameObject.AddComponent (); unityARVideo.m_ClearMaterial = savedClearMaterial; } - } + } - // Update is called once per frame + // Update is called once per frame - void Update () { - - if (m_camera != null) + void Update () { + + if (m_camera != null && sessionStarted) { // JUST WORKS! Matrix4x4 matrix = m_session.GetCameraPose(); - m_camera.transform.localPosition = UnityARMatrixOps.GetPosition(matrix); - m_camera.transform.localRotation = UnityARMatrixOps.GetRotation (matrix); + m_camera.transform.localPosition = UnityARMatrixOps.GetPosition(matrix); + m_camera.transform.localRotation = UnityARMatrixOps.GetRotation (matrix); m_camera.projectionMatrix = m_session.GetCameraProjection (); } - } + } } diff --git a/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/Helpers/UnityARGeneratePlane.cs b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/Helpers/UnityARGeneratePlane.cs index ab4534a7a..029c76e65 100644 --- a/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/Helpers/UnityARGeneratePlane.cs +++ b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/Helpers/UnityARGeneratePlane.cs @@ -21,9 +21,10 @@ void OnDestroy() void OnGUI() { - List arpags = unityARAnchorManager.GetCurrentPlaneAnchors (); - if (arpags.Count >= 1) { - //ARPlaneAnchor ap = arpags [0].planeAnchor; + IEnumerable arpags = unityARAnchorManager.GetCurrentPlaneAnchors (); + foreach(var planeAnchor in arpags) + { + //ARPlaneAnchor ap = planeAnchor; //GUI.Box (new Rect (100, 100, 800, 60), string.Format ("Center: x:{0}, y:{1}, z:{2}", ap.center.x, ap.center.y, ap.center.z)); //GUI.Box(new Rect(100, 200, 800, 60), string.Format ("Extent: x:{0}, y:{1}, z:{2}", ap.extent.x, ap.extent.y, ap.extent.z)); } diff --git a/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/Helpers/UnityARHitTestExample.cs b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/Helpers/UnityARHitTestExample.cs index 07a9afc1b..563b2528f 100644 --- a/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/Helpers/UnityARHitTestExample.cs +++ b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/Helpers/UnityARHitTestExample.cs @@ -6,6 +6,8 @@ namespace UnityEngine.XR.iOS public class UnityARHitTestExample : MonoBehaviour { public Transform m_HitTransform; + public float maxRayDistance = 30.0f; + public LayerMask collisionLayer = 1 << 10; //ARKitPlane layer bool HitTestWithResultType (ARPoint point, ARHitTestResultType resultTypes) { @@ -24,6 +26,23 @@ bool HitTestWithResultType (ARPoint point, ARHitTestResultType resultTypes) // Update is called once per frame void Update () { + #if UNITY_EDITOR //we will only use this script on the editor side, though there is nothing that would prevent it from working on device + if (Input.GetMouseButtonDown (0)) { + Ray ray = Camera.main.ScreenPointToRay (Input.mousePosition); + RaycastHit hit; + + //we'll try to hit one of the plane collider gameobjects that were generated by the plugin + //effectively similar to calling HitTest with ARHitTestResultType.ARHitTestResultTypeExistingPlaneUsingExtent + if (Physics.Raycast (ray, out hit, maxRayDistance, collisionLayer)) { + //we're going to get the position from the contact point + m_HitTransform.position = hit.point; + Debug.Log (string.Format ("x:{0:0.######} y:{1:0.######} z:{2:0.######}", m_HitTransform.position.x, m_HitTransform.position.y, m_HitTransform.position.z)); + + //and the rotation from the transform of the plane collider + m_HitTransform.rotation = hit.transform.rotation; + } + } + #else if (Input.touchCount > 0 && m_HitTransform != null) { var touch = Input.GetTouch(0); @@ -37,11 +56,13 @@ void Update () { // prioritize reults types ARHitTestResultType[] resultTypes = { + //ARHitTestResultType.ARHitTestResultTypeExistingPlaneUsingGeometry, ARHitTestResultType.ARHitTestResultTypeExistingPlaneUsingExtent, // if you want to use infinite planes use this: //ARHitTestResultType.ARHitTestResultTypeExistingPlane, - ARHitTestResultType.ARHitTestResultTypeHorizontalPlane, - ARHitTestResultType.ARHitTestResultTypeFeaturePoint + //ARHitTestResultType.ARHitTestResultTypeEstimatedHorizontalPlane, + //ARHitTestResultType.ARHitTestResultTypeEstimatedVerticalPlane, + //ARHitTestResultType.ARHitTestResultTypeFeaturePoint }; foreach (ARHitTestResultType resultType in resultTypes) @@ -53,6 +74,8 @@ void Update () { } } } + #endif + } diff --git a/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/Helpers/UnityARMatrixOps.cs b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/Helpers/UnityARMatrixOps.cs index 7d5c000cb..2a0b3b381 100644 --- a/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/Helpers/UnityARMatrixOps.cs +++ b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/Helpers/UnityARMatrixOps.cs @@ -5,14 +5,52 @@ namespace UnityEngine.XR.iOS public class UnityARMatrixOps { - public static Vector3 GetPosition(Matrix4x4 matrix) + public static Matrix4x4 UnityToARKitCoordChange(Vector3 position, Quaternion rotation) { - // Convert from ARKit's right-handed coordinate - // system to Unity's left-handed - Vector3 position = matrix.GetColumn(3); - position.z = -position.z; + Matrix4x4 result = new Matrix4x4 (); + //do the conversions back to ARKit space + result.SetTRS (new Vector3 (position.x, position.y, -position.z), + new Quaternion (rotation.x, rotation.y, -rotation.z, -rotation.w), + Vector3.one); + return result; - return position; + } + + public static Matrix4x4 GetMatrix(UnityARMatrix4x4 unityMatrix) + { + var matrix = new Matrix4x4(); + matrix.SetColumn(0, unityMatrix.column0); + matrix.SetColumn(1, unityMatrix.column1); + matrix.SetColumn(2, unityMatrix.column2); + matrix.SetColumn(3, unityMatrix.column3); + + return matrix; + } + + public static UnityARMatrix4x4 GetMatrix(Matrix4x4 nativeMatrix) + { + var matrix = new UnityARMatrix4x4(); + matrix.column0 = nativeMatrix.GetColumn(0); + matrix.column1 = nativeMatrix.GetColumn(1); + matrix.column2 = nativeMatrix.GetColumn(2); + matrix.column3 = nativeMatrix.GetColumn(3); + + return matrix; + } + + public static Pose GetPose(UnityARMatrix4x4 unityMatrix) + { + return GetPose(GetMatrix(unityMatrix)); + } + + public static Pose GetPose(Matrix4x4 matrix) + { + return new Pose(GetPosition(matrix), GetRotation(matrix)); + } + + public static Vector3 GetPosition(Matrix4x4 matrix) + { + return GetPosition(matrix.GetColumn(3)); } public static Quaternion GetRotation(Matrix4x4 matrix) @@ -26,6 +64,13 @@ public static Quaternion GetRotation(Matrix4x4 matrix) return rotation; } + public static Vector3 GetPosition(Vector3 position) + { + // Convert from ARKit's right-handed coordinate + // system to Unity's left-handed + position.z = -position.z; + return position; + } static Quaternion QuaternionFromMatrix(Matrix4x4 m) { // Adapted from: http://www.euclideanspace.com/maths/geometry/rotations/conversions/matrixToQuaternion/index.htm diff --git a/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/Helpers/UnityARUserAnchorComponent.cs b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/Helpers/UnityARUserAnchorComponent.cs index c1b3695c9..a24b42037 100644 --- a/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/Helpers/UnityARUserAnchorComponent.cs +++ b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/Helpers/UnityARUserAnchorComponent.cs @@ -38,7 +38,13 @@ void OnDestroy() { private void GameObjectAnchorUpdated(ARUserAnchor anchor) { - + if (anchor.identifier.Equals(m_AnchorId)) + { + transform.position = UnityARMatrixOps.GetPosition(anchor.transform); + transform.rotation = UnityARMatrixOps.GetRotation(anchor.transform); + + Console.WriteLine("Updated: pos = " + transform.position + m_AnchorId); + } } } } \ No newline at end of file diff --git a/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/Helpers/UnityARUtility.cs b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/Helpers/UnityARUtility.cs index 558946285..9d6a8ea32 100644 --- a/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/Helpers/UnityARUtility.cs +++ b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/Helpers/UnityARUtility.cs @@ -25,6 +25,11 @@ public static GameObject CreatePlaneInScene(ARPlaneAnchor arPlaneAnchor) plane.name = arPlaneAnchor.identifier; + ARKitPlaneMeshRender apmr = plane.GetComponent (); + if (apmr != null) { + apmr.InitiliazeMesh (arPlaneAnchor); + } + return UpdatePlaneWithAnchorTransform(plane, arPlaneAnchor); } @@ -36,14 +41,23 @@ public static GameObject UpdatePlaneWithAnchorTransform(GameObject plane, ARPlan plane.transform.position = UnityARMatrixOps.GetPosition (arPlaneAnchor.transform); plane.transform.rotation = UnityARMatrixOps.GetRotation (arPlaneAnchor.transform); + ARKitPlaneMeshRender apmr = plane.GetComponent (); + if (apmr != null) { + apmr.UpdateMesh (arPlaneAnchor); + } + + MeshFilter mf = plane.GetComponentInChildren (); if (mf != null) { - //since our plane mesh is actually 10mx10m in the world, we scale it here by 0.1f - mf.gameObject.transform.localScale = new Vector3(arPlaneAnchor.extent.x * 0.1f ,arPlaneAnchor.extent.y * 0.1f ,arPlaneAnchor.extent.z * 0.1f ); + if (apmr == null) { + //since our plane mesh is actually 10mx10m in the world, we scale it here by 0.1f + mf.gameObject.transform.localScale = new Vector3 (arPlaneAnchor.extent.x * 0.1f, arPlaneAnchor.extent.y * 0.1f, arPlaneAnchor.extent.z * 0.1f); + + //convert our center position to unity coords + mf.gameObject.transform.localPosition = new Vector3(arPlaneAnchor.center.x,arPlaneAnchor.center.y, -arPlaneAnchor.center.z); + } - //convert our center position to unity coords - mf.gameObject.transform.localPosition = new Vector3(arPlaneAnchor.center.x,arPlaneAnchor.center.y, -arPlaneAnchor.center.z); } return plane; diff --git a/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/Helpers/UnityARVideo.cs b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/Helpers/UnityARVideo.cs index f9b2f8467..fb99e66c5 100644 --- a/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/Helpers/UnityARVideo.cs +++ b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/Helpers/UnityARVideo.cs @@ -43,17 +43,19 @@ void InitializeCommandBuffer() void OnDestroy() { - GetComponent().RemoveCommandBuffer(CameraEvent.BeforeForwardOpaque, m_VideoCommandBuffer); + if (m_VideoCommandBuffer != null) { + GetComponent().RemoveCommandBuffer(CameraEvent.BeforeForwardOpaque, m_VideoCommandBuffer); + } UnityARSessionNativeInterface.ARFrameUpdatedEvent -= UpdateFrame; bCommandBufferInitialized = false; } -#if !UNITY_EDITOR +#if !UNITY_EDITOR && UNITY_IOS public void OnPreRender() { - ARTextureHandles handles = UnityARSessionNativeInterface.GetARSessionNativeInterface ().GetARVideoTextureHandles(); - if (handles.textureY == System.IntPtr.Zero || handles.textureCbCr == System.IntPtr.Zero) + ARTextureHandles handles = UnityARSessionNativeInterface.GetARSessionNativeInterface().GetARVideoTextureHandles(); + if (handles.IsNull()) { return; } @@ -67,7 +69,7 @@ public void OnPreRender() // Texture Y if (_videoTextureY == null) { _videoTextureY = Texture2D.CreateExternalTexture(currentResolution.width, currentResolution.height, - TextureFormat.R8, false, false, (System.IntPtr)handles.textureY); + TextureFormat.R8, false, false, (System.IntPtr)handles.TextureY); _videoTextureY.filterMode = FilterMode.Bilinear; _videoTextureY.wrapMode = TextureWrapMode.Repeat; m_ClearMaterial.SetTexture("_textureY", _videoTextureY); @@ -76,14 +78,14 @@ public void OnPreRender() // Texture CbCr if (_videoTextureCbCr == null) { _videoTextureCbCr = Texture2D.CreateExternalTexture(currentResolution.width, currentResolution.height, - TextureFormat.RG16, false, false, (System.IntPtr)handles.textureCbCr); + TextureFormat.RG16, false, false, (System.IntPtr)handles.TextureCbCr); _videoTextureCbCr.filterMode = FilterMode.Bilinear; _videoTextureCbCr.wrapMode = TextureWrapMode.Repeat; m_ClearMaterial.SetTexture("_textureCbCr", _videoTextureCbCr); } - _videoTextureY.UpdateExternalTexture(handles.textureY); - _videoTextureCbCr.UpdateExternalTexture(handles.textureCbCr); + _videoTextureY.UpdateExternalTexture(handles.TextureY); + _videoTextureCbCr.UpdateExternalTexture(handles.TextureCbCr); m_ClearMaterial.SetMatrix("_DisplayTransform", _displayTransform); } diff --git a/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/Helpers/UnityPointCloudExample.cs b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/Helpers/UnityPointCloudExample.cs index 07243f029..e21372c2d 100644 --- a/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/Helpers/UnityPointCloudExample.cs +++ b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/Helpers/UnityPointCloudExample.cs @@ -1,16 +1,14 @@ using System; using UnityEngine; using UnityEngine.XR.iOS; -using System.Collections; using System.Collections.Generic; -using System.Runtime.InteropServices; public class UnityPointCloudExample : MonoBehaviour { public uint numPointsToShow = 100; public GameObject PointCloudPrefab = null; - private List pointCloudObjects; - private Vector3[] m_PointCloudData; + List pointCloudObjects; + Vector3[] m_PointCloudData; public void Start() { @@ -27,7 +25,7 @@ public void Start() public void ARFrameUpdated(UnityARCamera camera) { - m_PointCloudData = camera.pointCloudData; + m_PointCloudData = camera.pointCloud.Points; } public void Update() diff --git a/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/AREnvironmentProbe.mm b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/AREnvironmentProbe.mm new file mode 100644 index 000000000..058f89244 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/AREnvironmentProbe.mm @@ -0,0 +1,170 @@ +// Unity Technologies Inc (c) 2017 +// AREnvironmentProbe.mm +// Main implementation of ARKit plugin native AREnvironmentProbeAnchor + +#include "ARKitDefines.h" + + +enum UnityAREnvironmentTextureFormat : long +{ + // NOTE: Not a complete set, but an initial mapping that matches some internal texture readmap mappings. + UnityAREnvironmentTextureFormatR16, + UnityAREnvironmentTextureFormatRG16, + UnityAREnvironmentTextureFormatBGRA32, + UnityAREnvironmentTextureFormatRGBA32, + UnityAREnvironmentTextureFormatRGBAFloat, + UnityAREnvironmentTextureFormatRGBAHalf, + UnityAREnvironmentTextureFormatDefault = UnityAREnvironmentTextureFormatBGRA32 +}; + +typedef struct +{ + void* cubemapPtr; + UnityAREnvironmentTextureFormat textureFormat; + int width; + int height; + int mipmapCount; +} UnityAREnvironmentProbeCubemapData; + +typedef struct +{ + void* identifier; + UnityARMatrix4x4 transform; + UnityAREnvironmentProbeCubemapData cubemapData; + UnityARVector3 extent; +} UnityAREnvironmentProbeAnchorData; + +inline UnityAREnvironmentTextureFormat GetUnityAREnvironmentTextureFormat (MTLPixelFormat mtlPixelFormat) +{ + // This mapping is based on a Unity internal runtime method metal::UnityTextureFormat() in TextureFormatMetal.mm that maps a subset of the Metal pixel formats to the Unity texture format + switch (mtlPixelFormat) + { + case MTLPixelFormatRGBA16Float: + return UnityAREnvironmentTextureFormatRGBAHalf; + case MTLPixelFormatRGBA32Float: + return UnityAREnvironmentTextureFormatRGBAFloat; + case MTLPixelFormatRGBA8Unorm_sRGB: + case MTLPixelFormatRGBA8Unorm: + return UnityAREnvironmentTextureFormatRGBA32; + case MTLPixelFormatBGRA8Unorm_sRGB: + case MTLPixelFormatBGRA8Unorm: + return UnityAREnvironmentTextureFormatBGRA32; + case MTLPixelFormatR16Unorm: + return UnityAREnvironmentTextureFormatR16; + case MTLPixelFormatRG8Unorm: + return UnityAREnvironmentTextureFormatRG16; + default: + return UnityAREnvironmentTextureFormatDefault; + } +} + +inline void UnityAREnvironmentProbeCubemapDataFromMTLTextureRef(UnityAREnvironmentProbeCubemapData& cubemapData, MTLTextureRef environmentTexture) +{ + cubemapData.cubemapPtr = (__bridge void*)environmentTexture; + cubemapData.textureFormat = GetUnityAREnvironmentTextureFormat([environmentTexture pixelFormat]); + cubemapData.width = (int)[environmentTexture width]; + cubemapData.height = (int)[environmentTexture height]; + cubemapData.mipmapCount = (int)[environmentTexture mipmapLevelCount]; +} + +API_AVAILABLE(ios(12.0)) +inline void UnityAREnvironmentProbeAnchorDataFromAREnvironmentProbeAnchorPtr(UnityAREnvironmentProbeAnchorData& anchorData, AREnvironmentProbeAnchor* nativeAnchor) +{ + anchorData.identifier = (void*)[nativeAnchor.identifier.UUIDString UTF8String]; + ARKitMatrixToUnityARMatrix4x4(nativeAnchor.transform, &anchorData.transform); + UnityAREnvironmentProbeCubemapDataFromMTLTextureRef(anchorData.cubemapData, [nativeAnchor environmentTexture]); + anchorData.extent = UnityARVector3 { + nativeAnchor.extent.x, + nativeAnchor.extent.y, + nativeAnchor.extent.z + }; +} + +typedef void (*UNITY_AR_ENVPROBE_ANCHOR_CALLBACK)(UnityAREnvironmentProbeAnchorData anchorData); + + +@interface UnityAREnvironmentProbeAnchorCallbackWrapper : NSObject +{ +@public + UNITY_AR_ENVPROBE_ANCHOR_CALLBACK _anchorAddedCallback; + UNITY_AR_ENVPROBE_ANCHOR_CALLBACK _anchorUpdatedCallback; + UNITY_AR_ENVPROBE_ANCHOR_CALLBACK _anchorRemovedCallback; +} +@end + +@implementation UnityAREnvironmentProbeAnchorCallbackWrapper + +-(void)sendAnchorAddedEvent:(ARAnchor*)anchor +{ + if (@available(iOS 12.0, *)) + { + UnityAREnvironmentProbeAnchorData data; + UnityAREnvironmentProbeAnchorDataFromAREnvironmentProbeAnchorPtr(data, (AREnvironmentProbeAnchor*)anchor); + _anchorAddedCallback(data); + } +} + +-(void)sendAnchorRemovedEvent:(ARAnchor*)anchor +{ + if (@available(iOS 12.0, *)) { + UnityAREnvironmentProbeAnchorData data; + UnityAREnvironmentProbeAnchorDataFromAREnvironmentProbeAnchorPtr(data, (AREnvironmentProbeAnchor*)anchor); + _anchorRemovedCallback(data); + } +} + +-(void)sendAnchorUpdatedEvent:(ARAnchor*)anchor +{ + if (@available(iOS 12.0, *)) + { + UnityAREnvironmentProbeAnchorData data; + UnityAREnvironmentProbeAnchorDataFromAREnvironmentProbeAnchorPtr(data, (AREnvironmentProbeAnchor*)anchor); + _anchorUpdatedCallback(data); + } +} + +@end + +extern "C" UnityAREnvironmentProbeAnchorData SessionAddEnvironmentProbeAnchor(void* nativeSession, UnityAREnvironmentProbeAnchorData anchorData) +{ + UnityAREnvironmentProbeAnchorData returnAnchorData; + + if (UnityIsARKit_2_0_Supported()) + { + // create a native AREnvironmentProbeAnchor and add it to the session + // then return the data back to the user that they will + // need in case they want to remove it + UnityARSession* session = (__bridge UnityARSession*)nativeSession; + matrix_float4x4 initMat; + UnityARMatrix4x4ToARKitMatrix(anchorData.transform, &initMat); + if (@available(iOS 12.0, *)) + { + AREnvironmentProbeAnchor *newAnchor = [[AREnvironmentProbeAnchor alloc] initWithTransform:initMat]; + [session->_session addAnchor:newAnchor]; + UnityAREnvironmentProbeAnchorDataFromAREnvironmentProbeAnchorPtr(returnAnchorData, newAnchor); + } + } + + return returnAnchorData; + + } + + +extern "C" void session_SetEnvironmentProbeAnchorCallbacks(const void* session, UNITY_AR_ENVPROBE_ANCHOR_CALLBACK envProbeAnchorAddedCallback, + UNITY_AR_ENVPROBE_ANCHOR_CALLBACK envProbeAnchorUpdatedCallback, + UNITY_AR_ENVPROBE_ANCHOR_CALLBACK envProbeAnchorRemovedCallback) +{ + if (UnityIsARKit_2_0_Supported()) + { + UnityARSession* nativeSession = (__bridge UnityARSession*)session; + UnityAREnvironmentProbeAnchorCallbackWrapper* envProbeAnchorCallbacks = [[UnityAREnvironmentProbeAnchorCallbackWrapper alloc] init]; + envProbeAnchorCallbacks->_anchorAddedCallback = envProbeAnchorAddedCallback; + envProbeAnchorCallbacks->_anchorUpdatedCallback = envProbeAnchorUpdatedCallback; + envProbeAnchorCallbacks->_anchorRemovedCallback = envProbeAnchorRemovedCallback; + if (@available(iOS 12.0, *)) { + [nativeSession->_classToCallbackMap setObject:envProbeAnchorCallbacks forKey:[AREnvironmentProbeAnchor class]]; + } + } +} + + diff --git a/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/AREnvironmentProbe.mm.meta b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/AREnvironmentProbe.mm.meta new file mode 100644 index 000000000..ec2797ef9 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/AREnvironmentProbe.mm.meta @@ -0,0 +1,36 @@ +fileFormatVersion: 2 +guid: 0c6d0809cf3424e35877af8d6971e6b0 +timeCreated: 1523998953 +licenseType: Pro +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + isPreloaded: 0 + isOverridable: 0 + platformData: + - first: + Any: + second: + enabled: 0 + settings: {} + - first: + Editor: Editor + second: + enabled: 0 + settings: + DefaultValueInitialized: true + - first: + iPhone: iOS + second: + enabled: 1 + settings: {} + - first: + tvOS: tvOS + second: + enabled: 1 + settings: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/AREnvironmentProbeAnchor.cs b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/AREnvironmentProbeAnchor.cs new file mode 100644 index 000000000..8364610f7 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/AREnvironmentProbeAnchor.cs @@ -0,0 +1,203 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using System; +using System.Runtime.InteropServices; +using AOT; + + +namespace UnityEngine.XR.iOS +{ + + public enum UnityAREnvironmentTexturing + { + UnityAREnvironmentTexturingNone, + UnityAREnvironmentTexturingManual, + UnityAREnvironmentTexturingAutomatic + }; + + public enum UnityAREnvironmentTextureFormat : long + { + // NOTE: Not a complete set, but an initial mapping that matches an internal set of texture readback mappings. + UnityAREnvironmentTextureFormatR16, + UnityAREnvironmentTextureFormatRG16, + UnityAREnvironmentTextureFormatBGRA32, + UnityAREnvironmentTextureFormatRGBA32, + UnityAREnvironmentTextureFormatRGBAFloat, + UnityAREnvironmentTextureFormatRGBAHalf, + UnityAREnvironmentTextureFormatDefault = UnityAREnvironmentTextureFormatBGRA32 + }; + + public struct UnityAREnvironmentProbeCubemapData + { + public IntPtr cubemapPtr; + public UnityAREnvironmentTextureFormat textureFormat; + public int width; + public int height; + public int mipmapCount; + }; + + public struct UnityAREnvironmentProbeAnchorData + { + + public IntPtr ptrIdentifier; + + /** + The transformation matrix that defines the anchor's rotation, translation and scale in world coordinates. + */ + public UnityARMatrix4x4 transform; + + public UnityAREnvironmentProbeCubemapData cubemapData; + + public Vector3 probeExtent; + + }; + + public static class UnityAREnvironmentProbeCubemapDataMethods + { + public static TextureFormat GetTextureFormat(this UnityAREnvironmentTextureFormat unityAREnvironmentTextureFormat) + { + switch (unityAREnvironmentTextureFormat) + { + case UnityAREnvironmentTextureFormat.UnityAREnvironmentTextureFormatR16: + return TextureFormat.R16; + case UnityAREnvironmentTextureFormat.UnityAREnvironmentTextureFormatRG16: + return TextureFormat.RG16; + case UnityAREnvironmentTextureFormat.UnityAREnvironmentTextureFormatRGBA32: + return TextureFormat.RGBA32; + case UnityAREnvironmentTextureFormat.UnityAREnvironmentTextureFormatRGBAFloat: + return TextureFormat.RGBAFloat; + case UnityAREnvironmentTextureFormat.UnityAREnvironmentTextureFormatRGBAHalf: + return TextureFormat.RGBAHalf; + case UnityAREnvironmentTextureFormat.UnityAREnvironmentTextureFormatBGRA32: + default: + return TextureFormat.BGRA32; + } + } + } + + public class AREnvironmentProbeAnchor + { + + UnityAREnvironmentProbeAnchorData envProbeAnchorData; + + public AREnvironmentProbeAnchor(UnityAREnvironmentProbeAnchorData uarepad) + { + envProbeAnchorData = uarepad; + } + + public string identifier { get { return Marshal.PtrToStringAuto(envProbeAnchorData.ptrIdentifier); } } + + public Matrix4x4 transform { + get { + Matrix4x4 matrix = new Matrix4x4 (); + matrix.SetColumn (0, envProbeAnchorData.transform.column0); + matrix.SetColumn (1, envProbeAnchorData.transform.column1); + matrix.SetColumn (2, envProbeAnchorData.transform.column2); + matrix.SetColumn (3, envProbeAnchorData.transform.column3); + return matrix; + } + } + + public Cubemap Cubemap + { + get + { + if (envProbeAnchorData.cubemapData.cubemapPtr != IntPtr.Zero) { + Cubemap cubemap = Cubemap.CreateExternalTexture(envProbeAnchorData.cubemapData.width, + envProbeAnchorData.cubemapData.textureFormat.GetTextureFormat(), + (envProbeAnchorData.cubemapData.mipmapCount > 1), + envProbeAnchorData.cubemapData.cubemapPtr); + cubemap.filterMode = FilterMode.Trilinear; + return cubemap; + } else { + return null; + } + } + + } + + public Vector3 Extent + { + get { return envProbeAnchorData.probeExtent; } + } + } + + + public partial class UnityARSessionNativeInterface + { + // Object Anchors + public delegate void AREnvironmentProbeAnchorAdded(AREnvironmentProbeAnchor anchorData); + public static event AREnvironmentProbeAnchorAdded AREnvironmentProbeAnchorAddedEvent; + + public delegate void AREnvironmentProbeAnchorUpdated(AREnvironmentProbeAnchor anchorData); + public static event AREnvironmentProbeAnchorUpdated AREnvironmentProbeAnchorUpdatedEvent; + + public delegate void AREnvironmentProbeAnchorRemoved(AREnvironmentProbeAnchor anchorData); + public static event AREnvironmentProbeAnchorRemoved AREnvironmentProbeAnchorRemovedEvent; + + + delegate void internal_AREnvironmentProbeAnchorAdded(UnityAREnvironmentProbeAnchorData anchorData); + delegate void internal_AREnvironmentProbeAnchorUpdated(UnityAREnvironmentProbeAnchorData anchorData); + delegate void internal_AREnvironmentProbeAnchorRemoved(UnityAREnvironmentProbeAnchorData anchorData); + + public UnityAREnvironmentProbeAnchorData AddEnvironmentProbeAnchor(UnityAREnvironmentProbeAnchorData anchorData) + { + #if !UNITY_EDITOR && UNITY_IOS + return SessionAddEnvironmentProbeAnchor(m_NativeARSession, anchorData); + #else + return new UnityAREnvironmentProbeAnchorData(); + #endif + } + + +#if !UNITY_EDITOR && UNITY_IOS + + #region Environment Probe Anchors + [MonoPInvokeCallback(typeof(internal_AREnvironmentProbeAnchorAdded))] + static void _envprobe_anchor_added(UnityAREnvironmentProbeAnchorData anchor) + { + if (AREnvironmentProbeAnchorAddedEvent != null) + { + AREnvironmentProbeAnchor arEnvProbeAnchor = new AREnvironmentProbeAnchor(anchor); + AREnvironmentProbeAnchorAddedEvent(arEnvProbeAnchor); + } + } + + [MonoPInvokeCallback(typeof(internal_AREnvironmentProbeAnchorUpdated))] + static void _envprobe_anchor_updated(UnityAREnvironmentProbeAnchorData anchor) + { + if (AREnvironmentProbeAnchorUpdatedEvent != null) + { + AREnvironmentProbeAnchor arEnvProbeAnchor = new AREnvironmentProbeAnchor(anchor); + AREnvironmentProbeAnchorUpdatedEvent(arEnvProbeAnchor); + } + } + + [MonoPInvokeCallback(typeof(internal_AREnvironmentProbeAnchorRemoved))] + static void _envprobe_anchor_removed(UnityAREnvironmentProbeAnchorData anchor) + { + if (AREnvironmentProbeAnchorRemovedEvent != null) + { + AREnvironmentProbeAnchor arEnvProbeAnchor = new AREnvironmentProbeAnchor(anchor); + AREnvironmentProbeAnchorRemovedEvent(arEnvProbeAnchor); + } + } + #endregion + + [DllImport("__Internal")] + private static extern void session_SetEnvironmentProbeAnchorCallbacks(IntPtr nativeSession, internal_AREnvironmentProbeAnchorAdded envprobeAnchorAddedCallback, + internal_AREnvironmentProbeAnchorUpdated envprobeAnchorUpdatedCallback, + internal_AREnvironmentProbeAnchorRemoved envprobeAnchorRemovedCallback); + + [DllImport("__Internal")] + private static extern UnityAREnvironmentProbeAnchorData SessionAddEnvironmentProbeAnchor (IntPtr nativeSession, UnityAREnvironmentProbeAnchorData anchorData); + + +#endif //!UNITY_EDITOR && UNITY_IOS + + + + + } +} \ No newline at end of file diff --git a/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/AREnvironmentProbeAnchor.cs.meta b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/AREnvironmentProbeAnchor.cs.meta new file mode 100644 index 000000000..e6fe2dbed --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/AREnvironmentProbeAnchor.cs.meta @@ -0,0 +1,13 @@ +fileFormatVersion: 2 +guid: 910c01687822140fda3d851b2e33844d +timeCreated: 1524000394 +licenseType: Pro +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARFaceAnchor.cs b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARFaceAnchor.cs index 2e38f75ce..7653d6a0c 100644 --- a/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARFaceAnchor.cs +++ b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARFaceAnchor.cs @@ -1,9 +1,10 @@ -using UnityEngine; +using UnityEngine; using System.Collections; using System.Runtime.InteropServices; using System; using System.Collections.Generic; using AOT; +using System.Text; namespace UnityEngine.XR.iOS { @@ -61,6 +62,7 @@ public static class ARBlendShapeLocation public const string MouthUpperUpRight = "mouthUpperUp_R"; public const string NoseSneerLeft = "noseSneer_L"; public const string NoseSneerRight = "noseSneer_R"; + public const string TongueOut = "tongueOut"; } @@ -75,7 +77,7 @@ public struct UnityARFaceGeometry } - public struct UnityARFaceAnchorData + public struct UnityARFaceAnchorData { public IntPtr ptrIdentifier; @@ -89,100 +91,126 @@ public struct UnityARFaceAnchorData public UnityARFaceGeometry faceGeometry; public IntPtr blendShapes; + public UnityARMatrix4x4 leftEyeTransform; + public UnityARMatrix4x4 rightEyeTransform; + public Vector3 lookAtPoint; + public bool isTracked; //this is from the new ARTrackable protocol that ARFaceAnchor now subscribes to + } + - }; - - + #if !UNITY_EDITOR && UNITY_IOS public class ARFaceGeometry { - private UnityARFaceGeometry uFaceGeometry; + internal UnityARFaceGeometry uFaceGeometry { private get; set; } + + readonly Vector3[] m_Vertices; + readonly Vector2[] m_TextureCoordinates; + readonly int[] m_TriangleIndices; + readonly float[] m_WorkVertices; + readonly float[] m_WorkTextureCoordinates; + readonly short[] m_WorkIndices; //since ARKit returns Int16 + readonly int m_VertexCount; + readonly int m_TextureCoordinateCount; + readonly int m_TriangleCount; + readonly int m_IndexCount; + readonly int m_WorkVertexCount; + readonly int m_WorkTextureCoordinateCount; public ARFaceGeometry (UnityARFaceGeometry ufg) { uFaceGeometry = ufg; + m_VertexCount = ufg.vertexCount; + m_Vertices = new Vector3[m_VertexCount]; + m_WorkVertexCount = m_VertexCount * 4; + m_WorkVertices = new float[m_WorkVertexCount]; + m_TextureCoordinateCount = ufg.textureCoordinateCount; + m_TextureCoordinates = new Vector2[textureCoordinateCount]; + m_WorkTextureCoordinateCount = m_TextureCoordinateCount * 2; + m_WorkTextureCoordinates = new float[m_WorkTextureCoordinateCount]; + m_TriangleCount = ufg.triangleCount; + m_IndexCount = m_TriangleCount * 3; + m_TriangleIndices = new int[m_IndexCount]; + m_WorkIndices = new short[m_IndexCount]; } - public int vertexCount { get { return uFaceGeometry.vertexCount; } } - public int triangleCount { get { return uFaceGeometry.triangleCount; } } - public int textureCoordinateCount { get { return uFaceGeometry.textureCoordinateCount; } } + public int vertexCount { get { return m_VertexCount; } } + public int triangleCount { get { return m_TriangleCount; } } + public int textureCoordinateCount { get { return m_TextureCoordinateCount; } } - public Vector3 [] vertices { get { return MarshalVertices(uFaceGeometry.vertices,vertexCount); } } + public Vector3 [] vertices { get { return MarshalVertices(uFaceGeometry.vertices); } } - public Vector2 [] textureCoordinates { get { return MarshalTexCoords(uFaceGeometry.textureCoordinates, textureCoordinateCount); } } + public Vector2 [] textureCoordinates { get { return MarshalTexCoords(uFaceGeometry.textureCoordinates); } } - public int [] triangleIndices { get { return MarshalIndices(uFaceGeometry.triangleIndices, triangleCount); } } + public int [] triangleIndices { get { return MarshalIndices(uFaceGeometry.triangleIndices); } } - Vector3 [] MarshalVertices(IntPtr ptrFloatArray, int vertCount) + Vector3 [] MarshalVertices(IntPtr ptrFloatArray) { - int numFloats = vertCount * 4; - float [] workVerts = new float[numFloats]; - Marshal.Copy (ptrFloatArray, workVerts, 0, (int)(numFloats)); - - Vector3[] verts = new Vector3[vertCount]; + Marshal.Copy (ptrFloatArray, m_WorkVertices, 0, m_WorkVertexCount); - for (int count = 0; count < numFloats; count++) + for (var count = 0; count < m_WorkVertexCount; count++) { - verts [count / 4].x = workVerts[count++]; - verts [count / 4].y = workVerts[count++]; - verts [count / 4].z = -workVerts[count++]; + m_Vertices[count / 4].x = m_WorkVertices[count++]; + m_Vertices[count / 4].y = m_WorkVertices[count++]; + m_Vertices[count / 4].z = -m_WorkVertices[count++]; } - return verts; + return m_Vertices; } - int [] MarshalIndices(IntPtr ptrIndices, int triCount) + int [] MarshalIndices(IntPtr ptrIndices) { - int numIndices = triCount * 3; - short [] workIndices = new short[numIndices]; //since ARKit returns Int16 - Marshal.Copy (ptrIndices, workIndices, 0, numIndices); + Marshal.Copy (ptrIndices, m_WorkIndices, 0, m_IndexCount); - int[] triIndices = new int[numIndices]; - for (int count = 0; count < numIndices; count+=3) { + for (var count = 0; count < m_IndexCount; count+=3) { //reverse winding order - triIndices [count] = workIndices [count]; - triIndices [count + 1] = workIndices [count + 2]; - triIndices [count + 2] = workIndices [count + 1]; + m_TriangleIndices [count] = m_WorkIndices [count]; + m_TriangleIndices [count + 1] = m_WorkIndices [count + 2]; + m_TriangleIndices [count + 2] = m_WorkIndices [count + 1]; } - return triIndices; + return m_TriangleIndices; } - Vector2 [] MarshalTexCoords(IntPtr ptrTexCoords, int texCoordCount) + Vector2 [] MarshalTexCoords(IntPtr ptrTexCoords) { - int numFloats = texCoordCount * 2; - float [] workTexCoords = new float[numFloats]; - Marshal.Copy (ptrTexCoords, workTexCoords, 0, (int)(numFloats)); + Marshal.Copy (ptrTexCoords, m_WorkTextureCoordinates, 0, m_WorkTextureCoordinateCount); - Vector2[] texCoords = new Vector2[texCoordCount]; - - for (int count = 0; count < numFloats; count++) + for (var count = 0; count < m_WorkTextureCoordinateCount; count++) { - texCoords [count / 2].x = workTexCoords[count++]; - texCoords [count / 2].y = workTexCoords[count]; + m_TextureCoordinates[count / 2].x = m_WorkTextureCoordinates[count++]; + m_TextureCoordinates[count / 2].y = m_WorkTextureCoordinates[count]; } - return texCoords; - + return m_TextureCoordinates; } } - - public class ARFaceAnchor + public class ARFaceAnchor { private UnityARFaceAnchorData faceAnchorData; private static Dictionary blendshapesDictionary; + readonly ARFaceGeometry m_FaceGeometry; public ARFaceAnchor (UnityARFaceAnchorData ufad) { faceAnchorData = ufad; + m_FaceGeometry = new ARFaceGeometry(ufad.faceGeometry); if (blendshapesDictionary == null) { blendshapesDictionary = new Dictionary (); } } - + + public void Update(UnityARFaceAnchorData ufad) + { + faceAnchorData = ufad; + m_FaceGeometry.uFaceGeometry = ufad.faceGeometry; + } + public string identifierStr { get { return faceAnchorData.identifierStr; } } + public bool isTracked { get { return faceAnchorData.isTracked; } } + public Matrix4x4 transform { get { Matrix4x4 matrix = new Matrix4x4 (); @@ -194,7 +222,45 @@ public Matrix4x4 transform { } } - public ARFaceGeometry faceGeometry { get { return new ARFaceGeometry (faceAnchorData.faceGeometry); } } + public Pose leftEyePose + { + get + { + Matrix4x4 anchorMat = UnityARMatrixOps.GetMatrix (faceAnchorData.transform); + Matrix4x4 eyeMat = UnityARMatrixOps.GetMatrix (faceAnchorData.leftEyeTransform); + Matrix4x4 worldEyeMat = anchorMat * eyeMat; + return UnityARMatrixOps.GetPose(worldEyeMat); + } + } + + public Pose rightEyePose + { + get + { + Matrix4x4 anchorMat = UnityARMatrixOps.GetMatrix (faceAnchorData.transform); + Matrix4x4 eyeMat = UnityARMatrixOps.GetMatrix (faceAnchorData.rightEyeTransform); + Matrix4x4 worldEyeMat = anchorMat * eyeMat; + return UnityARMatrixOps.GetPose(worldEyeMat); + } + } + + public Vector3 lookAtPoint + { + get + { + Matrix4x4 anchorMat = UnityARMatrixOps.GetMatrix (faceAnchorData.transform); + return anchorMat.MultiplyPoint3x4 (UnityARMatrixOps.GetPosition (faceAnchorData.lookAtPoint)); + } + } + + public ARFaceGeometry faceGeometry + { + get + { + m_FaceGeometry.uFaceGeometry = faceAnchorData.faceGeometry; + return m_FaceGeometry; + } + } public Dictionary blendShapes { get { return GetBlendShapesFromNative(faceAnchorData.blendShapes); } } @@ -217,4 +283,5 @@ static void AddElementToManagedDictionary(IntPtr keyPtr, float value) blendshapesDictionary.Add(key, value); } } + #endif } diff --git a/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARHitTestResultType.cs b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARHitTestResultType.cs index fbb67dee7..e6c01c83e 100644 --- a/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARHitTestResultType.cs +++ b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARHitTestResultType.cs @@ -8,17 +8,20 @@ public enum ARHitTestResultType : long /** Result type from intersecting the nearest feature point. */ ARHitTestResultTypeFeaturePoint = (1 << 0), - /** Result type from detecting and intersecting a new horizontal plane. */ - ARHitTestResultTypeHorizontalPlane = (1 << 1), + /** A real-world planar surface detected by the search (without a corresponding anchor), whose orientation is perpendicular to gravity. */ + ARHitTestResultTypeEstimatedHorizontalPlane = (1 << 1), - /** Result type from detecting and intersecting a new vertical plane. */ - ARHitTestResultTypeVerticalPlane = (1 << 2), + /** A real-world planar surface detected by the search, whose orientation is parallel to gravity. */ + ARHitTestResultTypeEstimatedVerticalPlane = (1 << 2), /** Result type from intersecting with an existing plane anchor. */ ARHitTestResultTypeExistingPlane = (1 << 3), /** Result type from intersecting with an existing plane anchor, taking into account the plane's extent. */ - ARHitTestResultTypeExistingPlaneUsingExtent = ( 1 << 4) + ARHitTestResultTypeExistingPlaneUsingExtent = ( 1 << 4), + + /** A plane anchor already in the scene (detected with the planeDetection option), respecting the plane's estimated size and shape. **/ + ARHitTestResultTypeExistingPlaneUsingGeometry = (1 << 5) } } diff --git a/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARImageAnchor.cs b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARImageAnchor.cs new file mode 100644 index 000000000..05561d7f5 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARImageAnchor.cs @@ -0,0 +1,60 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using System; +using System.Runtime.InteropServices; + + +namespace UnityEngine.XR.iOS +{ + + public struct UnityARImageAnchorData + { + + public IntPtr ptrIdentifier; + + /** + The transformation matrix that defines the anchor's rotation, translation and scale in world coordinates. + */ + public UnityARMatrix4x4 transform; + + public IntPtr referenceImageNamePtr; + + public float referenceImagePhysicalSize; + + public int isTracked; + + }; + + + + public class ARImageAnchor { + + private UnityARImageAnchorData imageAnchorData; + + public ARImageAnchor (UnityARImageAnchorData uiad) + { + imageAnchorData = uiad; + } + + + public string identifier { get { return Marshal.PtrToStringAuto(imageAnchorData.ptrIdentifier); } } + public bool isTracked { get {return imageAnchorData.isTracked != 0; } } + + public Matrix4x4 transform { + get { + Matrix4x4 matrix = new Matrix4x4 (); + matrix.SetColumn (0, imageAnchorData.transform.column0); + matrix.SetColumn (1, imageAnchorData.transform.column1); + matrix.SetColumn (2, imageAnchorData.transform.column2); + matrix.SetColumn (3, imageAnchorData.transform.column3); + return matrix; + } + } + + public string referenceImageName { get { return Marshal.PtrToStringAuto(imageAnchorData.referenceImageNamePtr); } } + + public float referenceImagePhysicalSize { get { return imageAnchorData.referenceImagePhysicalSize; } } + } + +} \ No newline at end of file diff --git a/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARImageAnchor.cs.meta b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARImageAnchor.cs.meta new file mode 100644 index 000000000..0edd9c58c --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARImageAnchor.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 888a393eca1cb4822ab6eb99ddaa0e9e +timeCreated: 1517602605 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARKitDefines.h b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARKitDefines.h new file mode 100644 index 000000000..2056a3a4f --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARKitDefines.h @@ -0,0 +1,438 @@ +// Unity Technologies Inc (c) 2017 +// ARKitDefines.h + +#import + + +typedef struct +{ + float x,y,z,w; +} UnityARVector4; + +typedef struct +{ + float x,y,z; +} UnityARVector3; + +typedef struct +{ + UnityARVector4 column0; + UnityARVector4 column1; + UnityARVector4 column2; + UnityARVector4 column3; +} UnityARMatrix4x4; + +enum UnityARAlignment +{ + UnityARAlignmentGravity, + UnityARAlignmentGravityAndHeading, + UnityARAlignmentCamera +}; + +enum UnityARPlaneDetection +{ + UnityARPlaneDetectionNone = 0, + UnityARPlaneDetectionHorizontal = (1 << 0), + UnityARPlaneDetectionVertical = (1 << 1) +}; + +enum UnityAREnvironmentTexturing +{ + UnityAREnvironmentTexturingNone, + UnityAREnvironmentTexturingManual, + UnityAREnvironmentTexturingAutomatic +}; + +typedef enum +{ + UnityARWorldMappingStatusNotAvailable, + UnityARWorldMappingStatusLimited, + UnityARWorldMappingStatusExtending, + UnityARWorldMappingStatusMapped +}UnityARWorldMappingStatus; + +typedef enum +{ + kUnityARKitSupportedFeaturesNone = 0, + kUnityARKitSupportedFeaturesWorldMap = 1 << 0, + kUnityARKitSupportedFeaturesReferenceObject = 1 << 1, +} UnityARKitSupportedFeatures; + +typedef struct +{ + UnityARAlignment alignment; + uint32_t getPointCloudData; + uint32_t enableLightEstimation; + +} ARKitSessionConfiguration; + +typedef struct +{ + UnityARAlignment alignment; + UnityARPlaneDetection planeDetection; + uint32_t getPointCloudData; + uint32_t enableLightEstimation; + uint32_t enableAutoFocus; + UnityAREnvironmentTexturing environmentTexturing; + int maximumNumberOfTrackedImages; + void *ptrVideoFormat; + char *referenceImagesResourceGroup; + char *referenceObjectsResourceGroup; + void *ptrDynamicReferenceObjects; + void *ptrWorldMap; +} ARKitWorldTrackingSessionConfiguration; + +typedef struct +{ + UnityARAlignment alignment; + uint32_t enableLightEstimation; + void *ptrVideoFormat; +} ARKitFaceTrackingConfiguration; + +enum UnityARSessionRunOptions +{ + UnityARSessionRunOptionsNone = 0, + UnityARSessionRunOptionResetTracking = (1 << 0), + UnityARSessionRunOptionRemoveExistingAnchors = (1 << 1) + +}; + +typedef struct +{ + NSUInteger vertexCount; + float *vertices; + NSUInteger textureCoordinateCount; + float *textureCoordinates; + NSUInteger triangleCount; + int *triangleIndices; + NSUInteger boundaryVertexCount; + float *boundaryVertices; +} UnityARPlaneGeometry; + + +typedef struct +{ + void* identifier; + UnityARMatrix4x4 transform; + ARPlaneAnchorAlignment alignment; + UnityARVector4 center; + UnityARVector4 extent; + UnityARPlaneGeometry planeGeometry; +} UnityARAnchorData; + +typedef struct +{ + void* identifier; + UnityARMatrix4x4 transform; +} UnityARUserAnchorData; + +typedef struct +{ + NSUInteger vertexCount; + float *vertices; + NSUInteger textureCoordinateCount; + float *textureCoordinates; + NSUInteger triangleCount; + int *triangleIndices; +} UnityARFaceGeometry; + +typedef struct +{ + void *identifier; + UnityARMatrix4x4 transform; + UnityARFaceGeometry faceGeometry; + void *blendShapes; //NSDictionary * + UnityARMatrix4x4 leftEyeTransform; + UnityARMatrix4x4 rightEyeTransform; + UnityARVector3 lookAtPoint; + uint32_t isTracked; +} UnityARFaceAnchorData; + +typedef struct +{ + void* identifier; + UnityARMatrix4x4 transform; + void* referenceImageName; + float referenceImageSize; + int isTracked; +} UnityARImageAnchorData; + + + +enum UnityARTrackingState +{ + UnityARTrackingStateNotAvailable, + UnityARTrackingStateLimited, + UnityARTrackingStateNormal, +}; + +enum UnityARTrackingReason +{ + UnityARTrackingStateReasonNone, + UnityARTrackingStateReasonInitializing, + UnityARTrackingStateReasonExcessiveMotion, + UnityARTrackingStateReasonInsufficientFeatures, + UnityARTrackingStateReasonRelocalizing, +}; + +typedef struct +{ + uint32_t yWidth; + uint32_t yHeight; + uint32_t screenOrientation; + float texCoordScale; + void* cvPixelBufferPtr; +}UnityVideoParams; + +typedef struct +{ + float ambientIntensity; + float ambientColorTemperature; +}UnityARLightEstimation; + +typedef struct +{ + UnityARVector4 primaryLightDirectionAndIntensity; + float *sphericalHarmonicsCoefficients; +}UnityARDirectionalLightEstimate; + +enum UnityLightDataType +{ + LightEstimate, + DirectionalLightEstimate +}; + +typedef struct +{ + UnityLightDataType arLightingType; + UnityARLightEstimation arLightEstimate; + UnityARDirectionalLightEstimate arDirectionalLightEstimate; +}UnityLightData; + +typedef struct +{ + UnityARMatrix4x4 worldTransform; + UnityARMatrix4x4 projectionMatrix; + UnityARTrackingState trackingState; + UnityARTrackingReason trackingReason; + UnityVideoParams videoParams; + UnityLightData lightData; + UnityARMatrix4x4 displayTransform; + void* ptrPointCloud; + uint32_t getLightEstimation; + UnityARWorldMappingStatus worldMappingStatus; +} UnityARCamera; + +typedef struct +{ + vector_float3* pointCloud; + NSUInteger pointCloudSize; +} UnityARPointCloudData; + +typedef struct +{ + void* pYPixelBytes; + void* pUVPixelBytes; + BOOL bEnable; +}UnityPixelBuffer; + +typedef struct +{ + void* ptrVideoFormat; + float imageResolutionWidth; + float imageResolutionHeight; + int framesPerSecond; +}UnityARVideoFormat; + +typedef void (*UNITY_AR_FRAME_CALLBACK)(UnityARCamera camera); +typedef void (*UNITY_AR_ANCHOR_CALLBACK)(UnityARAnchorData anchorData); +typedef void (*UNITY_AR_USER_ANCHOR_CALLBACK)(UnityARUserAnchorData anchorData); +typedef void (*UNITY_AR_FACE_ANCHOR_CALLBACK)(UnityARFaceAnchorData anchorData); +typedef void (*UNITY_AR_IMAGE_ANCHOR_CALLBACK)(UnityARImageAnchorData anchorData); +typedef void (*UNITY_AR_SESSION_FAILED_CALLBACK)(const void* error); +typedef void (*UNITY_AR_SESSION_VOID_CALLBACK)(void); +typedef bool (*UNITY_AR_SESSION_RELOCALIZE_CALLBACK)(void); +typedef void (*UNITY_AR_SESSION_TRACKING_CHANGED)(UnityARCamera camera); +typedef void (*UNITY_AR_VIDEOFORMAT_CALLBACK)(UnityARVideoFormat format); +typedef void (*UNITY_AR_SESSION_WORLD_MAP_COMPLETION_CALLBACK)(const void*, void*); +typedef void (*UNITY_AR_SESSION_REF_OBJ_EXTRACT_COMPLETION_CALLBACK)(const void*, void*); + +@protocol UnityARAnchorEventDispatcher +@required + -(void)sendAnchorAddedEvent:(ARAnchor*)anchor; + -(void)sendAnchorRemovedEvent:(ARAnchor*)anchor; + -(void)sendAnchorUpdatedEvent:(ARAnchor*)anchor; +@end + +@interface UnityARSession : NSObject +{ +@public + ARSession* _session; + UNITY_AR_FRAME_CALLBACK _frameCallback; + UNITY_AR_SESSION_FAILED_CALLBACK _arSessionFailedCallback; + UNITY_AR_SESSION_VOID_CALLBACK _arSessionInterrupted; + UNITY_AR_SESSION_VOID_CALLBACK _arSessionInterruptionEnded; + UNITY_AR_SESSION_RELOCALIZE_CALLBACK _arSessionShouldRelocalize; + UNITY_AR_SESSION_TRACKING_CHANGED _arSessionTrackingChanged; + UNITY_AR_SESSION_WORLD_MAP_COMPLETION_CALLBACK _arSessionWorldMapCompletionHandler; + UNITY_AR_SESSION_REF_OBJ_EXTRACT_COMPLETION_CALLBACK _arSessionRefObjExtractCompletionHandler; + + NSMutableDictionary* _classToCallbackMap; + + id _device; + CVMetalTextureCacheRef _textureCache; + BOOL _getPointCloudData; + BOOL _getLightEstimation; +} +- (void) setupMetal; +@end + + +static inline bool UnityIsARKit_1_5_Supported() +{ + if (@available(iOS 11.3, *)) + { + return [ARImageAnchor class]; + } + else + { + return false; + } +} + +static inline bool UnityAreFeaturesSupported(int features) +{ + bool featuresSupported = true; + if (features & kUnityARKitSupportedFeaturesWorldMap) + { + if (@available(iOS 12.0, *)) + { + featuresSupported &= (bool)[ARWorldMap class]; + } + else + { + featuresSupported = false; + } + } + if (features & kUnityARKitSupportedFeaturesReferenceObject) + { + if (@available(iOS 12.0, *)) + { + featuresSupported &= (bool)[ARReferenceObject class]; + } + else + { + featuresSupported = false; + } + } + + return featuresSupported; +} + +static inline bool UnityIsARKit_2_0_Supported() +{ + if (@available(iOS 12.0, *)) + { + if ([ARReferenceObject class]) + { + return true; + } + else + { + return false; + } + } + else + { + return false; + } +} + +inline void ARKitMatrixToUnityARMatrix4x4(const matrix_float4x4& matrixIn, UnityARMatrix4x4* matrixOut) +{ + vector_float4 c0 = matrixIn.columns[0]; + matrixOut->column0.x = c0.x; + matrixOut->column0.y = c0.y; + matrixOut->column0.z = c0.z; + matrixOut->column0.w = c0.w; + + vector_float4 c1 = matrixIn.columns[1]; + matrixOut->column1.x = c1.x; + matrixOut->column1.y = c1.y; + matrixOut->column1.z = c1.z; + matrixOut->column1.w = c1.w; + + vector_float4 c2 = matrixIn.columns[2]; + matrixOut->column2.x = c2.x; + matrixOut->column2.y = c2.y; + matrixOut->column2.z = c2.z; + matrixOut->column2.w = c2.w; + + vector_float4 c3 = matrixIn.columns[3]; + matrixOut->column3.x = c3.x; + matrixOut->column3.y = c3.y; + matrixOut->column3.z = c3.z; + matrixOut->column3.w = c3.w; +} + +inline void UnityARMatrix4x4ToARKitMatrix(const UnityARMatrix4x4& matrixIn, matrix_float4x4* matrixOut) +{ + matrixOut->columns[0].x = matrixIn.column0.x; + matrixOut->columns[0].y = matrixIn.column0.y; + matrixOut->columns[0].z = matrixIn.column0.z; + matrixOut->columns[0].w = matrixIn.column0.w; + + matrixOut->columns[1].x = matrixIn.column1.x; + matrixOut->columns[1].y = matrixIn.column1.y; + matrixOut->columns[1].z = matrixIn.column1.z; + matrixOut->columns[1].w = matrixIn.column1.w; + + matrixOut->columns[2].x = matrixIn.column2.x; + matrixOut->columns[2].y = matrixIn.column2.y; + matrixOut->columns[2].z = matrixIn.column2.z; + matrixOut->columns[2].w = matrixIn.column2.w; + + matrixOut->columns[3].x = matrixIn.column3.x; + matrixOut->columns[3].y = matrixIn.column3.y; + matrixOut->columns[3].z = matrixIn.column3.z; + matrixOut->columns[3].w = matrixIn.column3.w; +} + +inline ARSessionRunOptions GetARSessionRunOptionsFromUnityARSessionRunOptions(UnityARSessionRunOptions runOptions) +{ + ARSessionRunOptions ret = 0; + if ((runOptions & UnityARSessionRunOptionResetTracking) != 0) + ret |= ARSessionRunOptionResetTracking; + if ((runOptions & UnityARSessionRunOptionRemoveExistingAnchors) != 0) + ret |= ARSessionRunOptionRemoveExistingAnchors; + return ret; +} + +static inline ARWorldAlignment GetARWorldAlignmentFromUnityARAlignment(UnityARAlignment& unityAlignment) +{ + switch (unityAlignment) + { + case UnityARAlignmentGravity: + return ARWorldAlignmentGravity; + case UnityARAlignmentGravityAndHeading: + return ARWorldAlignmentGravityAndHeading; + case UnityARAlignmentCamera: + return ARWorldAlignmentCamera; + } +} + +static inline ARPlaneDetection GetARPlaneDetectionFromUnityARPlaneDetection(UnityARPlaneDetection planeDetection) +{ + ARPlaneDetection ret = ARPlaneDetectionNone; + if ((planeDetection & UnityARPlaneDetectionNone) != 0) + ret |= ARPlaneDetectionNone; + if ((planeDetection & UnityARPlaneDetectionHorizontal) != 0) + ret |= ARPlaneDetectionHorizontal; + if ((planeDetection & UnityARPlaneDetectionVertical) != 0) + { + if (@available(iOS 11.3, *)) { + ret |= ARPlaneDetectionVertical; + } + } + return ret; +} diff --git a/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARKitDefines.h.meta b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARKitDefines.h.meta new file mode 100644 index 000000000..7c1a49003 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARKitDefines.h.meta @@ -0,0 +1,26 @@ +fileFormatVersion: 2 +guid: cb098dfd51a5146d186aa9e1dbf3b436 +timeCreated: 1523480290 +licenseType: Pro +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + isPreloaded: 0 + isOverridable: 0 + platformData: + - first: + Any: + second: + enabled: 1 + settings: {} + - first: + Editor: Editor + second: + enabled: 0 + settings: + DefaultValueInitialized: true + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARKitNativeObjectDetection.mm b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARKitNativeObjectDetection.mm new file mode 100644 index 000000000..f5a767771 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARKitNativeObjectDetection.mm @@ -0,0 +1,427 @@ +// Unity Technologies Inc (c) 2018 +// ARKitNativeObjectDetection.mm +// Main implementation of ARKit plugin object detection + + +#include "ARKitDefines.h" + + +bool referenceObject_GetSupported() +{ + return UnityAreFeaturesSupported(kUnityARKitSupportedFeaturesReferenceObject); +} + +typedef struct +{ + void* identifier; + UnityARMatrix4x4 transform; + void* referenceObjectName; + void* referenceObjectPtr; +} UnityARObjectAnchorData; + +typedef struct +{ + UnityARAlignment alignment; + UnityARPlaneDetection planeDetection; + uint32_t enableLightEstimation; + uint32_t enableAutoFocus; + uint32_t getPointCloudData; +} ARKitObjectScanningSessionConfiguration; + +API_AVAILABLE(ios(12.0)) +inline void UnityARObjectAnchorDataFromARObjectAnchorPtr(UnityARObjectAnchorData& anchorData, ARObjectAnchor* nativeAnchor) +{ + anchorData.identifier = (void*)[nativeAnchor.identifier.UUIDString UTF8String]; + ARKitMatrixToUnityARMatrix4x4(nativeAnchor.transform, &anchorData.transform); + anchorData.referenceObjectName = (void*)[nativeAnchor.referenceObject.name UTF8String]; + anchorData.referenceObjectPtr = (__bridge void*) nativeAnchor.referenceObject; +} + +API_AVAILABLE(ios(12.0)) +inline void GetARSessionConfigurationFromARKitObjectScanningSessionConfiguration(ARKitObjectScanningSessionConfiguration& unityConfig, ARObjectScanningConfiguration* appleConfig) +{ + appleConfig.planeDetection = GetARPlaneDetectionFromUnityARPlaneDetection(unityConfig.planeDetection); + appleConfig.worldAlignment = GetARWorldAlignmentFromUnityARAlignment(unityConfig.alignment); + appleConfig.lightEstimationEnabled = (BOOL)unityConfig.enableLightEstimation; + + if (UnityIsARKit_2_0_Supported()) + { + appleConfig.autoFocusEnabled = (BOOL) unityConfig.enableAutoFocus; + } +} + +typedef void (*UNITY_AR_OBJECT_ANCHOR_CALLBACK)(UnityARObjectAnchorData anchorData); + + +@interface UnityARObjectAnchorCallbackWrapper : NSObject +{ +@public + UNITY_AR_OBJECT_ANCHOR_CALLBACK _anchorAddedCallback; + UNITY_AR_OBJECT_ANCHOR_CALLBACK _anchorUpdatedCallback; + UNITY_AR_OBJECT_ANCHOR_CALLBACK _anchorRemovedCallback; +} +@end + +@implementation UnityARObjectAnchorCallbackWrapper + +-(void)sendAnchorAddedEvent:(ARAnchor*)anchor +{ + UnityARObjectAnchorData data; + if (@available(iOS 12.0, *)) + { + UnityARObjectAnchorDataFromARObjectAnchorPtr(data, (ARObjectAnchor*)anchor); + } + _anchorAddedCallback(data); +} + +-(void)sendAnchorRemovedEvent:(ARAnchor*)anchor +{ + UnityARObjectAnchorData data; + if (@available(iOS 12.0, *)) + { + UnityARObjectAnchorDataFromARObjectAnchorPtr(data, (ARObjectAnchor*)anchor); + } + _anchorRemovedCallback(data); +} + +-(void)sendAnchorUpdatedEvent:(ARAnchor*)anchor +{ + UnityARObjectAnchorData data; + if (@available(iOS 12.0, *)) + { + UnityARObjectAnchorDataFromARObjectAnchorPtr(data, (ARObjectAnchor*)anchor); + } + _anchorUpdatedCallback(data); +} + +@end + +extern "C" void session_SetObjectAnchorCallbacks(const void* session, UNITY_AR_OBJECT_ANCHOR_CALLBACK objectAnchorAddedCallback, + UNITY_AR_OBJECT_ANCHOR_CALLBACK objectAnchorUpdatedCallback, + UNITY_AR_OBJECT_ANCHOR_CALLBACK objectAnchorRemovedCallback) +{ + if (UnityIsARKit_2_0_Supported()) + { + UnityARSession* nativeSession = (__bridge UnityARSession*)session; + UnityARObjectAnchorCallbackWrapper* objectAnchorCallbacks = [[UnityARObjectAnchorCallbackWrapper alloc] init]; + objectAnchorCallbacks->_anchorAddedCallback = objectAnchorAddedCallback; + objectAnchorCallbacks->_anchorUpdatedCallback = objectAnchorUpdatedCallback; + objectAnchorCallbacks->_anchorRemovedCallback = objectAnchorRemovedCallback; + if (@available(iOS 12.0, *)) + { + [nativeSession->_classToCallbackMap setObject:objectAnchorCallbacks forKey:[ARObjectAnchor class]]; + } + } +} + +#ifdef __cplusplus +extern "C" { +#endif + +bool IsARKitObjectScanningConfigurationSupported() +{ + if (@available(iOS 12.0, *)) + { + return ARObjectScanningConfiguration.isSupported; + } + else + { + // Fallback on earlier versions + return false; + } +} + +void StartObjectScanningSessionWithOptions(void* nativeSession, ARKitObjectScanningSessionConfiguration unityConfig, UnityARSessionRunOptions runOptions) +{ + UnityARSession* session = (__bridge UnityARSession*)nativeSession; + ARSessionRunOptions runOpts = GetARSessionRunOptionsFromUnityARSessionRunOptions(runOptions); + session->_getLightEstimation = (BOOL) unityConfig.enableLightEstimation; + session->_getPointCloudData = (BOOL) unityConfig.getPointCloudData; + if (@available(iOS 12.0, *)) + { + ARObjectScanningConfiguration* config = [ARObjectScanningConfiguration new]; + GetARSessionConfigurationFromARKitObjectScanningSessionConfiguration(unityConfig, config); + if (runOptions == UnityARSessionRunOptionsNone) + [session->_session runWithConfiguration:config]; + else + [session->_session runWithConfiguration:config options:runOpts]; + } + else + { + // Fallback on earlier versions + NSLog(@"ARKit error: your device does not support ARKit 2.0"); + return; + } + + [session setupMetal]; +} + + + + +bool referenceObject_ExportObjectToURL(const void* ptr, const char* path) +{ + if (ptr == nullptr || path == nullptr) + return false; + + if (@available(iOS 12.0, *)) + { + NSError* error = nil; + ARReferenceObject* referenceObject = (__bridge ARReferenceObject*)ptr; + NSURL* url = [[NSURL alloc] initFileURLWithPath:[NSString stringWithUTF8String:path] isDirectory:false]; + [referenceObject exportObjectToURL:url previewImage:nil error:&error]; + + if (error) + NSLog(@"%@", error); + + return (error == nil); + } + else + { + // Fallback on earlier versions + return false; + } +} + +bool referenceObject_Save(const void* referenceObjectPtr, const char* path) +{ + if (referenceObjectPtr == nullptr || path == nullptr || !referenceObject_GetSupported()) + return false; + + if (@available(iOS 12.0, *)) + { + ARReferenceObject* referenceObject = (__bridge ARReferenceObject*)referenceObjectPtr; + NSError* writeError = nil; + NSURL* url = [[NSURL alloc] initFileURLWithPath:[NSString stringWithUTF8String:path] isDirectory:false]; + NSData *data = [NSKeyedArchiver archivedDataWithRootObject:referenceObject]; + [data writeToURL:url options:(NSDataWritingAtomic) error:&writeError]; + + if (writeError) + NSLog(@"%@", writeError); + + return (writeError == nil); + } + else + { + // Fallback on earlier versions + return false; + } +} + +void* referenceObject_Load(const char* path) +{ + if (!referenceObject_GetSupported()) + return nullptr; + + if (@available(iOS 12.0, *)) + { + NSError* error = nil; + NSURL* url = [[NSURL alloc] initFileURLWithPath:[NSString stringWithUTF8String:path] isDirectory:false]; + NSData *rodata = [NSData dataWithContentsOfURL:url options:NSDataReadingMappedAlways error:&error]; + + if (error) + NSLog(@"%@", error); + + ARReferenceObject* referenceObject = [NSKeyedUnarchiver unarchiveObjectWithData:rodata]; + + return (__bridge_retained void*)referenceObject; + } + else + { + // Fallback on earlier versions + return nullptr; + } +} + +void* referenceObject_InitWithArchiveUrl(const char* path) +{ + if (!referenceObject_GetSupported()) + return nullptr; + + if (@available(iOS 12.0, *)) + { + NSError* error = nil; + NSURL* url = [[NSURL alloc] initFileURLWithPath:[NSString stringWithUTF8String:path] isDirectory:false]; + + ARReferenceObject* referenceObject = [[ARReferenceObject alloc] initWithArchiveURL:url error:&error]; + + if (error) + NSLog(@"%@", error); + + return (__bridge_retained void*)referenceObject; + } + else + { + // Fallback on earlier versions + return nullptr; + } +} + +long referenceObject_SerializedLength(const void* referenceObjectPtr) +{ + if (@available(iOS 12.0, *)) + { + ARReferenceObject* referenceObject = (__bridge ARReferenceObject*)referenceObjectPtr; + NSData *data = [NSKeyedArchiver archivedDataWithRootObject:referenceObject]; + return data.length; + } + else + { + // Fallback on earlier versions + return 0; + } +} + +void referenceObject_SerializeToByteArray(const void* referenceObjectPtr, void* pinnedArray) +{ + if (@available(iOS 12.0, *)) + { + ARReferenceObject* referenceObject = (__bridge ARReferenceObject*)referenceObjectPtr; + NSData *data = [NSKeyedArchiver archivedDataWithRootObject:referenceObject]; + memcpy(pinnedArray, data.bytes, data.length); + } +} + +void* referenceObject_SerializeFromByteArray(const void* pinnedArray, long lengthBytes) +{ + + if (@available(iOS 12.0, *)) + { + NSData *rodata = [NSData dataWithBytes:pinnedArray length:lengthBytes]; + ARReferenceObject* referenceObject = [NSKeyedUnarchiver unarchiveObjectWithData:rodata]; + return (__bridge_retained void*)referenceObject; + } + else + { + // Fallback on earlier versions + return nullptr; + } + +} + +UnityARVector3 referenceObject_GetCenter(const void* ptr) +{ + if (ptr == nullptr) + return UnityARVector3{0, 0, 0}; + + if (@available(iOS 12.0, *)) + { + ARReferenceObject* referenceObject = (__bridge ARReferenceObject*)ptr; + return UnityARVector3 + { + referenceObject.center.x, + referenceObject.center.y, + referenceObject.center.z + }; + } + else + { + // Fallback on earlier versions + return UnityARVector3{0, 0, 0}; + } +} + +UnityARVector3 referenceObject_GetExtent(const void* ptr) +{ + if (ptr == nullptr) + return UnityARVector3{0, 0, 0}; + + if (@available(iOS 12.0, *)) + { + ARReferenceObject* referenceObject = (__bridge ARReferenceObject*)ptr; + return UnityARVector3 + { + referenceObject.extent.x, + referenceObject.extent.y, + referenceObject.extent.z + }; + } + else + { + // Fallback on earlier versions + return UnityARVector3{0, 0, 0}; + } +} + +void referenceObject_SetName(void* ptr, const char* name) +{ + if (ptr == nullptr) + return; + + if (@available(iOS 12.0, *)) + { + ARReferenceObject* referenceObject = (__bridge ARReferenceObject*)ptr; + referenceObject.name = [[NSString alloc] initWithUTF8String:name]; + } +} + +const char* referenceObject_GetName(void* ptr) +{ + if (ptr == nullptr) + return nullptr; + + if (@available(iOS 12.0, *)) + { + ARReferenceObject* referenceObject = (__bridge ARReferenceObject*)ptr; + const char* nameAsCStr = [referenceObject.name UTF8String]; + // Make a copy because IL2CPP is going to try to free what we return + const size_t length = strlen(nameAsCStr); + char* retVal = (char*)malloc(length + 1); + strcpy(retVal, nameAsCStr); + + return retVal; + } + else + { + // Fallback on earlier versions + return nullptr; + } +} + +void* referenceObject_GetPointCloud(const void* referenceObjectPtr) +{ + if (referenceObjectPtr == nullptr || !UnityAreFeaturesSupported(kUnityARKitSupportedFeaturesReferenceObject)) + return nullptr; + + if (@available(iOS 12.0, *)) + { + ARReferenceObject* referenceObject = (__bridge ARReferenceObject*)referenceObjectPtr; + ARPointCloud *pointCloud = [referenceObject rawFeaturePoints]; + + return (__bridge_retained void*)pointCloud; + } + else + { + // Fallback on earlier versions + return nullptr; + } + +} + +void* referenceObjectsSet_Create() +{ + if (@available(iOS 12.0, *)) + { + NSMutableSet *referenceObjectsSet = [[NSMutableSet alloc] init]; + return (__bridge_retained void*) referenceObjectsSet; + } + else + { + // Fallback on earlier versions + return nullptr; + } +} + +void referenceObjectsSet_AddReferenceObject(void* roSet, void* referenceObject) +{ + if (@available(iOS 12.0, *)) + { + NSMutableSet *referenceObjectsSet = (__bridge NSMutableSet *)roSet; + ARReferenceObject* refObject = (__bridge ARReferenceObject*)referenceObject; + [referenceObjectsSet addObject:refObject]; + } +} + +#ifdef __cplusplus +} +#endif diff --git a/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARKitNativeObjectDetection.mm.meta b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARKitNativeObjectDetection.mm.meta new file mode 100644 index 000000000..642a2cb2d --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARKitNativeObjectDetection.mm.meta @@ -0,0 +1,36 @@ +fileFormatVersion: 2 +guid: 67437c6ef9878443fad06dce00c3ee2d +timeCreated: 1523480290 +licenseType: Pro +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + isPreloaded: 0 + isOverridable: 0 + platformData: + - first: + Any: + second: + enabled: 0 + settings: {} + - first: + Editor: Editor + second: + enabled: 0 + settings: + DefaultValueInitialized: true + - first: + iPhone: iOS + second: + enabled: 1 + settings: {} + - first: + tvOS: tvOS + second: + enabled: 1 + settings: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARObjectAnchor.cs b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARObjectAnchor.cs new file mode 100644 index 000000000..eb81656ef --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARObjectAnchor.cs @@ -0,0 +1,121 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using System; +using System.Runtime.InteropServices; +using AOT; + + +namespace UnityEngine.XR.iOS +{ + + public struct UnityARObjectAnchorData + { + + public IntPtr ptrIdentifier; + + /** + The transformation matrix that defines the anchor's rotation, translation and scale in world coordinates. + */ + public UnityARMatrix4x4 transform; + + public IntPtr referenceObjectNamePtr; + + public IntPtr referenceObjectPtr; + + }; + + + + public class ARObjectAnchor { + + private UnityARObjectAnchorData objectAnchorData; + + public ARObjectAnchor (UnityARObjectAnchorData uiad) + { + objectAnchorData = uiad; + } + + + public string identifier { get { return Marshal.PtrToStringAuto(objectAnchorData.ptrIdentifier); } } + + public Matrix4x4 transform { + get { + Matrix4x4 matrix = new Matrix4x4 (); + matrix.SetColumn (0, objectAnchorData.transform.column0); + matrix.SetColumn (1, objectAnchorData.transform.column1); + matrix.SetColumn (2, objectAnchorData.transform.column2); + matrix.SetColumn (3, objectAnchorData.transform.column3); + return matrix; + } + } + + public string referenceObjectName { get { return Marshal.PtrToStringAuto(objectAnchorData.referenceObjectNamePtr); } } + + public IntPtr referenceObjectPtr { get { return objectAnchorData.referenceObjectPtr; } } + } + + public partial class UnityARSessionNativeInterface + { + // Object Anchors + public delegate void ARObjectAnchorAdded(ARObjectAnchor anchorData); + public static event ARObjectAnchorAdded ARObjectAnchorAddedEvent; + + public delegate void ARObjectAnchorUpdated(ARObjectAnchor anchorData); + public static event ARObjectAnchorUpdated ARObjectAnchorUpdatedEvent; + + public delegate void ARObjectAnchorRemoved(ARObjectAnchor anchorData); + public static event ARObjectAnchorRemoved ARObjectAnchorRemovedEvent; + + + delegate void internal_ARObjectAnchorAdded(UnityARObjectAnchorData anchorData); + delegate void internal_ARObjectAnchorUpdated(UnityARObjectAnchorData anchorData); + delegate void internal_ARObjectAnchorRemoved(UnityARObjectAnchorData anchorData); + + #if !UNITY_EDITOR && UNITY_IOS + + #region Object Anchors + [MonoPInvokeCallback(typeof(internal_ARObjectAnchorAdded))] + static void _object_anchor_added(UnityARObjectAnchorData anchor) + { + if (ARObjectAnchorAddedEvent != null) + { + ARObjectAnchor arObjectAnchor = new ARObjectAnchor(anchor); + ARObjectAnchorAddedEvent(arObjectAnchor); + } + } + + [MonoPInvokeCallback(typeof(internal_ARObjectAnchorUpdated))] + static void _object_anchor_updated(UnityARObjectAnchorData anchor) + { + if (ARObjectAnchorUpdatedEvent != null) + { + ARObjectAnchor arObjectAnchor = new ARObjectAnchor(anchor); + ARObjectAnchorUpdatedEvent(arObjectAnchor); + } + } + + [MonoPInvokeCallback(typeof(internal_ARObjectAnchorRemoved))] + static void _object_anchor_removed(UnityARObjectAnchorData anchor) + { + if (ARObjectAnchorRemovedEvent != null) + { + ARObjectAnchor arObjectAnchor = new ARObjectAnchor(anchor); + ARObjectAnchorRemovedEvent(arObjectAnchor); + } + } + #endregion + + [DllImport("__Internal")] + private static extern void session_SetObjectAnchorCallbacks(IntPtr nativeSession, internal_ARObjectAnchorAdded objectAnchorAddedCallback, + internal_ARObjectAnchorUpdated objectAnchorUpdatedCallback, + internal_ARObjectAnchorRemoved objectAnchorRemovedCallback); + + #endif //!UNITY_EDITOR && UNITY_IOS + + + + + } + +} diff --git a/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARObjectAnchor.cs.meta b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARObjectAnchor.cs.meta new file mode 100644 index 000000000..328677e26 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARObjectAnchor.cs.meta @@ -0,0 +1,13 @@ +fileFormatVersion: 2 +guid: 20970700c094d433b93c5c92fca49947 +timeCreated: 1523482805 +licenseType: Pro +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARPlaneAnchor.cs b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARPlaneAnchor.cs index 5e7531ce4..3ead891d1 100644 --- a/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARPlaneAnchor.cs +++ b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARPlaneAnchor.cs @@ -1,16 +1,30 @@ using System; +using System.Runtime.InteropServices; namespace UnityEngine.XR.iOS { - public struct ARPlaneAnchor + + public struct UnityARPlaneGeometry { + public int vertexCount; + public IntPtr vertices; + public int textureCoordinateCount; + public IntPtr textureCoordinates; + public int triangleCount; + public IntPtr triangleIndices; + public int boundaryVertexCount; + public IntPtr boundaryVertices; - public string identifier; + } + + public struct UnityARAnchorData + { + public IntPtr ptrIdentifier; /** The transformation matrix that defines the anchor's rotation, translation and scale in world coordinates. */ - public Matrix4x4 transform; + public UnityARMatrix4x4 transform; /** The alignment of the plane. @@ -18,18 +32,146 @@ The alignment of the plane. public ARPlaneAnchorAlignment alignment; - /** + /** The center of the plane in the anchor’s coordinate space. */ - public Vector3 center; + public Vector4 center; - /** + /** The extent of the plane in the anchor’s coordinate space. */ - public Vector3 extent; + public Vector4 extent; + + /** + The geometry that describes more accurately the surface found. + */ + public UnityARPlaneGeometry planeGeometry; + } + + +#if !UNITY_EDITOR + public class ARPlaneGeometry + { + private UnityARPlaneGeometry uPlaneGeometry; + + public ARPlaneGeometry (UnityARPlaneGeometry upg) + { + uPlaneGeometry = upg; + } + + public int vertexCount { get { return uPlaneGeometry.vertexCount; } } + public int triangleCount { get { return uPlaneGeometry.triangleCount; } } + public int textureCoordinateCount { get { return uPlaneGeometry.textureCoordinateCount; } } + public int boundaryVertexCount { get { return uPlaneGeometry.boundaryVertexCount; } } + + public Vector3 [] vertices { get { return MarshalVertices(uPlaneGeometry.vertices,vertexCount); } } + + public Vector3 [] boundaryVertices { get { return MarshalVertices(uPlaneGeometry.boundaryVertices,boundaryVertexCount); } } + + public Vector2 [] textureCoordinates { get { return MarshalTexCoords(uPlaneGeometry.textureCoordinates, textureCoordinateCount); } } + + public int [] triangleIndices { get { return MarshalIndices(uPlaneGeometry.triangleIndices, triangleCount); } } + + Vector3 [] MarshalVertices(IntPtr ptrFloatArray, int vertCount) + { + int numFloats = vertCount * 4; + float [] workVerts = new float[numFloats]; + Marshal.Copy (ptrFloatArray, workVerts, 0, (int)(numFloats)); + + Vector3[] verts = new Vector3[vertCount]; + + for (int count = 0; count < numFloats; count++) + { + verts [count / 4].x = workVerts[count++]; + verts [count / 4].y = workVerts[count++]; + verts [count / 4].z = -workVerts[count++]; + } + + return verts; + } + + int [] MarshalIndices(IntPtr ptrIndices, int triCount) + { + int numIndices = triCount * 3; + short [] workIndices = new short[numIndices]; //since ARKit returns Int16 + Marshal.Copy (ptrIndices, workIndices, 0, numIndices); + + int[] triIndices = new int[numIndices]; + for (int count = 0; count < numIndices; count+=3) { + //reverse winding order + triIndices [count] = workIndices [count]; + triIndices [count + 1] = workIndices [count + 2]; + triIndices [count + 2] = workIndices [count + 1]; + } + + return triIndices; + } + + Vector2 [] MarshalTexCoords(IntPtr ptrTexCoords, int texCoordCount) + { + int numFloats = texCoordCount * 2; + float [] workTexCoords = new float[numFloats]; + Marshal.Copy (ptrTexCoords, workTexCoords, 0, (int)(numFloats)); + + Vector2[] texCoords = new Vector2[texCoordCount]; + + for (int count = 0; count < numFloats; count++) + { + texCoords [count / 2].x = workTexCoords[count++]; + texCoords [count / 2].y = workTexCoords[count]; + } + + return texCoords; + + } + } + + public class ARPlaneAnchor + { + private UnityARAnchorData planeAnchorData; + + public string identifierStr { get; } + public string identifier { get { return identifierStr; } } + + public ARPlaneAnchor (UnityARAnchorData ufad) + { + planeAnchorData = ufad; + identifierStr = Marshal.PtrToStringAuto(planeAnchorData.ptrIdentifier); + } + + public Matrix4x4 transform { + get { + Matrix4x4 matrix = new Matrix4x4 (); + matrix.SetColumn (0, planeAnchorData.transform.column0); + matrix.SetColumn (1, planeAnchorData.transform.column1); + matrix.SetColumn (2, planeAnchorData.transform.column2); + matrix.SetColumn (3, planeAnchorData.transform.column3); + return matrix; + } + } + + public ARPlaneAnchorAlignment alignment { + get { + return planeAnchorData.alignment; + } + } + + public Vector3 extent { + get { + return new Vector3 (planeAnchorData.extent.x, planeAnchorData.extent.y, planeAnchorData.extent.z); + } + } + + public Vector3 center { + get { + return new Vector3 (planeAnchorData.center.x, planeAnchorData.center.y, planeAnchorData.center.z); + } + } + public ARPlaneGeometry planeGeometry { get { return new ARPlaneGeometry (planeAnchorData.planeGeometry); } } } +#endif } diff --git a/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARPlaneAnchorAlignment.cs b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARPlaneAnchorAlignment.cs index d2961748d..ab56c1b0d 100644 --- a/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARPlaneAnchorAlignment.cs +++ b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARPlaneAnchorAlignment.cs @@ -5,7 +5,10 @@ namespace UnityEngine.XR.iOS public enum ARPlaneAnchorAlignment : long { /** A plane that is horizontal with respect to gravity. */ - ARPlaneAnchorAlignmentHorizontal + ARPlaneAnchorAlignmentHorizontal, + + /** A plane that is parallel with respect to gravity. */ + ARPlaneAnchorAlignmentVertical } } diff --git a/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARPointCloud.cs b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARPointCloud.cs new file mode 100644 index 000000000..6d1cd0dcf --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARPointCloud.cs @@ -0,0 +1,187 @@ +using System; +using System.Runtime.InteropServices; +using UnityEngine.XR.iOS.Utils; + + +namespace UnityEngine.XR.iOS +{ + public class ARPointCloud + { + IntPtr m_Ptr; + Vector3[] m_Positions; + UInt64[] m_Identifiers; + + internal IntPtr nativePtr { get { return m_Ptr; } } + + public int Count + { + get { return GetCount(); } + } + + public Vector3[] Points + { + get { return GetPoints(); } + } + + public UInt64[] Identifiers + { + get { return GetIdentifiers(); } + } + + internal static ARPointCloud FromPtr(IntPtr ptr) + { + if (ptr == IntPtr.Zero) + return null; + + return new ARPointCloud(ptr); + } + + internal ARPointCloud(IntPtr ptr) + { + if (ptr == IntPtr.Zero) + throw new ArgumentException("ptr may not be IntPtr.Zero"); + + m_Ptr = ptr; + GetPoints(); + GetIdentifiers(); + } +#if !UNITY_EDITOR && UNITY_IOS + [DllImport("__Internal")] + static extern int pointCloud_GetCount(IntPtr ptr); + + [DllImport("__Internal")] + static extern IntPtr pointCloud_GetPointsPtr(IntPtr ptr); + + [DllImport("__Internal")] + static extern IntPtr pointCloud_GetIdentifiersPtr(IntPtr ptr); + + int GetCount() + { + if (m_Positions != null) + { + return m_Positions.Length; + } + + return pointCloud_GetCount(m_Ptr); + } + + Vector3[] GetPoints() + { + if (m_Positions != null) + { + return m_Positions; + } + + IntPtr pointsPtr = pointCloud_GetPointsPtr (m_Ptr); + int pointCount = Count; + if (pointCount <= 0 || pointsPtr == IntPtr.Zero) + { + return null; + } + + // Load the results into a managed array. + var floatCount = pointCount * 4; + float [] resultVertices = new float[floatCount]; + Marshal.Copy(pointsPtr, resultVertices, 0, floatCount); + + m_Positions = new Vector3[pointCount]; + + for (int count = 0; count < pointCount; count++) + { + //convert to Unity coords system + m_Positions[count].x = resultVertices[count * 4]; + m_Positions[count].y = resultVertices[count * 4 + 1]; + m_Positions[count].z = -resultVertices[count * 4 + 2]; + } + + return m_Positions; + } + + UInt64[] GetIdentifiers() + { + if (m_Identifiers != null) + { + return m_Identifiers; + } + + IntPtr identifiersPtr = pointCloud_GetIdentifiersPtr(m_Ptr); + int identifiersCount = Count; + if (identifiersCount <= 0 || identifiersPtr == IntPtr.Zero) + { + return null; + } + + // Load the results into a managed array. + Int64 [] copyIdentifiers = new Int64[identifiersCount]; + Marshal.Copy(identifiersPtr, copyIdentifiers, 0, identifiersCount); + + m_Identifiers = new UInt64[identifiersCount]; + int index = 0; + foreach (Int64 identifier in copyIdentifiers) + { + //convert to UInt64 + m_Identifiers[index++] = (UInt64) identifier; + } + + return m_Identifiers; + } +#else + + internal ARPointCloud(serializablePointCloud spc) + { + if (spc.pointCloudData != null) + { + int numVectors = spc.pointCloudData.Length / (3 * sizeof(float)); + m_Positions = new Vector3[numVectors]; + for (int i = 0; i < numVectors; i++) + { + int bufferStart = i * 3; + m_Positions[i].x = BitConverter.ToSingle (spc.pointCloudData, (bufferStart) * sizeof(float)); + m_Positions[i].y = BitConverter.ToSingle (spc.pointCloudData, (bufferStart+1) * sizeof(float)); + m_Positions[i].z = BitConverter.ToSingle (spc.pointCloudData, (bufferStart+2) * sizeof(float)); + } + } + else + { + m_Positions = null; + } + + if (spc.pointCloudIds != null) + { + int numIds = spc.pointCloudIds.Length / sizeof(UInt64); + m_Identifiers = new ulong[numIds]; + for (int i = 0; i < numIds; i++) + { + m_Identifiers[i] = BitConverter.ToUInt64(spc.pointCloudIds, i * sizeof(UInt64)); + } + } + else + { + m_Identifiers = null; + } + } + + int GetCount() + { + if (m_Positions == null) + { + return 0; + } + + return m_Positions.Length; + } + + Vector3[] GetPoints() + { + return m_Positions; + } + + UInt64[] GetIdentifiers() + { + return m_Identifiers; + } +#endif + + + } +} \ No newline at end of file diff --git a/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARPointCloud.cs.meta b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARPointCloud.cs.meta new file mode 100644 index 000000000..fd8f061bf --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARPointCloud.cs.meta @@ -0,0 +1,13 @@ +fileFormatVersion: 2 +guid: 918654fc7d79746f8804ff2732ba5f5d +timeCreated: 1523909207 +licenseType: Pro +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARPointCloud.mm b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARPointCloud.mm new file mode 100644 index 000000000..693b7f357 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARPointCloud.mm @@ -0,0 +1,59 @@ +// Unity Technologies Inc (c) 2018 +// ARPointCloud.mm +// Main implementation of ARKit plugin's ARPointCloud + +#include "ARKitDefines.h" + +#ifdef __cplusplus +extern "C" { +#endif + +int pointCloud_GetCount(const void* pointCloudPtr) +{ + if (pointCloudPtr == nullptr) + return 0; + + ARPointCloud* pointCloud = (__bridge ARPointCloud*)pointCloudPtr; + + return [pointCloud count]; +} + +void* pointCloud_GetPointsPtr(const void* pointCloudPtr) +{ + if (pointCloudPtr == nullptr) + { + return 0; + } + + if (@available(iOS 11.0, *)) + { + ARPointCloud* pointCloud = (__bridge ARPointCloud*)pointCloudPtr; + if (![pointCloud isKindOfClass:[ARPointCloud class]]) + { + return 0; + } + const vector_float3 *pointsPtr = [pointCloud points]; + return (void*) pointsPtr; + } + else + { + // Fallback on earlier versions + return 0; + } +} + +void* pointCloud_GetIdentifiersPtr(const void* pointCloudPtr) +{ + if (pointCloudPtr == nullptr) + return 0; + + ARPointCloud* pointCloud = (__bridge ARPointCloud*)pointCloudPtr; + + const UInt64 *identifiersPtr = [pointCloud identifiers]; + + return (void*) identifiersPtr; +} +#ifdef __cplusplus +} +#endif + diff --git a/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARPointCloud.mm.meta b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARPointCloud.mm.meta new file mode 100644 index 000000000..26930cde7 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARPointCloud.mm.meta @@ -0,0 +1,36 @@ +fileFormatVersion: 2 +guid: b2ebc344d4f0c4c7a9c449e01d9e8e2f +timeCreated: 1523567805 +licenseType: Pro +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + isPreloaded: 0 + isOverridable: 0 + platformData: + - first: + Any: + second: + enabled: 0 + settings: {} + - first: + Editor: Editor + second: + enabled: 0 + settings: + DefaultValueInitialized: true + - first: + iPhone: iOS + second: + enabled: 1 + settings: {} + - first: + tvOS: tvOS + second: + enabled: 1 + settings: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARReferenceObject.cs b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARReferenceObject.cs new file mode 100644 index 000000000..14d97c378 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARReferenceObject.cs @@ -0,0 +1,256 @@ +using System.Runtime.InteropServices; +using System; +using System.Collections.Generic; + +namespace UnityEngine.XR.iOS +{ + public class ARReferenceObject + { + IntPtr m_Ptr; + + internal IntPtr nativePtr { get { return m_Ptr; } } + + public bool Save(string path) + { + return referenceObject_ExportObjectToURL(m_Ptr, path); + } + + public static ARReferenceObject Load(string path) + { + var ptr = referenceObject_InitWithArchiveUrl(path); + if (ptr == IntPtr.Zero) + return null; + + return new ARReferenceObject(ptr); + } + + public static ARReferenceObject SerializeFromByteArray(byte[] mapByteArray) + { + long lengthBytes = mapByteArray.LongLength; + GCHandle handle = GCHandle.Alloc (mapByteArray, GCHandleType.Pinned); + IntPtr newMapPtr = referenceObject_SerializeFromByteArray(handle.AddrOfPinnedObject(), lengthBytes); + handle.Free (); + return new ARReferenceObject (newMapPtr); + } + + public byte [] SerializeToByteArray() + { + byte[] referenceObjectByteArray = new byte[referenceObject_SerializedLength(m_Ptr)]; + GCHandle handle = GCHandle.Alloc (referenceObjectByteArray, GCHandleType.Pinned); + referenceObject_SerializeToByteArray(m_Ptr,handle.AddrOfPinnedObject()); + handle.Free (); + return referenceObjectByteArray; + } + + public Vector3 center + { + get { return UnityARMatrixOps.GetPosition(referenceObject_GetCenter(m_Ptr)); } + } + + public Vector3 extent + { + get { return referenceObject_GetExtent(m_Ptr); } + } + + public string name + { + get { return referenceObject_GetName(m_Ptr); } + set { referenceObject_SetName(m_Ptr, value); } + } + + public ARPointCloud pointCloud + { + get + { + return ARPointCloud.FromPtr (referenceObject_GetPointCloud (m_Ptr)); + } + } + + internal static ARReferenceObject FromPtr(IntPtr ptr) + { + if (ptr == IntPtr.Zero) + return null; + + return new ARReferenceObject(ptr); + } + + internal ARReferenceObject(IntPtr ptr) + { + if (ptr == IntPtr.Zero) + throw new ArgumentException("ptr may not be IntPtr.Zero"); + + m_Ptr = ptr; + } + +#if !UNITY_EDITOR && UNITY_IOS + [DllImport("__Internal")] + static extern bool referenceObject_ExportObjectToURL(IntPtr ptr, string path); + + [DllImport("__Internal")] + static extern IntPtr referenceObject_InitWithArchiveUrl(string path); + + [DllImport("__Internal")] + static extern bool referenceObject_Save(IntPtr referenceObjectPtr, string path); + + [DllImport("__Internal")] + static extern IntPtr referenceObject_Load(string path); + + [DllImport("__Internal")] + static extern Vector3 referenceObject_GetCenter(IntPtr ptr); + + [DllImport("__Internal")] + static extern Vector3 referenceObject_GetExtent(IntPtr ptr); + + [DllImport("__Internal")] + static extern string referenceObject_GetName(IntPtr ptr); + + [DllImport("__Internal")] + static extern void referenceObject_SetName(IntPtr ptr, string name); + + [DllImport("__Internal")] + static extern IntPtr referenceObject_GetPointCloud(IntPtr ptr); + + [DllImport("__Internal")] + static extern long referenceObject_SerializedLength(IntPtr worldMapPtr); + + [DllImport("__Internal")] + static extern void referenceObject_SerializeToByteArray(IntPtr worldMapPtr, IntPtr serByteArray); + + [DllImport("__Internal")] + static extern IntPtr referenceObject_SerializeFromByteArray(IntPtr serByteArray, long lengthBytes); + +#else + static bool referenceObject_ExportObjectToURL(IntPtr ptr, string path) { return false; } + static bool referenceObject_Save(IntPtr referenceObjectPtr, string path) { return false; } + static IntPtr referenceObject_Load(string path) { return IntPtr.Zero; } + static IntPtr referenceObject_InitWithArchiveUrl(string path) { return IntPtr.Zero; } + static Vector3 referenceObject_GetCenter(IntPtr ptr) { return Vector3.zero; } + static Vector3 referenceObject_GetExtent(IntPtr ptr) { return Vector3.zero; } + static string referenceObject_GetName(IntPtr ptr) { return ""; } + static void referenceObject_SetName(IntPtr ptr, string name) {} + static IntPtr referenceObject_GetPointCloud(IntPtr ptr) { return IntPtr.Zero; } + static long referenceObject_SerializedLength(IntPtr worldMapPtr) { return 0; } + static void referenceObject_SerializeToByteArray(IntPtr worldMapPtr, IntPtr serByteArray) { } + static IntPtr referenceObject_SerializeFromByteArray(IntPtr serByteArray, long lengthBytes) { return IntPtr.Zero; } +#endif + } + + + + public struct ARKitObjectScanningSessionConfiguration + { + public UnityARAlignment alignment; + public UnityARPlaneDetection planeDetection; + public bool getPointCloudData; + public bool enableLightEstimation; + public bool enableAutoFocus; + public bool IsSupported { get { return IsARKitObjectScanningConfigurationSupported(); } private set { } } + + public ARKitObjectScanningSessionConfiguration(UnityARAlignment alignment = UnityARAlignment.UnityARAlignmentGravity, + UnityARPlaneDetection planeDetection = UnityARPlaneDetection.None, bool getPointCloudData = false, + bool enableLightEstimation = false, bool enableAutoFocus = false) + { + this.alignment = alignment; + this.planeDetection = planeDetection; + this.getPointCloudData = getPointCloudData; + this.enableLightEstimation = enableLightEstimation; + this.enableAutoFocus = enableAutoFocus; + } + + #if UNITY_EDITOR || !UNITY_IOS + private bool IsARKitObjectScanningConfigurationSupported() + { + return true; + } + #else + [DllImport("__Internal")] + private static extern bool IsARKitObjectScanningConfigurationSupported(); + #endif + + } + +/// +/// Unity AR session native interface. +/// + + public partial class UnityARSessionNativeInterface + { + public void RunWithConfigAndOptions(ARKitObjectScanningSessionConfiguration config, UnityARSessionRunOption runOptions) + { + #if !UNITY_EDITOR && UNITY_IOS + StartObjectScanningSessionWithOptions (m_NativeARSession, config, runOptions); + #endif + } + + public void RunWithConfig(ARKitObjectScanningSessionConfiguration config) + { + RunWithConfigAndOptions (config, 0); + } + + public IntPtr CreateNativeReferenceObjectsSet(List refObjects) + { + if (IsARKit_2_0_Supported() == false) return IntPtr.Zero; + + IntPtr refObjectsSet = referenceObjectsSet_Create (); + foreach (ARReferenceObject arro in refObjects) + { + referenceObjectsSet_AddReferenceObject (refObjectsSet, arro.nativePtr); + } + return refObjectsSet; + } + +#if !UNITY_EDITOR && UNITY_IOS + [DllImport("__Internal")] + private static extern void StartObjectScanningSessionWithOptions(IntPtr nativeSession, ARKitObjectScanningSessionConfiguration configuration, UnityARSessionRunOption runOptions); + + [DllImport("__Internal")] + static extern IntPtr referenceObjectsSet_Create(); + + [DllImport("__Internal")] + static extern void referenceObjectsSet_AddReferenceObject(IntPtr roSet, IntPtr referenceObject); +#else + static IntPtr referenceObjectsSet_Create() { return IntPtr.Zero; } + static void referenceObjectsSet_AddReferenceObject(IntPtr roSet, IntPtr referenceObject) {} +#endif + } + + [Serializable] + public class serializableARReferenceObject + { + byte [] arReferenceObjectData; + + public serializableARReferenceObject(byte [] inputObjectData) + { + arReferenceObjectData = inputObjectData; + } + + public static implicit operator serializableARReferenceObject(ARReferenceObject arReferenceObject) + { + if (arReferenceObject != null) + { + return new serializableARReferenceObject (arReferenceObject.SerializeToByteArray ()); + + } + else + { + return new serializableARReferenceObject (null); + } + } + + public static implicit operator ARReferenceObject(serializableARReferenceObject serReferenceObject) + { + if (serReferenceObject != null) + { + return ARReferenceObject.SerializeFromByteArray (serReferenceObject.arReferenceObjectData); + } + else + { + return null; + } + } + + } + + + +} diff --git a/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARReferenceObject.cs.meta b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARReferenceObject.cs.meta new file mode 100644 index 000000000..3fd85c5fe --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARReferenceObject.cs.meta @@ -0,0 +1,13 @@ +fileFormatVersion: 2 +guid: dff1e0a9aa6954cb1b2200e58010f164 +timeCreated: 1523905774 +licenseType: Pro +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARSessionNative.mm b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARSessionNative.mm index c57208f55..98e936d60 100644 --- a/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARSessionNative.mm +++ b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARSessionNative.mm @@ -1,223 +1,26 @@ -#import +// Unity Technologies Inc (c) 2017 +// ARSessionNative.mm +// Main implementation of ARKit plugin native parts + #import #include "stdlib.h" #include "UnityAppController.h" - - -typedef struct -{ - float x,y,z,w; -} UnityARVector4; - -typedef struct -{ - UnityARVector4 column0; - UnityARVector4 column1; - UnityARVector4 column2; - UnityARVector4 column3; -} UnityARMatrix4x4; - -enum UnityARAlignment -{ - UnityARAlignmentGravity, - UnityARAlignmentGravityAndHeading, - UnityARAlignmentCamera -}; - -enum UnityARPlaneDetection -{ - UnityARPlaneDetectionNone = 0, - UnityARPlaneDetectionHorizontal = (1 << 0), - UnityARPlaneDetectionVertical = (1 << 1) -}; - - -typedef struct -{ - UnityARAlignment alignment; - uint32_t getPointCloudData; - uint32_t enableLightEstimation; - -} ARKitSessionConfiguration; - -typedef struct -{ - UnityARAlignment alignment; - UnityARPlaneDetection planeDetection; - uint32_t getPointCloudData; - uint32_t enableLightEstimation; - -} ARKitWorldTrackingSessionConfiguration; - -typedef struct -{ - UnityARAlignment alignment; - uint32_t enableLightEstimation; - -} ARKitFaceTrackingConfiguration; - -enum UnityARSessionRunOptions -{ - UnityARSessionRunOptionsNone = 0, - UnityARSessionRunOptionResetTracking = (1 << 0), - UnityARSessionRunOptionRemoveExistingAnchors = (1 << 1) - -}; - -typedef struct -{ - void* identifier; - UnityARMatrix4x4 transform; - ARPlaneAnchorAlignment alignment; - UnityARVector4 center; - UnityARVector4 extent; -} UnityARAnchorData; - -typedef struct -{ - void* identifier; - UnityARMatrix4x4 transform; -} UnityARUserAnchorData; - -typedef struct -{ - NSUInteger vertexCount; - float *vertices; - NSUInteger textureCoordinateCount; - float *textureCoordinates; - NSUInteger triangleCount; - int *triangleIndices; -} UnityARFaceGeometry; - -typedef struct -{ - void *identifier; - UnityARMatrix4x4 transform; - UnityARFaceGeometry faceGeometry; - void *blendShapes; //NSDictionary * -} UnityARFaceAnchorData; - - -enum UnityARTrackingState -{ - UnityARTrackingStateNotAvailable, - UnityARTrackingStateLimited, - UnityARTrackingStateNormal, -}; - -enum UnityARTrackingReason -{ - UnityARTrackingStateReasonNone, - UnityARTrackingStateReasonInitializing, - UnityARTrackingStateReasonExcessiveMotion, - UnityARTrackingStateReasonInsufficientFeatures, -}; - -typedef struct -{ - uint32_t yWidth; - uint32_t yHeight; - uint32_t screenOrientation; - float texCoordScale; - void* cvPixelBufferPtr; -}UnityVideoParams; - -typedef struct -{ - float ambientIntensity; - float ambientColorTemperature; -}UnityARLightEstimation; - -typedef struct -{ - UnityARVector4 primaryLightDirectionAndIntensity; - float *sphericalHarmonicsCoefficients; -}UnityARDirectionalLightEstimate; - -enum UnityLightDataType -{ - LightEstimate, - DirectionalLightEstimate -}; - -typedef struct -{ - UnityLightDataType arLightingType; - UnityARLightEstimation arLightEstimate; - UnityARDirectionalLightEstimate arDirectionalLightEstimate; -}UnityLightData; - -typedef struct -{ - UnityARMatrix4x4 worldTransform; - UnityARMatrix4x4 projectionMatrix; - UnityARTrackingState trackingState; - UnityARTrackingReason trackingReason; - UnityVideoParams videoParams; - UnityLightData lightData; - UnityARMatrix4x4 displayTransform; - uint32_t getPointCloudData; -} UnityARCamera; - -typedef struct -{ - vector_float3* pointCloud; - NSUInteger pointCloudSize; -} UnityARPointCloudData; - -typedef struct -{ - void* pYPixelBytes; - void* pUVPixelBytes; - BOOL bEnable; -}UnityPixelBuffer; - - - -typedef void (*UNITY_AR_FRAME_CALLBACK)(UnityARCamera camera); -typedef void (*UNITY_AR_ANCHOR_CALLBACK)(UnityARAnchorData anchorData); -typedef void (*UNITY_AR_USER_ANCHOR_CALLBACK)(UnityARUserAnchorData anchorData); -typedef void (*UNITY_AR_FACE_ANCHOR_CALLBACK)(UnityARFaceAnchorData anchorData); -typedef void (*UNITY_AR_SESSION_FAILED_CALLBACK)(const void* error); -typedef void (*UNITY_AR_SESSION_VOID_CALLBACK)(void); -typedef void (*UNITY_AR_SESSION_TRACKING_CHANGED)(UnityARCamera camera); +#include "ARKitDefines.h" // These don't all need to be static data, but no other better place for them at the moment. -static id s_CapturedImageTextureY; -static id s_CapturedImageTextureCbCr; +static id s_CapturedImageTextureY = NULL; +static id s_CapturedImageTextureCbCr = NULL; static UnityARMatrix4x4 s_CameraProjectionMatrix; static float s_AmbientIntensity; static int s_TrackingQuality; static float s_ShaderScale; -static const vector_float3* s_PointCloud; -static NSUInteger s_PointCloudSize; static float unityCameraNearZ; static float unityCameraFarZ; -static inline ARWorldAlignment GetARWorldAlignmentFromUnityARAlignment(UnityARAlignment& unityAlignment) -{ - switch (unityAlignment) - { - case UnityARAlignmentGravity: - return ARWorldAlignmentGravity; - case UnityARAlignmentGravityAndHeading: - return ARWorldAlignmentGravityAndHeading; - case UnityARAlignmentCamera: - return ARWorldAlignmentCamera; - } -} -static inline ARPlaneDetection GetARPlaneDetectionFromUnityARPlaneDetection(UnityARPlaneDetection planeDetection) -{ - ARPlaneDetection ret = ARPlaneDetectionNone; - if ((planeDetection & UnityARPlaneDetectionNone) != 0) - ret |= ARPlaneDetectionNone; - if ((planeDetection & UnityARPlaneDetectionHorizontal) != 0) - ret |= ARPlaneDetectionHorizontal; - return ret; -} + static inline UnityARTrackingState GetUnityARTrackingStateFromARTrackingState(ARTrackingState trackingState) { @@ -246,27 +49,77 @@ static inline UnityARTrackingReason GetUnityARTrackingReasonFromARTrackingReason return UnityARTrackingStateReasonExcessiveMotion; case ARTrackingStateReasonInsufficientFeatures: return UnityARTrackingStateReasonInsufficientFeatures; + case ARTrackingStateReasonRelocalizing: + return UnityARTrackingStateReasonRelocalizing; default: [NSException raise:@"UnrecognizedARTrackingStateReason" format:@"Unrecognized ARTrackingStateReason: %ld", (long)trackingReason]; break; } } -inline ARSessionRunOptions GetARSessionRunOptionsFromUnityARSessionRunOptions(UnityARSessionRunOptions runOptions) +API_AVAILABLE(ios(12.0)) +static inline UnityARWorldMappingStatus GetUnityARWorldMappingStatusFromARWorldMappingStatus(ARWorldMappingStatus worldMappingStatus) { - ARSessionRunOptions ret = 0; - if ((runOptions & UnityARSessionRunOptionResetTracking) != 0) - ret |= ARSessionRunOptionResetTracking; - if ((runOptions & UnityARSessionRunOptionRemoveExistingAnchors) != 0) - ret |= ARSessionRunOptionRemoveExistingAnchors; - return ret; + switch (worldMappingStatus) { + case ARWorldMappingStatusNotAvailable: + return UnityARWorldMappingStatusNotAvailable; + case ARWorldMappingStatusLimited: + return UnityARWorldMappingStatusLimited; + case ARWorldMappingStatusExtending: + return UnityARWorldMappingStatusExtending; + case ARWorldMappingStatusMapped: + return UnityARWorldMappingStatusMapped; + default: + [NSException raise:@"UnrecognizedARWorldMappingStatus" format:@"Unrecognized ARWorldMappingStatus: %ld", (long)worldMappingStatus]; + break; + } } + +API_AVAILABLE(ios(12.0)) +static inline AREnvironmentTexturing GetAREnvironmentTexturingFromUnityAREnvironmentTexturing(UnityAREnvironmentTexturing& unityEnvTexturing) +{ + switch (unityEnvTexturing) + { + case UnityAREnvironmentTexturingNone: + return AREnvironmentTexturingNone; + case UnityAREnvironmentTexturingManual: + return AREnvironmentTexturingManual; + case UnityAREnvironmentTexturingAutomatic: + return AREnvironmentTexturingAutomatic; + } +} + + + inline void GetARSessionConfigurationFromARKitWorldTrackingSessionConfiguration(ARKitWorldTrackingSessionConfiguration& unityConfig, ARWorldTrackingConfiguration* appleConfig) { appleConfig.planeDetection = GetARPlaneDetectionFromUnityARPlaneDetection(unityConfig.planeDetection); appleConfig.worldAlignment = GetARWorldAlignmentFromUnityARAlignment(unityConfig.alignment); appleConfig.lightEstimationEnabled = (BOOL)unityConfig.enableLightEstimation; + + if (@available(iOS 12.0, *)) + { + appleConfig.maximumNumberOfTrackedImages = unityConfig.maximumNumberOfTrackedImages; + } + + if (@available(iOS 11.3, *)) + { + appleConfig.autoFocusEnabled = (BOOL) unityConfig.enableAutoFocus; + + if (unityConfig.ptrVideoFormat != NULL) + { + appleConfig.videoFormat = (__bridge ARVideoFormat*) unityConfig.ptrVideoFormat; + } + } + + if (UnityIsARKit_2_0_Supported()) + { + if (@available(iOS 12.0, *)) { + appleConfig.initialWorldMap = (__bridge ARWorldMap*)unityConfig.ptrWorldMap; + appleConfig.environmentTexturing = GetAREnvironmentTexturingFromUnityAREnvironmentTexturing(unityConfig.environmentTexturing); + } + } } inline void GetARSessionConfigurationFromARKitSessionConfiguration(ARKitSessionConfiguration& unityConfig, ARConfiguration* appleConfig) @@ -275,41 +128,23 @@ inline void GetARSessionConfigurationFromARKitSessionConfiguration(ARKitSessionC appleConfig.lightEstimationEnabled = (BOOL)unityConfig.enableLightEstimation; } +#if ARKIT_USES_FACETRACKING inline void GetARFaceConfigurationFromARKitFaceConfiguration(ARKitFaceTrackingConfiguration& unityConfig, ARConfiguration* appleConfig) { appleConfig.worldAlignment = GetARWorldAlignmentFromUnityARAlignment(unityConfig.alignment); appleConfig.lightEstimationEnabled = (BOOL)unityConfig.enableLightEstimation; + + if (@available(iOS 11.3, *)) + { + if (unityConfig.ptrVideoFormat != NULL) + { + appleConfig.videoFormat = (__bridge ARVideoFormat*) unityConfig.ptrVideoFormat; + } + } } +#endif -inline void ARKitMatrixToUnityARMatrix4x4(const matrix_float4x4& matrixIn, UnityARMatrix4x4* matrixOut) -{ - vector_float4 c0 = matrixIn.columns[0]; - matrixOut->column0.x = c0.x; - matrixOut->column0.y = c0.y; - matrixOut->column0.z = c0.z; - matrixOut->column0.w = c0.w; - - vector_float4 c1 = matrixIn.columns[1]; - matrixOut->column1.x = c1.x; - matrixOut->column1.y = c1.y; - matrixOut->column1.z = c1.z; - matrixOut->column1.w = c1.w; - - vector_float4 c2 = matrixIn.columns[2]; - matrixOut->column2.x = c2.x; - matrixOut->column2.y = c2.y; - matrixOut->column2.z = c2.z; - matrixOut->column2.w = c2.w; - - vector_float4 c3 = matrixIn.columns[3]; - matrixOut->column3.x = c3.x; - matrixOut->column3.y = c3.y; - matrixOut->column3.z = c3.z; - matrixOut->column3.w = c3.w; -} - - -static inline void GetUnityARCameraDataFromCamera(UnityARCamera& unityARCamera, ARCamera* camera, BOOL getPointCloudData) +static inline void GetUnityARCameraDataFromCamera(UnityARCamera& unityARCamera, ARCamera* camera) { CGSize nativeSize = GetAppController().rootView.bounds.size; matrix_float4x4 projectionMatrix = [camera projectionMatrixForOrientation:[[UIApplication sharedApplication] statusBarOrientation] viewportSize:nativeSize zNear:(CGFloat)unityCameraNearZ zFar:(CGFloat)unityCameraFarZ]; @@ -319,7 +154,20 @@ static inline void GetUnityARCameraDataFromCamera(UnityARCamera& unityARCamera, unityARCamera.trackingState = GetUnityARTrackingStateFromARTrackingState(camera.trackingState); unityARCamera.trackingReason = GetUnityARTrackingReasonFromARTrackingReason(camera.trackingStateReason); - unityARCamera.getPointCloudData = getPointCloudData; +} + +API_AVAILABLE(ios(11.3)) +inline void UnityARPlaneGeometryFromARPlaneGeometry(UnityARPlaneGeometry& planeGeometry, ARPlaneGeometry *arPlaneGeometry) +{ + planeGeometry.vertexCount = arPlaneGeometry.vertexCount; + planeGeometry.triangleCount = arPlaneGeometry.triangleCount; + planeGeometry.textureCoordinateCount = arPlaneGeometry.textureCoordinateCount; + planeGeometry.boundaryVertexCount = arPlaneGeometry.boundaryVertexCount; + planeGeometry.vertices = (float *) arPlaneGeometry.vertices; + planeGeometry.triangleIndices = (int *) arPlaneGeometry.triangleIndices; + planeGeometry.textureCoordinates = (float *) arPlaneGeometry.textureCoordinates; + planeGeometry.boundaryVertices = (float *) arPlaneGeometry.boundaryVertices; + } inline void UnityARAnchorDataFromARAnchorPtr(UnityARAnchorData& anchorData, ARPlaneAnchor* nativeAnchor) @@ -333,6 +181,11 @@ inline void UnityARAnchorDataFromARAnchorPtr(UnityARAnchorData& anchorData, ARPl anchorData.extent.x = nativeAnchor.extent.x; anchorData.extent.y = nativeAnchor.extent.y; anchorData.extent.z = nativeAnchor.extent.z; + + if (@available(iOS 11.3, *)) + { + UnityARPlaneGeometryFromARPlaneGeometry(anchorData.planeGeometry, nativeAnchor.geometry); + } } inline void UnityARMatrix4x4FromCGAffineTransform(UnityARMatrix4x4& outMatrix, CGAffineTransform displayTransform, BOOL isLandscape) @@ -367,6 +220,7 @@ inline void UnityARUserAnchorDataFromARAnchorPtr(UnityARUserAnchorData& anchorDa ARKitMatrixToUnityARMatrix4x4(nativeAnchor.transform, &anchorData.transform); } + #if ARKIT_USES_FACETRACKING inline void UnityARFaceGeometryFromARFaceGeometry(UnityARFaceGeometry& faceGeometry, ARFaceGeometry *arFaceGeometry) { @@ -382,11 +236,29 @@ inline void UnityARFaceAnchorDataFromARFaceAnchorPtr(UnityARFaceAnchorData& anch { anchorData.identifier = (void*)[nativeAnchor.identifier.UUIDString UTF8String]; ARKitMatrixToUnityARMatrix4x4(nativeAnchor.transform, &anchorData.transform); + if (UnityIsARKit_2_0_Supported()) + { + ARKitMatrixToUnityARMatrix4x4(nativeAnchor.leftEyeTransform, &anchorData.leftEyeTransform); + ARKitMatrixToUnityARMatrix4x4(nativeAnchor.rightEyeTransform, &anchorData.rightEyeTransform); + anchorData.lookAtPoint = UnityARVector3{nativeAnchor.lookAtPoint.x, nativeAnchor.lookAtPoint.y, nativeAnchor.lookAtPoint.z}; + } + UnityARFaceGeometryFromARFaceGeometry(anchorData.faceGeometry, nativeAnchor.geometry); anchorData.blendShapes = (__bridge void *) nativeAnchor.blendShapes; + anchorData.isTracked = (uint32_t) nativeAnchor.isTracked; } #endif +API_AVAILABLE(ios(11.3)) +inline void UnityARImageAnchorDataFromARImageAnchorPtr(UnityARImageAnchorData& anchorData, ARImageAnchor* nativeAnchor) +{ + anchorData.identifier = (void*)[nativeAnchor.identifier.UUIDString UTF8String]; + ARKitMatrixToUnityARMatrix4x4(nativeAnchor.transform, &anchorData.transform); + anchorData.referenceImageName = (void*)[nativeAnchor.referenceImage.name UTF8String]; + anchorData.referenceImageSize = nativeAnchor.referenceImage.physicalSize.width; + anchorData.isTracked = [nativeAnchor isTracked] ? 1 : 0; +} + inline void UnityLightDataFromARFrame(UnityLightData& lightData, ARFrame *arFrame) { if (arFrame.lightEstimate != NULL) @@ -418,12 +290,6 @@ inline void UnityLightDataFromARFrame(UnityLightData& lightData, ARFrame *arFram } -@protocol UnityARAnchorEventDispatcher -@required - -(void)sendAnchorAddedEvent:(ARAnchor*)anchor; - -(void)sendAnchorRemovedEvent:(ARAnchor*)anchor; - -(void)sendAnchorUpdatedEvent:(ARAnchor*)anchor; -@end @interface UnityARAnchorCallbackWrapper : NSObject { @@ -533,32 +399,56 @@ -(void)sendAnchorUpdatedEvent:(ARAnchor*)anchor @end -static UnityPixelBuffer s_UnityPixelBuffers; - -@interface UnityARSession : NSObject +@interface UnityARImageAnchorCallbackWrapper : NSObject { @public - ARSession* _session; - UNITY_AR_FRAME_CALLBACK _frameCallback; - UNITY_AR_SESSION_FAILED_CALLBACK _arSessionFailedCallback; - UNITY_AR_SESSION_VOID_CALLBACK _arSessionInterrupted; - UNITY_AR_SESSION_VOID_CALLBACK _arSessionInterruptionEnded; - UNITY_AR_SESSION_TRACKING_CHANGED _arSessionTrackingChanged; - - NSMutableDictionary* _classToCallbackMap; - - id _device; - CVMetalTextureCacheRef _textureCache; - BOOL _getPointCloudData; + UNITY_AR_IMAGE_ANCHOR_CALLBACK _anchorAddedCallback; + UNITY_AR_IMAGE_ANCHOR_CALLBACK _anchorUpdatedCallback; + UNITY_AR_IMAGE_ANCHOR_CALLBACK _anchorRemovedCallback; } @end +@implementation UnityARImageAnchorCallbackWrapper + +-(void)sendAnchorAddedEvent:(ARAnchor*)anchor +{ + UnityARImageAnchorData data; + if (@available(iOS 11.3, *)) { + UnityARImageAnchorDataFromARImageAnchorPtr(data, (ARImageAnchor*)anchor); + } + _anchorAddedCallback(data); +} + +-(void)sendAnchorRemovedEvent:(ARAnchor*)anchor +{ + UnityARImageAnchorData data; + if (@available(iOS 11.3, *)) { + UnityARImageAnchorDataFromARImageAnchorPtr(data, (ARImageAnchor*)anchor); + } + _anchorRemovedCallback(data); +} + +-(void)sendAnchorUpdatedEvent:(ARAnchor*)anchor +{ + UnityARImageAnchorData data; + if (@available(iOS 11.3, *)) { + UnityARImageAnchorDataFromARImageAnchorPtr(data, (ARImageAnchor*)anchor); + } + _anchorUpdatedCallback(data); +} + +@end + +static UnityPixelBuffer s_UnityPixelBuffers; + + @implementation UnityARSession - (id)init { if (self = [super init]) { + _textureCache = NULL; _classToCallbackMap = [[NSMutableDictionary alloc] init]; } return self; @@ -566,14 +456,19 @@ - (id)init - (void)setupMetal { + if (_textureCache != NULL) + { + return; + } _device = MTLCreateSystemDefaultDevice(); CVMetalTextureCacheCreate(NULL, NULL, _device, NULL, &_textureCache); } - (void)teardownMetal { - if (_textureCache) { + if (_textureCache != NULL) { CFRelease(_textureCache); + _textureCache = NULL; } } @@ -583,8 +478,6 @@ - (void)session:(ARSession *)session didUpdateFrame:(ARFrame *)frame { s_AmbientIntensity = frame.lightEstimate.ambientIntensity; s_TrackingQuality = (int)frame.camera.trackingState; - s_PointCloud = frame.rawFeaturePoints.points; - s_PointCloudSize = frame.rawFeaturePoints.count; UIInterfaceOrientation orient = [[UIApplication sharedApplication] statusBarOrientation]; @@ -595,8 +488,16 @@ - (void)session:(ARSession *)session didUpdateFrame:(ARFrame *)frame UnityARCamera unityARCamera; - GetUnityARCameraDataFromCamera(unityARCamera, frame.camera, _getPointCloudData); + GetUnityARCameraDataFromCamera(unityARCamera, frame.camera); + if (_getPointCloudData && frame.rawFeaturePoints != nullptr) + { + unityARCamera.ptrPointCloud = (__bridge_retained void *) frame.rawFeaturePoints; + } + else + { + unityARCamera.ptrPointCloud = nullptr; + } CVPixelBufferRef pixelBuffer = frame.capturedImage; @@ -608,7 +509,11 @@ - (void)session:(ARSession *)session didUpdateFrame:(ARFrame *)frame unityARCamera.videoParams.texCoordScale = screenAspect / imageAspect; s_ShaderScale = screenAspect / imageAspect; - UnityLightDataFromARFrame(unityARCamera.lightData, frame); + unityARCamera.getLightEstimation = _getLightEstimation; + if (_getLightEstimation) + { + UnityLightDataFromARFrame(unityARCamera.lightData, frame); + } unityARCamera.videoParams.yWidth = (uint32_t)imageWidth; unityARCamera.videoParams.yHeight = (uint32_t)imageHeight; @@ -617,6 +522,14 @@ - (void)session:(ARSession *)session didUpdateFrame:(ARFrame *)frame memset(&displayTransform, 0, sizeof(UnityARMatrix4x4)); UnityARMatrix4x4FromCGAffineTransform(displayTransform, s_CurAffineTransform, UIInterfaceOrientationIsLandscape(orientation)); unityARCamera.displayTransform = displayTransform; + + if (UnityIsARKit_2_0_Supported()) + { + if (@available(iOS 12.0, *)) + { + unityARCamera.worldMappingStatus = GetUnityARWorldMappingStatusFromARWorldMappingStatus(frame.worldMappingStatus); + } + } if (_frameCallback != NULL) { @@ -659,6 +572,10 @@ - (void)session:(ARSession *)session didUpdateFrame:(ARFrame *)frame dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{ _frameCallback(unityARCamera); + if (unityARCamera.ptrPointCloud != nullptr) + { + CFRelease(unityARCamera.ptrPointCloud); + } }); } @@ -685,7 +602,7 @@ - (void)session:(ARSession *)session didUpdateFrame:(ARFrame *)frame memcpy(s_UnityPixelBuffers.pUVPixelBytes, baseAddress, numBytes); } - CVPixelBufferUnlockBaseAddress(pixelBuffer, 0); + CVPixelBufferUnlockBaseAddress(pixelBuffer, kCVPixelBufferLock_ReadOnly); } id textureY = nil; @@ -703,6 +620,9 @@ - (void)session:(ARSession *)session didUpdateFrame:(ARFrame *)frame if(status == kCVReturnSuccess) { textureY = CVMetalTextureGetTexture(texture); + } + if (texture != NULL) + { CFRelease(texture); } } @@ -718,6 +638,9 @@ - (void)session:(ARSession *)session didUpdateFrame:(ARFrame *)frame if(status == kCVReturnSuccess) { textureCbCr = CVMetalTextureGetTexture(texture); + } + if (texture != NULL) + { CFRelease(texture); } } @@ -768,7 +691,7 @@ - (void)session:(ARSession *)session cameraDidChangeTrackingState:(ARCamera *)ca if (_arSessionTrackingChanged != NULL) { UnityARCamera unityCamera; - GetUnityARCameraDataFromCamera(unityCamera, camera, _getPointCloudData); + GetUnityARCameraDataFromCamera(unityCamera, camera); _arSessionTrackingChanged(unityCamera); } } @@ -790,6 +713,15 @@ - (void)sessionInterruptionEnded:(ARSession *)session } } +- (BOOL)sessionShouldAttemptRelocalization:(ARSession *)session +{ + if (_arSessionShouldRelocalize != NULL) + { + return _arSessionShouldRelocalize(); + } + return NO; +} + - (void) sendAnchorRemovedEventToUnity:(NSArray*)anchors { for (ARAnchor* anchorPtr in anchors) @@ -827,14 +759,20 @@ - (void) sendAnchorUpdatedEventToUnity:(NSArray*)anchors UNITY_AR_SESSION_FAILED_CALLBACK sessionFailed, UNITY_AR_SESSION_VOID_CALLBACK sessionInterrupted, UNITY_AR_SESSION_VOID_CALLBACK sessionInterruptionEnded, - UNITY_AR_SESSION_TRACKING_CHANGED trackingChanged) + UNITY_AR_SESSION_RELOCALIZE_CALLBACK sessionShouldRelocalize, + UNITY_AR_SESSION_TRACKING_CHANGED trackingChanged, + UNITY_AR_SESSION_WORLD_MAP_COMPLETION_CALLBACK worldMapCompletionHandler, + UNITY_AR_SESSION_REF_OBJ_EXTRACT_COMPLETION_CALLBACK refObjExtractCompletionHandler) { UnityARSession* nativeSession = (__bridge UnityARSession*)session; nativeSession->_frameCallback = frameCallback; nativeSession->_arSessionFailedCallback = sessionFailed; nativeSession->_arSessionInterrupted = sessionInterrupted; nativeSession->_arSessionInterruptionEnded = sessionInterruptionEnded; + nativeSession->_arSessionShouldRelocalize = sessionShouldRelocalize; nativeSession->_arSessionTrackingChanged = trackingChanged; + nativeSession->_arSessionWorldMapCompletionHandler = worldMapCompletionHandler; + nativeSession->_arSessionRefObjExtractCompletionHandler = refObjExtractCompletionHandler; } extern "C" void session_SetPlaneAnchorCallbacks(const void* session, UNITY_AR_ANCHOR_CALLBACK anchorAddedCallback, @@ -875,6 +813,33 @@ - (void) sendAnchorUpdatedEventToUnity:(NSArray*)anchors #endif } +extern "C" void session_SetImageAnchorCallbacks(const void* session, UNITY_AR_IMAGE_ANCHOR_CALLBACK imageAnchorAddedCallback, + UNITY_AR_IMAGE_ANCHOR_CALLBACK imageAnchorUpdatedCallback, + UNITY_AR_IMAGE_ANCHOR_CALLBACK imageAnchorRemovedCallback) +{ + if (@available(iOS 11.3, *)) + { + UnityARSession* nativeSession = (__bridge UnityARSession*)session; + UnityARImageAnchorCallbackWrapper* imageAnchorCallbacks = [[UnityARImageAnchorCallbackWrapper alloc] init]; + imageAnchorCallbacks->_anchorAddedCallback = imageAnchorAddedCallback; + imageAnchorCallbacks->_anchorUpdatedCallback = imageAnchorUpdatedCallback; + imageAnchorCallbacks->_anchorRemovedCallback = imageAnchorRemovedCallback; + [nativeSession->_classToCallbackMap setObject:imageAnchorCallbacks forKey:[ARImageAnchor class]]; + } +} + +extern "C" void* session_GetARKitSessionPtr(const void* session) +{ + UnityARSession* nativeSession = (__bridge UnityARSession*)session; + return (__bridge void*)nativeSession->_session; +} + +extern "C" void* session_GetARKitFramePtr(const void* session) +{ + UnityARSession* nativeSession = (__bridge UnityARSession*)session; + return (__bridge void*)nativeSession->_session.currentFrame; +} + extern "C" void StartWorldTrackingSessionWithOptions(void* nativeSession, ARKitWorldTrackingSessionConfiguration unityConfig, UnityARSessionRunOptions runOptions) { UnityARSession* session = (__bridge UnityARSession*)nativeSession; @@ -882,20 +847,57 @@ - (void) sendAnchorUpdatedEventToUnity:(NSArray*)anchors ARSessionRunOptions runOpts = GetARSessionRunOptionsFromUnityARSessionRunOptions(runOptions); GetARSessionConfigurationFromARKitWorldTrackingSessionConfiguration(unityConfig, config); session->_getPointCloudData = (BOOL) unityConfig.getPointCloudData; - [session->_session runWithConfiguration:config options:runOpts ]; + session->_getLightEstimation = (BOOL) unityConfig.enableLightEstimation; + + if(UnityIsARKit_1_5_Supported() && unityConfig.referenceImagesResourceGroup != NULL && strlen(unityConfig.referenceImagesResourceGroup) > 0) + { + NSString *strResourceGroup = [[NSString alloc] initWithUTF8String:unityConfig.referenceImagesResourceGroup]; + if (@available(iOS 11.3, *)) { + NSSet *referenceImages = [ARReferenceImage referenceImagesInGroupNamed:strResourceGroup bundle:nil]; + config.detectionImages = referenceImages; + } + } + + if(UnityIsARKit_2_0_Supported()) + { + if (@available(iOS 12.0, *)) + { + NSMutableSet *referenceObjects = nullptr; + if (unityConfig.referenceObjectsResourceGroup != NULL && strlen(unityConfig.referenceObjectsResourceGroup) > 0) + { + NSString *strResourceGroup = [[NSString alloc] initWithUTF8String:unityConfig.referenceObjectsResourceGroup]; + [referenceObjects setByAddingObjectsFromSet:[ARReferenceObject referenceObjectsInGroupNamed:strResourceGroup bundle:nil]]; + } + + if (unityConfig.ptrDynamicReferenceObjects != nullptr) + { + NSSet *dynamicReferenceObjects = (__bridge NSSet *)unityConfig.ptrDynamicReferenceObjects; + if (referenceObjects != nullptr) + { + [referenceObjects setByAddingObjectsFromSet:dynamicReferenceObjects]; + } + else + { + referenceObjects = dynamicReferenceObjects; + } + } + + config.detectionObjects = referenceObjects; + } + } + + if (runOptions == UnityARSessionRunOptionsNone) + [session->_session runWithConfiguration:config]; + else + [session->_session runWithConfiguration:config options:runOpts]; + [session setupMetal]; } - extern "C" void StartWorldTrackingSession(void* nativeSession, ARKitWorldTrackingSessionConfiguration unityConfig) { - UnityARSession* session = (__bridge UnityARSession*)nativeSession; - ARWorldTrackingConfiguration* config = [ARWorldTrackingConfiguration new]; - GetARSessionConfigurationFromARKitWorldTrackingSessionConfiguration(unityConfig, config); - session->_getPointCloudData = (BOOL) unityConfig.getPointCloudData; - [session->_session runWithConfiguration:config]; - [session setupMetal]; + StartWorldTrackingSessionWithOptions(nativeSession, unityConfig, UnityARSessionRunOptionsNone); } extern "C" void StartSessionWithOptions(void* nativeSession, ARKitSessionConfiguration unityConfig, UnityARSessionRunOptions runOptions) @@ -905,18 +907,18 @@ - (void) sendAnchorUpdatedEventToUnity:(NSArray*)anchors ARSessionRunOptions runOpts = GetARSessionRunOptionsFromUnityARSessionRunOptions(runOptions); GetARSessionConfigurationFromARKitSessionConfiguration(unityConfig, config); session->_getPointCloudData = (BOOL) unityConfig.getPointCloudData; + session->_getLightEstimation = (BOOL) unityConfig.enableLightEstimation; [session->_session runWithConfiguration:config options:runOpts ]; [session setupMetal]; } - - extern "C" void StartSession(void* nativeSession, ARKitSessionConfiguration unityConfig) { UnityARSession* session = (__bridge UnityARSession*)nativeSession; ARConfiguration* config = [AROrientationTrackingConfiguration new]; GetARSessionConfigurationFromARKitSessionConfiguration(unityConfig, config); session->_getPointCloudData = (BOOL) unityConfig.getPointCloudData; + session->_getLightEstimation = (BOOL) unityConfig.enableLightEstimation; [session->_session runWithConfiguration:config]; [session setupMetal]; } @@ -928,6 +930,7 @@ - (void) sendAnchorUpdatedEventToUnity:(NSArray*)anchors ARConfiguration* config = [ARFaceTrackingConfiguration new]; ARSessionRunOptions runOpts = GetARSessionRunOptionsFromUnityARSessionRunOptions(runOptions); GetARFaceConfigurationFromARKitFaceConfiguration(unityConfig, config); + session->_getLightEstimation = (BOOL) unityConfig.enableLightEstimation; [session->_session runWithConfiguration:config options:runOpts ]; [session setupMetal]; #else @@ -944,6 +947,7 @@ - (void) sendAnchorUpdatedEventToUnity:(NSArray*)anchors { UnityARSession* session = (__bridge UnityARSession*)nativeSession; [session->_session pause]; + [session teardownMetal]; } extern "C" void StopSession(void* nativeSession) @@ -958,7 +962,10 @@ - (void) sendAnchorUpdatedEventToUnity:(NSArray*)anchors // then return the data back to the user that they will // need in case they want to remove it UnityARSession* session = (__bridge UnityARSession*)nativeSession; - ARAnchor *newAnchor = [[ARAnchor alloc] initWithTransform:matrix_identity_float4x4]; + + matrix_float4x4 anchor_transform = matrix_identity_float4x4; + UnityARMatrix4x4ToARKitMatrix(anchorData.transform, &anchor_transform); + ARAnchor *newAnchor = [[ARAnchor alloc] initWithTransform:anchor_transform]; [session->_session addAnchor:newAnchor]; UnityARUserAnchorData returnAnchorData; @@ -981,6 +988,17 @@ - (void) sendAnchorUpdatedEventToUnity:(NSArray*)anchors } } +extern "C" void SessionSetWorldOrigin(void* nativeSession, UnityARMatrix4x4 worldMatrix) +{ + if (@available(iOS 11.3, *)) + { + UnityARSession* session = (__bridge UnityARSession*)nativeSession; + matrix_float4x4 arWorldMatrix; + UnityARMatrix4x4ToARKitMatrix(worldMatrix, &arWorldMatrix); + [session->_session setWorldOrigin:arWorldMatrix]; + } +} + extern "C" void SetCameraNearFar (float nearZ, float farZ) { unityCameraNearZ = nearZ; @@ -1064,11 +1082,16 @@ - (void) sendAnchorUpdatedEventToUnity:(NSArray*)anchors return handles; } -extern "C" bool GetARPointCloud(float** verts, unsigned int* vertLength) +extern "C" void ReleaseVideoTextureHandles(UnityARTextureHandles handles) { - *verts = (float*)s_PointCloud; - *vertLength = (unsigned int)s_PointCloudSize * 4; - return YES; + if (handles.textureY != NULL) + { + CFRelease(handles.textureY); + } + if (handles.textureCbCr != NULL) + { + CFRelease(handles.textureCbCr); + } } extern "C" UnityARMatrix4x4 GetCameraProjectionMatrix() @@ -1096,12 +1119,59 @@ - (void) sendAnchorUpdatedEventToUnity:(NSArray*)anchors return AROrientationTrackingConfiguration.isSupported; } +extern "C" void EnumerateVideoFormats(UNITY_AR_VIDEOFORMAT_CALLBACK videoFormatCallback) +{ + if (@available(iOS 11.3, *)) + { + for(ARVideoFormat* arVideoFormat in ARWorldTrackingConfiguration.supportedVideoFormats) + { + UnityARVideoFormat videoFormat; + videoFormat.ptrVideoFormat = (__bridge void *)arVideoFormat; + videoFormat.imageResolutionWidth = arVideoFormat.imageResolution.width; + videoFormat.imageResolutionHeight = arVideoFormat.imageResolution.height; + videoFormat.framesPerSecond = arVideoFormat.framesPerSecond; + videoFormatCallback(videoFormat); + } + } +} + +extern "C" void EnumerateFaceTrackingVideoFormats(UNITY_AR_VIDEOFORMAT_CALLBACK videoFormatCallback) +{ +#if ARKIT_USES_FACETRACKING + if (@available(iOS 11.3, *)) + { + for(ARVideoFormat* arVideoFormat in ARFaceTrackingConfiguration.supportedVideoFormats) + { + UnityARVideoFormat videoFormat; + videoFormat.ptrVideoFormat = (__bridge void *)arVideoFormat; + videoFormat.imageResolutionWidth = arVideoFormat.imageResolution.width; + videoFormat.imageResolutionHeight = arVideoFormat.imageResolution.height; + videoFormat.framesPerSecond = arVideoFormat.framesPerSecond; + videoFormatCallback(videoFormat); + } + } +#else + [NSException raise:@"UnityARKitPluginFaceTrackingNotEnabled" format:@"UnityARKitPlugin: Checking FaceTracking video formats without enabling it in settings."]; +#endif +} + +extern "C" bool Native_IsARKit_1_5_Supported() +{ + return UnityIsARKit_1_5_Supported(); +} + +extern "C" bool Native_IsARKit_2_0_Supported() +{ + return UnityIsARKit_2_0_Supported(); +} + extern "C" bool IsARKitFaceTrackingConfigurationSupported() { #if ARKIT_USES_FACETRACKING return ARFaceTrackingConfiguration.isSupported; #else [NSException raise:@"UnityARKitPluginFaceTrackingNotEnabled" format:@"UnityARKitPlugin: Checking FaceTracking device support without enabling it in settings."]; + return false; #endif } @@ -1118,3 +1188,100 @@ - (void) sendAnchorUpdatedEventToUnity:(NSArray*)anchors } #endif } + +#ifdef __cplusplus +extern "C" { +#endif + +void session_GetCurrentWorldMap(void* sessionPtr, const void* callbackPtr) +{ + if (sessionPtr == nullptr) + return; + + UnityARSession* nativeSession = (__bridge UnityARSession*)sessionPtr; + if (!UnityAreFeaturesSupported(kUnityARKitSupportedFeaturesWorldMap)) + { + // If 2.0 is not supported, then invoke callback immediately with a null world map + nativeSession->_arSessionWorldMapCompletionHandler(callbackPtr, nullptr); + return; + } + + if (@available(iOS 12.0, *)) + { + [nativeSession->_session getCurrentWorldMapWithCompletionHandler:^(ARWorldMap* worldMap, NSError* error) + { + if (error) + NSLog(@"%@", error); + + nativeSession->_arSessionWorldMapCompletionHandler(callbackPtr, (__bridge_retained void*)worldMap); + }]; + } + else + { + // Fallback on earlier versions + nativeSession->_arSessionWorldMapCompletionHandler(callbackPtr, nullptr); + return; + } +} + +void session_ExtractReferenceObject(void * sessionPtr, UnityARMatrix4x4 unityTransform, UnityARVector3 unityCenter, UnityARVector3 unityExtent, const void* callbackPtr) +{ + if (sessionPtr == nullptr) + return; + + UnityARSession* nativeSession = (__bridge UnityARSession*)sessionPtr; + + if (!UnityAreFeaturesSupported(kUnityARKitSupportedFeaturesReferenceObject)) + { + // If 2.0 is not supported, then invoke callback immediately with a null reference object + nativeSession->_arSessionRefObjExtractCompletionHandler(callbackPtr, nullptr); + return; + } + + matrix_float4x4 transform; + UnityARMatrix4x4ToARKitMatrix(unityTransform, &transform); + + const vector_float3 center{unityCenter.x, unityCenter.y, unityCenter.z}; + const vector_float3 extent{unityExtent.x, unityExtent.y, unityExtent.z}; + + if (@available(iOS 12.0, *)) + { + [nativeSession->_session createReferenceObjectWithTransform:transform center:center extent:extent completionHandler:^(ARReferenceObject * referenceObject, NSError * error) + { + if (error) + NSLog(@"%@", error); + nativeSession->_arSessionRefObjExtractCompletionHandler(callbackPtr, (__bridge_retained void*)referenceObject); + + }]; + } + else + { + // Fallback on earlier versions + nativeSession->_arSessionRefObjExtractCompletionHandler(callbackPtr, nullptr); + return; + } +} + +bool sessionConfig_IsEnvironmentTexturingSupported() +{ + if (@available(iOS 12.0, *)) { + if ([AREnvironmentProbeAnchor class]) + { + return true; + } + else + { + return false; + } + } + else + { + // Fallback on earlier versions + return false; + } +} + + +#ifdef __cplusplus +} +#endif diff --git a/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARTextureHandles.cs b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARTextureHandles.cs index a30f58846..1a01f7b22 100644 --- a/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARTextureHandles.cs +++ b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARTextureHandles.cs @@ -1,12 +1,59 @@ -using System; +using System; +using UnityEngine.XR.iOS; namespace UnityEngine.XR.iOS { - public struct ARTextureHandles - { - // Native (Metal) texture handles for the device camera buffer - public IntPtr textureY; - public IntPtr textureCbCr; - } + + public class ARTextureHandles + { + public struct ARTextureHandlesStruct + { + // Native (Metal) texture handles for the device camera buffer + public IntPtr textureY; + public IntPtr textureCbCr; + } + + private ARTextureHandlesStruct m_ARTextureHandlesStruct; + public IntPtr TextureY + { + get { return m_ARTextureHandlesStruct.textureY; } + } + public IntPtr TextureCbCr + { + get { return m_ARTextureHandlesStruct.textureCbCr; } + } + + public ARTextureHandles(ARTextureHandlesStruct arTextureHandlesStruct) + { + m_ARTextureHandlesStruct = arTextureHandlesStruct; + } + +#if !UNITY_EDITOR && UNITY_IOS + ~ARTextureHandles() + { + UnityARSessionNativeInterface.ReleaseVideoTextureHandles(m_ARTextureHandlesStruct); + } +#endif + public bool IsNull() + { + return (m_ARTextureHandlesStruct.textureY == IntPtr.Zero) || (m_ARTextureHandlesStruct.textureCbCr == IntPtr.Zero); + } + + + // Disable the default and copy constructors because we are not currently tracking references of the Objective C handles in this case. + private ARTextureHandles() + { + // This + Debug.Assert(false, "should not call the default constructor for ARTextureHandles"); + m_ARTextureHandlesStruct = new ARTextureHandlesStruct { textureY = IntPtr.Zero, textureCbCr = IntPtr.Zero }; + } + + private ARTextureHandles(ARTextureHandles arTextureHandles) + { + Debug.Assert(false, "should not call the copy constructor for ARTextureHandles"); + m_ARTextureHandlesStruct = new ARTextureHandlesStruct { textureY = IntPtr.Zero, textureCbCr = IntPtr.Zero }; + } + + } } diff --git a/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARTrackingStateReason.cs b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARTrackingStateReason.cs index 98eeabfeb..4fa43f953 100644 --- a/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARTrackingStateReason.cs +++ b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARTrackingStateReason.cs @@ -15,6 +15,9 @@ public enum ARTrackingStateReason /** Tracking is limited due to a lack of features visible to the camera. */ ARTrackingStateReasonInsufficientFeatures, + + /** Tracking is limited due to a relocalization in progress. */ + ARTrackingStateReasonRelocalizing, } } diff --git a/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARVideoFormat.cs b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARVideoFormat.cs new file mode 100644 index 000000000..41fed9701 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARVideoFormat.cs @@ -0,0 +1,62 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using System; +using System.Runtime.InteropServices; +using AOT; + + +namespace UnityEngine.XR.iOS +{ + + public struct UnityARVideoFormat { + public IntPtr videoFormatPtr; + public float imageResolutionWidth; + public float imageResolutionHeight; + public int framesPerSecond; + + #if UNITY_EDITOR || !UNITY_IOS + private static void EnumerateVideoFormats(VideoFormatEnumerator videoFormatEnumerator) + { + } + private static void EnumerateFaceTrackingVideoFormats(VideoFormatEnumerator videoFormatEnumerator) + { + } + #else + [DllImport("__Internal")] + private static extern void EnumerateVideoFormats(VideoFormatEnumerator videoFormatEnumerator); + [DllImport("__Internal")] + private static extern void EnumerateFaceTrackingVideoFormats(VideoFormatEnumerator videoFormatEnumerator); + #endif + + static List videoFormatsList; + + public static List SupportedVideoFormats() + { + videoFormatsList = new List (); + EnumerateVideoFormats (AddToVFList); + + return videoFormatsList; + } + + public static List SupportedFaceTrackingVideoFormats() + { + videoFormatsList = new List (); + EnumerateFaceTrackingVideoFormats(AddToVFList); + + return videoFormatsList; + } + + [MonoPInvokeCallback(typeof(VideoFormatEnumerator))] + private static void AddToVFList(UnityARVideoFormat newFormat) + { + Debug.Log ("New Format returned"); + videoFormatsList.Add (newFormat); + } + + } + + public delegate void VideoFormatEnumerator(UnityARVideoFormat videoFormat); + + +} \ No newline at end of file diff --git a/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARVideoFormat.cs.meta b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARVideoFormat.cs.meta new file mode 100644 index 000000000..4451046e8 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARVideoFormat.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: d63d797765c124eb59e9ed66561bd129 +timeCreated: 1518217135 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARWorldMap.cs b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARWorldMap.cs new file mode 100644 index 000000000..b1ecca25f --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARWorldMap.cs @@ -0,0 +1,193 @@ +using UnityEngine; +using System.Collections; +using System.Runtime.InteropServices; +using System; +using System.Collections.Generic; +using AOT; +using System.Text; + +namespace UnityEngine.XR.iOS +{ + public enum ARWorldMappingStatus + { + /** World mapping is not available. */ + ARWorldMappingStatusNotAvailable, + + /** World mapping is available but has limited features. + For the device's current position, the session’s world map is not recommended for relocalization. */ + ARWorldMappingStatusLimited, + + /** World mapping is actively extending the map with the user's motion. + The world map will be relocalizable for previously visited areas but is still being updated for the current space. */ + ARWorldMappingStatusExtending, + + /** World mapping has adequately mapped the visible area. + The map can be used to relocalize for the device's current position. */ + ARWorldMappingStatusMapped + + } + + public class ARWorldMap + { + IntPtr m_Ptr; + + public static bool supported + { + get + { + return worldMap_GetSupported(); + } + } + + public bool Save(string path) + { + return worldMap_Save(m_Ptr, path); + } + + public static ARWorldMap Load(string path) + { + var ptr = worldMap_Load(path); + if (ptr == IntPtr.Zero) + return null; + + return new ARWorldMap(ptr); + } + + public static ARWorldMap SerializeFromByteArray(byte[] mapByteArray) + { + long lengthBytes = mapByteArray.LongLength; + GCHandle handle = GCHandle.Alloc (mapByteArray, GCHandleType.Pinned); + IntPtr newMapPtr = worldMap_SerializeFromByteArray(handle.AddrOfPinnedObject(), lengthBytes); + handle.Free (); + return new ARWorldMap (newMapPtr); + } + + public byte [] SerializeToByteArray() + { + byte[] worldMapByteArray = new byte[worldMap_SerializedLength(m_Ptr)]; + GCHandle handle = GCHandle.Alloc (worldMapByteArray, GCHandleType.Pinned); + worldMap_SerializeToByteArray(m_Ptr,handle.AddrOfPinnedObject()); + handle.Free (); + return worldMapByteArray; + } + + public Vector3 center + { + get + { + return UnityARMatrixOps.GetPosition(worldMap_GetCenter(m_Ptr)); + } + } + + public Vector3 extent + { + get + { + return worldMap_GetExtent(m_Ptr); + } + } + + public ARPointCloud pointCloud + { + get + { + return ARPointCloud.FromPtr (worldMap_GetPointCloud (m_Ptr)); + } + } + + internal IntPtr nativePtr { get { return m_Ptr; } } + + internal static ARWorldMap FromPtr(IntPtr ptr) + { + if (ptr == IntPtr.Zero) + return null; + + return new ARWorldMap(ptr); + } + + internal ARWorldMap(IntPtr ptr) + { + if (ptr == IntPtr.Zero) + throw new ArgumentException("ptr may not be IntPtr.Zero"); + + m_Ptr = ptr; + } + +#if !UNITY_EDITOR && UNITY_IOS + [DllImport("__Internal")] + static extern bool worldMap_Save(IntPtr worldMapPtr, string path); + + [DllImport("__Internal")] + static extern IntPtr worldMap_Load(string path); + + [DllImport("__Internal")] + static extern Vector3 worldMap_GetCenter(IntPtr worldMapPtr); + + [DllImport("__Internal")] + static extern Vector3 worldMap_GetExtent(IntPtr worldMapPtr); + + [DllImport("__Internal")] + static extern IntPtr worldMap_GetPointCloud(IntPtr worldMapPtr); + + [DllImport("__Internal")] + static extern bool worldMap_GetSupported(); + + [DllImport("__Internal")] + static extern long worldMap_SerializedLength(IntPtr worldMapPtr); + + [DllImport("__Internal")] + static extern void worldMap_SerializeToByteArray(IntPtr worldMapPtr, IntPtr serByteArray); + + [DllImport("__Internal")] + static extern IntPtr worldMap_SerializeFromByteArray(IntPtr serByteArray, long lengthBytes); +#else + static bool worldMap_Save(IntPtr worldMapPtr, string path) { return false; } + static IntPtr worldMap_Load(string path) { return IntPtr.Zero; } + static Vector3 worldMap_GetCenter(IntPtr worldMapPtr) { return Vector3.zero; } + static Vector3 worldMap_GetExtent(IntPtr worldMapPtr) { return Vector3.zero; } + static IntPtr worldMap_GetPointCloud(IntPtr worldMapPtr) { return IntPtr.Zero; } + static bool worldMap_GetSupported() { return false; } + static long worldMap_SerializedLength(IntPtr worldMapPtr) { return 0; } + static void worldMap_SerializeToByteArray(IntPtr worldMapPtr, IntPtr serByteArray) { } + static IntPtr worldMap_SerializeFromByteArray(IntPtr serByteArray, long lengthBytes) { return IntPtr.Zero; } +#endif + } + + + [Serializable] + public class serializableARWorldMap + { + byte [] arWorldMapData; + + public serializableARWorldMap(byte [] inputMapData) + { + arWorldMapData = inputMapData; + } + + public static implicit operator serializableARWorldMap(ARWorldMap arWorldMap) + { + if (arWorldMap != null) + { + return new serializableARWorldMap (arWorldMap.SerializeToByteArray ()); + + } + else + { + return new serializableARWorldMap (null); + } + } + + public static implicit operator ARWorldMap(serializableARWorldMap serWorldMap) + { + if (serWorldMap != null) + { + return ARWorldMap.SerializeFromByteArray (serWorldMap.arWorldMapData); + } + else + { + return null; + } + } + + } +} diff --git a/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARWorldMap.cs.meta b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARWorldMap.cs.meta new file mode 100644 index 000000000..8dd1610c3 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARWorldMap.cs.meta @@ -0,0 +1,13 @@ +fileFormatVersion: 2 +guid: d6ccdb980d3cc426fa6b8cd27bc9b963 +timeCreated: 1523481779 +licenseType: Pro +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARWorldMap.mm b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARWorldMap.mm new file mode 100644 index 000000000..1a631c2a3 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARWorldMap.mm @@ -0,0 +1,170 @@ +// Unity Technologies Inc (c) 2018 +// ARWorldMap.mm +// Main implementation of ARKit plugin's ARWorldMap + +#include "ARKitDefines.h" + +#ifdef __cplusplus +extern "C" { +#endif + +bool worldMap_GetSupported() +{ + return UnityAreFeaturesSupported(kUnityARKitSupportedFeaturesWorldMap); +} + +bool worldMap_Save(const void* worldMapPtr, const char* path) +{ + if (worldMapPtr == nullptr || path == nullptr || !worldMap_GetSupported()) + return false; + + if (@available(iOS 12.0, *)) + { + ARWorldMap* worldMap = (__bridge ARWorldMap*)worldMapPtr; + NSError* writeError = nil; + NSURL* url = [[NSURL alloc] initFileURLWithPath:[NSString stringWithUTF8String:path] isDirectory:false]; + NSData *data = [NSKeyedArchiver archivedDataWithRootObject:worldMap]; + [data writeToURL:url options:(NSDataWritingAtomic) error:&writeError]; + + if (writeError) + NSLog(@"%@", writeError); + + return (writeError == nil); + } + else + { + // Fallback on earlier versions without ARWorldMap + return false; + } +} + +void* worldMap_Load(const char* path) +{ + if (!worldMap_GetSupported()) + return nullptr; + + NSError* error = nil; + NSURL* url = [[NSURL alloc] initFileURLWithPath:[NSString stringWithUTF8String:path] isDirectory:false]; + NSData *wmdata = [NSData dataWithContentsOfURL:url options:NSDataReadingMappedAlways error:&error]; + + if (error) + NSLog(@"%@", error); + + if (@available(iOS 12.0, *)) + { + ARWorldMap* worldMap = [NSKeyedUnarchiver unarchiveObjectWithData:wmdata]; + return (__bridge_retained void*)worldMap; + } + else + { + // Fallback on earlier versions of iOS without ARWorldMap + return nullptr; + } +} + +long worldMap_SerializedLength(const void* worldMapPtr) +{ + if (@available(iOS 12.0, *)) + { + ARWorldMap* worldMap = (__bridge ARWorldMap*)worldMapPtr; + NSData *data = [NSKeyedArchiver archivedDataWithRootObject:worldMap]; + return data.length; + } + else + { + // Fallback on earlier versions + return 0; + } +} + +void worldMap_SerializeToByteArray(const void* worldMapPtr, void* pinnedArray) +{ + if (@available(iOS 12.0, *)) + { + ARWorldMap* worldMap = (__bridge ARWorldMap*)worldMapPtr; + NSData *data = [NSKeyedArchiver archivedDataWithRootObject:worldMap]; + memcpy(pinnedArray, data.bytes, data.length); + } +} + +void* worldMap_SerializeFromByteArray(const void* pinnedArray, long lengthBytes) +{ + + if (@available(iOS 12.0, *)) + { + NSData *wmdata = [NSData dataWithBytes:pinnedArray length:lengthBytes]; + ARWorldMap* worldMap = [NSKeyedUnarchiver unarchiveObjectWithData:wmdata]; + return (__bridge_retained void*)worldMap; + } + else + { + // Fallback on earlier versions + return nullptr; + } +} + +UnityARVector3 worldMap_GetCenter(const void* worldMapPtr) +{ + if (worldMapPtr == nullptr || !worldMap_GetSupported()) + return UnityARVector3{0, 0, 0}; + + if (@available(iOS 12.0, *)) + { + ARWorldMap* worldMap = (__bridge ARWorldMap*)worldMapPtr; + return UnityARVector3 + { + worldMap.center.x, + worldMap.center.y, + worldMap.center.z + }; + } + else + { + // Fallback on earlier versions + return UnityARVector3{0, 0, 0}; + } +} + +UnityARVector3 worldMap_GetExtent(const void* worldMapPtr) +{ + if (worldMapPtr == nullptr || !worldMap_GetSupported()) + return UnityARVector3{0, 0, 0}; + + if (@available(iOS 12.0, *)) { + ARWorldMap* worldMap = (__bridge ARWorldMap*)worldMapPtr; + return UnityARVector3 + { + worldMap.extent.x, + worldMap.extent.y, + worldMap.extent.z + }; + } + else + { + // Fallback on earlier versions + return UnityARVector3{0, 0, 0}; + } +} + +void* worldMap_GetPointCloud(const void* worldMapPtr) +{ + if (worldMapPtr == nullptr || !worldMap_GetSupported()) + return nullptr; + + if (@available(iOS 12.0, *)) + { + ARWorldMap* worldMap = (__bridge ARWorldMap*)worldMapPtr; + ARPointCloud *pointCloud = [worldMap rawFeaturePoints]; + return (__bridge_retained void*)pointCloud; + } + else + { + // Fallback on earlier versions + return nullptr; + } +} + +#ifdef __cplusplus +} +#endif + diff --git a/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARWorldMap.mm.meta b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARWorldMap.mm.meta new file mode 100644 index 000000000..c48900e07 --- /dev/null +++ b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/ARWorldMap.mm.meta @@ -0,0 +1,36 @@ +fileFormatVersion: 2 +guid: e83709c0997c14c27964ea8736f5cbf1 +timeCreated: 1523567805 +licenseType: Pro +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + isPreloaded: 0 + isOverridable: 0 + platformData: + - first: + Any: + second: + enabled: 0 + settings: {} + - first: + Editor: Editor + second: + enabled: 0 + settings: + DefaultValueInitialized: true + - first: + iPhone: iOS + second: + enabled: 1 + settings: {} + - first: + tvOS: tvOS + second: + enabled: 1 + settings: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/UnityARSessionNativeInterface.cs b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/UnityARSessionNativeInterface.cs index 584a8305c..0097e3ac1 100644 --- a/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/UnityARSessionNativeInterface.cs +++ b/sdkproject/Assets/UnityARKitPlugin/Plugins/iOS/UnityARKit/NativeInterface/UnityARSessionNativeInterface.cs @@ -5,7 +5,8 @@ using System.Runtime.InteropServices; using AOT; -namespace UnityEngine.XR.iOS { +namespace UnityEngine.XR.iOS +{ /// /// A struct that allows us go from native Matrix4x4 to managed @@ -17,21 +18,21 @@ public struct UnityARMatrix4x4 public Vector4 column2; public Vector4 column3; - public UnityARMatrix4x4(Vector4 c0, Vector4 c1, Vector4 c2, Vector4 c3) - { - column0 = c0; column1 = c1; column2 = c2; column3 = c3; - } - }; - - [Serializable] - public struct UnityVideoParams - { - public int yWidth; - public int yHeight; - public int screenOrientation; - public float texCoordScale; - public IntPtr cvPixelBufferPtr; - }; + public UnityARMatrix4x4(Vector4 c0, Vector4 c1, Vector4 c2, Vector4 c3) + { + column0 = c0; column1 = c1; column2 = c2; column3 = c3; + } + } + + [Serializable] + public struct UnityVideoParams + { + public int yWidth; + public int yHeight; + public int screenOrientation; + public float texCoordScale; + public IntPtr cvPixelBufferPtr; + } struct internal_UnityARCamera { @@ -39,11 +40,13 @@ struct internal_UnityARCamera public UnityARMatrix4x4 projectionMatrix; public ARTrackingState trackingState; public ARTrackingStateReason trackingReason; - public UnityVideoParams videoParams; - public UnityMarshalLightData lightData; + public UnityVideoParams videoParams; + public UnityMarshalLightData lightData; public UnityARMatrix4x4 displayTransform; - public uint getPointCloudData; - }; + public IntPtr pointCloud; + public uint getLightEstimation; + public ARWorldMappingStatus worldMappngStatus; + } public struct UnityARCamera { @@ -51,88 +54,52 @@ public struct UnityARCamera public UnityARMatrix4x4 projectionMatrix; public ARTrackingState trackingState; public ARTrackingStateReason trackingReason; - public UnityVideoParams videoParams; - public UnityARLightData lightData; + public UnityVideoParams videoParams; + public UnityARLightData lightData; public UnityARMatrix4x4 displayTransform; - public Vector3[] pointCloudData; + public ARPointCloud pointCloud; + public ARWorldMappingStatus worldMappingStatus; - public UnityARCamera(UnityARMatrix4x4 wt, UnityARMatrix4x4 pm, ARTrackingState ats, ARTrackingStateReason atsr, UnityVideoParams uvp, UnityARLightData lightDat, UnityARMatrix4x4 dt, Vector3[] pointCloud) - { - worldTransform = wt; - projectionMatrix = pm; - trackingState = ats; - trackingReason = atsr; - videoParams = uvp; - lightData = lightDat; + public UnityARCamera(UnityARMatrix4x4 wt, UnityARMatrix4x4 pm, ARTrackingState ats, ARTrackingStateReason atsr, UnityVideoParams uvp, UnityARLightData lightDat, UnityARMatrix4x4 dt, ARPointCloud ptCloud, ARWorldMappingStatus awms) + { + worldTransform = wt; + projectionMatrix = pm; + trackingState = ats; + trackingReason = atsr; + videoParams = uvp; + lightData = lightDat; displayTransform = dt; - pointCloudData = pointCloud; - } - }; - - - public struct UnityARAnchorData - { - public IntPtr ptrIdentifier; - - /** - The transformation matrix that defines the anchor's rotation, translation and scale in world coordinates. - */ - public UnityARMatrix4x4 transform; + pointCloud = ptCloud; + worldMappingStatus = awms; + } + } - /** - The alignment of the plane. - */ - public ARPlaneAnchorAlignment alignment; - /** - The center of the plane in the anchor’s coordinate space. - */ + public struct UnityARUserAnchorData + { - public Vector4 center; + public IntPtr ptrIdentifier; /** - The extent of the plane in the anchor’s coordinate space. + The transformation matrix that defines the anchor's rotation, translation and scale in world coordinates. */ - public Vector4 extent; + public UnityARMatrix4x4 transform; public string identifierStr { get { return Marshal.PtrToStringAuto(this.ptrIdentifier); } } - public static UnityARAnchorData UnityARAnchorDataFromGameObject(GameObject go) { - // create an anchor data struct from a game object transform - Matrix4x4 matrix = Matrix4x4.TRS(go.transform.position, go.transform.rotation, go.transform.localScale); - UnityARAnchorData ad = new UnityARAnchorData(); - ad.transform.column0 = matrix.GetColumn(0); - ad.transform.column1 = matrix.GetColumn(1); - ad.transform.column2 = matrix.GetColumn(2); - ad.transform.column3 = matrix.GetColumn(3); - return ad; - } - }; - - public struct UnityARUserAnchorData - { - - public IntPtr ptrIdentifier; - - /** - The transformation matrix that defines the anchor's rotation, translation and scale in world coordinates. - */ - public UnityARMatrix4x4 transform; - - public string identifierStr { get { return Marshal.PtrToStringAuto(this.ptrIdentifier); } } - - public static UnityARUserAnchorData UnityARUserAnchorDataFromGameObject(GameObject go) { + public static UnityARUserAnchorData UnityARUserAnchorDataFromGameObject(GameObject go) + { // create an anchor data struct from a game object transform - Matrix4x4 matrix = Matrix4x4.TRS(go.transform.position, go.transform.rotation, go.transform.localScale); + Matrix4x4 arkitTransform = UnityARMatrixOps.UnityToARKitCoordChange(go.transform.position, go.transform.rotation); UnityARUserAnchorData ad = new UnityARUserAnchorData(); - ad.transform.column0 = matrix.GetColumn(0); - ad.transform.column1 = matrix.GetColumn(1); - ad.transform.column2 = matrix.GetColumn(2); - ad.transform.column3 = matrix.GetColumn(3); + ad.transform.column0 = arkitTransform.GetColumn(0); + ad.transform.column1 = arkitTransform.GetColumn(1); + ad.transform.column2 = arkitTransform.GetColumn(2); + ad.transform.column3 = arkitTransform.GetColumn(3); return ad; } - }; + } public struct UnityARHitTestResult @@ -169,192 +136,283 @@ The anchor that the hit-test intersected. */ public bool isValid; - }; - - public enum UnityARAlignment - { - UnityARAlignmentGravity, - UnityARAlignmentGravityAndHeading, - UnityARAlignmentCamera - } - - public enum UnityARPlaneDetection - { - None = 0, - Horizontal = (1 << 0) - } - + } + + public enum UnityARAlignment + { + UnityARAlignmentGravity, + UnityARAlignmentGravityAndHeading, + UnityARAlignmentCamera + } + + public enum UnityARPlaneDetection + { + None = 0, + Horizontal = (1 << 0), + Vertical = (1 << 1), + HorizontalAndVertical = (1 << 1) | (1 << 0) + } + public struct ARKitSessionConfiguration { - public UnityARAlignment alignment; + public UnityARAlignment alignment; public bool getPointCloudData; public bool enableLightEstimation; - public bool IsSupported { get { return IsARKitSessionConfigurationSupported(); } private set {} } + public bool IsSupported { get { return IsARKitSessionConfigurationSupported(); } private set { } } public ARKitSessionConfiguration(UnityARAlignment alignment = UnityARAlignment.UnityARAlignmentGravity, - bool getPointCloudData = false, + bool getPointCloudData = false, bool enableLightEstimation = false) { this.getPointCloudData = getPointCloudData; this.alignment = alignment; this.enableLightEstimation = enableLightEstimation; } - + +#if UNITY_EDITOR || !UNITY_IOS + private bool IsARKitSessionConfigurationSupported() + { + return true; + } +#else [DllImport("__Internal")] private static extern bool IsARKitSessionConfigurationSupported(); +#endif } - public struct ARKitWorldTrackingSessionConfiguration - { - public UnityARAlignment alignment; - public UnityARPlaneDetection planeDetection; + public struct ARKitWorldTrackingSessionConfiguration + { + public UnityARAlignment alignment; + public UnityARPlaneDetection planeDetection; public bool getPointCloudData; public bool enableLightEstimation; - public bool IsSupported { get { return IsARKitWorldTrackingSessionConfigurationSupported(); } private set {} } + public bool enableAutoFocus; + public UnityAREnvironmentTexturing environmentTexturing; + public int maximumNumberOfTrackedImages; + public IntPtr videoFormat; + public string referenceImagesGroupName; + public string referenceObjectsGroupName; + public bool IsSupported { get { return IsARKitWorldTrackingSessionConfigurationSupported(); } private set { } } + public IntPtr dynamicReferenceObjectsPtr; +#pragma warning disable CS0414 // Unused private variable + private IntPtr m_worldMapPtr; +#pragma warning restore CS0414 + public ARWorldMap worldMap + { + set { m_worldMapPtr = (value == null) ? IntPtr.Zero : value.nativePtr; } + } - public ARKitWorldTrackingSessionConfiguration(UnityARAlignment alignment = UnityARAlignment.UnityARAlignmentGravity, - UnityARPlaneDetection planeDetection = UnityARPlaneDetection.Horizontal, - bool getPointCloudData = false, - bool enableLightEstimation = false) - { + public static bool environmentTexturingSupported + { + get + { + return sessionConfig_IsEnvironmentTexturingSupported(); + } + } + + public ARKitWorldTrackingSessionConfiguration( + UnityARAlignment alignment = UnityARAlignment.UnityARAlignmentGravity, + UnityARPlaneDetection planeDetection = UnityARPlaneDetection.Horizontal, + bool getPointCloudData = false, + bool enableLightEstimation = false, + bool enableAutoFocus = true, + UnityAREnvironmentTexturing environmentTexturing = UnityAREnvironmentTexturing.UnityAREnvironmentTexturingNone, + int maximumNumberOfTrackedImages = 0, + IntPtr vidFormat = default(IntPtr), + string refImageGroup = null, + string refObjectGroup = null, + ARWorldMap worldMap = null) + { this.getPointCloudData = getPointCloudData; - this.alignment = alignment; - this.planeDetection = planeDetection; + this.alignment = alignment; + this.planeDetection = planeDetection; this.enableLightEstimation = enableLightEstimation; + this.enableAutoFocus = enableAutoFocus; + this.environmentTexturing = environmentTexturing; + this.videoFormat = vidFormat; + this.referenceImagesGroupName = refImageGroup; + this.referenceObjectsGroupName = refObjectGroup; + this.dynamicReferenceObjectsPtr = IntPtr.Zero; + this.m_worldMapPtr = (worldMap == null) ? IntPtr.Zero : worldMap.nativePtr; + this.maximumNumberOfTrackedImages = maximumNumberOfTrackedImages; + } - } - +#if UNITY_EDITOR || !UNITY_IOS + static bool IsARKitWorldTrackingSessionConfigurationSupported() { return true; } + static bool sessionConfig_IsEnvironmentTexturingSupported() { return false; } +#else + [DllImport("__Internal")] + static extern bool IsARKitWorldTrackingSessionConfigurationSupported(); [DllImport("__Internal")] - private static extern bool IsARKitWorldTrackingSessionConfigurationSupported(); - } + static extern bool sessionConfig_IsEnvironmentTexturingSupported(); +#endif + } - public struct ARKitFaceTrackingConfiguration - { - public UnityARAlignment alignment; - public bool enableLightEstimation; - public bool IsSupported { get { return IsARKitFaceTrackingConfigurationSupported(); } private set {} } + public struct ARKitFaceTrackingConfiguration + { + public UnityARAlignment alignment; + public bool enableLightEstimation; + public IntPtr videoFormat; + public bool IsSupported { get { return IsARKitFaceTrackingConfigurationSupported(); } private set { } } - public ARKitFaceTrackingConfiguration(UnityARAlignment alignment = UnityARAlignment.UnityARAlignmentGravity, - bool enableLightEstimation = false) - { - this.alignment = alignment; - this.enableLightEstimation = enableLightEstimation; - } + public ARKitFaceTrackingConfiguration(UnityARAlignment alignment = UnityARAlignment.UnityARAlignmentGravity, + bool enableLightEstimation = false, + IntPtr vidFormat = default(IntPtr)) + { + this.alignment = alignment; + this.enableLightEstimation = enableLightEstimation; + videoFormat = vidFormat; + } - #if UNITY_EDITOR - private bool IsARKitFaceTrackingConfigurationSupported() { - return true; - } - #else - [DllImport("__Internal")] - private static extern bool IsARKitFaceTrackingConfigurationSupported(); - #endif +#if UNITY_EDITOR || !UNITY_IOS + private bool IsARKitFaceTrackingConfigurationSupported() + { + return true; + } +#else + [DllImport("__Internal")] + private static extern bool IsARKitFaceTrackingConfigurationSupported(); +#endif - } + } - public enum UnityARSessionRunOption { + public enum UnityARSessionRunOption + { /** The session will reset tracking. */ - ARSessionRunOptionResetTracking = (1 << 0), + ARSessionRunOptionResetTracking = (1 << 0), /** The session will remove existing anchors. */ - ARSessionRunOptionRemoveExistingAnchors = (1 << 1) + ARSessionRunOptionRemoveExistingAnchors = (1 << 1) } - public class UnityARSessionNativeInterface { + public partial class UnityARSessionNativeInterface + { -// public delegate void ARFrameUpdate(UnityARMatrix4x4 cameraPos, UnityARMatrix4x4 projection); -// public static event ARFrameUpdate ARFrameUpdatedEvent; + // public delegate void ARFrameUpdate(UnityARMatrix4x4 cameraPos, UnityARMatrix4x4 projection); + // public static event ARFrameUpdate ARFrameUpdatedEvent; // Plane Anchors public delegate void ARFrameUpdate(UnityARCamera camera); public static event ARFrameUpdate ARFrameUpdatedEvent; - public delegate void ARAnchorAdded(ARPlaneAnchor anchorData); + public delegate void ARAnchorAdded(ARPlaneAnchor anchorData); public static event ARAnchorAdded ARAnchorAddedEvent; - public delegate void ARAnchorUpdated(ARPlaneAnchor anchorData); + public delegate void ARAnchorUpdated(ARPlaneAnchor anchorData); public static event ARAnchorUpdated ARAnchorUpdatedEvent; - public delegate void ARAnchorRemoved(ARPlaneAnchor anchorData); + public delegate void ARAnchorRemoved(ARPlaneAnchor anchorData); public static event ARAnchorRemoved ARAnchorRemovedEvent; // User Anchors - public delegate void ARUserAnchorAdded(ARUserAnchor anchorData); + public delegate void ARUserAnchorAdded(ARUserAnchor anchorData); public static event ARUserAnchorAdded ARUserAnchorAddedEvent; - public delegate void ARUserAnchorUpdated(ARUserAnchor anchorData); + public delegate void ARUserAnchorUpdated(ARUserAnchor anchorData); public static event ARUserAnchorUpdated ARUserAnchorUpdatedEvent; - public delegate void ARUserAnchorRemoved(ARUserAnchor anchorData); + public delegate void ARUserAnchorRemoved(ARUserAnchor anchorData); public static event ARUserAnchorRemoved ARUserAnchorRemovedEvent; - // Face Anchors - public delegate void ARFaceAnchorAdded(ARFaceAnchor anchorData); - public static event ARFaceAnchorAdded ARFaceAnchorAddedEvent; + // Face Anchors + public delegate void ARFaceAnchorAdded(ARFaceAnchor anchorData); + public static event ARFaceAnchorAdded ARFaceAnchorAddedEvent; - public delegate void ARFaceAnchorUpdated(ARFaceAnchor anchorData); - public static event ARFaceAnchorUpdated ARFaceAnchorUpdatedEvent; + public delegate void ARFaceAnchorUpdated(ARFaceAnchor anchorData); + public static event ARFaceAnchorUpdated ARFaceAnchorUpdatedEvent; - public delegate void ARFaceAnchorRemoved(ARFaceAnchor anchorData); - public static event ARFaceAnchorRemoved ARFaceAnchorRemovedEvent; + public delegate void ARFaceAnchorRemoved(ARFaceAnchor anchorData); + public static event ARFaceAnchorRemoved ARFaceAnchorRemovedEvent; - public delegate void ARSessionFailed(string error); + // Image Anchors + public delegate void ARImageAnchorAdded(ARImageAnchor anchorData); + public static event ARImageAnchorAdded ARImageAnchorAddedEvent; + + public delegate void ARImageAnchorUpdated(ARImageAnchor anchorData); + public static event ARImageAnchorUpdated ARImageAnchorUpdatedEvent; + + public delegate void ARImageAnchorRemoved(ARImageAnchor anchorData); + public static event ARImageAnchorRemoved ARImageAnchorRemovedEvent; + + public delegate void ARSessionFailed(string error); public static event ARSessionFailed ARSessionFailedEvent; public delegate void ARSessionCallback(); + public delegate bool ARSessionLocalizeCallback(); public static event ARSessionCallback ARSessionInterruptedEvent; public static event ARSessionCallback ARSessioninterruptionEndedEvent; public delegate void ARSessionTrackingChanged(UnityARCamera camera); public static event ARSessionTrackingChanged ARSessionTrackingChangedEvent; + public static bool ARSessionShouldAttemptRelocalization { get; set; } + delegate void internal_ARFrameUpdate(internal_UnityARCamera camera); - public delegate void internal_ARAnchorAdded(UnityARAnchorData anchorData); - public delegate void internal_ARAnchorUpdated(UnityARAnchorData anchorData); - public delegate void internal_ARAnchorRemoved(UnityARAnchorData anchorData); - public delegate void internal_ARUserAnchorAdded(UnityARUserAnchorData anchorData); - public delegate void internal_ARUserAnchorUpdated(UnityARUserAnchorData anchorData); - public delegate void internal_ARUserAnchorRemoved(UnityARUserAnchorData anchorData); - public delegate void internal_ARFaceAnchorAdded(UnityARFaceAnchorData anchorData); - public delegate void internal_ARFaceAnchorUpdated(UnityARFaceAnchorData anchorData); - public delegate void internal_ARFaceAnchorRemoved(UnityARFaceAnchorData anchorData); + public delegate void internal_ARAnchorAdded(UnityARAnchorData anchorData); + public delegate void internal_ARAnchorUpdated(UnityARAnchorData anchorData); + public delegate void internal_ARAnchorRemoved(UnityARAnchorData anchorData); + public delegate void internal_ARUserAnchorAdded(UnityARUserAnchorData anchorData); + public delegate void internal_ARUserAnchorUpdated(UnityARUserAnchorData anchorData); + public delegate void internal_ARUserAnchorRemoved(UnityARUserAnchorData anchorData); + public delegate void internal_ARFaceAnchorAdded(UnityARFaceAnchorData anchorData); + public delegate void internal_ARFaceAnchorUpdated(UnityARFaceAnchorData anchorData); + public delegate void internal_ARFaceAnchorRemoved(UnityARFaceAnchorData anchorData); + public delegate void internal_ARImageAnchorAdded(UnityARImageAnchorData anchorData); + public delegate void internal_ARImageAnchorUpdated(UnityARImageAnchorData anchorData); + public delegate void internal_ARImageAnchorRemoved(UnityARImageAnchorData anchorData); delegate void internal_ARSessionTrackingChanged(internal_UnityARCamera camera); -#if !UNITY_EDITOR - private IntPtr m_NativeARSession; -#endif + private static UnityARCamera s_Camera; + +#if !UNITY_EDITOR && UNITY_IOS + private IntPtr m_NativeARSession; - private static UnityARCamera s_Camera; - - [DllImport("__Internal")] + + [DllImport("__Internal")] private static extern IntPtr unity_CreateNativeARSession(); [DllImport("__Internal")] - private static extern void session_SetSessionCallbacks(IntPtr nativeSession, internal_ARFrameUpdate frameCallback, - ARSessionFailed sessionFailed, - ARSessionCallback sessionInterrupted, - ARSessionCallback sessionInterruptionEnded, - internal_ARSessionTrackingChanged trackingChanged); + private static extern void session_SetSessionCallbacks( + IntPtr nativeSession, + internal_ARFrameUpdate frameCallback, + ARSessionFailed sessionFailed, + ARSessionCallback sessionInterrupted, + ARSessionCallback sessionInterruptionEnded, + ARSessionLocalizeCallback sessionShouldRelocalize, + internal_ARSessionTrackingChanged trackingChanged, + Action sessionWorldMapCompletionHandler, + Action sessionRefObjExtractCompletionHandler); [DllImport("__Internal")] - private static extern void session_SetPlaneAnchorCallbacks(IntPtr nativeSession, internal_ARAnchorAdded anchorAddedCallback, - internal_ARAnchorUpdated anchorUpdatedCallback, + private static extern void session_SetPlaneAnchorCallbacks(IntPtr nativeSession, internal_ARAnchorAdded anchorAddedCallback, + internal_ARAnchorUpdated anchorUpdatedCallback, internal_ARAnchorRemoved anchorRemovedCallback); [DllImport("__Internal")] - private static extern void session_SetUserAnchorCallbacks(IntPtr nativeSession, internal_ARUserAnchorAdded userAnchorAddedCallback, - internal_ARUserAnchorUpdated userAnchorUpdatedCallback, + private static extern void session_SetUserAnchorCallbacks(IntPtr nativeSession, internal_ARUserAnchorAdded userAnchorAddedCallback, + internal_ARUserAnchorUpdated userAnchorUpdatedCallback, internal_ARUserAnchorRemoved userAnchorRemovedCallback); - [DllImport("__Internal")] - private static extern void session_SetFaceAnchorCallbacks(IntPtr nativeSession, internal_ARFaceAnchorAdded faceAnchorAddedCallback, - internal_ARFaceAnchorUpdated faceAnchorUpdatedCallback, - internal_ARFaceAnchorRemoved faceAnchorRemovedCallback); + [DllImport("__Internal")] + private static extern void session_SetImageAnchorCallbacks(IntPtr nativeSession, internal_ARImageAnchorAdded imageAnchorAddedCallback, + internal_ARImageAnchorUpdated imageAnchorUpdatedCallback, + internal_ARImageAnchorRemoved imageAnchorRemovedCallback); - [DllImport("__Internal")] - private static extern void StartWorldTrackingSession(IntPtr nativeSession, ARKitWorldTrackingSessionConfiguration configuration); + [DllImport("__Internal")] + private static extern void session_SetFaceAnchorCallbacks(IntPtr nativeSession, internal_ARFaceAnchorAdded faceAnchorAddedCallback, + internal_ARFaceAnchorUpdated faceAnchorUpdatedCallback, + internal_ARFaceAnchorRemoved faceAnchorRemovedCallback); + + [DllImport("__Internal")] + private static extern IntPtr session_GetARKitSessionPtr(IntPtr nativeSession); + + [DllImport("__Internal")] + private static extern IntPtr session_GetARKitFramePtr(IntPtr nativeSession); + + [DllImport("__Internal")] + private static extern void StartWorldTrackingSession(IntPtr nativeSession, ARKitWorldTrackingSessionConfiguration configuration); [DllImport("__Internal")] private static extern void StartWorldTrackingSessionWithOptions(IntPtr nativeSession, ARKitWorldTrackingSessionConfiguration configuration, UnityARSessionRunOption runOptions); @@ -365,104 +423,254 @@ private static extern void session_SetFaceAnchorCallbacks(IntPtr nativeSession, [DllImport("__Internal")] private static extern void StartSessionWithOptions(IntPtr nativeSession, ARKitSessionConfiguration configuration, UnityARSessionRunOption runOptions); - [DllImport("__Internal")] - private static extern void StartFaceTrackingSession(IntPtr nativeSession, ARKitFaceTrackingConfiguration configuration); + [DllImport("__Internal")] + private static extern void StartFaceTrackingSession(IntPtr nativeSession, ARKitFaceTrackingConfiguration configuration); - [DllImport("__Internal")] - private static extern void StartFaceTrackingSessionWithOptions(IntPtr nativeSession, ARKitFaceTrackingConfiguration configuration, UnityARSessionRunOption runOptions); + [DllImport("__Internal")] + private static extern void StartFaceTrackingSessionWithOptions(IntPtr nativeSession, ARKitFaceTrackingConfiguration configuration, UnityARSessionRunOption runOptions); - [DllImport("__Internal")] - private static extern void PauseSession(IntPtr nativeSession); + [DllImport("__Internal")] + private static extern void PauseSession(IntPtr nativeSession); - [DllImport("__Internal")] - private static extern int HitTest(IntPtr nativeSession, ARPoint point, ARHitTestResultType types); + [DllImport("__Internal")] + private static extern int HitTest(IntPtr nativeSession, ARPoint point, ARHitTestResultType types); - [DllImport("__Internal")] - private static extern UnityARHitTestResult GetLastHitTestResult(int index); + [DllImport("__Internal")] + private static extern UnityARHitTestResult GetLastHitTestResult(int index); - [DllImport("__Internal")] - private static extern ARTextureHandles GetVideoTextureHandles(); + [DllImport("__Internal")] + private static extern ARTextureHandles.ARTextureHandlesStruct GetVideoTextureHandles(); - [DllImport("__Internal")] - private static extern float GetAmbientIntensity(); + [DllImport("__Internal")] + public static extern void ReleaseVideoTextureHandles(ARTextureHandles.ARTextureHandlesStruct handles); - [DllImport("__Internal")] - private static extern int GetTrackingQuality(); + [DllImport("__Internal")] + private static extern float GetAmbientIntensity(); [DllImport("__Internal")] - private static extern bool GetARPointCloud (ref IntPtr verts, ref uint vertLength); + private static extern int GetTrackingQuality(); - [DllImport("__Internal")] - private static extern void SetCameraNearFar (float nearZ, float farZ); + [DllImport("__Internal")] + private static extern void SetCameraNearFar (float nearZ, float farZ); - [DllImport("__Internal")] - private static extern void CapturePixelData (int enable, IntPtr pYPixelBytes, IntPtr pUVPixelBytes); + [DllImport("__Internal")] + private static extern void CapturePixelData (int enable, IntPtr pYPixelBytes, IntPtr pUVPixelBytes); - [DllImport("__Internal")] - private static extern UnityARUserAnchorData SessionAddUserAnchor (IntPtr nativeSession, UnityARUserAnchorData anchorData); + [DllImport("__Internal")] + private static extern UnityARUserAnchorData SessionAddUserAnchor (IntPtr nativeSession, UnityARUserAnchorData anchorData); + + [DllImport("__Internal")] + private static extern void SessionRemoveUserAnchor (IntPtr nativeSession, [MarshalAs(UnmanagedType.LPStr)] string anchorIdentifier); + + [DllImport("__Internal")] + private static extern void SessionSetWorldOrigin (IntPtr nativeSession, Matrix4x4 worldMatrix); + + [DllImport("__Internal")] + private static extern bool Native_IsARKit_1_5_Supported(); + + [DllImport("__Internal")] + private static extern bool Native_IsARKit_2_0_Supported(); + + [DllImport("__Internal")] + private static extern void session_GetCurrentWorldMap(IntPtr nativeSession, IntPtr callbackPtr); [DllImport("__Internal")] - private static extern void SessionRemoveUserAnchor (IntPtr nativeSession, [MarshalAs(UnmanagedType.LPStr)] string anchorIdentifier); + private static extern void session_ExtractReferenceObject(IntPtr nativeSession, Matrix4x4 unityTransform, Vector3 center, Vector3 extent, IntPtr callbackPtr); + +#else + private static void session_GetCurrentWorldMap(IntPtr nativeSession, IntPtr callbackPtr) + { + _ar_session_get_world_map_completion_handler(callbackPtr, IntPtr.Zero); + } - public UnityARSessionNativeInterface() + private static void session_ExtractReferenceObject(IntPtr nativeSession, Matrix4x4 unityTransform, Vector3 center, Vector3 extent, IntPtr callbackPtr) { -#if !UNITY_EDITOR - m_NativeARSession = unity_CreateNativeARSession(); - session_SetSessionCallbacks(m_NativeARSession, _frame_update, _ar_session_failed, _ar_session_interrupted, _ar_session_interruption_ended, _ar_tracking_changed); + _ar_session_ref_obj_extract_completion_handler(callbackPtr, IntPtr.Zero); + } + +#endif + + public static bool IsARKit_1_5_Supported() + { +#if !UNITY_EDITOR && UNITY_IOS + return Native_IsARKit_1_5_Supported(); +#else + return true; //since we might need to do some editor shenanigans +#endif + } + + public static bool IsARKit_2_0_Supported() + { +#if !UNITY_EDITOR && UNITY_IOS + return Native_IsARKit_2_0_Supported(); +#else + return true; //since we might need to do some editor shenanigans +#endif + } + + public UnityARSessionNativeInterface() + { +#if !UNITY_EDITOR && UNITY_IOS + m_NativeARSession = unity_CreateNativeARSession(); + session_SetSessionCallbacks(m_NativeARSession, _frame_update, _ar_session_failed, _ar_session_interrupted, + _ar_session_interruption_ended, _ar_session_should_relocalize, _ar_tracking_changed, _ar_session_get_world_map_completion_handler, + _ar_session_ref_obj_extract_completion_handler); session_SetPlaneAnchorCallbacks(m_NativeARSession, _anchor_added, _anchor_updated, _anchor_removed); session_SetUserAnchorCallbacks(m_NativeARSession, _user_anchor_added, _user_anchor_updated, _user_anchor_removed); session_SetFaceAnchorCallbacks(m_NativeARSession, _face_anchor_added, _face_anchor_updated, _face_anchor_removed); + session_SetImageAnchorCallbacks(m_NativeARSession, _image_anchor_added, _image_anchor_updated, _image_anchor_removed); + session_SetObjectAnchorCallbacks(m_NativeARSession, _object_anchor_added, _object_anchor_updated, _object_anchor_removed); + session_SetEnvironmentProbeAnchorCallbacks(m_NativeARSession, _envprobe_anchor_added, _envprobe_anchor_updated, _envprobe_anchor_removed); #endif - } - - static UnityARSessionNativeInterface s_UnityARSessionNativeInterface = null; + } + + static UnityARSessionNativeInterface s_UnityARSessionNativeInterface = null; + + /// + /// Gets the current session's ARWorldMap, or null if the map could not be retrieved + /// + public void GetCurrentWorldMapAsync(Action completionCallback) + { + if (completionCallback == null) + return; + +#if !UNITY_EDITOR && UNITY_IOS + GCHandle handle = GCHandle.Alloc(completionCallback); + session_GetCurrentWorldMap(m_NativeARSession, GCHandle.ToIntPtr(handle)); +#else + // Not supported: Invoke user callback immediately with null ARWorldMap + completionCallback(null); +#endif + } - public static UnityARSessionNativeInterface GetARSessionNativeInterface() + /// + /// Gets the current session's ARWorldMap, or null if the map could not be retrieved + /// + public void ExtractReferenceObjectAsync(Transform objectTransform, Vector3 center, Vector3 extent, Action completionCallback) { - if (s_UnityARSessionNativeInterface == null) { - s_UnityARSessionNativeInterface = new UnityARSessionNativeInterface (); - } - return s_UnityARSessionNativeInterface; + if (completionCallback == null) + return; + +#if !UNITY_EDITOR && UNITY_IOS + Matrix4x4 arkitTransform = UnityARMatrixOps.UnityToARKitCoordChange(objectTransform.position, objectTransform.rotation); + Vector3 arkitCenter = new Vector3(center.x, center.y, -center.z); + GCHandle handle = GCHandle.Alloc(completionCallback); + session_ExtractReferenceObject(m_NativeARSession, arkitTransform, arkitCenter, extent, GCHandle.ToIntPtr(handle)); +#else + // Not supported: Invoke user callback immediately with null ARReferenceObject + completionCallback(null); +#endif } + public static UnityARSessionNativeInterface GetARSessionNativeInterface() + { + if (s_UnityARSessionNativeInterface == null) + { + s_UnityARSessionNativeInterface = new UnityARSessionNativeInterface(); + } + return s_UnityARSessionNativeInterface; + } + + public IntPtr GetNativeSessionPtr() + { +#if !UNITY_EDITOR && UNITY_IOS + return session_GetARKitSessionPtr(m_NativeARSession); +#else + return IntPtr.Zero; +#endif + } + + public IntPtr GetNativeFramePtr() + { +#if !UNITY_EDITOR && UNITY_IOS + return session_GetARKitFramePtr(m_NativeARSession); +#else + return IntPtr.Zero; +#endif + } + #if UNITY_EDITOR - public static void SetStaticCamera(UnityARCamera scamera) - { - s_Camera = scamera; - } + public static void SetStaticCamera(UnityARCamera scamera) + { + s_Camera = scamera; + } - public static void RunFrameUpdateCallbacks() - { - if (ARFrameUpdatedEvent != null) - { - ARFrameUpdatedEvent(s_Camera); - } - } + public static void RunFrameUpdateCallbacks() + { + if (ARFrameUpdatedEvent != null) + { + ARFrameUpdatedEvent(s_Camera); + } + } - public static void RunAddAnchorCallbacks(ARPlaneAnchor arPlaneAnchor) - { - if (ARAnchorAddedEvent != null) - { - ARAnchorAddedEvent(arPlaneAnchor); - } - } + public static void RunAddAnchorCallbacks(ARPlaneAnchor arPlaneAnchor) + { + if (ARAnchorAddedEvent != null) + { + ARAnchorAddedEvent(arPlaneAnchor); + } + } - public static void RunUpdateAnchorCallbacks(ARPlaneAnchor arPlaneAnchor) - { - if (ARAnchorUpdatedEvent != null) - { - ARAnchorUpdatedEvent(arPlaneAnchor); - } - } + public static void RunUpdateAnchorCallbacks(ARPlaneAnchor arPlaneAnchor) + { + if (ARAnchorUpdatedEvent != null) + { + ARAnchorUpdatedEvent(arPlaneAnchor); + } + } - public static void RunRemoveAnchorCallbacks(ARPlaneAnchor arPlaneAnchor) - { - if (ARAnchorRemovedEvent != null) - { - ARAnchorRemovedEvent(arPlaneAnchor); - } - } + public static void RunRemoveAnchorCallbacks(ARPlaneAnchor arPlaneAnchor) + { + if (ARAnchorRemovedEvent != null) + { + ARAnchorRemovedEvent(arPlaneAnchor); + } + } + + public static void RunAddAnchorCallbacks(ARFaceAnchor arFaceAnchor) + { + if (ARFaceAnchorAddedEvent != null) + { + ARFaceAnchorAddedEvent(arFaceAnchor); + } + } + + public static void RunUpdateAnchorCallbacks(ARFaceAnchor arFaceAnchor) + { + if (ARFaceAnchorUpdatedEvent != null) + { + ARFaceAnchorUpdatedEvent(arFaceAnchor); + } + } + + public static void RunRemoveAnchorCallbacks(ARFaceAnchor arFaceAnchor) + { + if (ARFaceAnchorRemovedEvent != null) + { + ARFaceAnchorRemovedEvent(arFaceAnchor); + } + } + + private static void CreateRemoteFaceTrackingConnection(ARKitFaceTrackingConfiguration config, UnityARSessionRunOption runOptions) + { + GameObject go = new GameObject("ARKitFaceTrackingRemoteConnection"); + ARKitFaceTrackingRemoteConnection addComp = go.AddComponent(); + addComp.enableLightEstimation = config.enableLightEstimation; + addComp.resetTracking = (runOptions & UnityARSessionRunOption.ARSessionRunOptionResetTracking) != 0; + addComp.removeExistingAnchors = (runOptions & UnityARSessionRunOption.ARSessionRunOptionRemoveExistingAnchors) != 0; + } + private static void CreateRemoteWorldTrackingConnection(ARKitWorldTrackingSessionConfiguration config, UnityARSessionRunOption runOptions) + { + GameObject go = new GameObject("ARKitWorldTrackingRemoteConnection"); + ARKitRemoteConnection addComp = go.AddComponent(); + addComp.planeDetection = config.planeDetection; + addComp.startAlignment = config.alignment; + addComp.getPointCloud = config.getPointCloudData; + addComp.enableLightEstimation = config.enableLightEstimation; + addComp.resetTracking = (runOptions & UnityARSessionRunOption.ARSessionRunOptionResetTracking) != 0; + addComp.removeExistingAnchors = (runOptions & UnityARSessionRunOption.ARSessionRunOptionRemoveExistingAnchors) != 0; + } #endif @@ -473,7 +681,7 @@ public Matrix4x4 GetCameraPose() matrix.SetColumn(1, s_Camera.worldTransform.column1); matrix.SetColumn(2, s_Camera.worldTransform.column2); matrix.SetColumn(3, s_Camera.worldTransform.column3); - return matrix; + return matrix; } public Matrix4x4 GetCameraProjection() @@ -486,237 +694,274 @@ public Matrix4x4 GetCameraProjection() return matrix; } - public void SetCameraClipPlanes(float nearZ, float farZ) - { -#if !UNITY_EDITOR - SetCameraNearFar (nearZ, farZ); + public void SetCameraClipPlanes(float nearZ, float farZ) + { +#if !UNITY_EDITOR && UNITY_IOS + SetCameraNearFar (nearZ, farZ); #endif - } + } - public void SetCapturePixelData(bool enable, IntPtr pYByteArray, IntPtr pUVByteArray) - { -#if !UNITY_EDITOR - int iEnable = enable ? 1 : 0; - CapturePixelData (iEnable,pYByteArray, pUVByteArray); + public void SetCapturePixelData(bool enable, IntPtr pYByteArray, IntPtr pUVByteArray) + { +#if !UNITY_EDITOR && UNITY_IOS + int iEnable = enable ? 1 : 0; + CapturePixelData (iEnable,pYByteArray, pUVByteArray); #endif + } + + [MonoPInvokeCallback(typeof(Action))] + static void _ar_session_ref_obj_extract_completion_handler(IntPtr callbackPtr, IntPtr referenceObjectPtr) + { + GCHandle handle = GCHandle.FromIntPtr(callbackPtr); + Action completionCallback = (Action)handle.Target; + completionCallback(ARReferenceObject.FromPtr(referenceObjectPtr)); + handle.Free(); } + [MonoPInvokeCallback(typeof(Action))] + static void _ar_session_get_world_map_completion_handler(IntPtr callbackPtr, IntPtr worldMapPtr) + { + GCHandle handle = GCHandle.FromIntPtr(callbackPtr); + Action completionCallback = (Action)handle.Target; + completionCallback(ARWorldMap.FromPtr(worldMapPtr)); + handle.Free(); + } + + [MonoPInvokeCallback(typeof(Action))] + static void _ar_session_get_environment_texture_completion_handler(IntPtr callbackPtr, IntPtr texturePtr) + { + GCHandle handle = GCHandle.FromIntPtr(callbackPtr); + var completionCallback = (Action)handle.Target; + + if (texturePtr == IntPtr.Zero) + { + completionCallback(null); + } + else + { + completionCallback(Cubemap.CreateExternalTexture(0, TextureFormat.R8, false, texturePtr)); + } + + handle.Free(); + } + [MonoPInvokeCallback(typeof(internal_ARFrameUpdate))] - static void _frame_update(internal_UnityARCamera camera) - { + static void _frame_update(internal_UnityARCamera camera) + { UnityARCamera pubCamera = new UnityARCamera(); pubCamera.projectionMatrix = camera.projectionMatrix; pubCamera.worldTransform = camera.worldTransform; pubCamera.trackingState = camera.trackingState; pubCamera.trackingReason = camera.trackingReason; - pubCamera.videoParams = camera.videoParams; - pubCamera.lightData = camera.lightData; - pubCamera.displayTransform = camera.displayTransform; - s_Camera = pubCamera; + pubCamera.videoParams = camera.videoParams; + pubCamera.worldMappingStatus = camera.worldMappngStatus; + pubCamera.pointCloud = ARPointCloud.FromPtr(camera.pointCloud); - if (camera.getPointCloudData == 1) + if (camera.getLightEstimation == 1) { - UpdatePointCloudData (ref s_Camera); - } + pubCamera.lightData = camera.lightData; + } + + pubCamera.displayTransform = camera.displayTransform; + s_Camera = pubCamera; if (ARFrameUpdatedEvent != null) { ARFrameUpdatedEvent(s_Camera); } - } + } [MonoPInvokeCallback(typeof(internal_ARSessionTrackingChanged))] - static void _ar_tracking_changed(internal_UnityARCamera camera) - { - // we only update the current camera's tracking state since that's all + static void _ar_tracking_changed(internal_UnityARCamera camera) + { + // we only update the current camera's tracking state since that's all // this cllback is for - s_Camera.trackingState = camera.trackingState; + s_Camera.trackingState = camera.trackingState; s_Camera.trackingReason = camera.trackingReason; if (ARSessionTrackingChangedEvent != null) { ARSessionTrackingChangedEvent(s_Camera); } - } - - static void UpdatePointCloudData(ref UnityARCamera camera) - { - IntPtr ptrResultVerts = IntPtr.Zero; - uint resultVertLength = 0; - bool success = GetARPointCloud (ref ptrResultVerts, ref resultVertLength); - float[] resultVertices = null; - if (success) { - // Load the results into a managed array. - resultVertices = new float[resultVertLength]; - Marshal.Copy (ptrResultVerts, resultVertices, 0, (int)resultVertLength); - - Vector3[] verts = new Vector3[(resultVertLength / 4)]; - - for (int count = 0; count < resultVertLength; count++) - { - verts [count / 4].x = resultVertices[count++]; - verts [count / 4].y = resultVertices[count++]; - verts [count / 4].z = -resultVertices[count++]; - } - camera.pointCloudData = verts; - } - } - static ARPlaneAnchor GetPlaneAnchorFromAnchorData(UnityARAnchorData anchor) - { - //get the identifier for this anchor from the pointer - ARPlaneAnchor arPlaneAnchor = new ARPlaneAnchor (); - arPlaneAnchor.identifier = Marshal.PtrToStringAuto(anchor.ptrIdentifier); - - Matrix4x4 matrix = new Matrix4x4 (); - matrix.SetColumn(0, anchor.transform.column0); - matrix.SetColumn(1, anchor.transform.column1); - matrix.SetColumn(2, anchor.transform.column2); - matrix.SetColumn(3, anchor.transform.column3); - - arPlaneAnchor.transform = matrix; - arPlaneAnchor.alignment = anchor.alignment; - arPlaneAnchor.center = new Vector3(anchor.center.x, anchor.center.y, anchor.center.z); - arPlaneAnchor.extent = new Vector3(anchor.extent.x, anchor.extent.y, anchor.extent.z); - return arPlaneAnchor; - } - - static ARUserAnchor GetUserAnchorFromAnchorData(UnityARUserAnchorData anchor) - { - //get the identifier for this anchor from the pointer - ARUserAnchor arUserAnchor = new ARUserAnchor (); + static ARUserAnchor GetUserAnchorFromAnchorData(UnityARUserAnchorData anchor) + { + //get the identifier for this anchor from the pointer + ARUserAnchor arUserAnchor = new ARUserAnchor(); arUserAnchor.identifier = Marshal.PtrToStringAuto(anchor.ptrIdentifier); - Matrix4x4 matrix = new Matrix4x4 (); - matrix.SetColumn(0, anchor.transform.column0); - matrix.SetColumn(1, anchor.transform.column1); - matrix.SetColumn(2, anchor.transform.column2); - matrix.SetColumn(3, anchor.transform.column3); + Matrix4x4 matrix = new Matrix4x4(); + matrix.SetColumn(0, anchor.transform.column0); + matrix.SetColumn(1, anchor.transform.column1); + matrix.SetColumn(2, anchor.transform.column2); + matrix.SetColumn(3, anchor.transform.column3); - arUserAnchor.transform = matrix; - return arUserAnchor; - } + arUserAnchor.transform = matrix; + return arUserAnchor; + } static ARHitTestResult GetHitTestResultFromResultData(UnityARHitTestResult resultData) { - ARHitTestResult arHitTestResult = new ARHitTestResult (); + ARHitTestResult arHitTestResult = new ARHitTestResult(); arHitTestResult.type = resultData.type; arHitTestResult.distance = resultData.distance; arHitTestResult.localTransform = resultData.localTransform; arHitTestResult.worldTransform = resultData.worldTransform; arHitTestResult.isValid = resultData.isValid; - if (resultData.anchor != IntPtr.Zero) { - arHitTestResult.anchorIdentifier = Marshal.PtrToStringAuto (resultData.anchor); + if (resultData.anchor != IntPtr.Zero) + { + arHitTestResult.anchorIdentifier = Marshal.PtrToStringAuto(resultData.anchor); } return arHitTestResult; } -#region Plane Anchors - [MonoPInvokeCallback(typeof(internal_ARAnchorAdded))] + #region Plane Anchors +#if !UNITY_EDITOR && UNITY_IOS + [MonoPInvokeCallback(typeof(internal_ARAnchorAdded))] static void _anchor_added(UnityARAnchorData anchor) { if (ARAnchorAddedEvent != null) { - ARPlaneAnchor arPlaneAnchor = GetPlaneAnchorFromAnchorData(anchor); - ARAnchorAddedEvent(arPlaneAnchor); + ARPlaneAnchor arPlaneAnchor = new ARPlaneAnchor(anchor); + ARAnchorAddedEvent(arPlaneAnchor); } } - [MonoPInvokeCallback(typeof(internal_ARAnchorUpdated))] - static void _anchor_updated(UnityARAnchorData anchor) + [MonoPInvokeCallback(typeof(internal_ARAnchorUpdated))] + static void _anchor_updated(UnityARAnchorData anchor) { if (ARAnchorUpdatedEvent != null) { - ARPlaneAnchor arPlaneAnchor = GetPlaneAnchorFromAnchorData(anchor); - ARAnchorUpdatedEvent(arPlaneAnchor); } - } + ARPlaneAnchor arPlaneAnchor = new ARPlaneAnchor(anchor); + ARAnchorUpdatedEvent(arPlaneAnchor); + } + } - [MonoPInvokeCallback(typeof(internal_ARAnchorRemoved))] - static void _anchor_removed(UnityARAnchorData anchor) - { + [MonoPInvokeCallback(typeof(internal_ARAnchorRemoved))] + static void _anchor_removed(UnityARAnchorData anchor) + { if (ARAnchorRemovedEvent != null) { - ARPlaneAnchor arPlaneAnchor = GetPlaneAnchorFromAnchorData(anchor); + ARPlaneAnchor arPlaneAnchor = new ARPlaneAnchor(anchor); ARAnchorRemovedEvent(arPlaneAnchor); } - } -#endregion + } +#endif + #endregion -#region User Anchors - [MonoPInvokeCallback(typeof(internal_ARUserAnchorAdded))] + #region User Anchors + [MonoPInvokeCallback(typeof(internal_ARUserAnchorAdded))] static void _user_anchor_added(UnityARUserAnchorData anchor) { if (ARUserAnchorAddedEvent != null) { - ARUserAnchor arUserAnchor = GetUserAnchorFromAnchorData(anchor); - ARUserAnchorAddedEvent(arUserAnchor); + ARUserAnchor arUserAnchor = GetUserAnchorFromAnchorData(anchor); + ARUserAnchorAddedEvent(arUserAnchor); } } - [MonoPInvokeCallback(typeof(internal_ARUserAnchorUpdated))] - static void _user_anchor_updated(UnityARUserAnchorData anchor) + [MonoPInvokeCallback(typeof(internal_ARUserAnchorUpdated))] + static void _user_anchor_updated(UnityARUserAnchorData anchor) { if (ARUserAnchorUpdatedEvent != null) { - ARUserAnchor arUserAnchor = GetUserAnchorFromAnchorData(anchor); - ARUserAnchorUpdatedEvent(arUserAnchor); } - } + ARUserAnchor arUserAnchor = GetUserAnchorFromAnchorData(anchor); + ARUserAnchorUpdatedEvent(arUserAnchor); + } + } - [MonoPInvokeCallback(typeof(internal_ARUserAnchorRemoved))] - static void _user_anchor_removed(UnityARUserAnchorData anchor) - { + [MonoPInvokeCallback(typeof(internal_ARUserAnchorRemoved))] + static void _user_anchor_removed(UnityARUserAnchorData anchor) + { if (ARUserAnchorRemovedEvent != null) { - ARUserAnchor arUserAnchor = GetUserAnchorFromAnchorData(anchor); + ARUserAnchor arUserAnchor = GetUserAnchorFromAnchorData(anchor); ARUserAnchorRemovedEvent(arUserAnchor); } - } -#endregion + } + #endregion -#region Face Anchors - [MonoPInvokeCallback(typeof(internal_ARFaceAnchorAdded))] - static void _face_anchor_added(UnityARFaceAnchorData anchor) - { - if (ARFaceAnchorAddedEvent != null) - { - ARFaceAnchor arFaceAnchor = new ARFaceAnchor(anchor); - ARFaceAnchorAddedEvent(arFaceAnchor); - } - } + #region Face Anchors +#if !UNITY_EDITOR && UNITY_IOS + static ARFaceAnchor arFaceAnchor; - [MonoPInvokeCallback(typeof(internal_ARFaceAnchorUpdated))] - static void _face_anchor_updated(UnityARFaceAnchorData anchor) - { - if (ARFaceAnchorUpdatedEvent != null) - { - ARFaceAnchor arFaceAnchor = new ARFaceAnchor(anchor); - ARFaceAnchorUpdatedEvent(arFaceAnchor); } - } + [MonoPInvokeCallback(typeof(internal_ARFaceAnchorAdded))] + static void _face_anchor_added(UnityARFaceAnchorData anchor) + { + if (ARFaceAnchorAddedEvent != null) + { + arFaceAnchor = new ARFaceAnchor(anchor); + ARFaceAnchorAddedEvent(arFaceAnchor); + } + } - [MonoPInvokeCallback(typeof(internal_ARFaceAnchorRemoved))] - static void _face_anchor_removed(UnityARFaceAnchorData anchor) - { - if (ARFaceAnchorRemovedEvent != null) - { - ARFaceAnchor arFaceAnchor = new ARFaceAnchor(anchor); - ARFaceAnchorRemovedEvent(arFaceAnchor); - } - } -#endregion + [MonoPInvokeCallback(typeof(internal_ARFaceAnchorUpdated))] + static void _face_anchor_updated(UnityARFaceAnchorData anchor) + { + if (ARFaceAnchorUpdatedEvent != null) + { + arFaceAnchor.Update(anchor); + ARFaceAnchorUpdatedEvent(arFaceAnchor); } + } - [MonoPInvokeCallback(typeof(ARSessionFailed))] - static void _ar_session_failed(string error) - { + [MonoPInvokeCallback(typeof(internal_ARFaceAnchorRemoved))] + static void _face_anchor_removed(UnityARFaceAnchorData anchor) + { + if (ARFaceAnchorRemovedEvent != null) + { + arFaceAnchor.Update(anchor); + ARFaceAnchorRemovedEvent(arFaceAnchor); + } + } +#endif + #endregion + + #region Image Anchors + [MonoPInvokeCallback(typeof(internal_ARImageAnchorAdded))] + static void _image_anchor_added(UnityARImageAnchorData anchor) + { + if (ARImageAnchorAddedEvent != null) + { + ARImageAnchor arImageAnchor = new ARImageAnchor(anchor); + ARImageAnchorAddedEvent(arImageAnchor); + } + } + + [MonoPInvokeCallback(typeof(internal_ARImageAnchorUpdated))] + static void _image_anchor_updated(UnityARImageAnchorData anchor) + { + if (ARImageAnchorUpdatedEvent != null) + { + ARImageAnchor arImageAnchor = new ARImageAnchor(anchor); + ARImageAnchorUpdatedEvent(arImageAnchor); + } + } + + [MonoPInvokeCallback(typeof(internal_ARImageAnchorRemoved))] + static void _image_anchor_removed(UnityARImageAnchorData anchor) + { + if (ARImageAnchorRemovedEvent != null) + { + ARImageAnchor arImageAnchor = new ARImageAnchor(anchor); + ARImageAnchorRemovedEvent(arImageAnchor); + } + } + #endregion + + + [MonoPInvokeCallback(typeof(ARSessionFailed))] + static void _ar_session_failed(string error) + { if (ARSessionFailedEvent != null) { ARSessionFailedEvent(error); } - } + } - [MonoPInvokeCallback(typeof(ARSessionCallback))] - static void _ar_session_interrupted() - { - Debug.Log("ar_session_interrupted"); + [MonoPInvokeCallback(typeof(ARSessionCallback))] + static void _ar_session_interrupted() + { + Debug.Log("ar_session_interrupted"); if (ARSessionInterruptedEvent != null) { ARSessionInterruptedEvent(); @@ -724,130 +969,169 @@ static void _ar_session_interrupted() } - [MonoPInvokeCallback(typeof(ARSessionCallback))] - static void _ar_session_interruption_ended() - { - Debug.Log("ar_session_interruption_ended"); + + [MonoPInvokeCallback(typeof(ARSessionCallback))] + static void _ar_session_interruption_ended() + { + Debug.Log("ar_session_interruption_ended"); if (ARSessioninterruptionEndedEvent != null) { ARSessioninterruptionEndedEvent(); } - } + } + + [MonoPInvokeCallback(typeof(ARSessionLocalizeCallback))] + static bool _ar_session_should_relocalize() + { + Debug.Log("_ar_session_should_relocalize"); + return ARSessionShouldAttemptRelocalization; + } public void RunWithConfigAndOptions(ARKitWorldTrackingSessionConfiguration config, UnityARSessionRunOption runOptions) { -#if !UNITY_EDITOR +#if !UNITY_EDITOR && UNITY_IOS StartWorldTrackingSessionWithOptions (m_NativeARSession, config, runOptions); +#elif UNITY_EDITOR + CreateRemoteWorldTrackingConnection(config, runOptions); #endif } - public void RunWithConfig(ARKitWorldTrackingSessionConfiguration config) - { -#if !UNITY_EDITOR - StartWorldTrackingSession(m_NativeARSession, config); + public void RunWithConfig(ARKitWorldTrackingSessionConfiguration config) + { +#if !UNITY_EDITOR && UNITY_IOS + StartWorldTrackingSession(m_NativeARSession, config); +#elif UNITY_EDITOR + UnityARSessionRunOption runOptions = UnityARSessionRunOption.ARSessionRunOptionRemoveExistingAnchors | UnityARSessionRunOption.ARSessionRunOptionResetTracking; + CreateRemoteWorldTrackingConnection(config, runOptions); #endif - } + } - public void Run() - { - RunWithConfig(new ARKitWorldTrackingSessionConfiguration(UnityARAlignment.UnityARAlignmentGravity, UnityARPlaneDetection.Horizontal)); - } + public void Run() + { + RunWithConfig(new ARKitWorldTrackingSessionConfiguration(UnityARAlignment.UnityARAlignmentGravity, UnityARPlaneDetection.Horizontal)); + } public void RunWithConfigAndOptions(ARKitSessionConfiguration config, UnityARSessionRunOption runOptions) { - #if !UNITY_EDITOR +#if !UNITY_EDITOR && UNITY_IOS StartSessionWithOptions (m_NativeARSession, config, runOptions); - #endif +#endif } public void RunWithConfig(ARKitSessionConfiguration config) { - #if !UNITY_EDITOR +#if !UNITY_EDITOR && UNITY_IOS StartSession(m_NativeARSession, config); - #endif +#endif } - - public void RunWithConfigAndOptions(ARKitFaceTrackingConfiguration config, UnityARSessionRunOption runOptions) - { - #if !UNITY_EDITOR - StartFaceTrackingSessionWithOptions (m_NativeARSession, config, runOptions); - #endif - } - public void RunWithConfig(ARKitFaceTrackingConfiguration config) - { - #if !UNITY_EDITOR - StartFaceTrackingSession(m_NativeARSession, config); - #endif - } + public void RunWithConfigAndOptions(ARKitFaceTrackingConfiguration config, UnityARSessionRunOption runOptions) + { +#if !UNITY_EDITOR && UNITY_IOS + StartFaceTrackingSessionWithOptions (m_NativeARSession, config, runOptions); +#elif UNITY_EDITOR + CreateRemoteFaceTrackingConnection(config, runOptions); +#endif + } + + public void RunWithConfig(ARKitFaceTrackingConfiguration config) + { +#if !UNITY_EDITOR && UNITY_IOS + StartFaceTrackingSession(m_NativeARSession, config); +#elif UNITY_EDITOR + UnityARSessionRunOption runOptions = UnityARSessionRunOption.ARSessionRunOptionRemoveExistingAnchors | UnityARSessionRunOption.ARSessionRunOptionResetTracking; + CreateRemoteFaceTrackingConnection(config, runOptions); +#endif + } - public void Pause() - { -#if !UNITY_EDITOR - PauseSession(m_NativeARSession); + public void Pause() + { +#if !UNITY_EDITOR && UNITY_IOS + PauseSession(m_NativeARSession); #endif - } - - public List HitTest(ARPoint point, ARHitTestResultType types) - { -#if !UNITY_EDITOR - int numResults = HitTest(m_NativeARSession, point, types); - List results = new List(); - - for (int i = 0; i < numResults; ++i) - { - var result = GetLastHitTestResult(i); - results.Add(GetHitTestResultFromResultData(result)); - } - - return results; + } + + public List HitTest(ARPoint point, ARHitTestResultType types) + { + List results = new List(); + return HitTest(point, types, results); + } + + public List HitTest(ARPoint point, ARHitTestResultType types, List results) + { + results.Clear(); +#if !UNITY_EDITOR && UNITY_IOS + int numResults = HitTest(m_NativeARSession, point, types); + + for (int i = 0; i < numResults; ++i) + { + var result = GetLastHitTestResult(i); + results.Add(GetHitTestResultFromResultData(result)); + } + + return results; #else - return new List(); + return results; #endif - } - - public ARTextureHandles GetARVideoTextureHandles() - { - return GetVideoTextureHandles (); - } + } - [Obsolete("Hook ARFrameUpdatedEvent instead and get UnityARCamera.ambientIntensity")] - public float GetARAmbientIntensity() - { - return GetAmbientIntensity (); - } +#if !UNITY_EDITOR && UNITY_IOS + public ARTextureHandles GetARVideoTextureHandles() + { +#if !UNITY_EDITOR && UNITY_IOS + return new ARTextureHandles(GetVideoTextureHandles()); +#else + return new ARTextureHandles(new ARTextureHandles.ARTextureHandlesStruct { textureY = IntPtr.Zero, textureCbCr = IntPtr.Zero }); +#endif + } + + [Obsolete("Hook ARFrameUpdatedEvent instead and get UnityARCamera.ambientIntensity")] + public float GetARAmbientIntensity() + { + return GetAmbientIntensity (); + } + + [Obsolete("Hook ARFrameUpdatedEvent instead and get UnityARCamera.trackingState")] + public int GetARTrackingQuality() + { + return GetTrackingQuality(); + } +#endif - [Obsolete("Hook ARFrameUpdatedEvent instead and get UnityARCamera.trackingState")] - public int GetARTrackingQuality() - { - return GetTrackingQuality(); - } - public UnityARUserAnchorData AddUserAnchor(UnityARUserAnchorData anchorData) { -#if !UNITY_EDITOR +#if !UNITY_EDITOR && UNITY_IOS return SessionAddUserAnchor(m_NativeARSession, anchorData); -#else +#else return new UnityARUserAnchorData(); #endif } public UnityARUserAnchorData AddUserAnchorFromGameObject(GameObject go) { -#if !UNITY_EDITOR - UnityARUserAnchorData data = AddUserAnchor(UnityARUserAnchorData.UnityARUserAnchorDataFromGameObject(go)); - return data; -#else +#if !UNITY_EDITOR && UNITY_IOS + UnityARUserAnchorData data = AddUserAnchor(UnityARUserAnchorData.UnityARUserAnchorDataFromGameObject(go)); + return data; +#else return new UnityARUserAnchorData(); #endif } public void RemoveUserAnchor(string anchorIdentifier) { -#if !UNITY_EDITOR +#if !UNITY_EDITOR && UNITY_IOS SessionRemoveUserAnchor(m_NativeARSession, anchorIdentifier); #endif } - } + + public void SetWorldOrigin(Transform worldTransform) + { +#if !UNITY_EDITOR && UNITY_IOS + //convert from Unity coord system to ARKit + Matrix4x4 worldMatrix = UnityARMatrixOps.UnityToARKitCoordChange(worldTransform.position, worldTransform.rotation); + SessionSetWorldOrigin (m_NativeARSession, worldMatrix); +#endif + } + } } diff --git a/sdkproject/ProjectSettings/ProjectVersion.txt b/sdkproject/ProjectSettings/ProjectVersion.txt index 3c3649262..1be197797 100644 --- a/sdkproject/ProjectSettings/ProjectVersion.txt +++ b/sdkproject/ProjectSettings/ProjectVersion.txt @@ -1 +1 @@ -m_EditorVersion: 2017.4.2f2 +m_EditorVersion: 2017.4.30f1 diff --git a/sdkproject/UnityPackageManager/manifest.json b/sdkproject/UnityPackageManager/manifest.json new file mode 100644 index 000000000..526aca605 --- /dev/null +++ b/sdkproject/UnityPackageManager/manifest.json @@ -0,0 +1,4 @@ +{ + "dependencies": { + } +}