Compare commits
4 commits
7b1b1f3551
...
68cdece98a
Author | SHA1 | Date | |
---|---|---|---|
![]() |
68cdece98a | ||
![]() |
9918aed0ec | ||
![]() |
75263c9d1b | ||
![]() |
616beb5574 |
24 changed files with 4057 additions and 10438 deletions
|
@ -3,18 +3,93 @@ using System.Collections.Generic;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
using UnityEngine.UI;
|
using UnityEngine.UI;
|
||||||
using UnityEngine.XR.Interaction.Toolkit;
|
using UnityEngine.XR.Interaction.Toolkit;
|
||||||
|
using UnityEngine.XR.Interaction.Toolkit.Interactables;
|
||||||
|
using UnityEngine.XR.Interaction.Toolkit.Interactors;
|
||||||
|
|
||||||
public class Brushteeth : MonoBehaviour
|
public class Brushteeth : MonoBehaviour
|
||||||
{
|
{
|
||||||
|
// public Slider progressBar; // Reference to the Slider (progress bar)
|
||||||
|
// public float progressTime = 5f; // Time for the progress bar to complete
|
||||||
|
// private UnityEngine.XR.Interaction.Toolkit.Interactables.XRGrabInteractable grabInteractable;
|
||||||
|
// private float timer = 0f;
|
||||||
|
// private bool isGrabbing = false;
|
||||||
|
//
|
||||||
|
// void Start()
|
||||||
|
// {
|
||||||
|
// grabInteractable = GetComponent<UnityEngine.XR.Interaction.Toolkit.Interactables.XRGrabInteractable>();
|
||||||
|
//
|
||||||
|
// if (grabInteractable == null)
|
||||||
|
// {
|
||||||
|
// Debug.LogError("XRGrabInteractable component not found on the object!");
|
||||||
|
// return;
|
||||||
|
// }
|
||||||
|
//
|
||||||
|
// // Ensure the progress bar is hidden initially
|
||||||
|
// progressBar.gameObject.SetActive(false);
|
||||||
|
//
|
||||||
|
// // Subscribe to grab and release events
|
||||||
|
// grabInteractable.selectEntered.AddListener(OnGrab);
|
||||||
|
// grabInteractable.selectExited.AddListener(OnRelease);
|
||||||
|
// }
|
||||||
|
//
|
||||||
|
// void Update()
|
||||||
|
// {
|
||||||
|
// if (isGrabbing)
|
||||||
|
// {
|
||||||
|
// timer += Time.deltaTime;
|
||||||
|
// progressBar.value = timer / progressTime;
|
||||||
|
//
|
||||||
|
// if (timer >= progressTime)
|
||||||
|
// {
|
||||||
|
// CompleteProgress();
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
//
|
||||||
|
// private void OnGrab(SelectEnterEventArgs args)
|
||||||
|
// {
|
||||||
|
// // Show and reset the progress bar
|
||||||
|
// progressBar.gameObject.SetActive(true);
|
||||||
|
// progressBar.value = 0f;
|
||||||
|
// timer = 0f;
|
||||||
|
// isGrabbing = true;
|
||||||
|
// }
|
||||||
|
//
|
||||||
|
// private void OnRelease(SelectExitEventArgs args)
|
||||||
|
// {
|
||||||
|
// // Hide the progress bar and stop the timer
|
||||||
|
// progressBar.gameObject.SetActive(false);
|
||||||
|
// isGrabbing = false;
|
||||||
|
// timer = 0f;
|
||||||
|
// }
|
||||||
|
//
|
||||||
|
// private void CompleteProgress()
|
||||||
|
// {
|
||||||
|
// // Hide the progress bar and perform any additional actions when complete
|
||||||
|
// progressBar.gameObject.SetActive(false);
|
||||||
|
// isGrabbing = false;
|
||||||
|
//
|
||||||
|
// Debug.Log("Progress completed!");
|
||||||
|
// }
|
||||||
|
//
|
||||||
|
// private void OnDestroy()
|
||||||
|
// {
|
||||||
|
// // Unsubscribe from events to avoid memory leaks
|
||||||
|
// if (grabInteractable != null)
|
||||||
|
// {
|
||||||
|
// grabInteractable.selectEntered.RemoveListener(OnGrab);
|
||||||
|
// grabInteractable.selectExited.RemoveListener(OnRelease);
|
||||||
|
// }
|
||||||
|
// }
|
||||||
public Slider progressBar; // Reference to the Slider (progress bar)
|
public Slider progressBar; // Reference to the Slider (progress bar)
|
||||||
public float progressTime = 5f; // Time for the progress bar to complete
|
public float progressTime = 5f; // Time for the progress bar to complete
|
||||||
private UnityEngine.XR.Interaction.Toolkit.Interactables.XRGrabInteractable grabInteractable;
|
private XRGrabInteractable grabInteractable;
|
||||||
private float timer = 0f;
|
private float timer = 0f;
|
||||||
private bool isGrabbing = false;
|
private bool isGrabbing = false;
|
||||||
|
|
||||||
void Start()
|
void Start()
|
||||||
{
|
{
|
||||||
grabInteractable = GetComponent<UnityEngine.XR.Interaction.Toolkit.Interactables.XRGrabInteractable>();
|
grabInteractable = GetComponent<XRGrabInteractable>();
|
||||||
|
|
||||||
if (grabInteractable == null)
|
if (grabInteractable == null)
|
||||||
{
|
{
|
||||||
|
@ -46,7 +121,13 @@ public class Brushteeth : MonoBehaviour
|
||||||
|
|
||||||
private void OnGrab(SelectEnterEventArgs args)
|
private void OnGrab(SelectEnterEventArgs args)
|
||||||
{
|
{
|
||||||
// Show and reset the progress bar
|
// Ignore if grabbed by a socket interactor
|
||||||
|
if (args.interactorObject.transform.GetComponent<XRSocketInteractor>() != null)
|
||||||
|
{
|
||||||
|
return; // Do nothing if grabbed by a socket
|
||||||
|
}
|
||||||
|
|
||||||
|
// Only show progress bar if NOT grabbed by a socket
|
||||||
progressBar.gameObject.SetActive(true);
|
progressBar.gameObject.SetActive(true);
|
||||||
progressBar.value = 0f;
|
progressBar.value = 0f;
|
||||||
timer = 0f;
|
timer = 0f;
|
||||||
|
@ -55,7 +136,7 @@ public class Brushteeth : MonoBehaviour
|
||||||
|
|
||||||
private void OnRelease(SelectExitEventArgs args)
|
private void OnRelease(SelectExitEventArgs args)
|
||||||
{
|
{
|
||||||
// Hide the progress bar and stop the timer
|
// Stop progress when released, regardless of interactor type
|
||||||
progressBar.gameObject.SetActive(false);
|
progressBar.gameObject.SetActive(false);
|
||||||
isGrabbing = false;
|
isGrabbing = false;
|
||||||
timer = 0f;
|
timer = 0f;
|
||||||
|
@ -63,7 +144,6 @@ public class Brushteeth : MonoBehaviour
|
||||||
|
|
||||||
private void CompleteProgress()
|
private void CompleteProgress()
|
||||||
{
|
{
|
||||||
// Hide the progress bar and perform any additional actions when complete
|
|
||||||
progressBar.gameObject.SetActive(false);
|
progressBar.gameObject.SetActive(false);
|
||||||
isGrabbing = false;
|
isGrabbing = false;
|
||||||
|
|
||||||
|
@ -72,7 +152,6 @@ public class Brushteeth : MonoBehaviour
|
||||||
|
|
||||||
private void OnDestroy()
|
private void OnDestroy()
|
||||||
{
|
{
|
||||||
// Unsubscribe from events to avoid memory leaks
|
|
||||||
if (grabInteractable != null)
|
if (grabInteractable != null)
|
||||||
{
|
{
|
||||||
grabInteractable.selectEntered.RemoveListener(OnGrab);
|
grabInteractable.selectEntered.RemoveListener(OnGrab);
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: c688e85f2d5f0514db77f12de3035e9f
|
guid: c23c9f7c225f28546ad748b02e751f1d
|
||||||
folderAsset: yes
|
folderAsset: yes
|
||||||
DefaultImporter:
|
DefaultImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
43
Game/Assets/Camera effects/Camerashake.cs
Normal file
43
Game/Assets/Camera effects/Camerashake.cs
Normal file
|
@ -0,0 +1,43 @@
|
||||||
|
using System.Collections;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using UnityEngine;
|
||||||
|
|
||||||
|
public class Camerashake : MonoBehaviour
|
||||||
|
{
|
||||||
|
[SerializeField] private float shakeMagnitude = 0.05f;
|
||||||
|
[SerializeField] private bool isShaking = false; // Toggle shaking on/off
|
||||||
|
|
||||||
|
private Transform cameraOffsetTransform;
|
||||||
|
private Vector3 originalLocalPos;
|
||||||
|
|
||||||
|
private void Start()
|
||||||
|
{
|
||||||
|
cameraOffsetTransform = transform; // Attach this script to Camera Offset
|
||||||
|
originalLocalPos = cameraOffsetTransform.localPosition;
|
||||||
|
}
|
||||||
|
|
||||||
|
private void Update()
|
||||||
|
{
|
||||||
|
if (isShaking)
|
||||||
|
{
|
||||||
|
cameraOffsetTransform.localPosition = originalLocalPos + (Vector3)Random.insideUnitSphere * shakeMagnitude;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
cameraOffsetTransform.localPosition = originalLocalPos; // Reset when not shaking
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Public methods to enable/disable shaking dynamically
|
||||||
|
public void StartShaking(float magnitude = -1)
|
||||||
|
{
|
||||||
|
if (magnitude > 0) shakeMagnitude = magnitude;
|
||||||
|
isShaking = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void StopShaking()
|
||||||
|
{
|
||||||
|
isShaking = false;
|
||||||
|
cameraOffsetTransform.localPosition = originalLocalPos; // Ensure reset
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,5 +1,5 @@
|
||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: 4b1f4f8f4c07c9d47ab772a2e4af8323
|
guid: 829050d920c070f4783f067cdcb74217
|
||||||
MonoImporter:
|
MonoImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
44
Game/Assets/Camera effects/colordistortion Profile.asset
Normal file
44
Game/Assets/Camera effects/colordistortion Profile.asset
Normal file
|
@ -0,0 +1,44 @@
|
||||||
|
%YAML 1.1
|
||||||
|
%TAG !u! tag:unity3d.com,2011:
|
||||||
|
--- !u!114 &11400000
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 0}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: 11500000, guid: d7fd9488000d3734a9e00ee676215985, type: 3}
|
||||||
|
m_Name: colordistortion Profile
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
components:
|
||||||
|
- {fileID: 2076673937229531157}
|
||||||
|
--- !u!114 &2076673937229531157
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 3
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 0}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: 11500000, guid: 66f335fb1ffd8684294ad653bf1c7564, type: 3}
|
||||||
|
m_Name: ColorAdjustments
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
active: 1
|
||||||
|
postExposure:
|
||||||
|
m_OverrideState: 1
|
||||||
|
m_Value: 0
|
||||||
|
contrast:
|
||||||
|
m_OverrideState: 1
|
||||||
|
m_Value: 1.47
|
||||||
|
colorFilter:
|
||||||
|
m_OverrideState: 1
|
||||||
|
m_Value: {r: 0.9647059, g: 0.98039216, b: 1, a: 1}
|
||||||
|
hueShift:
|
||||||
|
m_OverrideState: 1
|
||||||
|
m_Value: 87
|
||||||
|
saturation:
|
||||||
|
m_OverrideState: 1
|
||||||
|
m_Value: 67
|
|
@ -0,0 +1,8 @@
|
||||||
|
fileFormatVersion: 2
|
||||||
|
guid: de50934a2e98f5940b4e2e5c8f0a1e49
|
||||||
|
NativeFormatImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
mainObjectFileID: 11400000
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
|
@ -4,16 +4,51 @@ using UnityEngine;
|
||||||
|
|
||||||
public class Followplayercam : MonoBehaviour
|
public class Followplayercam : MonoBehaviour
|
||||||
{
|
{
|
||||||
public Transform playerCamera; // Assign the Main Camera (VR/XR Camera)
|
public Transform playerCamera;
|
||||||
|
public float distanceFromPlayer = 2.0f;
|
||||||
|
public float heightOffset = 0.0f;
|
||||||
|
public float positionSmoothFactor = 0.2f; // Adjust for responsiveness
|
||||||
|
public float rotationSmoothFactor = 0.2f;
|
||||||
|
|
||||||
void Update()
|
private Vector3 smoothedPosition;
|
||||||
|
private Vector3 velocity = Vector3.zero;
|
||||||
|
|
||||||
|
void Start()
|
||||||
|
{
|
||||||
|
if (playerCamera == null)
|
||||||
|
{
|
||||||
|
Debug.LogError("Player Camera is not assigned!");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
smoothedPosition = GetTargetPosition();
|
||||||
|
transform.position = smoothedPosition;
|
||||||
|
transform.rotation = GetTargetRotation();
|
||||||
|
}
|
||||||
|
|
||||||
|
void LateUpdate()
|
||||||
{
|
{
|
||||||
if (playerCamera != null)
|
if (playerCamera != null)
|
||||||
{
|
{
|
||||||
// Make the canvas face the player's camera
|
Vector3 targetPosition = GetTargetPosition();
|
||||||
transform.position = playerCamera.position + playerCamera.forward * 2f; // Adjust distance as needed
|
|
||||||
transform.LookAt(playerCamera);
|
// SmoothDamp for a natural feel
|
||||||
transform.rotation = Quaternion.LookRotation(transform.position - playerCamera.position);
|
smoothedPosition = Vector3.SmoothDamp(smoothedPosition, targetPosition, ref velocity, positionSmoothFactor);
|
||||||
|
transform.position = smoothedPosition;
|
||||||
|
|
||||||
|
// Exponential smoothing for rotation
|
||||||
|
transform.rotation = Quaternion.Slerp(transform.rotation, GetTargetRotation(), 1 - Mathf.Exp(-rotationSmoothFactor * Time.deltaTime * 10));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private Vector3 GetTargetPosition()
|
||||||
|
{
|
||||||
|
return playerCamera.position + playerCamera.forward * distanceFromPlayer + Vector3.up * heightOffset;
|
||||||
|
}
|
||||||
|
|
||||||
|
private Quaternion GetTargetRotation()
|
||||||
|
{
|
||||||
|
Vector3 lookAtPoint = new Vector3(playerCamera.position.x, transform.position.y, playerCamera.position.z);
|
||||||
|
return Quaternion.LookRotation(lookAtPoint - transform.position);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
913
Game/Assets/Prefabs/toothbrush.prefab
Normal file
913
Game/Assets/Prefabs/toothbrush.prefab
Normal file
|
@ -0,0 +1,913 @@
|
||||||
|
%YAML 1.1
|
||||||
|
%TAG !u! tag:unity3d.com,2011:
|
||||||
|
--- !u!1 &3100722361824528699
|
||||||
|
GameObject:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
serializedVersion: 6
|
||||||
|
m_Component:
|
||||||
|
- component: {fileID: 5401093526563233445}
|
||||||
|
m_Layer: 0
|
||||||
|
m_Name: Attach point
|
||||||
|
m_TagString: Untagged
|
||||||
|
m_Icon: {fileID: 0}
|
||||||
|
m_NavMeshLayer: 0
|
||||||
|
m_StaticEditorFlags: 0
|
||||||
|
m_IsActive: 1
|
||||||
|
--- !u!4 &5401093526563233445
|
||||||
|
Transform:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 3100722361824528699}
|
||||||
|
serializedVersion: 2
|
||||||
|
m_LocalRotation: {x: 0.27059805, y: -0.6532815, z: 0.27059805, w: 0.6532815}
|
||||||
|
m_LocalPosition: {x: -0.5512, y: -0.002, z: 0.08697177}
|
||||||
|
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||||
|
m_ConstrainProportionsScale: 0
|
||||||
|
m_Children: []
|
||||||
|
m_Father: {fileID: 3017716152663212623}
|
||||||
|
m_LocalEulerAnglesHint: {x: 45, y: -90, z: 0}
|
||||||
|
--- !u!1 &8038368029267231487
|
||||||
|
GameObject:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
serializedVersion: 6
|
||||||
|
m_Component:
|
||||||
|
- component: {fileID: 3017716152663212623}
|
||||||
|
- component: {fileID: 3408018161587624474}
|
||||||
|
- component: {fileID: 316410533503637005}
|
||||||
|
- component: {fileID: 6820681745386761836}
|
||||||
|
- component: {fileID: 5470122699805207955}
|
||||||
|
- component: {fileID: 7969622155537607953}
|
||||||
|
- component: {fileID: 2537236879093333695}
|
||||||
|
- component: {fileID: 689317351338739772}
|
||||||
|
- component: {fileID: 806528791475834742}
|
||||||
|
m_Layer: 0
|
||||||
|
m_Name: toothbrush
|
||||||
|
m_TagString: Untagged
|
||||||
|
m_Icon: {fileID: 0}
|
||||||
|
m_NavMeshLayer: 0
|
||||||
|
m_StaticEditorFlags: 0
|
||||||
|
m_IsActive: 1
|
||||||
|
--- !u!4 &3017716152663212623
|
||||||
|
Transform:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 8038368029267231487}
|
||||||
|
serializedVersion: 2
|
||||||
|
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
||||||
|
m_LocalPosition: {x: 0, y: 0, z: 0}
|
||||||
|
m_LocalScale: {x: 0.2105802, y: 0.25544837, z: 0.25544837}
|
||||||
|
m_ConstrainProportionsScale: 0
|
||||||
|
m_Children:
|
||||||
|
- {fileID: 5401093526563233445}
|
||||||
|
m_Father: {fileID: 0}
|
||||||
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||||
|
--- !u!114 &3408018161587624474
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 8038368029267231487}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: 11500000, guid: 8233d90336aea43098adf6dbabd606a2, type: 3}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
m_MeshFormatVersion: 2
|
||||||
|
m_Faces:
|
||||||
|
- m_Indexes: 000000000100000002000000010000000300000002000000
|
||||||
|
m_SmoothingGroup: 0
|
||||||
|
m_Uv:
|
||||||
|
m_UseWorldSpace: 0
|
||||||
|
m_FlipU: 0
|
||||||
|
m_FlipV: 0
|
||||||
|
m_SwapUV: 0
|
||||||
|
m_Fill: 1
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
m_Rotation: 0
|
||||||
|
m_Anchor: 9
|
||||||
|
m_Material: {fileID: 0}
|
||||||
|
m_SubmeshIndex: 0
|
||||||
|
m_ManualUV: 0
|
||||||
|
elementGroup: -1
|
||||||
|
m_TextureGroup: -1
|
||||||
|
- m_Indexes: 040000000500000006000000050000000700000006000000
|
||||||
|
m_SmoothingGroup: 0
|
||||||
|
m_Uv:
|
||||||
|
m_UseWorldSpace: 0
|
||||||
|
m_FlipU: 0
|
||||||
|
m_FlipV: 0
|
||||||
|
m_SwapUV: 0
|
||||||
|
m_Fill: 1
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
m_Rotation: 0
|
||||||
|
m_Anchor: 9
|
||||||
|
m_Material: {fileID: 0}
|
||||||
|
m_SubmeshIndex: 0
|
||||||
|
m_ManualUV: 0
|
||||||
|
elementGroup: -1
|
||||||
|
m_TextureGroup: -1
|
||||||
|
- m_Indexes: 08000000090000000a000000090000000b0000000a000000
|
||||||
|
m_SmoothingGroup: 0
|
||||||
|
m_Uv:
|
||||||
|
m_UseWorldSpace: 0
|
||||||
|
m_FlipU: 0
|
||||||
|
m_FlipV: 0
|
||||||
|
m_SwapUV: 0
|
||||||
|
m_Fill: 1
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
m_Rotation: 0
|
||||||
|
m_Anchor: 9
|
||||||
|
m_Material: {fileID: 0}
|
||||||
|
m_SubmeshIndex: 0
|
||||||
|
m_ManualUV: 0
|
||||||
|
elementGroup: -1
|
||||||
|
m_TextureGroup: -1
|
||||||
|
- m_Indexes: 0c0000000d0000000e0000000d0000000f0000000e000000
|
||||||
|
m_SmoothingGroup: 0
|
||||||
|
m_Uv:
|
||||||
|
m_UseWorldSpace: 0
|
||||||
|
m_FlipU: 0
|
||||||
|
m_FlipV: 0
|
||||||
|
m_SwapUV: 0
|
||||||
|
m_Fill: 1
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
m_Rotation: 0
|
||||||
|
m_Anchor: 9
|
||||||
|
m_Material: {fileID: 0}
|
||||||
|
m_SubmeshIndex: 0
|
||||||
|
m_ManualUV: 0
|
||||||
|
elementGroup: -1
|
||||||
|
m_TextureGroup: -1
|
||||||
|
- m_Indexes: 100000001100000012000000110000001300000012000000
|
||||||
|
m_SmoothingGroup: 0
|
||||||
|
m_Uv:
|
||||||
|
m_UseWorldSpace: 0
|
||||||
|
m_FlipU: 0
|
||||||
|
m_FlipV: 0
|
||||||
|
m_SwapUV: 0
|
||||||
|
m_Fill: 1
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
m_Rotation: 0
|
||||||
|
m_Anchor: 9
|
||||||
|
m_Material: {fileID: 0}
|
||||||
|
m_SubmeshIndex: 0
|
||||||
|
m_ManualUV: 0
|
||||||
|
elementGroup: -1
|
||||||
|
m_TextureGroup: -1
|
||||||
|
- m_Indexes: 140000001500000016000000150000001700000016000000
|
||||||
|
m_SmoothingGroup: 0
|
||||||
|
m_Uv:
|
||||||
|
m_UseWorldSpace: 0
|
||||||
|
m_FlipU: 0
|
||||||
|
m_FlipV: 0
|
||||||
|
m_SwapUV: 0
|
||||||
|
m_Fill: 1
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
m_Rotation: 0
|
||||||
|
m_Anchor: 9
|
||||||
|
m_Material: {fileID: 0}
|
||||||
|
m_SubmeshIndex: 0
|
||||||
|
m_ManualUV: 0
|
||||||
|
elementGroup: -1
|
||||||
|
m_TextureGroup: -1
|
||||||
|
- m_Indexes: 18000000190000001a000000190000001b0000001a000000
|
||||||
|
m_SmoothingGroup: 0
|
||||||
|
m_Uv:
|
||||||
|
m_UseWorldSpace: 0
|
||||||
|
m_FlipU: 0
|
||||||
|
m_FlipV: 0
|
||||||
|
m_SwapUV: 0
|
||||||
|
m_Fill: 1
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
m_Rotation: 0
|
||||||
|
m_Anchor: 9
|
||||||
|
m_Material: {fileID: 0}
|
||||||
|
m_SubmeshIndex: 0
|
||||||
|
m_ManualUV: 0
|
||||||
|
elementGroup: -1
|
||||||
|
m_TextureGroup: -1
|
||||||
|
- m_Indexes: 1c0000001d0000001e0000001d0000001f0000001e000000
|
||||||
|
m_SmoothingGroup: 0
|
||||||
|
m_Uv:
|
||||||
|
m_UseWorldSpace: 0
|
||||||
|
m_FlipU: 0
|
||||||
|
m_FlipV: 0
|
||||||
|
m_SwapUV: 0
|
||||||
|
m_Fill: 1
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
m_Rotation: 0
|
||||||
|
m_Anchor: 9
|
||||||
|
m_Material: {fileID: 0}
|
||||||
|
m_SubmeshIndex: 0
|
||||||
|
m_ManualUV: 0
|
||||||
|
elementGroup: -1
|
||||||
|
m_TextureGroup: -1
|
||||||
|
- m_Indexes: 200000002100000022000000210000002300000022000000
|
||||||
|
m_SmoothingGroup: 0
|
||||||
|
m_Uv:
|
||||||
|
m_UseWorldSpace: 0
|
||||||
|
m_FlipU: 0
|
||||||
|
m_FlipV: 0
|
||||||
|
m_SwapUV: 0
|
||||||
|
m_Fill: 1
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
m_Rotation: 0
|
||||||
|
m_Anchor: 9
|
||||||
|
m_Material: {fileID: 0}
|
||||||
|
m_SubmeshIndex: 0
|
||||||
|
m_ManualUV: 0
|
||||||
|
elementGroup: -1
|
||||||
|
m_TextureGroup: -1
|
||||||
|
- m_Indexes: 240000002500000026000000250000002700000026000000
|
||||||
|
m_SmoothingGroup: 0
|
||||||
|
m_Uv:
|
||||||
|
m_UseWorldSpace: 0
|
||||||
|
m_FlipU: 0
|
||||||
|
m_FlipV: 0
|
||||||
|
m_SwapUV: 0
|
||||||
|
m_Fill: 1
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
m_Rotation: 0
|
||||||
|
m_Anchor: 9
|
||||||
|
m_Material: {fileID: 0}
|
||||||
|
m_SubmeshIndex: 0
|
||||||
|
m_ManualUV: 0
|
||||||
|
elementGroup: -1
|
||||||
|
m_TextureGroup: -1
|
||||||
|
- m_Indexes: 28000000290000002a000000290000002b0000002a000000
|
||||||
|
m_SmoothingGroup: 0
|
||||||
|
m_Uv:
|
||||||
|
m_UseWorldSpace: 0
|
||||||
|
m_FlipU: 0
|
||||||
|
m_FlipV: 0
|
||||||
|
m_SwapUV: 0
|
||||||
|
m_Fill: 1
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
m_Rotation: 0
|
||||||
|
m_Anchor: 9
|
||||||
|
m_Material: {fileID: 0}
|
||||||
|
m_SubmeshIndex: 0
|
||||||
|
m_ManualUV: 0
|
||||||
|
elementGroup: -1
|
||||||
|
m_TextureGroup: -1
|
||||||
|
- m_Indexes: 2c0000002d0000002e0000002d0000002f0000002e000000
|
||||||
|
m_SmoothingGroup: 0
|
||||||
|
m_Uv:
|
||||||
|
m_UseWorldSpace: 0
|
||||||
|
m_FlipU: 0
|
||||||
|
m_FlipV: 0
|
||||||
|
m_SwapUV: 0
|
||||||
|
m_Fill: 1
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
m_Rotation: 0
|
||||||
|
m_Anchor: 9
|
||||||
|
m_Material: {fileID: 0}
|
||||||
|
m_SubmeshIndex: 0
|
||||||
|
m_ManualUV: 0
|
||||||
|
elementGroup: -1
|
||||||
|
m_TextureGroup: -1
|
||||||
|
- m_Indexes: 300000003100000032000000310000003300000032000000
|
||||||
|
m_SmoothingGroup: 0
|
||||||
|
m_Uv:
|
||||||
|
m_UseWorldSpace: 0
|
||||||
|
m_FlipU: 0
|
||||||
|
m_FlipV: 0
|
||||||
|
m_SwapUV: 0
|
||||||
|
m_Fill: 1
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
m_Rotation: 0
|
||||||
|
m_Anchor: 9
|
||||||
|
m_Material: {fileID: 0}
|
||||||
|
m_SubmeshIndex: 0
|
||||||
|
m_ManualUV: 0
|
||||||
|
elementGroup: -1
|
||||||
|
m_TextureGroup: -1
|
||||||
|
- m_Indexes: 340000003500000036000000350000003700000036000000
|
||||||
|
m_SmoothingGroup: 0
|
||||||
|
m_Uv:
|
||||||
|
m_UseWorldSpace: 0
|
||||||
|
m_FlipU: 0
|
||||||
|
m_FlipV: 0
|
||||||
|
m_SwapUV: 0
|
||||||
|
m_Fill: 1
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
m_Rotation: 0
|
||||||
|
m_Anchor: 9
|
||||||
|
m_Material: {fileID: 0}
|
||||||
|
m_SubmeshIndex: 0
|
||||||
|
m_ManualUV: 0
|
||||||
|
elementGroup: -1
|
||||||
|
m_TextureGroup: -1
|
||||||
|
- m_Indexes: 38000000390000003a000000390000003b0000003a000000
|
||||||
|
m_SmoothingGroup: 0
|
||||||
|
m_Uv:
|
||||||
|
m_UseWorldSpace: 0
|
||||||
|
m_FlipU: 0
|
||||||
|
m_FlipV: 0
|
||||||
|
m_SwapUV: 0
|
||||||
|
m_Fill: 1
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
m_Rotation: 0
|
||||||
|
m_Anchor: 9
|
||||||
|
m_Material: {fileID: 0}
|
||||||
|
m_SubmeshIndex: 0
|
||||||
|
m_ManualUV: 0
|
||||||
|
elementGroup: -1
|
||||||
|
m_TextureGroup: -1
|
||||||
|
- m_Indexes: 3c0000003d0000003e0000003d0000003f0000003e000000
|
||||||
|
m_SmoothingGroup: 0
|
||||||
|
m_Uv:
|
||||||
|
m_UseWorldSpace: 0
|
||||||
|
m_FlipU: 0
|
||||||
|
m_FlipV: 0
|
||||||
|
m_SwapUV: 0
|
||||||
|
m_Fill: 1
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
m_Rotation: 0
|
||||||
|
m_Anchor: 9
|
||||||
|
m_Material: {fileID: 0}
|
||||||
|
m_SubmeshIndex: 0
|
||||||
|
m_ManualUV: 0
|
||||||
|
elementGroup: -1
|
||||||
|
m_TextureGroup: -1
|
||||||
|
- m_Indexes: 400000004100000042000000410000004300000042000000
|
||||||
|
m_SmoothingGroup: 0
|
||||||
|
m_Uv:
|
||||||
|
m_UseWorldSpace: 0
|
||||||
|
m_FlipU: 0
|
||||||
|
m_FlipV: 0
|
||||||
|
m_SwapUV: 0
|
||||||
|
m_Fill: 1
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
m_Rotation: 0
|
||||||
|
m_Anchor: 9
|
||||||
|
m_Material: {fileID: 0}
|
||||||
|
m_SubmeshIndex: 0
|
||||||
|
m_ManualUV: 0
|
||||||
|
elementGroup: -1
|
||||||
|
m_TextureGroup: -1
|
||||||
|
- m_Indexes: 440000004500000046000000450000004700000046000000
|
||||||
|
m_SmoothingGroup: 0
|
||||||
|
m_Uv:
|
||||||
|
m_UseWorldSpace: 0
|
||||||
|
m_FlipU: 0
|
||||||
|
m_FlipV: 0
|
||||||
|
m_SwapUV: 0
|
||||||
|
m_Fill: 1
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
m_Rotation: 0
|
||||||
|
m_Anchor: 9
|
||||||
|
m_Material: {fileID: 0}
|
||||||
|
m_SubmeshIndex: 0
|
||||||
|
m_ManualUV: 0
|
||||||
|
elementGroup: -1
|
||||||
|
m_TextureGroup: -1
|
||||||
|
m_SharedVertices:
|
||||||
|
- m_Vertices: 00000000160000001900000020000000
|
||||||
|
- m_Vertices: 0d0000001b00000022000000
|
||||||
|
- m_Vertices: 010000000400000017000000
|
||||||
|
- m_Vertices: 020000001000000021000000280000002d000000
|
||||||
|
- m_Vertices: 240000003a0000003f000000
|
||||||
|
- m_Vertices: 2a0000002f000000380000003d000000
|
||||||
|
- m_Vertices: 0f000000230000002c00000035000000
|
||||||
|
- m_Vertices: 260000003e00000047000000
|
||||||
|
- m_Vertices: 2e000000370000003c00000045000000
|
||||||
|
- m_Vertices: 030000000600000011000000
|
||||||
|
- m_Vertices: 050000000800000015000000
|
||||||
|
- m_Vertices: 070000000a00000013000000
|
||||||
|
- m_Vertices: 0900000014000000180000001d000000
|
||||||
|
- m_Vertices: 0c0000001a0000001f000000
|
||||||
|
- m_Vertices: 0b000000120000001c0000002900000030000000
|
||||||
|
- m_Vertices: 250000003b00000042000000
|
||||||
|
- m_Vertices: 2b000000320000003900000040000000
|
||||||
|
- m_Vertices: 0e0000001e0000003100000034000000
|
||||||
|
- m_Vertices: 270000004300000046000000
|
||||||
|
- m_Vertices: 33000000360000004100000044000000
|
||||||
|
m_SharedTextures: []
|
||||||
|
m_Positions:
|
||||||
|
- {x: -0.82649994, y: 0, z: 0.14123535}
|
||||||
|
- {x: 0, y: 0, z: 0.14123535}
|
||||||
|
- {x: -0.82649994, y: 0.08974409, z: 0.14123535}
|
||||||
|
- {x: 0, y: 0.08974409, z: 0.14123535}
|
||||||
|
- {x: 0, y: 0, z: 0.14123535}
|
||||||
|
- {x: 0, y: -0.00000023841858, z: -0.000030517578}
|
||||||
|
- {x: 0, y: 0.08974409, z: 0.14123535}
|
||||||
|
- {x: 0, y: 0.08974409, z: 0}
|
||||||
|
- {x: 0, y: -0.00000023841858, z: -0.000030517578}
|
||||||
|
- {x: -0.82649994, y: 0, z: 0}
|
||||||
|
- {x: 0, y: 0.08974409, z: 0}
|
||||||
|
- {x: -0.82649994, y: 0.08974409, z: 0}
|
||||||
|
- {x: -1.0944138, y: 0, z: 0}
|
||||||
|
- {x: -1.0944138, y: 0, z: 0.14123535}
|
||||||
|
- {x: -1.0944138, y: 0.08974409, z: 0}
|
||||||
|
- {x: -1.0944138, y: 0.08974409, z: 0.14123535}
|
||||||
|
- {x: -0.82649994, y: 0.08974409, z: 0.14123535}
|
||||||
|
- {x: 0, y: 0.08974409, z: 0.14123535}
|
||||||
|
- {x: -0.82649994, y: 0.08974409, z: 0}
|
||||||
|
- {x: 0, y: 0.08974409, z: 0}
|
||||||
|
- {x: -0.82649994, y: 0, z: 0}
|
||||||
|
- {x: 0, y: -0.00000023841858, z: -0.000030517578}
|
||||||
|
- {x: -0.82649994, y: 0, z: 0.14123535}
|
||||||
|
- {x: 0, y: 0, z: 0.14123535}
|
||||||
|
- {x: -0.82649994, y: 0, z: 0}
|
||||||
|
- {x: -0.82649994, y: 0, z: 0.14123535}
|
||||||
|
- {x: -1.0944138, y: 0, z: 0}
|
||||||
|
- {x: -1.0944138, y: 0, z: 0.14123535}
|
||||||
|
- {x: -0.82649994, y: 0.08974409, z: 0}
|
||||||
|
- {x: -0.82649994, y: 0, z: 0}
|
||||||
|
- {x: -1.0944138, y: 0.08974409, z: 0}
|
||||||
|
- {x: -1.0944138, y: 0, z: 0}
|
||||||
|
- {x: -0.82649994, y: 0, z: 0.14123535}
|
||||||
|
- {x: -0.82649994, y: 0.08974409, z: 0.14123535}
|
||||||
|
- {x: -1.0944138, y: 0, z: 0.14123535}
|
||||||
|
- {x: -1.0944138, y: 0.08974409, z: 0.14123535}
|
||||||
|
- {x: -0.84425354, y: 0.18487644, z: 0.13189697}
|
||||||
|
- {x: -0.84425354, y: 0.18487644, z: 0.009338379}
|
||||||
|
- {x: -1.0766563, y: 0.18487644, z: 0.13189697}
|
||||||
|
- {x: -1.0766563, y: 0.18487644, z: 0.009338379}
|
||||||
|
- {x: -0.82649994, y: 0.08974409, z: 0.14123535}
|
||||||
|
- {x: -0.82649994, y: 0.08974409, z: 0}
|
||||||
|
- {x: -0.84425354, y: 0.090628624, z: 0.13189697}
|
||||||
|
- {x: -0.84425354, y: 0.090628624, z: 0.009338379}
|
||||||
|
- {x: -1.0944138, y: 0.08974409, z: 0.14123535}
|
||||||
|
- {x: -0.82649994, y: 0.08974409, z: 0.14123535}
|
||||||
|
- {x: -1.0766563, y: 0.090628624, z: 0.13189697}
|
||||||
|
- {x: -0.84425354, y: 0.090628624, z: 0.13189697}
|
||||||
|
- {x: -0.82649994, y: 0.08974409, z: 0}
|
||||||
|
- {x: -1.0944138, y: 0.08974409, z: 0}
|
||||||
|
- {x: -0.84425354, y: 0.090628624, z: 0.009338379}
|
||||||
|
- {x: -1.0766563, y: 0.090628624, z: 0.009338379}
|
||||||
|
- {x: -1.0944138, y: 0.08974409, z: 0}
|
||||||
|
- {x: -1.0944138, y: 0.08974409, z: 0.14123535}
|
||||||
|
- {x: -1.0766563, y: 0.090628624, z: 0.009338379}
|
||||||
|
- {x: -1.0766563, y: 0.090628624, z: 0.13189697}
|
||||||
|
- {x: -0.84425354, y: 0.090628624, z: 0.13189697}
|
||||||
|
- {x: -0.84425354, y: 0.090628624, z: 0.009338379}
|
||||||
|
- {x: -0.84425354, y: 0.18487644, z: 0.13189697}
|
||||||
|
- {x: -0.84425354, y: 0.18487644, z: 0.009338379}
|
||||||
|
- {x: -1.0766563, y: 0.090628624, z: 0.13189697}
|
||||||
|
- {x: -0.84425354, y: 0.090628624, z: 0.13189697}
|
||||||
|
- {x: -1.0766563, y: 0.18487644, z: 0.13189697}
|
||||||
|
- {x: -0.84425354, y: 0.18487644, z: 0.13189697}
|
||||||
|
- {x: -0.84425354, y: 0.090628624, z: 0.009338379}
|
||||||
|
- {x: -1.0766563, y: 0.090628624, z: 0.009338379}
|
||||||
|
- {x: -0.84425354, y: 0.18487644, z: 0.009338379}
|
||||||
|
- {x: -1.0766563, y: 0.18487644, z: 0.009338379}
|
||||||
|
- {x: -1.0766563, y: 0.090628624, z: 0.009338379}
|
||||||
|
- {x: -1.0766563, y: 0.090628624, z: 0.13189697}
|
||||||
|
- {x: -1.0766563, y: 0.18487644, z: 0.009338379}
|
||||||
|
- {x: -1.0766563, y: 0.18487644, z: 0.13189697}
|
||||||
|
m_Textures0:
|
||||||
|
- {x: 0.82649994, y: 0}
|
||||||
|
- {x: 0, y: 0}
|
||||||
|
- {x: 0.82649994, y: 0.08974409}
|
||||||
|
- {x: 0, y: 0.08974409}
|
||||||
|
- {x: 0.14123535, y: 0}
|
||||||
|
- {x: -0.000030517578, y: -0.00000023841858}
|
||||||
|
- {x: 0.14123535, y: 0.08974409}
|
||||||
|
- {x: 0, y: 0.08974409}
|
||||||
|
- {x: 0.0000000011268243, y: -0.00000024879608}
|
||||||
|
- {x: -0.82649994, y: -0.000000010377482}
|
||||||
|
- {x: 0, y: 0.08974408}
|
||||||
|
- {x: -0.82649994, y: 0.089744076}
|
||||||
|
- {x: 0, y: 0}
|
||||||
|
- {x: -0.14123535, y: 0}
|
||||||
|
- {x: 0, y: 0.08974409}
|
||||||
|
- {x: -0.14123535, y: 0.08974409}
|
||||||
|
- {x: -0.82649994, y: 0.14123535}
|
||||||
|
- {x: 0, y: 0.14123535}
|
||||||
|
- {x: -0.82649994, y: 0}
|
||||||
|
- {x: 0, y: 0}
|
||||||
|
- {x: 0.82649994, y: 0}
|
||||||
|
- {x: -6.8776073e-14, y: -0.000030517578}
|
||||||
|
- {x: 0.82649994, y: 0.14123535}
|
||||||
|
- {x: 0, y: 0.14123535}
|
||||||
|
- {x: 0.82649994, y: 0}
|
||||||
|
- {x: 0.82649994, y: 0.14123535}
|
||||||
|
- {x: 1.0944138, y: 0}
|
||||||
|
- {x: 1.0944138, y: 0.14123535}
|
||||||
|
- {x: -0.82649994, y: 0.08974409}
|
||||||
|
- {x: -0.82649994, y: 0}
|
||||||
|
- {x: -1.0944138, y: 0.08974409}
|
||||||
|
- {x: -1.0944138, y: 0}
|
||||||
|
- {x: 0.82649994, y: 0}
|
||||||
|
- {x: 0.82649994, y: 0.08974409}
|
||||||
|
- {x: 1.0944138, y: 0}
|
||||||
|
- {x: 1.0944138, y: 0.08974409}
|
||||||
|
- {x: -0.84425354, y: 0.13189697}
|
||||||
|
- {x: -0.84425354, y: 0.009338379}
|
||||||
|
- {x: -1.0766563, y: 0.13189697}
|
||||||
|
- {x: -1.0766563, y: 0.009338379}
|
||||||
|
- {x: -0.8299418, y: 0.14123535}
|
||||||
|
- {x: -0.8299418, y: 0}
|
||||||
|
- {x: -0.8477174, y: 0.13189697}
|
||||||
|
- {x: -0.8477174, y: 0.009338379}
|
||||||
|
- {x: -1.0944138, y: 0.1321433}
|
||||||
|
- {x: -0.82649994, y: 0.1321433}
|
||||||
|
- {x: -1.0766563, y: 0.122763135}
|
||||||
|
- {x: -0.84425354, y: 0.122763135}
|
||||||
|
- {x: -0.82649994, y: 0.008462698}
|
||||||
|
- {x: -1.0944138, y: 0.008462698}
|
||||||
|
- {x: -0.84425354, y: 0.017842876}
|
||||||
|
- {x: -1.0766563, y: 0.017842876}
|
||||||
|
- {x: -1.0885937, y: 0}
|
||||||
|
- {x: -1.0885937, y: 0.14123535}
|
||||||
|
- {x: -1.0708144, y: 0.009338379}
|
||||||
|
- {x: -1.0708144, y: 0.13189697}
|
||||||
|
- {x: 0.13189697, y: 0.090628624}
|
||||||
|
- {x: 0.009338379, y: 0.090628624}
|
||||||
|
- {x: 0.13189697, y: 0.18487644}
|
||||||
|
- {x: 0.009338379, y: 0.18487644}
|
||||||
|
- {x: 1.0766563, y: 0.090628624}
|
||||||
|
- {x: 0.84425354, y: 0.090628624}
|
||||||
|
- {x: 1.0766563, y: 0.18487644}
|
||||||
|
- {x: 0.84425354, y: 0.18487644}
|
||||||
|
- {x: -0.84425354, y: 0.090628624}
|
||||||
|
- {x: -1.0766563, y: 0.090628624}
|
||||||
|
- {x: -0.84425354, y: 0.18487644}
|
||||||
|
- {x: -1.0766563, y: 0.18487644}
|
||||||
|
- {x: -0.009338379, y: 0.090628624}
|
||||||
|
- {x: -0.13189697, y: 0.090628624}
|
||||||
|
- {x: -0.009338379, y: 0.18487644}
|
||||||
|
- {x: -0.13189697, y: 0.18487644}
|
||||||
|
m_Textures2: []
|
||||||
|
m_Textures3: []
|
||||||
|
m_Tangents:
|
||||||
|
- {x: -1, y: 0, z: 0, w: -1}
|
||||||
|
- {x: -1, y: 0, z: 0, w: -1}
|
||||||
|
- {x: -1, y: 0, z: 0, w: -1}
|
||||||
|
- {x: -1, y: 0, z: 0, w: -1}
|
||||||
|
- {x: 0, y: 0, z: 1, w: -1}
|
||||||
|
- {x: 0, y: 0, z: 1, w: -1}
|
||||||
|
- {x: 0, y: 0, z: 1, w: -1}
|
||||||
|
- {x: 0, y: 0, z: 1, w: -1}
|
||||||
|
- {x: 1, y: 3.5625132e-14, z: -0.00003692378, w: -1}
|
||||||
|
- {x: 1, y: -0.000000004507292, z: -0.000018461888, w: -1}
|
||||||
|
- {x: 1, y: -0.000000004507292, z: -0.000018461888, w: -1}
|
||||||
|
- {x: 1, y: -0.000000009014618, z: 0, w: -1}
|
||||||
|
- {x: 0, y: 0, z: -1, w: -1}
|
||||||
|
- {x: 0, y: 0, z: -1, w: -1}
|
||||||
|
- {x: 0, y: 0, z: -1, w: -1}
|
||||||
|
- {x: 0, y: 0, z: -1, w: -1}
|
||||||
|
- {x: 1, y: 0, z: 0, w: -1}
|
||||||
|
- {x: 1, y: 0, z: 0, w: -1}
|
||||||
|
- {x: 1, y: 0, z: 0, w: -1}
|
||||||
|
- {x: 1, y: 0, z: 0, w: -1}
|
||||||
|
- {x: -1, y: 0.00000028846776, z: 0, w: -1}
|
||||||
|
- {x: -1, y: 0.00000014423388, z: 0, w: -1}
|
||||||
|
- {x: -1, y: 0.00000014423388, z: 0, w: -1}
|
||||||
|
- {x: -1, y: 0, z: 0, w: -1}
|
||||||
|
- {x: -1, y: 0, z: 0, w: -1}
|
||||||
|
- {x: -1, y: 0, z: 0, w: -1}
|
||||||
|
- {x: -1, y: 0, z: 0, w: -1}
|
||||||
|
- {x: -1, y: 0, z: 0, w: -1}
|
||||||
|
- {x: 1, y: 0, z: 0, w: -1}
|
||||||
|
- {x: 1, y: 0, z: 0, w: -1}
|
||||||
|
- {x: 1, y: 0, z: 0, w: -1}
|
||||||
|
- {x: 1, y: 0, z: 0, w: -1}
|
||||||
|
- {x: -1, y: 0, z: 0, w: -1}
|
||||||
|
- {x: -1, y: 0, z: 0, w: -1}
|
||||||
|
- {x: -1, y: 0, z: 0, w: -1}
|
||||||
|
- {x: -1, y: 0, z: 0, w: -1}
|
||||||
|
- {x: 1, y: 0, z: 0, w: -1}
|
||||||
|
- {x: 1, y: 0, z: 0, w: -1}
|
||||||
|
- {x: 1, y: 0, z: 0, w: -1}
|
||||||
|
- {x: 1, y: 0, z: 0, w: -1}
|
||||||
|
- {x: 0.9987612, y: -0.049761012, z: 0, w: -1}
|
||||||
|
- {x: 0.9987612, y: -0.049761012, z: 0, w: -1}
|
||||||
|
- {x: 0.9987612, y: -0.049761012, z: 0, w: -1}
|
||||||
|
- {x: 0.9987612, y: -0.049761012, z: 0, w: -1}
|
||||||
|
- {x: 1, y: 0, z: 0, w: -1}
|
||||||
|
- {x: 1, y: 0, z: 0, w: -1}
|
||||||
|
- {x: 1, y: 0, z: 0, w: -1}
|
||||||
|
- {x: 1, y: 0, z: 0, w: -1}
|
||||||
|
- {x: 1, y: 0, z: 0, w: -1}
|
||||||
|
- {x: 1, y: 0, z: 0, w: -1}
|
||||||
|
- {x: 1, y: 0, z: 0, w: -1}
|
||||||
|
- {x: 1, y: 0, z: 0, w: -1}
|
||||||
|
- {x: 0.9987617, y: 0.049750347, z: 0, w: -1}
|
||||||
|
- {x: 0.9987617, y: 0.049750347, z: 0, w: -1}
|
||||||
|
- {x: 0.9987617, y: 0.049750347, z: 0, w: -1}
|
||||||
|
- {x: 0.9987617, y: 0.049750347, z: 0, w: -1}
|
||||||
|
- {x: 0, y: 0, z: 1, w: -1}
|
||||||
|
- {x: 0, y: 0, z: 1, w: -1}
|
||||||
|
- {x: 0, y: 0, z: 1, w: -1}
|
||||||
|
- {x: 0, y: 0, z: 1, w: -1}
|
||||||
|
- {x: -1, y: 0, z: 0, w: -1}
|
||||||
|
- {x: -1, y: 0, z: 0, w: -1}
|
||||||
|
- {x: -1, y: 0, z: 0, w: -1}
|
||||||
|
- {x: -1, y: 0, z: 0, w: -1}
|
||||||
|
- {x: 1, y: 0, z: 0, w: -1}
|
||||||
|
- {x: 1, y: 0, z: 0, w: -1}
|
||||||
|
- {x: 1, y: 0, z: 0, w: -1}
|
||||||
|
- {x: 1, y: 0, z: 0, w: -1}
|
||||||
|
- {x: 0, y: 0, z: -1, w: -1}
|
||||||
|
- {x: 0, y: 0, z: -1, w: -1}
|
||||||
|
- {x: 0, y: 0, z: -1, w: -1}
|
||||||
|
- {x: 0, y: 0, z: -1, w: -1}
|
||||||
|
m_Colors: []
|
||||||
|
m_UnwrapParameters:
|
||||||
|
m_HardAngle: 88
|
||||||
|
m_PackMargin: 20
|
||||||
|
m_AngleError: 8
|
||||||
|
m_AreaError: 15
|
||||||
|
m_PreserveMeshAssetOnDestroy: 0
|
||||||
|
assetGuid:
|
||||||
|
m_Mesh: {fileID: 0}
|
||||||
|
m_VersionIndex: 1661
|
||||||
|
m_IsSelectable: 1
|
||||||
|
m_SelectedFaces:
|
||||||
|
m_SelectedEdges: []
|
||||||
|
m_SelectedVertices:
|
||||||
|
--- !u!114 &316410533503637005
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 8038368029267231487}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: 11500000, guid: 1ca002da428252441b92f28d83c8a65f, type: 3}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
m_Shape:
|
||||||
|
rid: 5944741222442336262
|
||||||
|
m_Size: {x: -1.5535583, y: 0.2402482, z: 0.44415283}
|
||||||
|
m_Rotation: {x: 0, y: 0, z: 0, w: 1}
|
||||||
|
m_PivotLocation: 1
|
||||||
|
m_PivotPosition: {x: 0, y: 0, z: 0}
|
||||||
|
m_UnmodifiedMeshVersion: 786
|
||||||
|
m_ShapeBox:
|
||||||
|
m_Center: {x: -0.7767792, y: 0.12012386, z: 0.2220459}
|
||||||
|
m_Extent: {x: 0.7767792, y: 0.1201241, z: 0.22207642}
|
||||||
|
references:
|
||||||
|
version: 2
|
||||||
|
RefIds:
|
||||||
|
- rid: 5944741222442336262
|
||||||
|
type: {class: Cube, ns: UnityEngine.ProBuilder.Shapes, asm: Unity.ProBuilder}
|
||||||
|
data:
|
||||||
|
--- !u!23 &6820681745386761836
|
||||||
|
MeshRenderer:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 8038368029267231487}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_CastShadows: 1
|
||||||
|
m_ReceiveShadows: 1
|
||||||
|
m_DynamicOccludee: 1
|
||||||
|
m_StaticShadowCaster: 0
|
||||||
|
m_MotionVectors: 1
|
||||||
|
m_LightProbeUsage: 1
|
||||||
|
m_ReflectionProbeUsage: 1
|
||||||
|
m_RayTracingMode: 2
|
||||||
|
m_RayTraceProcedural: 0
|
||||||
|
m_RenderingLayerMask: 1
|
||||||
|
m_RendererPriority: 0
|
||||||
|
m_Materials:
|
||||||
|
- {fileID: 2100000, guid: 4a3e37d2e16684122a1808f08ab2e3a0, type: 2}
|
||||||
|
m_StaticBatchInfo:
|
||||||
|
firstSubMesh: 0
|
||||||
|
subMeshCount: 0
|
||||||
|
m_StaticBatchRoot: {fileID: 0}
|
||||||
|
m_ProbeAnchor: {fileID: 0}
|
||||||
|
m_LightProbeVolumeOverride: {fileID: 0}
|
||||||
|
m_ScaleInLightmap: 1
|
||||||
|
m_ReceiveGI: 1
|
||||||
|
m_PreserveUVs: 0
|
||||||
|
m_IgnoreNormalsForChartDetection: 0
|
||||||
|
m_ImportantGI: 0
|
||||||
|
m_StitchLightmapSeams: 1
|
||||||
|
m_SelectedEditorRenderState: 2
|
||||||
|
m_MinimumChartSize: 4
|
||||||
|
m_AutoUVMaxDistance: 0.5
|
||||||
|
m_AutoUVMaxAngle: 89
|
||||||
|
m_LightmapParameters: {fileID: 0}
|
||||||
|
m_SortingLayerID: 0
|
||||||
|
m_SortingLayer: 0
|
||||||
|
m_SortingOrder: 0
|
||||||
|
m_AdditionalVertexStreams: {fileID: 0}
|
||||||
|
--- !u!33 &5470122699805207955
|
||||||
|
MeshFilter:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 8038368029267231487}
|
||||||
|
m_Mesh: {fileID: 0}
|
||||||
|
--- !u!64 &7969622155537607953
|
||||||
|
MeshCollider:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 8038368029267231487}
|
||||||
|
m_Material: {fileID: 0}
|
||||||
|
m_IncludeLayers:
|
||||||
|
serializedVersion: 2
|
||||||
|
m_Bits: 0
|
||||||
|
m_ExcludeLayers:
|
||||||
|
serializedVersion: 2
|
||||||
|
m_Bits: 0
|
||||||
|
m_LayerOverridePriority: 0
|
||||||
|
m_IsTrigger: 0
|
||||||
|
m_ProvidesContacts: 0
|
||||||
|
m_Enabled: 1
|
||||||
|
serializedVersion: 5
|
||||||
|
m_Convex: 1
|
||||||
|
m_CookingOptions: 30
|
||||||
|
m_Mesh: {fileID: 0}
|
||||||
|
--- !u!54 &2537236879093333695
|
||||||
|
Rigidbody:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 8038368029267231487}
|
||||||
|
serializedVersion: 4
|
||||||
|
m_Mass: 1
|
||||||
|
m_Drag: 0
|
||||||
|
m_AngularDrag: 0.05
|
||||||
|
m_CenterOfMass: {x: 0, y: 0, z: 0}
|
||||||
|
m_InertiaTensor: {x: 1, y: 1, z: 1}
|
||||||
|
m_InertiaRotation: {x: 0, y: 0, z: 0, w: 1}
|
||||||
|
m_IncludeLayers:
|
||||||
|
serializedVersion: 2
|
||||||
|
m_Bits: 0
|
||||||
|
m_ExcludeLayers:
|
||||||
|
serializedVersion: 2
|
||||||
|
m_Bits: 0
|
||||||
|
m_ImplicitCom: 1
|
||||||
|
m_ImplicitTensor: 1
|
||||||
|
m_UseGravity: 1
|
||||||
|
m_IsKinematic: 0
|
||||||
|
m_Interpolate: 0
|
||||||
|
m_Constraints: 0
|
||||||
|
m_CollisionDetection: 0
|
||||||
|
--- !u!114 &689317351338739772
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 8038368029267231487}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: 11500000, guid: 0ad34abafad169848a38072baa96cdb2, type: 3}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
m_InteractionManager: {fileID: 0}
|
||||||
|
m_Colliders: []
|
||||||
|
m_InteractionLayers:
|
||||||
|
m_Bits: 1
|
||||||
|
m_DistanceCalculationMode: 1
|
||||||
|
m_SelectMode: 0
|
||||||
|
m_FocusMode: 1
|
||||||
|
m_CustomReticle: {fileID: 0}
|
||||||
|
m_AllowGazeInteraction: 0
|
||||||
|
m_AllowGazeSelect: 0
|
||||||
|
m_OverrideGazeTimeToSelect: 0
|
||||||
|
m_GazeTimeToSelect: 0.5
|
||||||
|
m_OverrideTimeToAutoDeselectGaze: 0
|
||||||
|
m_TimeToAutoDeselectGaze: 3
|
||||||
|
m_AllowGazeAssistance: 0
|
||||||
|
m_FirstHoverEntered:
|
||||||
|
m_PersistentCalls:
|
||||||
|
m_Calls: []
|
||||||
|
m_LastHoverExited:
|
||||||
|
m_PersistentCalls:
|
||||||
|
m_Calls: []
|
||||||
|
m_HoverEntered:
|
||||||
|
m_PersistentCalls:
|
||||||
|
m_Calls: []
|
||||||
|
m_HoverExited:
|
||||||
|
m_PersistentCalls:
|
||||||
|
m_Calls: []
|
||||||
|
m_FirstSelectEntered:
|
||||||
|
m_PersistentCalls:
|
||||||
|
m_Calls: []
|
||||||
|
m_LastSelectExited:
|
||||||
|
m_PersistentCalls:
|
||||||
|
m_Calls: []
|
||||||
|
m_SelectEntered:
|
||||||
|
m_PersistentCalls:
|
||||||
|
m_Calls: []
|
||||||
|
m_SelectExited:
|
||||||
|
m_PersistentCalls:
|
||||||
|
m_Calls: []
|
||||||
|
m_FirstFocusEntered:
|
||||||
|
m_PersistentCalls:
|
||||||
|
m_Calls: []
|
||||||
|
m_LastFocusExited:
|
||||||
|
m_PersistentCalls:
|
||||||
|
m_Calls: []
|
||||||
|
m_FocusEntered:
|
||||||
|
m_PersistentCalls:
|
||||||
|
m_Calls: []
|
||||||
|
m_FocusExited:
|
||||||
|
m_PersistentCalls:
|
||||||
|
m_Calls: []
|
||||||
|
m_Activated:
|
||||||
|
m_PersistentCalls:
|
||||||
|
m_Calls: []
|
||||||
|
m_Deactivated:
|
||||||
|
m_PersistentCalls:
|
||||||
|
m_Calls: []
|
||||||
|
m_StartingHoverFilters: []
|
||||||
|
m_StartingSelectFilters: []
|
||||||
|
m_StartingInteractionStrengthFilters: []
|
||||||
|
m_AttachTransform: {fileID: 5401093526563233445}
|
||||||
|
m_SecondaryAttachTransform: {fileID: 0}
|
||||||
|
m_UseDynamicAttach: 0
|
||||||
|
m_MatchAttachPosition: 1
|
||||||
|
m_MatchAttachRotation: 1
|
||||||
|
m_SnapToColliderVolume: 1
|
||||||
|
m_ReinitializeDynamicAttachEverySingleGrab: 1
|
||||||
|
m_AttachEaseInTime: 0.15
|
||||||
|
m_MovementType: 2
|
||||||
|
m_VelocityDamping: 1
|
||||||
|
m_VelocityScale: 1
|
||||||
|
m_AngularVelocityDamping: 1
|
||||||
|
m_AngularVelocityScale: 1
|
||||||
|
m_TrackPosition: 1
|
||||||
|
m_SmoothPosition: 0
|
||||||
|
m_SmoothPositionAmount: 8
|
||||||
|
m_TightenPosition: 0.1
|
||||||
|
m_TrackRotation: 1
|
||||||
|
m_SmoothRotation: 0
|
||||||
|
m_SmoothRotationAmount: 8
|
||||||
|
m_TightenRotation: 0.1
|
||||||
|
m_TrackScale: 1
|
||||||
|
m_SmoothScale: 0
|
||||||
|
m_SmoothScaleAmount: 8
|
||||||
|
m_TightenScale: 0.1
|
||||||
|
m_ThrowOnDetach: 1
|
||||||
|
m_ThrowSmoothingDuration: 0.25
|
||||||
|
m_ThrowSmoothingCurve:
|
||||||
|
serializedVersion: 2
|
||||||
|
m_Curve:
|
||||||
|
- serializedVersion: 3
|
||||||
|
time: 1
|
||||||
|
value: 1
|
||||||
|
inSlope: 0
|
||||||
|
outSlope: 0
|
||||||
|
tangentMode: 0
|
||||||
|
weightedMode: 0
|
||||||
|
inWeight: 0
|
||||||
|
outWeight: 0
|
||||||
|
m_PreInfinity: 2
|
||||||
|
m_PostInfinity: 2
|
||||||
|
m_RotationOrder: 4
|
||||||
|
m_ThrowVelocityScale: 1.5
|
||||||
|
m_ThrowAngularVelocityScale: 1
|
||||||
|
m_ForceGravityOnDetach: 0
|
||||||
|
m_RetainTransformParent: 1
|
||||||
|
m_StartingSingleGrabTransformers: []
|
||||||
|
m_StartingMultipleGrabTransformers: []
|
||||||
|
m_AddDefaultGrabTransformers: 1
|
||||||
|
m_FarAttachMode: 1
|
||||||
|
--- !u!114 &806528791475834742
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 8038368029267231487}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: 11500000, guid: eb1413d55b2e86c418513f77e13870a2, type: 3}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
progressBar: {fileID: 0}
|
||||||
|
progressTime: 5
|
|
@ -1,5 +1,5 @@
|
||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: 10c147f557ca1b845b4296a9c44206c7
|
guid: 519c364a8a1b96b428f69317d2cfb87f
|
||||||
PrefabImporter:
|
PrefabImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
userData:
|
userData:
|
|
@ -1,37 +0,0 @@
|
||||||
// ******------------------------------------------------------******
|
|
||||||
// ProgressHelper.cs
|
|
||||||
//
|
|
||||||
// Author:
|
|
||||||
// K.Sinan Acar <ksa@puzzledwizard.com>
|
|
||||||
//
|
|
||||||
// Copyright (c) 2019 PuzzledWizard
|
|
||||||
//
|
|
||||||
// ******------------------------------------------------------******
|
|
||||||
using UnityEngine;
|
|
||||||
using System.Collections;
|
|
||||||
using UnityEngine.UI;
|
|
||||||
|
|
||||||
namespace PW
|
|
||||||
{
|
|
||||||
public class ProgressHelper : MonoBehaviour
|
|
||||||
{
|
|
||||||
public Image m_Image;
|
|
||||||
|
|
||||||
|
|
||||||
public void UpdateProcessUI(float curAmount,float totalProcess)
|
|
||||||
{
|
|
||||||
if (m_Image != null)
|
|
||||||
m_Image.fillAmount = curAmount / totalProcess;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
public void ToggleHelper(bool result)
|
|
||||||
{
|
|
||||||
gameObject.SetActive(result);
|
|
||||||
|
|
||||||
m_Image.fillAmount = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,359 +0,0 @@
|
||||||
%YAML 1.1
|
|
||||||
%TAG !u! tag:unity3d.com,2011:
|
|
||||||
--- !u!1 &1135731074724822
|
|
||||||
GameObject:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
|
||||||
m_PrefabInstance: {fileID: 0}
|
|
||||||
m_PrefabAsset: {fileID: 0}
|
|
||||||
serializedVersion: 6
|
|
||||||
m_Component:
|
|
||||||
- component: {fileID: 224641531231154952}
|
|
||||||
- component: {fileID: 222704516709080380}
|
|
||||||
- component: {fileID: 114619322665927200}
|
|
||||||
m_Layer: 0
|
|
||||||
m_Name: ProgressBar
|
|
||||||
m_TagString: Untagged
|
|
||||||
m_Icon: {fileID: 0}
|
|
||||||
m_NavMeshLayer: 0
|
|
||||||
m_StaticEditorFlags: 0
|
|
||||||
m_IsActive: 1
|
|
||||||
--- !u!224 &224641531231154952
|
|
||||||
RectTransform:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
|
||||||
m_PrefabInstance: {fileID: 0}
|
|
||||||
m_PrefabAsset: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 1135731074724822}
|
|
||||||
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
|
||||||
m_LocalPosition: {x: 0, y: 0, z: -0}
|
|
||||||
m_LocalScale: {x: 1, y: 1, z: 1}
|
|
||||||
m_ConstrainProportionsScale: 0
|
|
||||||
m_Children: []
|
|
||||||
m_Father: {fileID: 224183165179160298}
|
|
||||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
|
||||||
m_AnchorMin: {x: 0, y: 0}
|
|
||||||
m_AnchorMax: {x: 1, y: 1}
|
|
||||||
m_AnchoredPosition: {x: 0.026600003, y: 0.000000007450581}
|
|
||||||
m_SizeDelta: {x: -0.1095, y: -0.14}
|
|
||||||
m_Pivot: {x: 0.5, y: 0.5}
|
|
||||||
--- !u!222 &222704516709080380
|
|
||||||
CanvasRenderer:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
|
||||||
m_PrefabInstance: {fileID: 0}
|
|
||||||
m_PrefabAsset: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 1135731074724822}
|
|
||||||
m_CullTransparentMesh: 1
|
|
||||||
--- !u!114 &114619322665927200
|
|
||||||
MonoBehaviour:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
|
||||||
m_PrefabInstance: {fileID: 0}
|
|
||||||
m_PrefabAsset: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 1135731074724822}
|
|
||||||
m_Enabled: 1
|
|
||||||
m_EditorHideFlags: 0
|
|
||||||
m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
|
|
||||||
m_Name:
|
|
||||||
m_EditorClassIdentifier:
|
|
||||||
m_Material: {fileID: 0}
|
|
||||||
m_Color: {r: 0.2901961, g: 0.9098039, b: 0.8666667, a: 1}
|
|
||||||
m_RaycastTarget: 1
|
|
||||||
m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
|
|
||||||
m_Maskable: 1
|
|
||||||
m_OnCullStateChanged:
|
|
||||||
m_PersistentCalls:
|
|
||||||
m_Calls: []
|
|
||||||
m_Sprite: {fileID: 21300000, guid: 003cb69feba5143378ea4f492111e941, type: 3}
|
|
||||||
m_Type: 3
|
|
||||||
m_PreserveAspect: 0
|
|
||||||
m_FillCenter: 1
|
|
||||||
m_FillMethod: 0
|
|
||||||
m_FillAmount: 1
|
|
||||||
m_FillClockwise: 1
|
|
||||||
m_FillOrigin: 0
|
|
||||||
m_UseSpriteMesh: 0
|
|
||||||
m_PixelsPerUnitMultiplier: 1
|
|
||||||
--- !u!1 &1156889470512724
|
|
||||||
GameObject:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
|
||||||
m_PrefabInstance: {fileID: 0}
|
|
||||||
m_PrefabAsset: {fileID: 0}
|
|
||||||
serializedVersion: 6
|
|
||||||
m_Component:
|
|
||||||
- component: {fileID: 224183165179160298}
|
|
||||||
- component: {fileID: 222937438780535676}
|
|
||||||
- component: {fileID: 114217630518355570}
|
|
||||||
- component: {fileID: 114053502894825436}
|
|
||||||
m_Layer: 0
|
|
||||||
m_Name: Panel
|
|
||||||
m_TagString: Untagged
|
|
||||||
m_Icon: {fileID: 0}
|
|
||||||
m_NavMeshLayer: 0
|
|
||||||
m_StaticEditorFlags: 0
|
|
||||||
m_IsActive: 1
|
|
||||||
--- !u!224 &224183165179160298
|
|
||||||
RectTransform:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
|
||||||
m_PrefabInstance: {fileID: 0}
|
|
||||||
m_PrefabAsset: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 1156889470512724}
|
|
||||||
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
|
||||||
m_LocalPosition: {x: 0, y: 0, z: 0}
|
|
||||||
m_LocalScale: {x: 1, y: 1, z: 1}
|
|
||||||
m_ConstrainProportionsScale: 0
|
|
||||||
m_Children:
|
|
||||||
- {fileID: 224641531231154952}
|
|
||||||
m_Father: {fileID: 224087587930058112}
|
|
||||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
|
||||||
m_AnchorMin: {x: 0, y: 0.5}
|
|
||||||
m_AnchorMax: {x: 1, y: 0.5}
|
|
||||||
m_AnchoredPosition: {x: 0, y: 0}
|
|
||||||
m_SizeDelta: {x: 0, y: 0.2}
|
|
||||||
m_Pivot: {x: 0.5, y: 0.5}
|
|
||||||
--- !u!222 &222937438780535676
|
|
||||||
CanvasRenderer:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
|
||||||
m_PrefabInstance: {fileID: 0}
|
|
||||||
m_PrefabAsset: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 1156889470512724}
|
|
||||||
m_CullTransparentMesh: 1
|
|
||||||
--- !u!114 &114217630518355570
|
|
||||||
MonoBehaviour:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
|
||||||
m_PrefabInstance: {fileID: 0}
|
|
||||||
m_PrefabAsset: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 1156889470512724}
|
|
||||||
m_Enabled: 1
|
|
||||||
m_EditorHideFlags: 0
|
|
||||||
m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
|
|
||||||
m_Name:
|
|
||||||
m_EditorClassIdentifier:
|
|
||||||
m_Material: {fileID: 0}
|
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 1}
|
|
||||||
m_RaycastTarget: 1
|
|
||||||
m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
|
|
||||||
m_Maskable: 1
|
|
||||||
m_OnCullStateChanged:
|
|
||||||
m_PersistentCalls:
|
|
||||||
m_Calls: []
|
|
||||||
m_Sprite: {fileID: 21300000, guid: 9f5b42e6619444d599114333c7341d05, type: 3}
|
|
||||||
m_Type: 0
|
|
||||||
m_PreserveAspect: 1
|
|
||||||
m_FillCenter: 1
|
|
||||||
m_FillMethod: 4
|
|
||||||
m_FillAmount: 1
|
|
||||||
m_FillClockwise: 1
|
|
||||||
m_FillOrigin: 0
|
|
||||||
m_UseSpriteMesh: 0
|
|
||||||
m_PixelsPerUnitMultiplier: 1
|
|
||||||
--- !u!114 &114053502894825436
|
|
||||||
MonoBehaviour:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
|
||||||
m_PrefabInstance: {fileID: 0}
|
|
||||||
m_PrefabAsset: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 1156889470512724}
|
|
||||||
m_Enabled: 1
|
|
||||||
m_EditorHideFlags: 0
|
|
||||||
m_Script: {fileID: 11500000, guid: 31a19414c41e5ae4aae2af33fee712f6, type: 3}
|
|
||||||
m_Name:
|
|
||||||
m_EditorClassIdentifier:
|
|
||||||
m_ShowMaskGraphic: 1
|
|
||||||
--- !u!1 &1564182925786678
|
|
||||||
GameObject:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
|
||||||
m_PrefabInstance: {fileID: 0}
|
|
||||||
m_PrefabAsset: {fileID: 0}
|
|
||||||
serializedVersion: 6
|
|
||||||
m_Component:
|
|
||||||
- component: {fileID: 224147813303914676}
|
|
||||||
- component: {fileID: 223030704075107664}
|
|
||||||
- component: {fileID: 114761257838981582}
|
|
||||||
- component: {fileID: 114492017364940366}
|
|
||||||
- component: {fileID: 114274549573225402}
|
|
||||||
m_Layer: 0
|
|
||||||
m_Name: ProgressHelper
|
|
||||||
m_TagString: Untagged
|
|
||||||
m_Icon: {fileID: 0}
|
|
||||||
m_NavMeshLayer: 0
|
|
||||||
m_StaticEditorFlags: 0
|
|
||||||
m_IsActive: 1
|
|
||||||
--- !u!224 &224147813303914676
|
|
||||||
RectTransform:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
|
||||||
m_PrefabInstance: {fileID: 0}
|
|
||||||
m_PrefabAsset: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 1564182925786678}
|
|
||||||
m_LocalRotation: {x: 0, y: 1, z: 0, w: 0}
|
|
||||||
m_LocalPosition: {x: 0, y: 0, z: -0.04}
|
|
||||||
m_LocalScale: {x: 1, y: 1, z: 1}
|
|
||||||
m_ConstrainProportionsScale: 0
|
|
||||||
m_Children:
|
|
||||||
- {fileID: 224087587930058112}
|
|
||||||
m_Father: {fileID: 0}
|
|
||||||
m_LocalEulerAnglesHint: {x: 0, y: 180, z: 0}
|
|
||||||
m_AnchorMin: {x: 0, y: 0}
|
|
||||||
m_AnchorMax: {x: 0, y: 0}
|
|
||||||
m_AnchoredPosition: {x: 0, y: 1.0499878}
|
|
||||||
m_SizeDelta: {x: 1, y: 0.4}
|
|
||||||
m_Pivot: {x: 0.5, y: 0.5}
|
|
||||||
--- !u!223 &223030704075107664
|
|
||||||
Canvas:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
|
||||||
m_PrefabInstance: {fileID: 0}
|
|
||||||
m_PrefabAsset: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 1564182925786678}
|
|
||||||
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_VertexColorAlwaysGammaSpace: 0
|
|
||||||
m_AdditionalShaderChannelsFlag: 0
|
|
||||||
m_UpdateRectTransformForStandalone: 0
|
|
||||||
m_SortingLayerID: 0
|
|
||||||
m_SortingOrder: 0
|
|
||||||
m_TargetDisplay: 0
|
|
||||||
--- !u!114 &114761257838981582
|
|
||||||
MonoBehaviour:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
|
||||||
m_PrefabInstance: {fileID: 0}
|
|
||||||
m_PrefabAsset: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 1564182925786678}
|
|
||||||
m_Enabled: 1
|
|
||||||
m_EditorHideFlags: 0
|
|
||||||
m_Script: {fileID: 11500000, guid: 0cd44c1031e13a943bb63640046fad76, type: 3}
|
|
||||||
m_Name:
|
|
||||||
m_EditorClassIdentifier:
|
|
||||||
m_UiScaleMode: 0
|
|
||||||
m_ReferencePixelsPerUnit: 1
|
|
||||||
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: 100
|
|
||||||
m_PresetInfoIsWorld: 0
|
|
||||||
--- !u!114 &114492017364940366
|
|
||||||
MonoBehaviour:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
|
||||||
m_PrefabInstance: {fileID: 0}
|
|
||||||
m_PrefabAsset: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 1564182925786678}
|
|
||||||
m_Enabled: 1
|
|
||||||
m_EditorHideFlags: 0
|
|
||||||
m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3}
|
|
||||||
m_Name:
|
|
||||||
m_EditorClassIdentifier:
|
|
||||||
m_IgnoreReversedGraphics: 1
|
|
||||||
m_BlockingObjects: 0
|
|
||||||
m_BlockingMask:
|
|
||||||
serializedVersion: 2
|
|
||||||
m_Bits: 4294967295
|
|
||||||
--- !u!114 &114274549573225402
|
|
||||||
MonoBehaviour:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
|
||||||
m_PrefabInstance: {fileID: 0}
|
|
||||||
m_PrefabAsset: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 1564182925786678}
|
|
||||||
m_Enabled: 1
|
|
||||||
m_EditorHideFlags: 0
|
|
||||||
m_Script: {fileID: 11500000, guid: 4b1f4f8f4c07c9d47ab772a2e4af8323, type: 3}
|
|
||||||
m_Name:
|
|
||||||
m_EditorClassIdentifier:
|
|
||||||
m_Image: {fileID: 114619322665927200}
|
|
||||||
--- !u!1 &1663260260552736
|
|
||||||
GameObject:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
|
||||||
m_PrefabInstance: {fileID: 0}
|
|
||||||
m_PrefabAsset: {fileID: 0}
|
|
||||||
serializedVersion: 6
|
|
||||||
m_Component:
|
|
||||||
- component: {fileID: 224087587930058112}
|
|
||||||
- component: {fileID: 222593076605136850}
|
|
||||||
- component: {fileID: 114545452438575390}
|
|
||||||
m_Layer: 0
|
|
||||||
m_Name: Panel
|
|
||||||
m_TagString: Untagged
|
|
||||||
m_Icon: {fileID: 0}
|
|
||||||
m_NavMeshLayer: 0
|
|
||||||
m_StaticEditorFlags: 0
|
|
||||||
m_IsActive: 1
|
|
||||||
--- !u!224 &224087587930058112
|
|
||||||
RectTransform:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
|
||||||
m_PrefabInstance: {fileID: 0}
|
|
||||||
m_PrefabAsset: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 1663260260552736}
|
|
||||||
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
|
||||||
m_LocalPosition: {x: 0, y: 0, z: 0}
|
|
||||||
m_LocalScale: {x: 1, y: 1, z: 1}
|
|
||||||
m_ConstrainProportionsScale: 0
|
|
||||||
m_Children:
|
|
||||||
- {fileID: 224183165179160298}
|
|
||||||
m_Father: {fileID: 224147813303914676}
|
|
||||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
|
||||||
m_AnchorMin: {x: 0, y: 0}
|
|
||||||
m_AnchorMax: {x: 1, y: 1}
|
|
||||||
m_AnchoredPosition: {x: 0, y: 0}
|
|
||||||
m_SizeDelta: {x: 0, y: 0}
|
|
||||||
m_Pivot: {x: 0.5, y: 0.5}
|
|
||||||
--- !u!222 &222593076605136850
|
|
||||||
CanvasRenderer:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
|
||||||
m_PrefabInstance: {fileID: 0}
|
|
||||||
m_PrefabAsset: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 1663260260552736}
|
|
||||||
m_CullTransparentMesh: 1
|
|
||||||
--- !u!114 &114545452438575390
|
|
||||||
MonoBehaviour:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
|
||||||
m_PrefabInstance: {fileID: 0}
|
|
||||||
m_PrefabAsset: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 1663260260552736}
|
|
||||||
m_Enabled: 0
|
|
||||||
m_EditorHideFlags: 0
|
|
||||||
m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
|
|
||||||
m_Name:
|
|
||||||
m_EditorClassIdentifier:
|
|
||||||
m_Material: {fileID: 0}
|
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 0.392}
|
|
||||||
m_RaycastTarget: 1
|
|
||||||
m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
|
|
||||||
m_Maskable: 1
|
|
||||||
m_OnCullStateChanged:
|
|
||||||
m_PersistentCalls:
|
|
||||||
m_Calls: []
|
|
||||||
m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0}
|
|
||||||
m_Type: 3
|
|
||||||
m_PreserveAspect: 0
|
|
||||||
m_FillCenter: 1
|
|
||||||
m_FillMethod: 4
|
|
||||||
m_FillAmount: 1
|
|
||||||
m_FillClockwise: 1
|
|
||||||
m_FillOrigin: 0
|
|
||||||
m_UseSpriteMesh: 0
|
|
||||||
m_PixelsPerUnitMultiplier: 1
|
|
|
@ -0,0 +1,883 @@
|
||||||
|
%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.212, g: 0.227, b: 0.259, a: 1}
|
||||||
|
m_AmbientEquatorColor: {r: 0.114, g: 0.125, b: 0.133, a: 1}
|
||||||
|
m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1}
|
||||||
|
m_AmbientIntensity: 1
|
||||||
|
m_AmbientMode: 0
|
||||||
|
m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1}
|
||||||
|
m_SkyboxMaterial: {fileID: 10304, guid: 0000000000000000f000000000000000, type: 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_UseRadianceAmbientProbe: 0
|
||||||
|
--- !u!157 &3
|
||||||
|
LightmapSettings:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
serializedVersion: 12
|
||||||
|
m_GIWorkflowMode: 1
|
||||||
|
m_GISettings:
|
||||||
|
serializedVersion: 2
|
||||||
|
m_BounceScale: 1
|
||||||
|
m_IndirectOutputScale: 1
|
||||||
|
m_AlbedoBoost: 1
|
||||||
|
m_EnvironmentLightingMode: 0
|
||||||
|
m_EnableBakedLightmaps: 1
|
||||||
|
m_EnableRealtimeLightmaps: 0
|
||||||
|
m_LightmapEditorSettings:
|
||||||
|
serializedVersion: 12
|
||||||
|
m_Resolution: 2
|
||||||
|
m_BakeResolution: 40
|
||||||
|
m_AtlasSize: 1024
|
||||||
|
m_AO: 0
|
||||||
|
m_AOMaxDistance: 1
|
||||||
|
m_CompAOExponent: 1
|
||||||
|
m_CompAOExponentDirect: 0
|
||||||
|
m_ExtractAmbientOcclusion: 0
|
||||||
|
m_Padding: 2
|
||||||
|
m_LightmapParameters: {fileID: 0}
|
||||||
|
m_LightmapsBakeMode: 1
|
||||||
|
m_TextureCompression: 1
|
||||||
|
m_FinalGather: 0
|
||||||
|
m_FinalGatherFiltering: 1
|
||||||
|
m_FinalGatherRayCount: 256
|
||||||
|
m_ReflectionCompression: 2
|
||||||
|
m_MixedBakeMode: 2
|
||||||
|
m_BakeBackend: 1
|
||||||
|
m_PVRSampling: 1
|
||||||
|
m_PVRDirectSampleCount: 32
|
||||||
|
m_PVRSampleCount: 512
|
||||||
|
m_PVRBounces: 2
|
||||||
|
m_PVREnvironmentSampleCount: 256
|
||||||
|
m_PVREnvironmentReferencePointCount: 2048
|
||||||
|
m_PVRFilteringMode: 1
|
||||||
|
m_PVRDenoiserTypeDirect: 1
|
||||||
|
m_PVRDenoiserTypeIndirect: 1
|
||||||
|
m_PVRDenoiserTypeAO: 1
|
||||||
|
m_PVRFilterTypeDirect: 0
|
||||||
|
m_PVRFilterTypeIndirect: 0
|
||||||
|
m_PVRFilterTypeAO: 0
|
||||||
|
m_PVREnvironmentMIS: 1
|
||||||
|
m_PVRCulling: 1
|
||||||
|
m_PVRFilteringGaussRadiusDirect: 1
|
||||||
|
m_PVRFilteringGaussRadiusIndirect: 5
|
||||||
|
m_PVRFilteringGaussRadiusAO: 2
|
||||||
|
m_PVRFilteringAtrousPositionSigmaDirect: 0.5
|
||||||
|
m_PVRFilteringAtrousPositionSigmaIndirect: 2
|
||||||
|
m_PVRFilteringAtrousPositionSigmaAO: 1
|
||||||
|
m_ExportTrainingData: 0
|
||||||
|
m_TrainingDataDestination: TrainingData
|
||||||
|
m_LightProbeSampleCountMultiplier: 4
|
||||||
|
m_LightingDataAsset: {fileID: 0}
|
||||||
|
m_LightingSettings: {fileID: 1406260051}
|
||||||
|
--- !u!196 &4
|
||||||
|
NavMeshSettings:
|
||||||
|
serializedVersion: 2
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_BuildSettings:
|
||||||
|
serializedVersion: 3
|
||||||
|
agentTypeID: 0
|
||||||
|
agentRadius: 0.5
|
||||||
|
agentHeight: 2
|
||||||
|
agentSlope: 45
|
||||||
|
agentClimb: 0.4
|
||||||
|
ledgeDropHeight: 0
|
||||||
|
maxJumpAcrossDistance: 0
|
||||||
|
minRegionArea: 2
|
||||||
|
manualCellSize: 0
|
||||||
|
cellSize: 0.16666667
|
||||||
|
manualTileSize: 0
|
||||||
|
tileSize: 256
|
||||||
|
buildHeightMesh: 0
|
||||||
|
maxJobWorkers: 0
|
||||||
|
preserveTilesOutsideBounds: 0
|
||||||
|
debug:
|
||||||
|
m_Flags: 0
|
||||||
|
m_NavMeshData: {fileID: 0}
|
||||||
|
--- !u!1 &19031480
|
||||||
|
GameObject:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
serializedVersion: 6
|
||||||
|
m_Component:
|
||||||
|
- component: {fileID: 19031482}
|
||||||
|
- component: {fileID: 19031481}
|
||||||
|
- component: {fileID: 19031483}
|
||||||
|
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 &19031481
|
||||||
|
Light:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 19031480}
|
||||||
|
m_Enabled: 1
|
||||||
|
serializedVersion: 10
|
||||||
|
m_Type: 1
|
||||||
|
m_Shape: 0
|
||||||
|
m_Color: {r: 1, g: 0.95686275, b: 0.8392157, a: 1}
|
||||||
|
m_Intensity: 1
|
||||||
|
m_Range: 10
|
||||||
|
m_SpotAngle: 30
|
||||||
|
m_InnerSpotAngle: 21.80208
|
||||||
|
m_CookieSize: 10
|
||||||
|
m_Shadows:
|
||||||
|
m_Type: 2
|
||||||
|
m_Resolution: -1
|
||||||
|
m_CustomResolution: -1
|
||||||
|
m_Strength: 1
|
||||||
|
m_Bias: 0.05
|
||||||
|
m_NormalBias: 0.4
|
||||||
|
m_NearPlane: 0.2
|
||||||
|
m_CullingMatrixOverride:
|
||||||
|
e00: 1
|
||||||
|
e01: 0
|
||||||
|
e02: 0
|
||||||
|
e03: 0
|
||||||
|
e10: 0
|
||||||
|
e11: 1
|
||||||
|
e12: 0
|
||||||
|
e13: 0
|
||||||
|
e20: 0
|
||||||
|
e21: 0
|
||||||
|
e22: 1
|
||||||
|
e23: 0
|
||||||
|
e30: 0
|
||||||
|
e31: 0
|
||||||
|
e32: 0
|
||||||
|
e33: 1
|
||||||
|
m_UseCullingMatrixOverride: 0
|
||||||
|
m_Cookie: {fileID: 0}
|
||||||
|
m_DrawHalo: 0
|
||||||
|
m_Flare: {fileID: 0}
|
||||||
|
m_RenderMode: 0
|
||||||
|
m_CullingMask:
|
||||||
|
serializedVersion: 2
|
||||||
|
m_Bits: 4294967295
|
||||||
|
m_RenderingLayerMask: 1
|
||||||
|
m_Lightmapping: 4
|
||||||
|
m_LightShadowCasterMode: 0
|
||||||
|
m_AreaSize: {x: 1, y: 1}
|
||||||
|
m_BounceIntensity: 1
|
||||||
|
m_ColorTemperature: 6570
|
||||||
|
m_UseColorTemperature: 0
|
||||||
|
m_BoundingSphereOverride: {x: 0, y: 0, z: 0, w: 0}
|
||||||
|
m_UseBoundingSphereOverride: 0
|
||||||
|
m_UseViewFrustumForShadowCasterCull: 1
|
||||||
|
m_ShadowRadius: 0
|
||||||
|
m_ShadowAngle: 0
|
||||||
|
--- !u!4 &19031482
|
||||||
|
Transform:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 19031480}
|
||||||
|
serializedVersion: 2
|
||||||
|
m_LocalRotation: {x: 0.40821788, y: -0.23456968, z: 0.10938163, w: 0.8754261}
|
||||||
|
m_LocalPosition: {x: 0, y: 3, z: 0}
|
||||||
|
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||||
|
m_ConstrainProportionsScale: 0
|
||||||
|
m_Children: []
|
||||||
|
m_Father: {fileID: 0}
|
||||||
|
m_LocalEulerAnglesHint: {x: 50, y: -30, z: 0}
|
||||||
|
--- !u!114 &19031483
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 19031480}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: 11500000, guid: 474bcb49853aa07438625e644c072ee6, type: 3}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
m_Version: 3
|
||||||
|
m_UsePipelineSettings: 1
|
||||||
|
m_AdditionalLightsShadowResolutionTier: 2
|
||||||
|
m_LightLayerMask: 1
|
||||||
|
m_RenderingLayers: 1
|
||||||
|
m_CustomShadowLayers: 0
|
||||||
|
m_ShadowLayerMask: 1
|
||||||
|
m_ShadowRenderingLayers: 1
|
||||||
|
m_LightCookieSize: {x: 1, y: 1}
|
||||||
|
m_LightCookieOffset: {x: 0, y: 0}
|
||||||
|
m_SoftShadowQuality: 0
|
||||||
|
--- !u!1 &262892025
|
||||||
|
GameObject:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
serializedVersion: 6
|
||||||
|
m_Component:
|
||||||
|
- component: {fileID: 262892027}
|
||||||
|
- component: {fileID: 262892026}
|
||||||
|
m_Layer: 0
|
||||||
|
m_Name: colordistortion
|
||||||
|
m_TagString: Untagged
|
||||||
|
m_Icon: {fileID: 0}
|
||||||
|
m_NavMeshLayer: 0
|
||||||
|
m_StaticEditorFlags: 0
|
||||||
|
m_IsActive: 1
|
||||||
|
--- !u!114 &262892026
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 262892025}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: 11500000, guid: 172515602e62fb746b5d573b38a5fe58, type: 3}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
m_IsGlobal: 1
|
||||||
|
priority: 0
|
||||||
|
blendDistance: 0
|
||||||
|
weight: 1
|
||||||
|
sharedProfile: {fileID: 11400000, guid: de50934a2e98f5940b4e2e5c8f0a1e49, type: 2}
|
||||||
|
--- !u!4 &262892027
|
||||||
|
Transform:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 262892025}
|
||||||
|
serializedVersion: 2
|
||||||
|
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
||||||
|
m_LocalPosition: {x: 6.3278165, y: 1.1760335, z: -1.9455162}
|
||||||
|
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||||
|
m_ConstrainProportionsScale: 0
|
||||||
|
m_Children: []
|
||||||
|
m_Father: {fileID: 0}
|
||||||
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||||
|
--- !u!1001 &701711586
|
||||||
|
PrefabInstance:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
serializedVersion: 2
|
||||||
|
m_Modification:
|
||||||
|
serializedVersion: 3
|
||||||
|
m_TransformParent: {fileID: 0}
|
||||||
|
m_Modifications:
|
||||||
|
- target: {fileID: 6045648537344725186, guid: a4a4b6738cb4ba34bb94baa14bd938f0, type: 3}
|
||||||
|
propertyPath: m_LocalPosition.x
|
||||||
|
value: 6.598006
|
||||||
|
objectReference: {fileID: 0}
|
||||||
|
- target: {fileID: 6045648537344725186, guid: a4a4b6738cb4ba34bb94baa14bd938f0, type: 3}
|
||||||
|
propertyPath: m_LocalPosition.y
|
||||||
|
value: -0.13379598
|
||||||
|
objectReference: {fileID: 0}
|
||||||
|
- target: {fileID: 6045648537344725186, guid: a4a4b6738cb4ba34bb94baa14bd938f0, type: 3}
|
||||||
|
propertyPath: m_LocalPosition.z
|
||||||
|
value: -1.6521728
|
||||||
|
objectReference: {fileID: 0}
|
||||||
|
- target: {fileID: 6045648537344725186, guid: a4a4b6738cb4ba34bb94baa14bd938f0, type: 3}
|
||||||
|
propertyPath: m_LocalRotation.w
|
||||||
|
value: -0.72310346
|
||||||
|
objectReference: {fileID: 0}
|
||||||
|
- target: {fileID: 6045648537344725186, guid: a4a4b6738cb4ba34bb94baa14bd938f0, type: 3}
|
||||||
|
propertyPath: m_LocalRotation.x
|
||||||
|
value: -0
|
||||||
|
objectReference: {fileID: 0}
|
||||||
|
- target: {fileID: 6045648537344725186, guid: a4a4b6738cb4ba34bb94baa14bd938f0, type: 3}
|
||||||
|
propertyPath: m_LocalRotation.y
|
||||||
|
value: 0.69073975
|
||||||
|
objectReference: {fileID: 0}
|
||||||
|
- target: {fileID: 6045648537344725186, guid: a4a4b6738cb4ba34bb94baa14bd938f0, type: 3}
|
||||||
|
propertyPath: m_LocalRotation.z
|
||||||
|
value: -0
|
||||||
|
objectReference: {fileID: 0}
|
||||||
|
- target: {fileID: 6045648537344725186, guid: a4a4b6738cb4ba34bb94baa14bd938f0, type: 3}
|
||||||
|
propertyPath: m_LocalEulerAnglesHint.x
|
||||||
|
value: 0
|
||||||
|
objectReference: {fileID: 0}
|
||||||
|
- target: {fileID: 6045648537344725186, guid: a4a4b6738cb4ba34bb94baa14bd938f0, type: 3}
|
||||||
|
propertyPath: m_LocalEulerAnglesHint.y
|
||||||
|
value: 272.623
|
||||||
|
objectReference: {fileID: 0}
|
||||||
|
- target: {fileID: 6045648537344725186, guid: a4a4b6738cb4ba34bb94baa14bd938f0, type: 3}
|
||||||
|
propertyPath: m_LocalEulerAnglesHint.z
|
||||||
|
value: 0
|
||||||
|
objectReference: {fileID: 0}
|
||||||
|
- target: {fileID: 7277165443329672351, guid: a4a4b6738cb4ba34bb94baa14bd938f0, type: 3}
|
||||||
|
propertyPath: m_Name
|
||||||
|
value: XR Origin (XR Rig)
|
||||||
|
objectReference: {fileID: 0}
|
||||||
|
m_RemovedComponents: []
|
||||||
|
m_RemovedGameObjects: []
|
||||||
|
m_AddedGameObjects: []
|
||||||
|
m_AddedComponents: []
|
||||||
|
m_SourcePrefab: {fileID: 100100000, guid: a4a4b6738cb4ba34bb94baa14bd938f0, type: 3}
|
||||||
|
--- !u!43 &1212827717
|
||||||
|
Mesh:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_Name: pb_Mesh-4818
|
||||||
|
serializedVersion: 11
|
||||||
|
m_SubMeshes:
|
||||||
|
- serializedVersion: 2
|
||||||
|
firstByte: 0
|
||||||
|
indexCount: 24
|
||||||
|
topology: 0
|
||||||
|
baseVertex: 0
|
||||||
|
firstVertex: 0
|
||||||
|
vertexCount: 16
|
||||||
|
localAABB:
|
||||||
|
m_Center: {x: 0, y: 0, z: 0}
|
||||||
|
m_Extent: {x: 0.62724113, y: 0, z: 0.59762573}
|
||||||
|
m_Shapes:
|
||||||
|
vertices: []
|
||||||
|
shapes: []
|
||||||
|
channels: []
|
||||||
|
fullWeights: []
|
||||||
|
m_BindPose: []
|
||||||
|
m_BoneNameHashes:
|
||||||
|
m_RootBoneNameHash: 0
|
||||||
|
m_BonesAABB: []
|
||||||
|
m_VariableBoneCountWeights:
|
||||||
|
m_Data:
|
||||||
|
m_MeshCompression: 0
|
||||||
|
m_IsReadable: 1
|
||||||
|
m_KeepVertices: 1
|
||||||
|
m_KeepIndices: 1
|
||||||
|
m_IndexFormat: 0
|
||||||
|
m_IndexBuffer: 000001000200010003000200040005000600050007000600080009000a0009000b000a000c000d000e000d000f000e00
|
||||||
|
m_VertexData:
|
||||||
|
serializedVersion: 3
|
||||||
|
m_VertexCount: 16
|
||||||
|
m_Channels:
|
||||||
|
- stream: 0
|
||||||
|
offset: 0
|
||||||
|
format: 0
|
||||||
|
dimension: 3
|
||||||
|
- stream: 0
|
||||||
|
offset: 12
|
||||||
|
format: 0
|
||||||
|
dimension: 3
|
||||||
|
- stream: 0
|
||||||
|
offset: 24
|
||||||
|
format: 0
|
||||||
|
dimension: 4
|
||||||
|
- stream: 0
|
||||||
|
offset: 0
|
||||||
|
format: 0
|
||||||
|
dimension: 0
|
||||||
|
- stream: 0
|
||||||
|
offset: 40
|
||||||
|
format: 0
|
||||||
|
dimension: 2
|
||||||
|
- stream: 0
|
||||||
|
offset: 0
|
||||||
|
format: 0
|
||||||
|
dimension: 0
|
||||||
|
- stream: 0
|
||||||
|
offset: 0
|
||||||
|
format: 0
|
||||||
|
dimension: 0
|
||||||
|
- stream: 0
|
||||||
|
offset: 0
|
||||||
|
format: 0
|
||||||
|
dimension: 0
|
||||||
|
- stream: 0
|
||||||
|
offset: 0
|
||||||
|
format: 0
|
||||||
|
dimension: 0
|
||||||
|
- stream: 0
|
||||||
|
offset: 0
|
||||||
|
format: 0
|
||||||
|
dimension: 0
|
||||||
|
- stream: 0
|
||||||
|
offset: 0
|
||||||
|
format: 0
|
||||||
|
dimension: 0
|
||||||
|
- stream: 0
|
||||||
|
offset: 0
|
||||||
|
format: 0
|
||||||
|
dimension: 0
|
||||||
|
- stream: 0
|
||||||
|
offset: 0
|
||||||
|
format: 0
|
||||||
|
dimension: 0
|
||||||
|
- stream: 0
|
||||||
|
offset: 0
|
||||||
|
format: 0
|
||||||
|
dimension: 0
|
||||||
|
m_DataSize: 768
|
||||||
|
_typelessdata: e09220bf0000000000fe18bf000000000000803f000000000000803f0000000000000000000080bfe09220bf00fe18bfe09220bf0000000000000000000000000000803f000000000000803f0000000000000000000080bfe09220bf00000000000000000000000000fe18bf000000000000803f000000000000803f0000000000000000000080bf0000000000fe18bf000000000000000000000000000000000000803f000000000000803f0000000000000000000080bf0000000000000000e09220bf0000000000000000000000000000803f000000000000803f0000000000000000000080bfe09220bf00000000e09220bf0000000000fe183f000000000000803f000000000000803f0000000000000000000080bfe09220bf00fe183f000000000000000000000000000000000000803f000000000000803f0000000000000000000080bf0000000000000000000000000000000000fe183f000000000000803f000000000000803f0000000000000000000080bf0000000000fe183f000000000000000000fe18bf000000000000803f000000000000803f0000000000000000000080bf0000000000fe18bf000000000000000000000000000000000000803f000000000000803f0000000000000000000080bf0000000000000000e092203f0000000000fe18bf000000000000803f000000000000803f0000000000000000000080bfe092203f00fe18bfe092203f0000000000000000000000000000803f000000000000803f0000000000000000000080bfe092203f00000000000000000000000000000000000000000000803f000000000000803f0000000000000000000080bf0000000000000000000000000000000000fe183f000000000000803f000000000000803f0000000000000000000080bf0000000000fe183fe092203f0000000000000000000000000000803f000000000000803f0000000000000000000080bfe092203f00000000e092203f0000000000fe183f000000000000803f000000000000803f0000000000000000000080bfe092203f00fe183f
|
||||||
|
m_CompressedMesh:
|
||||||
|
m_Vertices:
|
||||||
|
m_NumItems: 0
|
||||||
|
m_Range: 0
|
||||||
|
m_Start: 0
|
||||||
|
m_Data:
|
||||||
|
m_BitSize: 0
|
||||||
|
m_UV:
|
||||||
|
m_NumItems: 0
|
||||||
|
m_Range: 0
|
||||||
|
m_Start: 0
|
||||||
|
m_Data:
|
||||||
|
m_BitSize: 0
|
||||||
|
m_Normals:
|
||||||
|
m_NumItems: 0
|
||||||
|
m_Range: 0
|
||||||
|
m_Start: 0
|
||||||
|
m_Data:
|
||||||
|
m_BitSize: 0
|
||||||
|
m_Tangents:
|
||||||
|
m_NumItems: 0
|
||||||
|
m_Range: 0
|
||||||
|
m_Start: 0
|
||||||
|
m_Data:
|
||||||
|
m_BitSize: 0
|
||||||
|
m_Weights:
|
||||||
|
m_NumItems: 0
|
||||||
|
m_Data:
|
||||||
|
m_BitSize: 0
|
||||||
|
m_NormalSigns:
|
||||||
|
m_NumItems: 0
|
||||||
|
m_Data:
|
||||||
|
m_BitSize: 0
|
||||||
|
m_TangentSigns:
|
||||||
|
m_NumItems: 0
|
||||||
|
m_Data:
|
||||||
|
m_BitSize: 0
|
||||||
|
m_FloatColors:
|
||||||
|
m_NumItems: 0
|
||||||
|
m_Range: 0
|
||||||
|
m_Start: 0
|
||||||
|
m_Data:
|
||||||
|
m_BitSize: 0
|
||||||
|
m_BoneIndices:
|
||||||
|
m_NumItems: 0
|
||||||
|
m_Data:
|
||||||
|
m_BitSize: 0
|
||||||
|
m_Triangles:
|
||||||
|
m_NumItems: 0
|
||||||
|
m_Data:
|
||||||
|
m_BitSize: 0
|
||||||
|
m_UVInfo: 0
|
||||||
|
m_LocalAABB:
|
||||||
|
m_Center: {x: 0, y: 0, z: 0}
|
||||||
|
m_Extent: {x: 0.62724113, y: 0, z: 0.59762573}
|
||||||
|
m_MeshUsageFlags: 0
|
||||||
|
m_CookingOptions: 30
|
||||||
|
m_BakedConvexCollisionMesh:
|
||||||
|
m_BakedTriangleCollisionMesh:
|
||||||
|
m_MeshMetrics[0]: 1
|
||||||
|
m_MeshMetrics[1]: 1
|
||||||
|
m_MeshOptimizationFlags: 1
|
||||||
|
m_StreamData:
|
||||||
|
serializedVersion: 2
|
||||||
|
offset: 0
|
||||||
|
size: 0
|
||||||
|
path:
|
||||||
|
--- !u!850595691 &1406260051
|
||||||
|
LightingSettings:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_Name:
|
||||||
|
serializedVersion: 6
|
||||||
|
m_GIWorkflowMode: 1
|
||||||
|
m_EnableBakedLightmaps: 1
|
||||||
|
m_EnableRealtimeLightmaps: 0
|
||||||
|
m_RealtimeEnvironmentLighting: 1
|
||||||
|
m_BounceScale: 1
|
||||||
|
m_AlbedoBoost: 1
|
||||||
|
m_IndirectOutputScale: 1
|
||||||
|
m_UsingShadowmask: 1
|
||||||
|
m_BakeBackend: 1
|
||||||
|
m_LightmapMaxSize: 1024
|
||||||
|
m_BakeResolution: 40
|
||||||
|
m_Padding: 2
|
||||||
|
m_LightmapCompression: 3
|
||||||
|
m_AO: 0
|
||||||
|
m_AOMaxDistance: 1
|
||||||
|
m_CompAOExponent: 1
|
||||||
|
m_CompAOExponentDirect: 0
|
||||||
|
m_ExtractAO: 0
|
||||||
|
m_MixedBakeMode: 2
|
||||||
|
m_LightmapsBakeMode: 1
|
||||||
|
m_FilterMode: 1
|
||||||
|
m_LightmapParameters: {fileID: 15204, guid: 0000000000000000f000000000000000, type: 0}
|
||||||
|
m_ExportTrainingData: 0
|
||||||
|
m_TrainingDataDestination: TrainingData
|
||||||
|
m_RealtimeResolution: 2
|
||||||
|
m_ForceWhiteAlbedo: 0
|
||||||
|
m_ForceUpdates: 0
|
||||||
|
m_FinalGather: 0
|
||||||
|
m_FinalGatherRayCount: 256
|
||||||
|
m_FinalGatherFiltering: 1
|
||||||
|
m_PVRCulling: 1
|
||||||
|
m_PVRSampling: 1
|
||||||
|
m_PVRDirectSampleCount: 32
|
||||||
|
m_PVRSampleCount: 512
|
||||||
|
m_PVREnvironmentSampleCount: 256
|
||||||
|
m_PVREnvironmentReferencePointCount: 2048
|
||||||
|
m_LightProbeSampleCountMultiplier: 4
|
||||||
|
m_PVRBounces: 2
|
||||||
|
m_PVRMinBounces: 2
|
||||||
|
m_PVREnvironmentImportanceSampling: 1
|
||||||
|
m_PVRFilteringMode: 1
|
||||||
|
m_PVRDenoiserTypeDirect: 1
|
||||||
|
m_PVRDenoiserTypeIndirect: 1
|
||||||
|
m_PVRDenoiserTypeAO: 1
|
||||||
|
m_PVRFilterTypeDirect: 0
|
||||||
|
m_PVRFilterTypeIndirect: 0
|
||||||
|
m_PVRFilterTypeAO: 0
|
||||||
|
m_PVRFilteringGaussRadiusDirect: 1
|
||||||
|
m_PVRFilteringGaussRadiusIndirect: 5
|
||||||
|
m_PVRFilteringGaussRadiusAO: 2
|
||||||
|
m_PVRFilteringAtrousPositionSigmaDirect: 0.5
|
||||||
|
m_PVRFilteringAtrousPositionSigmaIndirect: 2
|
||||||
|
m_PVRFilteringAtrousPositionSigmaAO: 1
|
||||||
|
m_PVRTiledBaking: 0
|
||||||
|
m_NumRaysToShootPerTexel: -1
|
||||||
|
m_RespectSceneVisibilityWhenBakingGI: 0
|
||||||
|
--- !u!1 &1684186019
|
||||||
|
GameObject:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
serializedVersion: 6
|
||||||
|
m_Component:
|
||||||
|
- component: {fileID: 1684186025}
|
||||||
|
- component: {fileID: 1684186024}
|
||||||
|
- component: {fileID: 1684186023}
|
||||||
|
- component: {fileID: 1684186022}
|
||||||
|
- component: {fileID: 1684186021}
|
||||||
|
- component: {fileID: 1684186020}
|
||||||
|
m_Layer: 0
|
||||||
|
m_Name: Plane
|
||||||
|
m_TagString: Untagged
|
||||||
|
m_Icon: {fileID: 0}
|
||||||
|
m_NavMeshLayer: 0
|
||||||
|
m_StaticEditorFlags: 0
|
||||||
|
m_IsActive: 1
|
||||||
|
--- !u!64 &1684186020
|
||||||
|
MeshCollider:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 1684186019}
|
||||||
|
m_Material: {fileID: 0}
|
||||||
|
m_IncludeLayers:
|
||||||
|
serializedVersion: 2
|
||||||
|
m_Bits: 0
|
||||||
|
m_ExcludeLayers:
|
||||||
|
serializedVersion: 2
|
||||||
|
m_Bits: 0
|
||||||
|
m_LayerOverridePriority: 0
|
||||||
|
m_IsTrigger: 0
|
||||||
|
m_ProvidesContacts: 0
|
||||||
|
m_Enabled: 1
|
||||||
|
serializedVersion: 5
|
||||||
|
m_Convex: 1
|
||||||
|
m_CookingOptions: 30
|
||||||
|
m_Mesh: {fileID: 1212827717}
|
||||||
|
--- !u!33 &1684186021
|
||||||
|
MeshFilter:
|
||||||
|
m_ObjectHideFlags: 10
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 1684186019}
|
||||||
|
m_Mesh: {fileID: 1212827717}
|
||||||
|
--- !u!23 &1684186022
|
||||||
|
MeshRenderer:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 1684186019}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_CastShadows: 1
|
||||||
|
m_ReceiveShadows: 1
|
||||||
|
m_DynamicOccludee: 1
|
||||||
|
m_StaticShadowCaster: 0
|
||||||
|
m_MotionVectors: 1
|
||||||
|
m_LightProbeUsage: 1
|
||||||
|
m_ReflectionProbeUsage: 1
|
||||||
|
m_RayTracingMode: 2
|
||||||
|
m_RayTraceProcedural: 0
|
||||||
|
m_RenderingLayerMask: 1
|
||||||
|
m_RendererPriority: 0
|
||||||
|
m_Materials:
|
||||||
|
- {fileID: 2100000, guid: 31321ba15b8f8eb4c954353edc038b1d, type: 2}
|
||||||
|
m_StaticBatchInfo:
|
||||||
|
firstSubMesh: 0
|
||||||
|
subMeshCount: 0
|
||||||
|
m_StaticBatchRoot: {fileID: 0}
|
||||||
|
m_ProbeAnchor: {fileID: 0}
|
||||||
|
m_LightProbeVolumeOverride: {fileID: 0}
|
||||||
|
m_ScaleInLightmap: 1
|
||||||
|
m_ReceiveGI: 1
|
||||||
|
m_PreserveUVs: 0
|
||||||
|
m_IgnoreNormalsForChartDetection: 0
|
||||||
|
m_ImportantGI: 0
|
||||||
|
m_StitchLightmapSeams: 1
|
||||||
|
m_SelectedEditorRenderState: 2
|
||||||
|
m_MinimumChartSize: 4
|
||||||
|
m_AutoUVMaxDistance: 0.5
|
||||||
|
m_AutoUVMaxAngle: 89
|
||||||
|
m_LightmapParameters: {fileID: 0}
|
||||||
|
m_SortingLayerID: 0
|
||||||
|
m_SortingLayer: 0
|
||||||
|
m_SortingOrder: 0
|
||||||
|
m_AdditionalVertexStreams: {fileID: 0}
|
||||||
|
--- !u!114 &1684186023
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 1684186019}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: 11500000, guid: 1ca002da428252441b92f28d83c8a65f, type: 3}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
m_Shape:
|
||||||
|
rid: 5944741222442336259
|
||||||
|
m_Size: {x: -1.2544823, y: 0, z: -1.1952515}
|
||||||
|
m_Rotation: {x: 0, y: 0, z: 0, w: 1}
|
||||||
|
m_PivotLocation: 0
|
||||||
|
m_PivotPosition: {x: 0, y: 0, z: 0}
|
||||||
|
m_UnmodifiedMeshVersion: 3271
|
||||||
|
m_ShapeBox:
|
||||||
|
m_Center: {x: 0, y: 0, z: 0}
|
||||||
|
m_Extent: {x: 0.5, y: 0, z: 0.5}
|
||||||
|
references:
|
||||||
|
version: 2
|
||||||
|
RefIds:
|
||||||
|
- rid: 5944741222442336259
|
||||||
|
type: {class: Plane, ns: UnityEngine.ProBuilder.Shapes, asm: Unity.ProBuilder}
|
||||||
|
data:
|
||||||
|
m_HeightSegments: 1
|
||||||
|
m_WidthSegments: 1
|
||||||
|
--- !u!114 &1684186024
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 1684186019}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: 11500000, guid: 8233d90336aea43098adf6dbabd606a2, type: 3}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
m_MeshFormatVersion: 2
|
||||||
|
m_Faces:
|
||||||
|
- m_Indexes: 000000000100000002000000010000000300000002000000
|
||||||
|
m_SmoothingGroup: 0
|
||||||
|
m_Uv:
|
||||||
|
m_UseWorldSpace: 0
|
||||||
|
m_FlipU: 0
|
||||||
|
m_FlipV: 0
|
||||||
|
m_SwapUV: 0
|
||||||
|
m_Fill: 1
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
m_Rotation: 0
|
||||||
|
m_Anchor: 9
|
||||||
|
m_Material: {fileID: 0}
|
||||||
|
m_SubmeshIndex: 0
|
||||||
|
m_ManualUV: 0
|
||||||
|
elementGroup: -1
|
||||||
|
m_TextureGroup: -1
|
||||||
|
- m_Indexes: 040000000500000006000000050000000700000006000000
|
||||||
|
m_SmoothingGroup: 0
|
||||||
|
m_Uv:
|
||||||
|
m_UseWorldSpace: 0
|
||||||
|
m_FlipU: 0
|
||||||
|
m_FlipV: 0
|
||||||
|
m_SwapUV: 0
|
||||||
|
m_Fill: 1
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
m_Rotation: 0
|
||||||
|
m_Anchor: 9
|
||||||
|
m_Material: {fileID: 0}
|
||||||
|
m_SubmeshIndex: 0
|
||||||
|
m_ManualUV: 0
|
||||||
|
elementGroup: -1
|
||||||
|
m_TextureGroup: -1
|
||||||
|
- m_Indexes: 08000000090000000a000000090000000b0000000a000000
|
||||||
|
m_SmoothingGroup: 0
|
||||||
|
m_Uv:
|
||||||
|
m_UseWorldSpace: 0
|
||||||
|
m_FlipU: 0
|
||||||
|
m_FlipV: 0
|
||||||
|
m_SwapUV: 0
|
||||||
|
m_Fill: 1
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
m_Rotation: 0
|
||||||
|
m_Anchor: 9
|
||||||
|
m_Material: {fileID: 0}
|
||||||
|
m_SubmeshIndex: 0
|
||||||
|
m_ManualUV: 0
|
||||||
|
elementGroup: -1
|
||||||
|
m_TextureGroup: -1
|
||||||
|
- m_Indexes: 0c0000000d0000000e0000000d0000000f0000000e000000
|
||||||
|
m_SmoothingGroup: 0
|
||||||
|
m_Uv:
|
||||||
|
m_UseWorldSpace: 0
|
||||||
|
m_FlipU: 0
|
||||||
|
m_FlipV: 0
|
||||||
|
m_SwapUV: 0
|
||||||
|
m_Fill: 1
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
m_Rotation: 0
|
||||||
|
m_Anchor: 9
|
||||||
|
m_Material: {fileID: 0}
|
||||||
|
m_SubmeshIndex: 0
|
||||||
|
m_ManualUV: 0
|
||||||
|
elementGroup: -1
|
||||||
|
m_TextureGroup: -1
|
||||||
|
m_SharedVertices:
|
||||||
|
- m_Vertices: 00000000
|
||||||
|
- m_Vertices: 0100000004000000
|
||||||
|
- m_Vertices: 0200000008000000
|
||||||
|
- m_Vertices: 0300000006000000090000000c000000
|
||||||
|
- m_Vertices: 05000000
|
||||||
|
- m_Vertices: 070000000d000000
|
||||||
|
- m_Vertices: 0a000000
|
||||||
|
- m_Vertices: 0b0000000e000000
|
||||||
|
- m_Vertices: 0f000000
|
||||||
|
m_SharedTextures: []
|
||||||
|
m_Positions:
|
||||||
|
- {x: -0.62724113, y: 0, z: -0.59762573}
|
||||||
|
- {x: -0.62724113, y: 0, z: 0}
|
||||||
|
- {x: 0, y: 0, z: -0.59762573}
|
||||||
|
- {x: 0, y: 0, z: 0}
|
||||||
|
- {x: -0.62724113, y: 0, z: 0}
|
||||||
|
- {x: -0.62724113, y: 0, z: 0.59762573}
|
||||||
|
- {x: 0, y: 0, z: 0}
|
||||||
|
- {x: 0, y: 0, z: 0.59762573}
|
||||||
|
- {x: 0, y: 0, z: -0.59762573}
|
||||||
|
- {x: 0, y: 0, z: 0}
|
||||||
|
- {x: 0.62724113, y: 0, z: -0.59762573}
|
||||||
|
- {x: 0.62724113, y: 0, z: 0}
|
||||||
|
- {x: 0, y: 0, z: 0}
|
||||||
|
- {x: 0, y: 0, z: 0.59762573}
|
||||||
|
- {x: 0.62724113, y: 0, z: 0}
|
||||||
|
- {x: 0.62724113, y: 0, z: 0.59762573}
|
||||||
|
m_Textures0:
|
||||||
|
- {x: -0.62724113, y: -0.59762573}
|
||||||
|
- {x: -0.62724113, y: 0}
|
||||||
|
- {x: 0, y: -0.59762573}
|
||||||
|
- {x: 0, y: 0}
|
||||||
|
- {x: -0.62724113, y: 0}
|
||||||
|
- {x: -0.62724113, y: 0.59762573}
|
||||||
|
- {x: 0, y: 0}
|
||||||
|
- {x: 0, y: 0.59762573}
|
||||||
|
- {x: 0, y: -0.59762573}
|
||||||
|
- {x: 0, y: 0}
|
||||||
|
- {x: 0.62724113, y: -0.59762573}
|
||||||
|
- {x: 0.62724113, y: 0}
|
||||||
|
- {x: 0, y: 0}
|
||||||
|
- {x: 0, y: 0.59762573}
|
||||||
|
- {x: 0.62724113, y: 0}
|
||||||
|
- {x: 0.62724113, y: 0.59762573}
|
||||||
|
m_Textures2: []
|
||||||
|
m_Textures3: []
|
||||||
|
m_Tangents:
|
||||||
|
- {x: 1, y: 0, z: 0, w: -1}
|
||||||
|
- {x: 1, y: 0, z: 0, w: -1}
|
||||||
|
- {x: 1, y: 0, z: 0, w: -1}
|
||||||
|
- {x: 1, y: 0, z: 0, w: -1}
|
||||||
|
- {x: 1, y: 0, z: 0, w: -1}
|
||||||
|
- {x: 1, y: 0, z: 0, w: -1}
|
||||||
|
- {x: 1, y: 0, z: 0, w: -1}
|
||||||
|
- {x: 1, y: 0, z: 0, w: -1}
|
||||||
|
- {x: 1, y: 0, z: 0, w: -1}
|
||||||
|
- {x: 1, y: 0, z: 0, w: -1}
|
||||||
|
- {x: 1, y: 0, z: 0, w: -1}
|
||||||
|
- {x: 1, y: 0, z: 0, w: -1}
|
||||||
|
- {x: 1, y: 0, z: 0, w: -1}
|
||||||
|
- {x: 1, y: 0, z: 0, w: -1}
|
||||||
|
- {x: 1, y: 0, z: 0, w: -1}
|
||||||
|
- {x: 1, y: 0, z: 0, w: -1}
|
||||||
|
m_Colors: []
|
||||||
|
m_UnwrapParameters:
|
||||||
|
m_HardAngle: 88
|
||||||
|
m_PackMargin: 20
|
||||||
|
m_AngleError: 8
|
||||||
|
m_AreaError: 15
|
||||||
|
m_PreserveMeshAssetOnDestroy: 0
|
||||||
|
assetGuid:
|
||||||
|
m_Mesh: {fileID: 1212827717}
|
||||||
|
m_VersionIndex: 3271
|
||||||
|
m_IsSelectable: 1
|
||||||
|
m_SelectedFaces:
|
||||||
|
m_SelectedEdges: []
|
||||||
|
m_SelectedVertices:
|
||||||
|
--- !u!4 &1684186025
|
||||||
|
Transform:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 1684186019}
|
||||||
|
serializedVersion: 2
|
||||||
|
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
||||||
|
m_LocalPosition: {x: 6.52, y: 0.01, z: -1.8}
|
||||||
|
m_LocalScale: {x: 10.237, y: 10.237, z: 10.237}
|
||||||
|
m_ConstrainProportionsScale: 0
|
||||||
|
m_Children: []
|
||||||
|
m_Father: {fileID: 0}
|
||||||
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||||
|
--- !u!1660057539 &9223372036854775807
|
||||||
|
SceneRoots:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_Roots:
|
||||||
|
- {fileID: 19031482}
|
||||||
|
- {fileID: 1684186025}
|
||||||
|
- {fileID: 701711586}
|
||||||
|
- {fileID: 262892027}
|
|
@ -1,6 +1,5 @@
|
||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: 44f44f13614abd748bca3aec915dd8fa
|
guid: 843d5cd7eb5974a4da17f29504e6d308
|
||||||
folderAsset: yes
|
|
||||||
DefaultImporter:
|
DefaultImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
userData:
|
userData:
|
|
@ -0,0 +1,961 @@
|
||||||
|
%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.212, g: 0.227, b: 0.259, a: 1}
|
||||||
|
m_AmbientEquatorColor: {r: 0.114, g: 0.125, b: 0.133, a: 1}
|
||||||
|
m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1}
|
||||||
|
m_AmbientIntensity: 1
|
||||||
|
m_AmbientMode: 0
|
||||||
|
m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1}
|
||||||
|
m_SkyboxMaterial: {fileID: 10304, guid: 0000000000000000f000000000000000, type: 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_UseRadianceAmbientProbe: 0
|
||||||
|
--- !u!157 &3
|
||||||
|
LightmapSettings:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
serializedVersion: 12
|
||||||
|
m_GIWorkflowMode: 1
|
||||||
|
m_GISettings:
|
||||||
|
serializedVersion: 2
|
||||||
|
m_BounceScale: 1
|
||||||
|
m_IndirectOutputScale: 1
|
||||||
|
m_AlbedoBoost: 1
|
||||||
|
m_EnvironmentLightingMode: 0
|
||||||
|
m_EnableBakedLightmaps: 1
|
||||||
|
m_EnableRealtimeLightmaps: 0
|
||||||
|
m_LightmapEditorSettings:
|
||||||
|
serializedVersion: 12
|
||||||
|
m_Resolution: 2
|
||||||
|
m_BakeResolution: 40
|
||||||
|
m_AtlasSize: 1024
|
||||||
|
m_AO: 0
|
||||||
|
m_AOMaxDistance: 1
|
||||||
|
m_CompAOExponent: 1
|
||||||
|
m_CompAOExponentDirect: 0
|
||||||
|
m_ExtractAmbientOcclusion: 0
|
||||||
|
m_Padding: 2
|
||||||
|
m_LightmapParameters: {fileID: 0}
|
||||||
|
m_LightmapsBakeMode: 1
|
||||||
|
m_TextureCompression: 1
|
||||||
|
m_FinalGather: 0
|
||||||
|
m_FinalGatherFiltering: 1
|
||||||
|
m_FinalGatherRayCount: 256
|
||||||
|
m_ReflectionCompression: 2
|
||||||
|
m_MixedBakeMode: 2
|
||||||
|
m_BakeBackend: 1
|
||||||
|
m_PVRSampling: 1
|
||||||
|
m_PVRDirectSampleCount: 32
|
||||||
|
m_PVRSampleCount: 512
|
||||||
|
m_PVRBounces: 2
|
||||||
|
m_PVREnvironmentSampleCount: 256
|
||||||
|
m_PVREnvironmentReferencePointCount: 2048
|
||||||
|
m_PVRFilteringMode: 1
|
||||||
|
m_PVRDenoiserTypeDirect: 1
|
||||||
|
m_PVRDenoiserTypeIndirect: 1
|
||||||
|
m_PVRDenoiserTypeAO: 1
|
||||||
|
m_PVRFilterTypeDirect: 0
|
||||||
|
m_PVRFilterTypeIndirect: 0
|
||||||
|
m_PVRFilterTypeAO: 0
|
||||||
|
m_PVREnvironmentMIS: 1
|
||||||
|
m_PVRCulling: 1
|
||||||
|
m_PVRFilteringGaussRadiusDirect: 1
|
||||||
|
m_PVRFilteringGaussRadiusIndirect: 5
|
||||||
|
m_PVRFilteringGaussRadiusAO: 2
|
||||||
|
m_PVRFilteringAtrousPositionSigmaDirect: 0.5
|
||||||
|
m_PVRFilteringAtrousPositionSigmaIndirect: 2
|
||||||
|
m_PVRFilteringAtrousPositionSigmaAO: 1
|
||||||
|
m_ExportTrainingData: 0
|
||||||
|
m_TrainingDataDestination: TrainingData
|
||||||
|
m_LightProbeSampleCountMultiplier: 4
|
||||||
|
m_LightingDataAsset: {fileID: 0}
|
||||||
|
m_LightingSettings: {fileID: 1406260051}
|
||||||
|
--- !u!196 &4
|
||||||
|
NavMeshSettings:
|
||||||
|
serializedVersion: 2
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_BuildSettings:
|
||||||
|
serializedVersion: 3
|
||||||
|
agentTypeID: 0
|
||||||
|
agentRadius: 0.5
|
||||||
|
agentHeight: 2
|
||||||
|
agentSlope: 45
|
||||||
|
agentClimb: 0.4
|
||||||
|
ledgeDropHeight: 0
|
||||||
|
maxJumpAcrossDistance: 0
|
||||||
|
minRegionArea: 2
|
||||||
|
manualCellSize: 0
|
||||||
|
cellSize: 0.16666667
|
||||||
|
manualTileSize: 0
|
||||||
|
tileSize: 256
|
||||||
|
buildHeightMesh: 0
|
||||||
|
maxJobWorkers: 0
|
||||||
|
preserveTilesOutsideBounds: 0
|
||||||
|
debug:
|
||||||
|
m_Flags: 0
|
||||||
|
m_NavMeshData: {fileID: 0}
|
||||||
|
--- !u!1 &19031480
|
||||||
|
GameObject:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
serializedVersion: 6
|
||||||
|
m_Component:
|
||||||
|
- component: {fileID: 19031482}
|
||||||
|
- component: {fileID: 19031481}
|
||||||
|
- component: {fileID: 19031483}
|
||||||
|
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 &19031481
|
||||||
|
Light:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 19031480}
|
||||||
|
m_Enabled: 1
|
||||||
|
serializedVersion: 10
|
||||||
|
m_Type: 1
|
||||||
|
m_Shape: 0
|
||||||
|
m_Color: {r: 1, g: 0.95686275, b: 0.8392157, a: 1}
|
||||||
|
m_Intensity: 1
|
||||||
|
m_Range: 10
|
||||||
|
m_SpotAngle: 30
|
||||||
|
m_InnerSpotAngle: 21.80208
|
||||||
|
m_CookieSize: 10
|
||||||
|
m_Shadows:
|
||||||
|
m_Type: 2
|
||||||
|
m_Resolution: -1
|
||||||
|
m_CustomResolution: -1
|
||||||
|
m_Strength: 1
|
||||||
|
m_Bias: 0.05
|
||||||
|
m_NormalBias: 0.4
|
||||||
|
m_NearPlane: 0.2
|
||||||
|
m_CullingMatrixOverride:
|
||||||
|
e00: 1
|
||||||
|
e01: 0
|
||||||
|
e02: 0
|
||||||
|
e03: 0
|
||||||
|
e10: 0
|
||||||
|
e11: 1
|
||||||
|
e12: 0
|
||||||
|
e13: 0
|
||||||
|
e20: 0
|
||||||
|
e21: 0
|
||||||
|
e22: 1
|
||||||
|
e23: 0
|
||||||
|
e30: 0
|
||||||
|
e31: 0
|
||||||
|
e32: 0
|
||||||
|
e33: 1
|
||||||
|
m_UseCullingMatrixOverride: 0
|
||||||
|
m_Cookie: {fileID: 0}
|
||||||
|
m_DrawHalo: 0
|
||||||
|
m_Flare: {fileID: 0}
|
||||||
|
m_RenderMode: 0
|
||||||
|
m_CullingMask:
|
||||||
|
serializedVersion: 2
|
||||||
|
m_Bits: 4294967295
|
||||||
|
m_RenderingLayerMask: 1
|
||||||
|
m_Lightmapping: 4
|
||||||
|
m_LightShadowCasterMode: 0
|
||||||
|
m_AreaSize: {x: 1, y: 1}
|
||||||
|
m_BounceIntensity: 1
|
||||||
|
m_ColorTemperature: 6570
|
||||||
|
m_UseColorTemperature: 0
|
||||||
|
m_BoundingSphereOverride: {x: 0, y: 0, z: 0, w: 0}
|
||||||
|
m_UseBoundingSphereOverride: 0
|
||||||
|
m_UseViewFrustumForShadowCasterCull: 1
|
||||||
|
m_ShadowRadius: 0
|
||||||
|
m_ShadowAngle: 0
|
||||||
|
--- !u!4 &19031482
|
||||||
|
Transform:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 19031480}
|
||||||
|
serializedVersion: 2
|
||||||
|
m_LocalRotation: {x: 0.40821788, y: -0.23456968, z: 0.10938163, w: 0.8754261}
|
||||||
|
m_LocalPosition: {x: 0, y: 3, z: 0}
|
||||||
|
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||||
|
m_ConstrainProportionsScale: 0
|
||||||
|
m_Children: []
|
||||||
|
m_Father: {fileID: 0}
|
||||||
|
m_LocalEulerAnglesHint: {x: 50, y: -30, z: 0}
|
||||||
|
--- !u!114 &19031483
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 19031480}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: 11500000, guid: 474bcb49853aa07438625e644c072ee6, type: 3}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
m_Version: 3
|
||||||
|
m_UsePipelineSettings: 1
|
||||||
|
m_AdditionalLightsShadowResolutionTier: 2
|
||||||
|
m_LightLayerMask: 1
|
||||||
|
m_RenderingLayers: 1
|
||||||
|
m_CustomShadowLayers: 0
|
||||||
|
m_ShadowLayerMask: 1
|
||||||
|
m_ShadowRenderingLayers: 1
|
||||||
|
m_LightCookieSize: {x: 1, y: 1}
|
||||||
|
m_LightCookieOffset: {x: 0, y: 0}
|
||||||
|
m_SoftShadowQuality: 0
|
||||||
|
--- !u!1 &331837452 stripped
|
||||||
|
GameObject:
|
||||||
|
m_CorrespondingSourceObject: {fileID: 740608301518776771, guid: a4a4b6738cb4ba34bb94baa14bd938f0, type: 3}
|
||||||
|
m_PrefabInstance: {fileID: 701711586}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
--- !u!114 &331837454
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 331837452}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: 11500000, guid: 829050d920c070f4783f067cdcb74217, type: 3}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
shakeMagnitude: 0.02
|
||||||
|
isShaking: 1
|
||||||
|
--- !u!1001 &701711586
|
||||||
|
PrefabInstance:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
serializedVersion: 2
|
||||||
|
m_Modification:
|
||||||
|
serializedVersion: 3
|
||||||
|
m_TransformParent: {fileID: 0}
|
||||||
|
m_Modifications:
|
||||||
|
- target: {fileID: 6045648537344725186, guid: a4a4b6738cb4ba34bb94baa14bd938f0, type: 3}
|
||||||
|
propertyPath: m_LocalPosition.x
|
||||||
|
value: 6.598006
|
||||||
|
objectReference: {fileID: 0}
|
||||||
|
- target: {fileID: 6045648537344725186, guid: a4a4b6738cb4ba34bb94baa14bd938f0, type: 3}
|
||||||
|
propertyPath: m_LocalPosition.y
|
||||||
|
value: -0.13379598
|
||||||
|
objectReference: {fileID: 0}
|
||||||
|
- target: {fileID: 6045648537344725186, guid: a4a4b6738cb4ba34bb94baa14bd938f0, type: 3}
|
||||||
|
propertyPath: m_LocalPosition.z
|
||||||
|
value: -1.6521728
|
||||||
|
objectReference: {fileID: 0}
|
||||||
|
- target: {fileID: 6045648537344725186, guid: a4a4b6738cb4ba34bb94baa14bd938f0, type: 3}
|
||||||
|
propertyPath: m_LocalRotation.w
|
||||||
|
value: -0.72310346
|
||||||
|
objectReference: {fileID: 0}
|
||||||
|
- target: {fileID: 6045648537344725186, guid: a4a4b6738cb4ba34bb94baa14bd938f0, type: 3}
|
||||||
|
propertyPath: m_LocalRotation.x
|
||||||
|
value: -0
|
||||||
|
objectReference: {fileID: 0}
|
||||||
|
- target: {fileID: 6045648537344725186, guid: a4a4b6738cb4ba34bb94baa14bd938f0, type: 3}
|
||||||
|
propertyPath: m_LocalRotation.y
|
||||||
|
value: 0.69073975
|
||||||
|
objectReference: {fileID: 0}
|
||||||
|
- target: {fileID: 6045648537344725186, guid: a4a4b6738cb4ba34bb94baa14bd938f0, type: 3}
|
||||||
|
propertyPath: m_LocalRotation.z
|
||||||
|
value: -0
|
||||||
|
objectReference: {fileID: 0}
|
||||||
|
- target: {fileID: 6045648537344725186, guid: a4a4b6738cb4ba34bb94baa14bd938f0, type: 3}
|
||||||
|
propertyPath: m_LocalEulerAnglesHint.x
|
||||||
|
value: 0
|
||||||
|
objectReference: {fileID: 0}
|
||||||
|
- target: {fileID: 6045648537344725186, guid: a4a4b6738cb4ba34bb94baa14bd938f0, type: 3}
|
||||||
|
propertyPath: m_LocalEulerAnglesHint.y
|
||||||
|
value: 272.623
|
||||||
|
objectReference: {fileID: 0}
|
||||||
|
- target: {fileID: 6045648537344725186, guid: a4a4b6738cb4ba34bb94baa14bd938f0, type: 3}
|
||||||
|
propertyPath: m_LocalEulerAnglesHint.z
|
||||||
|
value: 0
|
||||||
|
objectReference: {fileID: 0}
|
||||||
|
- target: {fileID: 7277165443329672351, guid: a4a4b6738cb4ba34bb94baa14bd938f0, type: 3}
|
||||||
|
propertyPath: m_Name
|
||||||
|
value: XR Origin (XR Rig)
|
||||||
|
objectReference: {fileID: 0}
|
||||||
|
m_RemovedComponents: []
|
||||||
|
m_RemovedGameObjects: []
|
||||||
|
m_AddedGameObjects: []
|
||||||
|
m_AddedComponents:
|
||||||
|
- targetCorrespondingSourceObject: {fileID: 740608301518776771, guid: a4a4b6738cb4ba34bb94baa14bd938f0, type: 3}
|
||||||
|
insertIndex: -1
|
||||||
|
addedObject: {fileID: 331837454}
|
||||||
|
m_SourcePrefab: {fileID: 100100000, guid: a4a4b6738cb4ba34bb94baa14bd938f0, type: 3}
|
||||||
|
--- !u!43 &1212827717
|
||||||
|
Mesh:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_Name: pb_Mesh-4818
|
||||||
|
serializedVersion: 11
|
||||||
|
m_SubMeshes:
|
||||||
|
- serializedVersion: 2
|
||||||
|
firstByte: 0
|
||||||
|
indexCount: 24
|
||||||
|
topology: 0
|
||||||
|
baseVertex: 0
|
||||||
|
firstVertex: 0
|
||||||
|
vertexCount: 16
|
||||||
|
localAABB:
|
||||||
|
m_Center: {x: 0, y: 0, z: 0}
|
||||||
|
m_Extent: {x: 0.62724113, y: 0, z: 0.59762573}
|
||||||
|
m_Shapes:
|
||||||
|
vertices: []
|
||||||
|
shapes: []
|
||||||
|
channels: []
|
||||||
|
fullWeights: []
|
||||||
|
m_BindPose: []
|
||||||
|
m_BoneNameHashes:
|
||||||
|
m_RootBoneNameHash: 0
|
||||||
|
m_BonesAABB: []
|
||||||
|
m_VariableBoneCountWeights:
|
||||||
|
m_Data:
|
||||||
|
m_MeshCompression: 0
|
||||||
|
m_IsReadable: 1
|
||||||
|
m_KeepVertices: 1
|
||||||
|
m_KeepIndices: 1
|
||||||
|
m_IndexFormat: 0
|
||||||
|
m_IndexBuffer: 000001000200010003000200040005000600050007000600080009000a0009000b000a000c000d000e000d000f000e00
|
||||||
|
m_VertexData:
|
||||||
|
serializedVersion: 3
|
||||||
|
m_VertexCount: 16
|
||||||
|
m_Channels:
|
||||||
|
- stream: 0
|
||||||
|
offset: 0
|
||||||
|
format: 0
|
||||||
|
dimension: 3
|
||||||
|
- stream: 0
|
||||||
|
offset: 12
|
||||||
|
format: 0
|
||||||
|
dimension: 3
|
||||||
|
- stream: 0
|
||||||
|
offset: 24
|
||||||
|
format: 0
|
||||||
|
dimension: 4
|
||||||
|
- stream: 0
|
||||||
|
offset: 0
|
||||||
|
format: 0
|
||||||
|
dimension: 0
|
||||||
|
- stream: 0
|
||||||
|
offset: 40
|
||||||
|
format: 0
|
||||||
|
dimension: 2
|
||||||
|
- stream: 0
|
||||||
|
offset: 0
|
||||||
|
format: 0
|
||||||
|
dimension: 0
|
||||||
|
- stream: 0
|
||||||
|
offset: 0
|
||||||
|
format: 0
|
||||||
|
dimension: 0
|
||||||
|
- stream: 0
|
||||||
|
offset: 0
|
||||||
|
format: 0
|
||||||
|
dimension: 0
|
||||||
|
- stream: 0
|
||||||
|
offset: 0
|
||||||
|
format: 0
|
||||||
|
dimension: 0
|
||||||
|
- stream: 0
|
||||||
|
offset: 0
|
||||||
|
format: 0
|
||||||
|
dimension: 0
|
||||||
|
- stream: 0
|
||||||
|
offset: 0
|
||||||
|
format: 0
|
||||||
|
dimension: 0
|
||||||
|
- stream: 0
|
||||||
|
offset: 0
|
||||||
|
format: 0
|
||||||
|
dimension: 0
|
||||||
|
- stream: 0
|
||||||
|
offset: 0
|
||||||
|
format: 0
|
||||||
|
dimension: 0
|
||||||
|
- stream: 0
|
||||||
|
offset: 0
|
||||||
|
format: 0
|
||||||
|
dimension: 0
|
||||||
|
m_DataSize: 768
|
||||||
|
_typelessdata: e09220bf0000000000fe18bf000000000000803f000000000000803f0000000000000000000080bfe09220bf00fe18bfe09220bf0000000000000000000000000000803f000000000000803f0000000000000000000080bfe09220bf00000000000000000000000000fe18bf000000000000803f000000000000803f0000000000000000000080bf0000000000fe18bf000000000000000000000000000000000000803f000000000000803f0000000000000000000080bf0000000000000000e09220bf0000000000000000000000000000803f000000000000803f0000000000000000000080bfe09220bf00000000e09220bf0000000000fe183f000000000000803f000000000000803f0000000000000000000080bfe09220bf00fe183f000000000000000000000000000000000000803f000000000000803f0000000000000000000080bf0000000000000000000000000000000000fe183f000000000000803f000000000000803f0000000000000000000080bf0000000000fe183f000000000000000000fe18bf000000000000803f000000000000803f0000000000000000000080bf0000000000fe18bf000000000000000000000000000000000000803f000000000000803f0000000000000000000080bf0000000000000000e092203f0000000000fe18bf000000000000803f000000000000803f0000000000000000000080bfe092203f00fe18bfe092203f0000000000000000000000000000803f000000000000803f0000000000000000000080bfe092203f00000000000000000000000000000000000000000000803f000000000000803f0000000000000000000080bf0000000000000000000000000000000000fe183f000000000000803f000000000000803f0000000000000000000080bf0000000000fe183fe092203f0000000000000000000000000000803f000000000000803f0000000000000000000080bfe092203f00000000e092203f0000000000fe183f000000000000803f000000000000803f0000000000000000000080bfe092203f00fe183f
|
||||||
|
m_CompressedMesh:
|
||||||
|
m_Vertices:
|
||||||
|
m_NumItems: 0
|
||||||
|
m_Range: 0
|
||||||
|
m_Start: 0
|
||||||
|
m_Data:
|
||||||
|
m_BitSize: 0
|
||||||
|
m_UV:
|
||||||
|
m_NumItems: 0
|
||||||
|
m_Range: 0
|
||||||
|
m_Start: 0
|
||||||
|
m_Data:
|
||||||
|
m_BitSize: 0
|
||||||
|
m_Normals:
|
||||||
|
m_NumItems: 0
|
||||||
|
m_Range: 0
|
||||||
|
m_Start: 0
|
||||||
|
m_Data:
|
||||||
|
m_BitSize: 0
|
||||||
|
m_Tangents:
|
||||||
|
m_NumItems: 0
|
||||||
|
m_Range: 0
|
||||||
|
m_Start: 0
|
||||||
|
m_Data:
|
||||||
|
m_BitSize: 0
|
||||||
|
m_Weights:
|
||||||
|
m_NumItems: 0
|
||||||
|
m_Data:
|
||||||
|
m_BitSize: 0
|
||||||
|
m_NormalSigns:
|
||||||
|
m_NumItems: 0
|
||||||
|
m_Data:
|
||||||
|
m_BitSize: 0
|
||||||
|
m_TangentSigns:
|
||||||
|
m_NumItems: 0
|
||||||
|
m_Data:
|
||||||
|
m_BitSize: 0
|
||||||
|
m_FloatColors:
|
||||||
|
m_NumItems: 0
|
||||||
|
m_Range: 0
|
||||||
|
m_Start: 0
|
||||||
|
m_Data:
|
||||||
|
m_BitSize: 0
|
||||||
|
m_BoneIndices:
|
||||||
|
m_NumItems: 0
|
||||||
|
m_Data:
|
||||||
|
m_BitSize: 0
|
||||||
|
m_Triangles:
|
||||||
|
m_NumItems: 0
|
||||||
|
m_Data:
|
||||||
|
m_BitSize: 0
|
||||||
|
m_UVInfo: 0
|
||||||
|
m_LocalAABB:
|
||||||
|
m_Center: {x: 0, y: 0, z: 0}
|
||||||
|
m_Extent: {x: 0.62724113, y: 0, z: 0.59762573}
|
||||||
|
m_MeshUsageFlags: 0
|
||||||
|
m_CookingOptions: 30
|
||||||
|
m_BakedConvexCollisionMesh:
|
||||||
|
m_BakedTriangleCollisionMesh:
|
||||||
|
m_MeshMetrics[0]: 1
|
||||||
|
m_MeshMetrics[1]: 1
|
||||||
|
m_MeshOptimizationFlags: 1
|
||||||
|
m_StreamData:
|
||||||
|
serializedVersion: 2
|
||||||
|
offset: 0
|
||||||
|
size: 0
|
||||||
|
path:
|
||||||
|
--- !u!850595691 &1406260051
|
||||||
|
LightingSettings:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_Name:
|
||||||
|
serializedVersion: 6
|
||||||
|
m_GIWorkflowMode: 1
|
||||||
|
m_EnableBakedLightmaps: 1
|
||||||
|
m_EnableRealtimeLightmaps: 0
|
||||||
|
m_RealtimeEnvironmentLighting: 1
|
||||||
|
m_BounceScale: 1
|
||||||
|
m_AlbedoBoost: 1
|
||||||
|
m_IndirectOutputScale: 1
|
||||||
|
m_UsingShadowmask: 1
|
||||||
|
m_BakeBackend: 1
|
||||||
|
m_LightmapMaxSize: 1024
|
||||||
|
m_BakeResolution: 40
|
||||||
|
m_Padding: 2
|
||||||
|
m_LightmapCompression: 3
|
||||||
|
m_AO: 0
|
||||||
|
m_AOMaxDistance: 1
|
||||||
|
m_CompAOExponent: 1
|
||||||
|
m_CompAOExponentDirect: 0
|
||||||
|
m_ExtractAO: 0
|
||||||
|
m_MixedBakeMode: 2
|
||||||
|
m_LightmapsBakeMode: 1
|
||||||
|
m_FilterMode: 1
|
||||||
|
m_LightmapParameters: {fileID: 15204, guid: 0000000000000000f000000000000000, type: 0}
|
||||||
|
m_ExportTrainingData: 0
|
||||||
|
m_TrainingDataDestination: TrainingData
|
||||||
|
m_RealtimeResolution: 2
|
||||||
|
m_ForceWhiteAlbedo: 0
|
||||||
|
m_ForceUpdates: 0
|
||||||
|
m_FinalGather: 0
|
||||||
|
m_FinalGatherRayCount: 256
|
||||||
|
m_FinalGatherFiltering: 1
|
||||||
|
m_PVRCulling: 1
|
||||||
|
m_PVRSampling: 1
|
||||||
|
m_PVRDirectSampleCount: 32
|
||||||
|
m_PVRSampleCount: 512
|
||||||
|
m_PVREnvironmentSampleCount: 256
|
||||||
|
m_PVREnvironmentReferencePointCount: 2048
|
||||||
|
m_LightProbeSampleCountMultiplier: 4
|
||||||
|
m_PVRBounces: 2
|
||||||
|
m_PVRMinBounces: 2
|
||||||
|
m_PVREnvironmentImportanceSampling: 1
|
||||||
|
m_PVRFilteringMode: 1
|
||||||
|
m_PVRDenoiserTypeDirect: 1
|
||||||
|
m_PVRDenoiserTypeIndirect: 1
|
||||||
|
m_PVRDenoiserTypeAO: 1
|
||||||
|
m_PVRFilterTypeDirect: 0
|
||||||
|
m_PVRFilterTypeIndirect: 0
|
||||||
|
m_PVRFilterTypeAO: 0
|
||||||
|
m_PVRFilteringGaussRadiusDirect: 1
|
||||||
|
m_PVRFilteringGaussRadiusIndirect: 5
|
||||||
|
m_PVRFilteringGaussRadiusAO: 2
|
||||||
|
m_PVRFilteringAtrousPositionSigmaDirect: 0.5
|
||||||
|
m_PVRFilteringAtrousPositionSigmaIndirect: 2
|
||||||
|
m_PVRFilteringAtrousPositionSigmaAO: 1
|
||||||
|
m_PVRTiledBaking: 0
|
||||||
|
m_NumRaysToShootPerTexel: -1
|
||||||
|
m_RespectSceneVisibilityWhenBakingGI: 0
|
||||||
|
--- !u!1 &1581798077
|
||||||
|
GameObject:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
serializedVersion: 6
|
||||||
|
m_Component:
|
||||||
|
- component: {fileID: 1581798081}
|
||||||
|
- component: {fileID: 1581798080}
|
||||||
|
- component: {fileID: 1581798079}
|
||||||
|
- component: {fileID: 1581798078}
|
||||||
|
m_Layer: 0
|
||||||
|
m_Name: Sphere
|
||||||
|
m_TagString: Untagged
|
||||||
|
m_Icon: {fileID: 0}
|
||||||
|
m_NavMeshLayer: 0
|
||||||
|
m_StaticEditorFlags: 0
|
||||||
|
m_IsActive: 1
|
||||||
|
--- !u!135 &1581798078
|
||||||
|
SphereCollider:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 1581798077}
|
||||||
|
m_Material: {fileID: 0}
|
||||||
|
m_IncludeLayers:
|
||||||
|
serializedVersion: 2
|
||||||
|
m_Bits: 0
|
||||||
|
m_ExcludeLayers:
|
||||||
|
serializedVersion: 2
|
||||||
|
m_Bits: 0
|
||||||
|
m_LayerOverridePriority: 0
|
||||||
|
m_IsTrigger: 0
|
||||||
|
m_ProvidesContacts: 0
|
||||||
|
m_Enabled: 1
|
||||||
|
serializedVersion: 3
|
||||||
|
m_Radius: 0.5
|
||||||
|
m_Center: {x: 0, y: 0, z: 0}
|
||||||
|
--- !u!23 &1581798079
|
||||||
|
MeshRenderer:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 1581798077}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_CastShadows: 1
|
||||||
|
m_ReceiveShadows: 1
|
||||||
|
m_DynamicOccludee: 1
|
||||||
|
m_StaticShadowCaster: 0
|
||||||
|
m_MotionVectors: 1
|
||||||
|
m_LightProbeUsage: 1
|
||||||
|
m_ReflectionProbeUsage: 1
|
||||||
|
m_RayTracingMode: 2
|
||||||
|
m_RayTraceProcedural: 0
|
||||||
|
m_RenderingLayerMask: 1
|
||||||
|
m_RendererPriority: 0
|
||||||
|
m_Materials:
|
||||||
|
- {fileID: 2100000, guid: 31321ba15b8f8eb4c954353edc038b1d, type: 2}
|
||||||
|
m_StaticBatchInfo:
|
||||||
|
firstSubMesh: 0
|
||||||
|
subMeshCount: 0
|
||||||
|
m_StaticBatchRoot: {fileID: 0}
|
||||||
|
m_ProbeAnchor: {fileID: 0}
|
||||||
|
m_LightProbeVolumeOverride: {fileID: 0}
|
||||||
|
m_ScaleInLightmap: 1
|
||||||
|
m_ReceiveGI: 1
|
||||||
|
m_PreserveUVs: 0
|
||||||
|
m_IgnoreNormalsForChartDetection: 0
|
||||||
|
m_ImportantGI: 0
|
||||||
|
m_StitchLightmapSeams: 1
|
||||||
|
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_AdditionalVertexStreams: {fileID: 0}
|
||||||
|
--- !u!33 &1581798080
|
||||||
|
MeshFilter:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 1581798077}
|
||||||
|
m_Mesh: {fileID: 10207, guid: 0000000000000000e000000000000000, type: 0}
|
||||||
|
--- !u!4 &1581798081
|
||||||
|
Transform:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 1581798077}
|
||||||
|
serializedVersion: 2
|
||||||
|
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
||||||
|
m_LocalPosition: {x: 6.3278165, y: 1.1760335, z: 0.97}
|
||||||
|
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||||
|
m_ConstrainProportionsScale: 0
|
||||||
|
m_Children: []
|
||||||
|
m_Father: {fileID: 0}
|
||||||
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||||
|
--- !u!1 &1684186019
|
||||||
|
GameObject:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
serializedVersion: 6
|
||||||
|
m_Component:
|
||||||
|
- component: {fileID: 1684186025}
|
||||||
|
- component: {fileID: 1684186024}
|
||||||
|
- component: {fileID: 1684186023}
|
||||||
|
- component: {fileID: 1684186022}
|
||||||
|
- component: {fileID: 1684186021}
|
||||||
|
- component: {fileID: 1684186020}
|
||||||
|
m_Layer: 0
|
||||||
|
m_Name: Plane
|
||||||
|
m_TagString: Untagged
|
||||||
|
m_Icon: {fileID: 0}
|
||||||
|
m_NavMeshLayer: 0
|
||||||
|
m_StaticEditorFlags: 0
|
||||||
|
m_IsActive: 1
|
||||||
|
--- !u!64 &1684186020
|
||||||
|
MeshCollider:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 1684186019}
|
||||||
|
m_Material: {fileID: 0}
|
||||||
|
m_IncludeLayers:
|
||||||
|
serializedVersion: 2
|
||||||
|
m_Bits: 0
|
||||||
|
m_ExcludeLayers:
|
||||||
|
serializedVersion: 2
|
||||||
|
m_Bits: 0
|
||||||
|
m_LayerOverridePriority: 0
|
||||||
|
m_IsTrigger: 0
|
||||||
|
m_ProvidesContacts: 0
|
||||||
|
m_Enabled: 1
|
||||||
|
serializedVersion: 5
|
||||||
|
m_Convex: 1
|
||||||
|
m_CookingOptions: 30
|
||||||
|
m_Mesh: {fileID: 1212827717}
|
||||||
|
--- !u!33 &1684186021
|
||||||
|
MeshFilter:
|
||||||
|
m_ObjectHideFlags: 10
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 1684186019}
|
||||||
|
m_Mesh: {fileID: 1212827717}
|
||||||
|
--- !u!23 &1684186022
|
||||||
|
MeshRenderer:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 1684186019}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_CastShadows: 1
|
||||||
|
m_ReceiveShadows: 1
|
||||||
|
m_DynamicOccludee: 1
|
||||||
|
m_StaticShadowCaster: 0
|
||||||
|
m_MotionVectors: 1
|
||||||
|
m_LightProbeUsage: 1
|
||||||
|
m_ReflectionProbeUsage: 1
|
||||||
|
m_RayTracingMode: 2
|
||||||
|
m_RayTraceProcedural: 0
|
||||||
|
m_RenderingLayerMask: 1
|
||||||
|
m_RendererPriority: 0
|
||||||
|
m_Materials:
|
||||||
|
- {fileID: 2100000, guid: 31321ba15b8f8eb4c954353edc038b1d, type: 2}
|
||||||
|
m_StaticBatchInfo:
|
||||||
|
firstSubMesh: 0
|
||||||
|
subMeshCount: 0
|
||||||
|
m_StaticBatchRoot: {fileID: 0}
|
||||||
|
m_ProbeAnchor: {fileID: 0}
|
||||||
|
m_LightProbeVolumeOverride: {fileID: 0}
|
||||||
|
m_ScaleInLightmap: 1
|
||||||
|
m_ReceiveGI: 1
|
||||||
|
m_PreserveUVs: 0
|
||||||
|
m_IgnoreNormalsForChartDetection: 0
|
||||||
|
m_ImportantGI: 0
|
||||||
|
m_StitchLightmapSeams: 1
|
||||||
|
m_SelectedEditorRenderState: 2
|
||||||
|
m_MinimumChartSize: 4
|
||||||
|
m_AutoUVMaxDistance: 0.5
|
||||||
|
m_AutoUVMaxAngle: 89
|
||||||
|
m_LightmapParameters: {fileID: 0}
|
||||||
|
m_SortingLayerID: 0
|
||||||
|
m_SortingLayer: 0
|
||||||
|
m_SortingOrder: 0
|
||||||
|
m_AdditionalVertexStreams: {fileID: 0}
|
||||||
|
--- !u!114 &1684186023
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 1684186019}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: 11500000, guid: 1ca002da428252441b92f28d83c8a65f, type: 3}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
m_Shape:
|
||||||
|
rid: 5944741222442336259
|
||||||
|
m_Size: {x: -1.2544823, y: 0, z: -1.1952515}
|
||||||
|
m_Rotation: {x: 0, y: 0, z: 0, w: 1}
|
||||||
|
m_PivotLocation: 0
|
||||||
|
m_PivotPosition: {x: 0, y: 0, z: 0}
|
||||||
|
m_UnmodifiedMeshVersion: 3271
|
||||||
|
m_ShapeBox:
|
||||||
|
m_Center: {x: 0, y: 0, z: 0}
|
||||||
|
m_Extent: {x: 0.5, y: 0, z: 0.5}
|
||||||
|
references:
|
||||||
|
version: 2
|
||||||
|
RefIds:
|
||||||
|
- rid: 5944741222442336259
|
||||||
|
type: {class: Plane, ns: UnityEngine.ProBuilder.Shapes, asm: Unity.ProBuilder}
|
||||||
|
data:
|
||||||
|
m_HeightSegments: 1
|
||||||
|
m_WidthSegments: 1
|
||||||
|
--- !u!114 &1684186024
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 1684186019}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: 11500000, guid: 8233d90336aea43098adf6dbabd606a2, type: 3}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
m_MeshFormatVersion: 2
|
||||||
|
m_Faces:
|
||||||
|
- m_Indexes: 000000000100000002000000010000000300000002000000
|
||||||
|
m_SmoothingGroup: 0
|
||||||
|
m_Uv:
|
||||||
|
m_UseWorldSpace: 0
|
||||||
|
m_FlipU: 0
|
||||||
|
m_FlipV: 0
|
||||||
|
m_SwapUV: 0
|
||||||
|
m_Fill: 1
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
m_Rotation: 0
|
||||||
|
m_Anchor: 9
|
||||||
|
m_Material: {fileID: 0}
|
||||||
|
m_SubmeshIndex: 0
|
||||||
|
m_ManualUV: 0
|
||||||
|
elementGroup: -1
|
||||||
|
m_TextureGroup: -1
|
||||||
|
- m_Indexes: 040000000500000006000000050000000700000006000000
|
||||||
|
m_SmoothingGroup: 0
|
||||||
|
m_Uv:
|
||||||
|
m_UseWorldSpace: 0
|
||||||
|
m_FlipU: 0
|
||||||
|
m_FlipV: 0
|
||||||
|
m_SwapUV: 0
|
||||||
|
m_Fill: 1
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
m_Rotation: 0
|
||||||
|
m_Anchor: 9
|
||||||
|
m_Material: {fileID: 0}
|
||||||
|
m_SubmeshIndex: 0
|
||||||
|
m_ManualUV: 0
|
||||||
|
elementGroup: -1
|
||||||
|
m_TextureGroup: -1
|
||||||
|
- m_Indexes: 08000000090000000a000000090000000b0000000a000000
|
||||||
|
m_SmoothingGroup: 0
|
||||||
|
m_Uv:
|
||||||
|
m_UseWorldSpace: 0
|
||||||
|
m_FlipU: 0
|
||||||
|
m_FlipV: 0
|
||||||
|
m_SwapUV: 0
|
||||||
|
m_Fill: 1
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
m_Rotation: 0
|
||||||
|
m_Anchor: 9
|
||||||
|
m_Material: {fileID: 0}
|
||||||
|
m_SubmeshIndex: 0
|
||||||
|
m_ManualUV: 0
|
||||||
|
elementGroup: -1
|
||||||
|
m_TextureGroup: -1
|
||||||
|
- m_Indexes: 0c0000000d0000000e0000000d0000000f0000000e000000
|
||||||
|
m_SmoothingGroup: 0
|
||||||
|
m_Uv:
|
||||||
|
m_UseWorldSpace: 0
|
||||||
|
m_FlipU: 0
|
||||||
|
m_FlipV: 0
|
||||||
|
m_SwapUV: 0
|
||||||
|
m_Fill: 1
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
m_Rotation: 0
|
||||||
|
m_Anchor: 9
|
||||||
|
m_Material: {fileID: 0}
|
||||||
|
m_SubmeshIndex: 0
|
||||||
|
m_ManualUV: 0
|
||||||
|
elementGroup: -1
|
||||||
|
m_TextureGroup: -1
|
||||||
|
m_SharedVertices:
|
||||||
|
- m_Vertices: 00000000
|
||||||
|
- m_Vertices: 0100000004000000
|
||||||
|
- m_Vertices: 0200000008000000
|
||||||
|
- m_Vertices: 0300000006000000090000000c000000
|
||||||
|
- m_Vertices: 05000000
|
||||||
|
- m_Vertices: 070000000d000000
|
||||||
|
- m_Vertices: 0a000000
|
||||||
|
- m_Vertices: 0b0000000e000000
|
||||||
|
- m_Vertices: 0f000000
|
||||||
|
m_SharedTextures: []
|
||||||
|
m_Positions:
|
||||||
|
- {x: -0.62724113, y: 0, z: -0.59762573}
|
||||||
|
- {x: -0.62724113, y: 0, z: 0}
|
||||||
|
- {x: 0, y: 0, z: -0.59762573}
|
||||||
|
- {x: 0, y: 0, z: 0}
|
||||||
|
- {x: -0.62724113, y: 0, z: 0}
|
||||||
|
- {x: -0.62724113, y: 0, z: 0.59762573}
|
||||||
|
- {x: 0, y: 0, z: 0}
|
||||||
|
- {x: 0, y: 0, z: 0.59762573}
|
||||||
|
- {x: 0, y: 0, z: -0.59762573}
|
||||||
|
- {x: 0, y: 0, z: 0}
|
||||||
|
- {x: 0.62724113, y: 0, z: -0.59762573}
|
||||||
|
- {x: 0.62724113, y: 0, z: 0}
|
||||||
|
- {x: 0, y: 0, z: 0}
|
||||||
|
- {x: 0, y: 0, z: 0.59762573}
|
||||||
|
- {x: 0.62724113, y: 0, z: 0}
|
||||||
|
- {x: 0.62724113, y: 0, z: 0.59762573}
|
||||||
|
m_Textures0:
|
||||||
|
- {x: -0.62724113, y: -0.59762573}
|
||||||
|
- {x: -0.62724113, y: 0}
|
||||||
|
- {x: 0, y: -0.59762573}
|
||||||
|
- {x: 0, y: 0}
|
||||||
|
- {x: -0.62724113, y: 0}
|
||||||
|
- {x: -0.62724113, y: 0.59762573}
|
||||||
|
- {x: 0, y: 0}
|
||||||
|
- {x: 0, y: 0.59762573}
|
||||||
|
- {x: 0, y: -0.59762573}
|
||||||
|
- {x: 0, y: 0}
|
||||||
|
- {x: 0.62724113, y: -0.59762573}
|
||||||
|
- {x: 0.62724113, y: 0}
|
||||||
|
- {x: 0, y: 0}
|
||||||
|
- {x: 0, y: 0.59762573}
|
||||||
|
- {x: 0.62724113, y: 0}
|
||||||
|
- {x: 0.62724113, y: 0.59762573}
|
||||||
|
m_Textures2: []
|
||||||
|
m_Textures3: []
|
||||||
|
m_Tangents:
|
||||||
|
- {x: 1, y: 0, z: 0, w: -1}
|
||||||
|
- {x: 1, y: 0, z: 0, w: -1}
|
||||||
|
- {x: 1, y: 0, z: 0, w: -1}
|
||||||
|
- {x: 1, y: 0, z: 0, w: -1}
|
||||||
|
- {x: 1, y: 0, z: 0, w: -1}
|
||||||
|
- {x: 1, y: 0, z: 0, w: -1}
|
||||||
|
- {x: 1, y: 0, z: 0, w: -1}
|
||||||
|
- {x: 1, y: 0, z: 0, w: -1}
|
||||||
|
- {x: 1, y: 0, z: 0, w: -1}
|
||||||
|
- {x: 1, y: 0, z: 0, w: -1}
|
||||||
|
- {x: 1, y: 0, z: 0, w: -1}
|
||||||
|
- {x: 1, y: 0, z: 0, w: -1}
|
||||||
|
- {x: 1, y: 0, z: 0, w: -1}
|
||||||
|
- {x: 1, y: 0, z: 0, w: -1}
|
||||||
|
- {x: 1, y: 0, z: 0, w: -1}
|
||||||
|
- {x: 1, y: 0, z: 0, w: -1}
|
||||||
|
m_Colors: []
|
||||||
|
m_UnwrapParameters:
|
||||||
|
m_HardAngle: 88
|
||||||
|
m_PackMargin: 20
|
||||||
|
m_AngleError: 8
|
||||||
|
m_AreaError: 15
|
||||||
|
m_PreserveMeshAssetOnDestroy: 0
|
||||||
|
assetGuid:
|
||||||
|
m_Mesh: {fileID: 1212827717}
|
||||||
|
m_VersionIndex: 3271
|
||||||
|
m_IsSelectable: 1
|
||||||
|
m_SelectedFaces:
|
||||||
|
m_SelectedEdges: []
|
||||||
|
m_SelectedVertices:
|
||||||
|
--- !u!4 &1684186025
|
||||||
|
Transform:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 1684186019}
|
||||||
|
serializedVersion: 2
|
||||||
|
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
||||||
|
m_LocalPosition: {x: 6.52, y: 0.01, z: -1.8}
|
||||||
|
m_LocalScale: {x: 10.237, y: 10.237, z: 10.237}
|
||||||
|
m_ConstrainProportionsScale: 0
|
||||||
|
m_Children: []
|
||||||
|
m_Father: {fileID: 0}
|
||||||
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||||
|
--- !u!1660057539 &9223372036854775807
|
||||||
|
SceneRoots:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_Roots:
|
||||||
|
- {fileID: 19031482}
|
||||||
|
- {fileID: 1684186025}
|
||||||
|
- {fileID: 701711586}
|
||||||
|
- {fileID: 1581798081}
|
|
@ -0,0 +1,7 @@
|
||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 96d6b96df19aea74e9045caf8691f8d0
|
||||||
|
DefaultImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
@ -1,10 +0,0 @@
|
||||||
fileFormatVersion: 2
|
|
||||||
guid: 4e3818e388d6ab547a7e9c55a18a2163
|
|
||||||
ScriptedImporter:
|
|
||||||
internalIDToNameTable: []
|
|
||||||
externalObjects: {}
|
|
||||||
serializedVersion: 2
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
||||||
script: {fileID: 11500000, guid: 625f186215c104763be7675aa2d941aa, type: 3}
|
|
File diff suppressed because it is too large
Load diff
|
@ -1,10 +0,0 @@
|
||||||
fileFormatVersion: 2
|
|
||||||
guid: 6aa4ad859d41ef04e97d390288512dc8
|
|
||||||
ScriptedImporter:
|
|
||||||
internalIDToNameTable: []
|
|
||||||
externalObjects: {}
|
|
||||||
serializedVersion: 2
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
||||||
script: {fileID: 11500000, guid: 625f186215c104763be7675aa2d941aa, type: 3}
|
|
|
@ -9,7 +9,7 @@
|
||||||
{
|
{
|
||||||
"type": "UnityEngine.ProBuilder.SelectMode, Unity.ProBuilder, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null",
|
"type": "UnityEngine.ProBuilder.SelectMode, Unity.ProBuilder, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null",
|
||||||
"key": "editor.lastMeshSelectMode",
|
"key": "editor.lastMeshSelectMode",
|
||||||
"value": "{\"m_Value\":8}"
|
"value": "{\"m_Value\":2}"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089",
|
"type": "System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089",
|
||||||
|
@ -106,6 +106,11 @@
|
||||||
"key": "UVEditor.showPreviewMaterial",
|
"key": "UVEditor.showPreviewMaterial",
|
||||||
"value": "{\"m_Value\":true}"
|
"value": "{\"m_Value\":true}"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"type": "System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089",
|
||||||
|
"key": "editor.stripProBuilderScriptsOnBuild",
|
||||||
|
"value": "{\"m_Value\":true}"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"type": "UnityEngine.ProBuilder.SelectionModifierBehavior, Unity.ProBuilder, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null",
|
"type": "UnityEngine.ProBuilder.SelectionModifierBehavior, Unity.ProBuilder, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null",
|
||||||
"key": "editor.rectSelectModifier",
|
"key": "editor.rectSelectModifier",
|
||||||
|
@ -144,18 +149,13 @@
|
||||||
{
|
{
|
||||||
"type": "System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089",
|
"type": "System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089",
|
||||||
"key": "ShapeBuilder.ActiveShapeIndex",
|
"key": "ShapeBuilder.ActiveShapeIndex",
|
||||||
"value": "{\"m_Value\":6}"
|
"value": "{\"m_Value\":7}"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089",
|
"type": "System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089",
|
||||||
"key": "ShapeBuilder.LastPivotLocation",
|
"key": "ShapeBuilder.LastPivotLocation",
|
||||||
"value": "{\"m_Value\":1}"
|
"value": "{\"m_Value\":1}"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"type": "System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089",
|
|
||||||
"key": "SubdivideEdges.subdivisions",
|
|
||||||
"value": "{\"m_Value\":1}"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"type": "UnityEngine.ProBuilder.PivotLocation, Unity.ProBuilder, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null",
|
"type": "UnityEngine.ProBuilder.PivotLocation, Unity.ProBuilder, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null",
|
||||||
"key": "mesh.newShapePivotLocation",
|
"key": "mesh.newShapePivotLocation",
|
||||||
|
@ -169,7 +169,7 @@
|
||||||
{
|
{
|
||||||
"type": "UnityEngine.Vector3, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null",
|
"type": "UnityEngine.Vector3, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null",
|
||||||
"key": "ShapeBuilder.LastSize",
|
"key": "ShapeBuilder.LastSize",
|
||||||
"value": "{\"m_Value\":{\"x\":-7.964871406555176,\"y\":0.0,\"z\":-1.6318359375}}"
|
"value": "{\"m_Value\":{\"x\":0.08052825927734375,\"y\":0.25925254821777346,\"z\":-0.1085205078125}}"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "UnityEngine.Quaternion, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null",
|
"type": "UnityEngine.Quaternion, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null",
|
||||||
|
@ -236,16 +236,6 @@
|
||||||
"key": "ShapeBuilder.Cone",
|
"key": "ShapeBuilder.Cone",
|
||||||
"value": "{}"
|
"value": "{}"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"type": "UnityEngine.ProBuilder.Shapes.Shape, Unity.ProBuilder, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null",
|
|
||||||
"key": "ShapeBuilder.Arch",
|
|
||||||
"value": "{}"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "UnityEngine.ProBuilder.Shapes.Shape, Unity.ProBuilder, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null",
|
|
||||||
"key": "ShapeBuilder.Prism",
|
|
||||||
"value": "{}"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"type": "UnityEngine.ProBuilder.ExtrudeMethod, Unity.ProBuilder, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null",
|
"type": "UnityEngine.ProBuilder.ExtrudeMethod, Unity.ProBuilder, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null",
|
||||||
"key": "editor.extrudeMethod",
|
"key": "editor.extrudeMethod",
|
||||||
|
|
Loading…
Add table
Reference in a new issue