diff --git a/Assets/01_Scenes/MazeRoom.unity b/Assets/01_Scenes/MazeRoom.unity index dcdacc11..aaeb5d7f 100644 --- a/Assets/01_Scenes/MazeRoom.unity +++ b/Assets/01_Scenes/MazeRoom.unity @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e42dbfa47ae07b054fef9356d1fbb2a291d8a8b7cd656da6ca823d00a0404262 -size 3282794 +oid sha256:47ee9d224e1fbe0c09aeb16aa0390ffdef9a0255ece32d7609e80cba6e944dae +size 3343228 diff --git a/Assets/01_Scenes/MemoryPieceScene.unity b/Assets/01_Scenes/MemoryPieceScene.unity index 7360bcb6..9096e472 100644 --- a/Assets/01_Scenes/MemoryPieceScene.unity +++ b/Assets/01_Scenes/MemoryPieceScene.unity @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e8c97bc576519cf7abab91fed23703b75a75adcef0892ebbd0d64e039b3bfd76 -size 100420 +oid sha256:a49dda1c225b371070a7f891140d82c0a9251fb458c73d0dd7381ccac6536413 +size 44854 diff --git a/Assets/01_Scenes/WhaleAdventure_VR/Rooms/CatsRoom.unity b/Assets/01_Scenes/WhaleAdventure_VR/Rooms/CatsRoom.unity index 951ccccb..1b0105c8 100644 --- a/Assets/01_Scenes/WhaleAdventure_VR/Rooms/CatsRoom.unity +++ b/Assets/01_Scenes/WhaleAdventure_VR/Rooms/CatsRoom.unity @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:51d7d53e950dfbc7440b55ab85d9b12d6067e8e7c27b3d5b54b9f99e7cace770 -size 2108661 +oid sha256:2383d609077f84049d7a789798d6b1454e399f95a268447b2d9a2c514ea3b6e2 +size 2942559 diff --git a/Assets/01_Scenes/WhaleAdventure_VR/Rooms/Gepto first.unity b/Assets/01_Scenes/WhaleAdventure_VR/Rooms/Gepto first.unity new file mode 100644 index 00000000..7d290bd2 --- /dev/null +++ b/Assets/01_Scenes/WhaleAdventure_VR/Rooms/Gepto first.unity @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1cb631d855df4c240e0661f81f4e8516edf8d8bf999512d1d19ff51d6b90aba9 +size 45598 diff --git a/Assets/01_Scenes/WhaleAdventure_VR/Rooms/Gepto first.unity.meta b/Assets/01_Scenes/WhaleAdventure_VR/Rooms/Gepto first.unity.meta new file mode 100644 index 00000000..6073f3b5 --- /dev/null +++ b/Assets/01_Scenes/WhaleAdventure_VR/Rooms/Gepto first.unity.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 969b87c4860ee2c4dbf2df75ad8fde0e +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/01_Scenes/blackjack.unity b/Assets/01_Scenes/blackjack.unity index 45be1fae..7a97dd29 100644 --- a/Assets/01_Scenes/blackjack.unity +++ b/Assets/01_Scenes/blackjack.unity @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2ad4ca520489b3cd3e1b2c1244112afdfdfcaab23247d69edfec969ef5dfebf6 -size 2312189 +oid sha256:b5006eee2dd72bb0344d001f395405d77c95cda23a3d6e932687232a6728bf4f +size 2308027 diff --git a/Assets/02_Scripts/Managers/CollectionManager.cs b/Assets/02_Scripts/Managers/CollectionManager.cs index dc587dd7..7b6850c1 100644 --- a/Assets/02_Scripts/Managers/CollectionManager.cs +++ b/Assets/02_Scripts/Managers/CollectionManager.cs @@ -1,6 +1,6 @@ using UnityEngine; -public class CollectionManager : MonoBehaviour +public class CollectionManager : MonoBehaviour, ISceneInitializable { public static CollectionManager Instance; @@ -28,6 +28,22 @@ void Start() UpdateUI(); } + // SceneLoadManager가 씬 로드마다 호출. 새 씬의 StarPieceHud를 다시 찾아 연결한다. + public void OnSceneLoaded() + { + FindStarPieceHud(); + UpdateUI(); + } + + private void FindStarPieceHud() + { + // 비활성(토글로 꺼진) HUD도 찾을 수 있도록 Include + _starPieceHud = FindFirstObjectByType(FindObjectsInactive.Include); + + if (_starPieceHud == null) + Debug.LogWarning("[CollectionManager] 현재 씬에서 StarPieceHud를 찾지 못했습니다.", this); + } + public void AddStar(int amount) { _currentStars += amount; diff --git a/Assets/02_Scripts/Managers/StarPickup.cs b/Assets/02_Scripts/Managers/StarPickup.cs index a61d271c..f7bf2ee9 100644 --- a/Assets/02_Scripts/Managers/StarPickup.cs +++ b/Assets/02_Scripts/Managers/StarPickup.cs @@ -1,4 +1,5 @@ using UnityEngine; +using UnityEngine.Events; public class StarPickup : MonoBehaviour { @@ -19,7 +20,11 @@ public class StarPickup : MonoBehaviour [Header("Sound")] public AudioClip pickupSound; - + + [Header("Events")] + [Tooltip("별을 먹었을 때 발생하는 이벤트입니다.")] + public UnityEvent onCollected; + private Vector3 startPosition; void Awake() @@ -63,11 +68,13 @@ public void CollectStar() Debug.LogWarning("CollectionManager not found."); } - if (pickupSound != null && pickupSound != null) + if (pickupSound != null) { SoundManager.Instance.PlaySFX(pickupSound); } + onCollected?.Invoke(); + Destroy(gameObject); } diff --git a/Assets/11_Audio/Source/SFX.meta b/Assets/02_Scripts/Managers/change room manager/gapato.meta similarity index 77% rename from Assets/11_Audio/Source/SFX.meta rename to Assets/02_Scripts/Managers/change room manager/gapato.meta index 6e350c32..53cf0798 100644 --- a/Assets/11_Audio/Source/SFX.meta +++ b/Assets/02_Scripts/Managers/change room manager/gapato.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 5e5847f89741a9346b55a88947c1ecfd +guid: 47ef309091683cf409e48c93663f025b folderAsset: yes DefaultImporter: externalObjects: {} diff --git a/Assets/02_Scripts/Managers/change room manager/gapato/GeppettoRunTriggerZone.cs b/Assets/02_Scripts/Managers/change room manager/gapato/GeppettoRunTriggerZone.cs new file mode 100644 index 00000000..66f0f007 --- /dev/null +++ b/Assets/02_Scripts/Managers/change room manager/gapato/GeppettoRunTriggerZone.cs @@ -0,0 +1,296 @@ +using System.Collections; +using UnityEngine; +using UnityEngine.SceneManagement; +using UnityEngine.Rendering; + +public class GeppettoRunTriggerZone : MonoBehaviour +{ + [Header("Trigger")] + public string playerTag = "Player"; + + [Header("Geppetto")] + public Transform geppetto; + public Animator geppettoAnimator; + + [Header("Animation")] + public string runStateName = "Running"; + public bool playRunAnimationOnTrigger = true; + + [Header("Move")] + public float runSpeed = 5f; + public float rotateSpeed = 12f; + public bool keepStartY = true; + + [Header("Player Lock")] + public bool lockPlayerOnTrigger = true; + public Transform playerRootToLock; // θ VRPlayer root ڵ + public bool lockPlayerRotation = true; + public Behaviour[] disableWhileEvent; // ̵/ȸ Ʈ ְ ⿡ + + [Header("VR Black Fade")] + public Camera vrCamera; + public float fadeDuration = 5f; + public float quadDistance = 0.45f; + public float quadScale = 3f; + + [Header("Scene")] + public string nextSceneName; + + private Transform targetPlayer; + private Transform lockedPlayerRoot; + private Vector3 lockedPlayerPosition; + private Quaternion lockedPlayerRotation; + + private bool started = false; + private bool sceneChanging = false; + private float startY; + + private GameObject blackQuad; + private Material blackMat; + + private void Start() + { + if (geppetto != null) + startY = geppetto.position.y; + + if (geppettoAnimator != null) + geppettoAnimator.applyRootMotion = false; + + CreateBlackQuad(); + SetBlackAlpha(0f); + + if (blackQuad != null) + blackQuad.SetActive(false); + } + + private void OnTriggerEnter(Collider other) + { + if (started) + return; + + if (!IsPlayer(other)) + return; + + Debug.Log(" ̺Ʈ : " + other.name); + + lockedPlayerRoot = playerRootToLock != null ? playerRootToLock : other.transform.root; + targetPlayer = lockedPlayerRoot; + + if (lockPlayerOnTrigger && lockedPlayerRoot != null) + { + lockedPlayerPosition = lockedPlayerRoot.position; + lockedPlayerRotation = lockedPlayerRoot.rotation; + + foreach (Behaviour b in disableWhileEvent) + { + if (b != null) + b.enabled = false; + } + + Debug.Log("÷̾ ġ : " + lockedPlayerRoot.name); + } + + started = true; + + PlayRunAnimation(); + + Collider col = GetComponent(); + if (col != null) + col.enabled = false; + + StartCoroutine(FadeWhileRunning()); + } + + private void Update() + { + if (!started || sceneChanging) + return; + + if (geppetto == null || targetPlayer == null) + return; + + Vector3 dir = targetPlayer.position - geppetto.position; + dir.y = 0f; + + if (dir.sqrMagnitude > 0.001f) + { + Quaternion targetRot = Quaternion.LookRotation(dir); + geppetto.rotation = Quaternion.Slerp( + geppetto.rotation, + targetRot, + Time.deltaTime * rotateSpeed + ); + + Vector3 nextPos = geppetto.position + dir.normalized * runSpeed * Time.deltaTime; + + if (keepStartY) + nextPos.y = startY; + + geppetto.position = nextPos; + } + } + + private void LateUpdate() + { + if (!started || sceneChanging) + return; + + if (!lockPlayerOnTrigger || lockedPlayerRoot == null) + return; + + lockedPlayerRoot.position = lockedPlayerPosition; + + if (lockPlayerRotation) + { + lockedPlayerRoot.rotation = lockedPlayerRotation; + } + } + + private void PlayRunAnimation() + { + if (!playRunAnimationOnTrigger) + return; + + if (geppettoAnimator == null) + { + Debug.LogWarning("Geppetto Animator ʾҽϴ."); + return; + } + + if (string.IsNullOrWhiteSpace(runStateName)) + { + Debug.LogWarning("Run State Name ֽϴ."); + return; + } + + geppettoAnimator.applyRootMotion = false; + geppettoAnimator.Play(runStateName, 0, 0f); + geppettoAnimator.Update(0f); + + Debug.Log("޸ ִϸ̼ : " + runStateName); + } + + private IEnumerator FadeWhileRunning() + { + if (blackQuad != null) + blackQuad.SetActive(true); + + SetBlackAlpha(0f); + + float t = 0f; + + while (t < fadeDuration) + { + t += Time.deltaTime; + float alpha = Mathf.Clamp01(t / fadeDuration); + SetBlackAlpha(alpha); + + yield return null; + } + + SetBlackAlpha(1f); + sceneChanging = true; + + if (!string.IsNullOrWhiteSpace(nextSceneName)) + { + SceneManager.LoadScene(nextSceneName); + } + else + { + Debug.LogWarning("Next Scene Name ֽϴ."); + } + } + + private void CreateBlackQuad() + { + Camera cam = vrCamera != null ? vrCamera : Camera.main; + + if (cam == null) + { + Debug.LogError("VR Camera ϴ. Inspector Main Camera ־ּ."); + return; + } + + blackQuad = GameObject.CreatePrimitive(PrimitiveType.Quad); + blackQuad.name = "VR_Black_Fade_Quad"; + + Collider col = blackQuad.GetComponent(); + if (col != null) + Destroy(col); + + blackQuad.transform.SetParent(cam.transform); + blackQuad.transform.localPosition = new Vector3(0f, 0f, quadDistance); + blackQuad.transform.localRotation = Quaternion.identity; + blackQuad.transform.localScale = new Vector3(quadScale, quadScale, 1f); + + MeshRenderer renderer = blackQuad.GetComponent(); + blackMat = CreateTransparentBlackMaterial(); + renderer.material = blackMat; + + renderer.shadowCastingMode = ShadowCastingMode.Off; + renderer.receiveShadows = false; + } + + private Material CreateTransparentBlackMaterial() + { + Shader shader = + Shader.Find("Universal Render Pipeline/Unlit") ?? + Shader.Find("Unlit/Transparent") ?? + Shader.Find("Sprites/Default") ?? + Shader.Find("Standard"); + + Material mat = new Material(shader); + mat.renderQueue = 5000; + + if (mat.HasProperty("_BaseColor")) + mat.SetColor("_BaseColor", new Color(0f, 0f, 0f, 0f)); + + if (mat.HasProperty("_Color")) + mat.SetColor("_Color", new Color(0f, 0f, 0f, 0f)); + + if (mat.HasProperty("_Surface")) + mat.SetFloat("_Surface", 1f); + + if (mat.HasProperty("_Blend")) + mat.SetFloat("_Blend", 0f); + + if (mat.HasProperty("_SrcBlend")) + mat.SetFloat("_SrcBlend", (float)BlendMode.SrcAlpha); + + if (mat.HasProperty("_DstBlend")) + mat.SetFloat("_DstBlend", (float)BlendMode.OneMinusSrcAlpha); + + if (mat.HasProperty("_ZWrite")) + mat.SetFloat("_ZWrite", 0f); + + mat.EnableKeyword("_SURFACE_TYPE_TRANSPARENT"); + mat.EnableKeyword("_ALPHABLEND_ON"); + + return mat; + } + + private void SetBlackAlpha(float alpha) + { + if (blackMat == null) + return; + + Color c = new Color(0f, 0f, 0f, alpha); + + if (blackMat.HasProperty("_BaseColor")) + blackMat.SetColor("_BaseColor", c); + + if (blackMat.HasProperty("_Color")) + blackMat.SetColor("_Color", c); + } + + private bool IsPlayer(Collider other) + { + if (other.CompareTag(playerTag)) + return true; + + if (other.transform.root.CompareTag(playerTag)) + return true; + + return false; + } +} \ No newline at end of file diff --git a/Assets/02_Scripts/Managers/change room manager/gapato/GeppettoRunTriggerZone.cs.meta b/Assets/02_Scripts/Managers/change room manager/gapato/GeppettoRunTriggerZone.cs.meta new file mode 100644 index 00000000..1eb822b1 --- /dev/null +++ b/Assets/02_Scripts/Managers/change room manager/gapato/GeppettoRunTriggerZone.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 9147beba2b87e4d4b9644fb0647ef6b2 \ No newline at end of file diff --git a/Assets/02_Scripts/MazeRoom/zepettoTrigger.cs b/Assets/02_Scripts/MazeRoom/zepettoTrigger.cs new file mode 100644 index 00000000..0f28d113 --- /dev/null +++ b/Assets/02_Scripts/MazeRoom/zepettoTrigger.cs @@ -0,0 +1,27 @@ +using UnityEngine; +using UnityEngine.VFX; + +public class zepe : MonoBehaviour +{ + public VisualEffect vfx; + public Animator zepettoAnimator; + public string animationName; + public float delayBeforeVFX; + + private bool hasPlayed = false; + + private void OnTriggerEnter(Collider other) + { + if (hasPlayed) return; + if (!other.CompareTag("Player")) return; + + hasPlayed = true; + zepettoAnimator.Play(animationName); + Invoke("PlayVFX", delayBeforeVFX); + } + + private void PlayVFX() + { + vfx.SendEvent("OnPlay"); + } +} diff --git a/Assets/02_Scripts/MazeRoom/zepettoTrigger.cs.meta b/Assets/02_Scripts/MazeRoom/zepettoTrigger.cs.meta new file mode 100644 index 00000000..3ae22634 --- /dev/null +++ b/Assets/02_Scripts/MazeRoom/zepettoTrigger.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: e0b9356ed1cc2c746a48ea28d0537dc8 \ No newline at end of file diff --git a/Assets/02_Scripts/UI/CollisionButton.cs b/Assets/02_Scripts/UI/CollisionButton.cs new file mode 100644 index 00000000..8aafde10 --- /dev/null +++ b/Assets/02_Scripts/UI/CollisionButton.cs @@ -0,0 +1,95 @@ +using UnityEngine; +using UnityEngine.Events; + +/// +/// VR 손이 콜라이더에 닿을(OnTriggerEnter) 때마다 작동하는 버튼. +/// XR UI 포인터/포크 상호작용이 불안정할 때, 트리거 콜라이더로 직접 눌리도록 한다. +/// +[RequireComponent(typeof(Collider))] +public class CollisionButton : MonoBehaviour +{ + [Header("Hand Detection")] + [Tooltip("이 태그를 가진 콜라이더를 손으로 인식합니다.")] + [SerializeField] private string handTag = "PlayerHand"; + + [Tooltip("태그가 달라도 XRHandMarker가 붙어 있으면 손으로 인식합니다.")] + [SerializeField] private bool detectByHandMarker = true; + + [Header("Press Behavior")] + [Tooltip("한 번 눌린 뒤 다시 눌리기까지의 최소 간격(초). 중복/연타 입력을 막습니다.")] + [SerializeField] private float cooldown = 0.4f; + + [Tooltip("꺼두면 손이 닿아도 반응하지 않습니다.")] + [SerializeField] private bool interactable = true; + + [Header("Events")] + [Tooltip("손이 닿아 눌릴 때마다 발생합니다.")] + public UnityEvent onPressed; + + [Header("Debug")] + [SerializeField] private bool showDebugLog = false; + + // timeScale=0(일시정지)에서도 동작하도록 unscaled 시간 사용 + private float _lastPressTime = -999f; + + // 에디터에서 컴포넌트를 처음 추가할 때 콜라이더를 트리거로 자동 설정 + private void Reset() + { + Collider col = GetComponent(); + if (col != null) + col.isTrigger = true; + } + + private void Awake() + { + Collider col = GetComponent(); + if (col != null && !col.isTrigger) + { + col.isTrigger = true; + if (showDebugLog) + Debug.Log("[CollisionButton] Collider가 트리거가 아니어서 강제로 트리거로 설정했습니다.", this); + } + } + + private void OnTriggerEnter(Collider other) + { + if (!interactable) + return; + + if (!IsHand(other)) + return; + + // 양손 콜라이더가 거의 동시에 들어오거나 빠르게 재진입할 때 중복 발동 방지 + if (Time.unscaledTime - _lastPressTime < cooldown) + return; + + Press(); + } + + private void Press() + { + _lastPressTime = Time.unscaledTime; + + if (showDebugLog) + Debug.Log("[CollisionButton] 손이 닿아 버튼이 눌렸습니다.", this); + + onPressed?.Invoke(); + } + + private bool IsHand(Collider other) + { + if (other == null) + return false; + + if (!string.IsNullOrEmpty(handTag) && other.CompareTag(handTag)) + return true; + + if (detectByHandMarker && other.GetComponentInParent() != null) + return true; + + return false; + } + + // 런타임에 활성/비활성 토글이 필요할 때 (UnityEvent 등에서 호출) + public void SetInteractable(bool value) => interactable = value; +} diff --git a/Assets/02_Scripts/UI/CollisionButton.cs.meta b/Assets/02_Scripts/UI/CollisionButton.cs.meta new file mode 100644 index 00000000..fd6433b1 --- /dev/null +++ b/Assets/02_Scripts/UI/CollisionButton.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: c966c32e4e695c44795f9eb58d43d772 \ No newline at end of file diff --git a/Assets/02_Scripts/Zone.cs b/Assets/02_Scripts/Zone.cs index 21c5e09d..605a4d86 100644 --- a/Assets/02_Scripts/Zone.cs +++ b/Assets/02_Scripts/Zone.cs @@ -8,4 +8,5 @@ public enum Zone Seaside, BlackjackGame, BlackBgm, + MazeRoomSound } diff --git a/Assets/04_Models/Characters/gepto.meta b/Assets/04_Models/Characters/gepto.meta new file mode 100644 index 00000000..55c6abc6 --- /dev/null +++ b/Assets/04_Models/Characters/gepto.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0216e96512d0ffb46b47d4f727aa3a9c +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Models/Characters/gepto/1@Look Away Gesture.fbx b/Assets/04_Models/Characters/gepto/1@Look Away Gesture.fbx new file mode 100644 index 00000000..423448fd --- /dev/null +++ b/Assets/04_Models/Characters/gepto/1@Look Away Gesture.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:743a1ef72a8b5295225e38cb1205b42814f86f657eacbfd9dd7b7e2ad8098406 +size 841664 diff --git a/Assets/04_Models/Characters/gepto/1@Look Away Gesture.fbx.meta b/Assets/04_Models/Characters/gepto/1@Look Away Gesture.fbx.meta new file mode 100644 index 00000000..ec8fcc48 --- /dev/null +++ b/Assets/04_Models/Characters/gepto/1@Look Away Gesture.fbx.meta @@ -0,0 +1,115 @@ +fileFormatVersion: 2 +guid: a36967c6d3d1c2845994b82c3b7a185c +ModelImporter: + serializedVersion: 24200 + internalIDToNameTable: [] + externalObjects: + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: geppetto_mat + second: {fileID: 2100000, guid: 014bf8f1d2391aa44b2558959f7dbf5e, type: 2} + materials: + materialImportMode: 2 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 0 + motionNodeName: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 1 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importPhysicalCameras: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + generateMeshLods: 0 + meshLodGenerationFlags: 0 + maximumMeshLod: -1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 1 + strictVertexDataChecks: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 1 + humanDescription: + serializedVersion: 3 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 2 + humanoidOversampling: 1 + avatarSetup: 0 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + importBlendShapeDeformPercent: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Models/Characters/gepto/1@Running (1).fbx b/Assets/04_Models/Characters/gepto/1@Running (1).fbx new file mode 100644 index 00000000..f7eabc08 --- /dev/null +++ b/Assets/04_Models/Characters/gepto/1@Running (1).fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35ec46d4cd20a9267b64f36b35a7007871830cc1e3a8e59febdfa2a287421838 +size 724256 diff --git a/Assets/04_Models/Characters/gepto/1@Running (1).fbx.meta b/Assets/04_Models/Characters/gepto/1@Running (1).fbx.meta new file mode 100644 index 00000000..795c5b7a --- /dev/null +++ b/Assets/04_Models/Characters/gepto/1@Running (1).fbx.meta @@ -0,0 +1,714 @@ +fileFormatVersion: 2 +guid: 0991bb4433265e34ea7c2d4a94f6c4ef +ModelImporter: + serializedVersion: 24200 + internalIDToNameTable: [] + externalObjects: {} + materials: + materialImportMode: 2 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 0 + motionNodeName: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 3 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: + - serializedVersion: 16 + name: Running + takeName: mixamo.com + internalID: -203655887218126122 + firstFrame: 0 + lastFrame: 33 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 1 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 1 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: [] + maskType: 3 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importPhysicalCameras: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + generateMeshLods: 0 + meshLodGenerationFlags: 0 + maximumMeshLod: -1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 1 + strictVertexDataChecks: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 1 + humanDescription: + serializedVersion: 3 + human: + - boneName: mixamorig:Hips + humanName: Hips + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: mixamorig:LeftUpLeg + humanName: LeftUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: mixamorig:RightUpLeg + humanName: RightUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: mixamorig:LeftLeg + humanName: LeftLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: mixamorig:RightLeg + humanName: RightLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: mixamorig:LeftFoot + humanName: LeftFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: mixamorig:RightFoot + humanName: RightFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: mixamorig:Spine + humanName: Spine + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: mixamorig:Spine1 + humanName: Chest + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: mixamorig:Neck + humanName: Neck + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: mixamorig:Head + humanName: Head + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: mixamorig:LeftShoulder + humanName: LeftShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: mixamorig:RightShoulder + humanName: RightShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: mixamorig:LeftArm + humanName: LeftUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: mixamorig:RightArm + humanName: RightUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: mixamorig:LeftForeArm + humanName: LeftLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: mixamorig:RightForeArm + humanName: RightLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: mixamorig:LeftHand + humanName: LeftHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: mixamorig:RightHand + humanName: RightHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: mixamorig:LeftToeBase + humanName: LeftToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: mixamorig:RightToeBase + humanName: RightToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: mixamorig:LeftHandThumb1 + humanName: Left Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: mixamorig:LeftHandThumb2 + humanName: Left Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: mixamorig:LeftHandThumb3 + humanName: Left Thumb Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: mixamorig:LeftHandIndex1 + humanName: Left Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: mixamorig:LeftHandIndex2 + humanName: Left Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: mixamorig:LeftHandIndex3 + humanName: Left Index Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: mixamorig:LeftHandMiddle1 + humanName: Left Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: mixamorig:LeftHandMiddle2 + humanName: Left Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: mixamorig:LeftHandMiddle3 + humanName: Left Middle Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: mixamorig:RightHandThumb1 + humanName: Right Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: mixamorig:RightHandThumb2 + humanName: Right Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: mixamorig:RightHandThumb3 + humanName: Right Thumb Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: mixamorig:RightHandIndex1 + humanName: Right Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: mixamorig:RightHandIndex2 + humanName: Right Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: mixamorig:RightHandIndex3 + humanName: Right Index Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: mixamorig:RightHandMiddle1 + humanName: Right Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: mixamorig:RightHandMiddle2 + humanName: Right Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: mixamorig:RightHandMiddle3 + humanName: Right Middle Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: mixamorig:Spine2 + humanName: UpperChest + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + skeleton: + - name: 1@Running (1)(Clone) + parentName: + position: {x: 0, y: 0, z: 0} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Geppetto_mesh + parentName: 1@Running (1)(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: mixamorig:Hips + parentName: 1@Running (1)(Clone) + position: {x: -0.030214842, y: 9.613887, z: 0.033661004} + rotation: {x: 0.000000005820766, y: -7.2759576e-10, z: -8.1854523e-10, w: 1} + scale: {x: 1, y: 1.0000001, z: 0.99999994} + - name: mixamorig:RightUpLeg + parentName: mixamorig:Hips + position: {x: 0.86377776, y: -0.5258697, z: 0.03184458} + rotation: {x: 0.0008428678, y: 0.04442268, z: 0.9988327, w: -0.018951666} + scale: {x: 1.0000004, y: 1.0000001, z: 1.0000002} + - name: mixamorig:RightLeg + parentName: mixamorig:RightUpLeg + position: {x: -0.0000000045332746, y: 3.8138907, z: -0.000000006385255} + rotation: {x: -0.11643675, y: 0.0012765735, z: -0.010888432, w: 0.99313766} + scale: {x: 1.000001, y: 1.0000007, z: 1} + - name: mixamorig:RightFoot + parentName: mixamorig:RightLeg + position: {x: 9.1619967e-10, y: 3.9095972, z: 0.000000027820777} + rotation: {x: 0.5785469, y: -0.03564042, z: 0.025316436, w: 0.8144768} + scale: {x: 0.9999998, y: 1, z: 0.9999998} + - name: mixamorig:RightToeBase + parentName: mixamorig:RightFoot + position: {x: 0.000000016500982, y: 2.5196154, z: 0.000000012334458} + rotation: {x: 0.26153183, y: -0.022060953, z: 0.0059793675, w: 0.96492416} + scale: {x: 1.0000002, y: 1.0000005, z: 0.99999994} + - name: mixamorig:RightToe_End + parentName: mixamorig:RightToeBase + position: {x: 0.0000000025725797, y: 1.059159, z: 2.420281e-10} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: mixamorig:LeftUpLeg + parentName: mixamorig:Hips + position: {x: -0.86377776, y: -0.5258697, z: 0.03279238} + rotation: {x: -0.00080828136, y: 0.042586353, z: 0.9989126, w: 0.018959256} + scale: {x: 1.0000001, y: 0.9999999, z: 1.0000001} + - name: mixamorig:LeftLeg + parentName: mixamorig:LeftUpLeg + position: {x: -0.0000000013177436, y: 3.8126686, z: -0.000000009556986} + rotation: {x: -0.11730545, y: -0.0012871623, z: 0.0108964, w: 0.9930353} + scale: {x: 1.0000001, y: 1, z: 1.0000001} + - name: mixamorig:LeftFoot + parentName: mixamorig:LeftLeg + position: {x: 2.2832751e-10, y: 3.912741, z: -0.000000013769222} + rotation: {x: 0.57762784, y: 0.03625042, z: -0.02568947, w: 0.8150902} + scale: {x: 1.0000008, y: 1.0000006, z: 1.0000002} + - name: mixamorig:LeftToeBase + parentName: mixamorig:LeftFoot + position: {x: -0.000000016622003, y: 2.483412, z: -0.000000005412902} + rotation: {x: 0.26612854, y: 0.02452073, z: -0.0067721643, w: 0.9636019} + scale: {x: 1.0000006, y: 1.0000001, z: 1.000001} + - name: mixamorig:LeftToe_End + parentName: mixamorig:LeftToeBase + position: {x: -0.0000000012579154, y: 1.0201212, z: 0.0000000013370115} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: mixamorig:Spine + parentName: mixamorig:Hips + position: {x: -0, y: 0.94642514, z: -0.11396488} + rotation: {x: -0.059883676, y: 0.00000000223878, z: -8.6793533e-10, w: 0.99820536} + scale: {x: 1, y: 1, z: 1} + - name: mixamorig:Spine1 + parentName: mixamorig:Spine + position: {x: -0, y: 1.1121402, z: 0.0000000042307784} + rotation: {x: -0.00000012293458, y: -0.000000009982804, z: -0.000000002301369, w: 1} + scale: {x: 1, y: 1.0000002, z: 0.99999994} + - name: mixamorig:Spine2 + parentName: mixamorig:Spine1 + position: {x: -0, y: 1.2710153, z: 0.0000000037716896} + rotation: {x: -0, y: 0.000000014447545, z: 0.0000000017397205, w: 1} + scale: {x: 1, y: 0.9999998, z: 1} + - name: mixamorig:RightShoulder + parentName: mixamorig:Spine2 + position: {x: 0.587027, y: 1.1695782, z: -0.02382909} + rotation: {x: -0.56501335, y: -0.41715288, z: 0.5843339, w: -0.40656784} + scale: {x: 1, y: 1.0000002, z: 1.0000001} + - name: mixamorig:RightArm + parentName: mixamorig:RightShoulder + position: {x: 0.000000001021107, y: 1.2854745, z: 0.0000000015989053} + rotation: {x: -0.13382243, y: -0.0007522106, z: 0.013344884, w: 0.99091524} + scale: {x: 1.0000002, y: 1.0000002, z: 1.0000002} + - name: mixamorig:RightForeArm + parentName: mixamorig:RightArm + position: {x: 9.324673e-10, y: 2.3851924, z: 0.000000005545687} + rotation: {x: -0.06364562, y: -0.003164384, z: 0.026417874, w: 0.99761784} + scale: {x: 1.0000004, y: 0.99999994, z: 0.99999994} + - name: mixamorig:RightHand + parentName: mixamorig:RightForeArm + position: {x: 0.000000004738908, y: 3.0080159, z: 0.000000055346344} + rotation: {x: -0.067934774, y: -0.0348216, z: -0.040557962, w: -0.99625677} + scale: {x: 1, y: 0.99999994, z: 1.0000001} + - name: mixamorig:RightHandThumb1 + parentName: mixamorig:RightHand + position: {x: -0.26702812, y: 0.53483486, z: 0.21510929} + rotation: {x: 0.08519437, y: 0.021488301, z: 0.29378456, w: 0.951825} + scale: {x: 1.0000001, y: 1.0000006, z: 1.0000004} + - name: mixamorig:RightHandThumb2 + parentName: mixamorig:RightHandThumb1 + position: {x: 0.029688267, y: 0.50738335, z: 0.0000000061815877} + rotation: {x: 0.026333958, y: -0.00006866451, z: -0.03136189, w: 0.9991612} + scale: {x: 1.0000001, y: 0.99999994, z: 1.0000001} + - name: mixamorig:RightHandThumb3 + parentName: mixamorig:RightHandThumb2 + position: {x: -0.036286533, y: 0.57210004, z: 0.000000031503433} + rotation: {x: -0.035105176, y: 0.0009930204, z: 0.020473158, w: 0.9991734} + scale: {x: 1, y: 1.0000002, z: 1.0000004} + - name: mixamorig:RightHandThumb4 + parentName: mixamorig:RightHandThumb3 + position: {x: 0.0065982896, y: 0.48430243, z: -0.000000019955639} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: mixamorig:RightHandMiddle1 + parentName: mixamorig:RightHand + position: {x: 0.29314137, y: 1.5905759, z: -0.020043315} + rotation: {x: -0.032110326, y: 0.00026139978, z: 0.01605561, w: -0.9993554} + scale: {x: 1.0000001, y: 1.0000002, z: 1.0000002} + - name: mixamorig:RightHandMiddle2 + parentName: mixamorig:RightHandMiddle1 + position: {x: 0.0018035868, y: 0.6107534, z: 0.000000036632162} + rotation: {x: -0.03608344, y: 0.0005319045, z: -0.0057896515, w: 0.99933195} + scale: {x: 1, y: 0.9999998, z: 0.9999996} + - name: mixamorig:RightHandMiddle3 + parentName: mixamorig:RightHandMiddle2 + position: {x: -0.0064200545, y: 0.52151316, z: -0.000000009006512} + rotation: {x: -0.0288229, y: -0.000027482665, z: -0.0112062935, w: -0.99952173} + scale: {x: 0.99999994, y: 1.0000006, z: 1.0000002} + - name: mixamorig:RightHandMiddle4 + parentName: mixamorig:RightHandMiddle3 + position: {x: 0.0046164757, y: 0.3688754, z: 0.000000008729244} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: mixamorig:RightHandIndex1 + parentName: mixamorig:RightHand + position: {x: -0.29314137, y: 1.7345332, z: 0.017763387} + rotation: {x: 0.04880713, y: -0.0026483715, z: 0.054117788, w: -0.9973375} + scale: {x: 1, y: 1.0000001, z: 0.99999994} + - name: mixamorig:RightHandIndex2 + parentName: mixamorig:RightHandIndex1 + position: {x: -0.0013596636, y: 0.4506455, z: -0.000000009314105} + rotation: {x: 0.026564548, y: -0.000000006053596, z: 0.000000027961502, w: 0.99964714} + scale: {x: 1, y: 1.0000004, z: 1.0000002} + - name: mixamorig:RightHandIndex3 + parentName: mixamorig:RightHandIndex2 + position: {x: -0.00035510957, y: 0.44876263, z: 4.89315e-10} + rotation: {x: 0.03950771, y: 0.000099875164, z: 0.0016289314, w: 0.999218} + scale: {x: 1.0000001, y: 1.0000002, z: 1.0000005} + - name: mixamorig:RightHandIndex4 + parentName: mixamorig:RightHandIndex3 + position: {x: 0.0017147724, y: 0.3108094, z: -0.000000012082171} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: mixamorig:Neck + parentName: mixamorig:Spine2 + position: {x: -0, y: 1.4298929, z: 0.00000014585778} + rotation: {x: 0.059883792, y: -0.000000005984603, z: 0.00000000255659, w: 0.99820536} + scale: {x: 1, y: 1, z: 1} + - name: mixamorig:Head + parentName: mixamorig:Neck + position: {x: -0, y: 0.8053076, z: 0.16258927} + rotation: {x: -0, y: 0.0000000029103828, z: -7.275957e-10, w: 1} + scale: {x: 1, y: 1.0000001, z: 1.0000001} + - name: mixamorig:HeadTop_End + parentName: mixamorig:Head + position: {x: -0, y: 3.640393, z: 0.7349846} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: mixamorig:LeftShoulder + parentName: mixamorig:Spine2 + position: {x: -0.587027, y: 1.1713626, z: -0.038647998} + rotation: {x: 0.5576744, y: -0.422178, z: 0.59027547, w: 0.40291435} + scale: {x: 0.99999994, y: 1.0000001, z: 1.0000001} + - name: mixamorig:LeftArm + parentName: mixamorig:LeftShoulder + position: {x: 5.720281e-10, y: 1.2854745, z: 0.0000000018088507} + rotation: {x: -0.13283518, y: 0.0020416675, z: -0.020236252, w: 0.9909294} + scale: {x: 1.0000006, y: 1.0000006, z: 1.0000004} + - name: mixamorig:LeftForeArm + parentName: mixamorig:LeftArm + position: {x: 0.0000000044714685, y: 2.3845274, z: -0.000000029509076} + rotation: {x: -0.06548629, y: 0.0026390043, z: -0.022353197, w: 0.9975996} + scale: {x: 1.0000002, y: 0.99999994, z: 1.0000004} + - name: mixamorig:LeftHand + parentName: mixamorig:LeftForeArm + position: {x: 0.0000000033268575, y: 3.0081873, z: 0.000000008459108} + rotation: {x: 0.031258434, y: 0.1187388, z: -0.08973473, w: 0.98836815} + scale: {x: 1.0000001, y: 0.9999998, z: 0.99999994} + - name: mixamorig:LeftHandMiddle1 + parentName: mixamorig:LeftHand + position: {x: -0.07823192, y: 0.52654785, z: 0.05281324} + rotation: {x: -0.030609356, y: -0.0031791846, z: 0.08832582, w: 0.9956162} + scale: {x: 1.0000001, y: 1.0000002, z: 1} + - name: mixamorig:LeftHandMiddle2 + parentName: mixamorig:LeftHandMiddle1 + position: {x: -0.0023782456, y: 1.3361262, z: 0.00000004665283} + rotation: {x: -0.009518965, y: -0.00000019185242, z: -0.00000003064633, w: 0.9999547} + scale: {x: 1, y: 1.0000001, z: 1.0000001} + - name: mixamorig:LeftHandMiddle3 + parentName: mixamorig:LeftHandMiddle2 + position: {x: 0.0032234038, y: 0.59199274, z: -3.2290245e-10} + rotation: {x: 0.008998337, y: 0.00000009340913, z: -4.8921217e-10, w: 0.9999595} + scale: {x: 1, y: 1.0000001, z: 1.0000002} + - name: mixamorig:LeftHandMiddle4 + parentName: mixamorig:LeftHandMiddle3 + position: {x: -0.00084515585, y: 0.6730149, z: 0.0000000247462} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: mixamorig:LeftHandThumb1 + parentName: mixamorig:LeftHand + position: {x: 0.13990453, y: 0.5441334, z: 0.28414315} + rotation: {x: 0.19799559, y: -0.009531243, z: -0.24916264, w: 0.94795823} + scale: {x: 0.99999994, y: 1.0000005, z: 1.0000002} + - name: mixamorig:LeftHandThumb2 + parentName: mixamorig:LeftHandThumb1 + position: {x: -0.027707927, y: 0.50291383, z: 0.000000008939973} + rotation: {x: 0.035434958, y: -0.000000052154057, z: 0.00000001117587, w: 0.99937195} + scale: {x: 1, y: 0.99999994, z: 1} + - name: mixamorig:LeftHandThumb3 + parentName: mixamorig:LeftHandThumb2 + position: {x: -0.012625121, y: 0.57871366, z: -0.000000017303298} + rotation: {x: -0.010462573, y: -0.0000972583, z: 0.012249584, w: 0.9998703} + scale: {x: 1.0000001, y: 1.0000006, z: 1.0000005} + - name: mixamorig:LeftHandThumb4 + parentName: mixamorig:LeftHandThumb3 + position: {x: 0.040333092, y: 0.49141943, z: -0.000000015440474} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: mixamorig:LeftHandIndex1 + parentName: mixamorig:LeftHand + position: {x: 0.07823186, y: 1.9446152, z: 0.018172108} + rotation: {x: -0.03229588, y: -0.0029266179, z: 0.079415515, w: 0.996314} + scale: {x: 0.99999994, y: 1.0000002, z: 0.99999994} + - name: mixamorig:LeftHandIndex2 + parentName: mixamorig:LeftHandIndex1 + position: {x: 0.0061918637, y: 0.39209697, z: -0.0000000059397736} + rotation: {x: 0.024974814, y: 0.000000053085373, z: 0.0000000353757, w: 0.99968815} + scale: {x: 1.0000001, y: 1, z: 1.0000001} + - name: mixamorig:LeftHandIndex3 + parentName: mixamorig:LeftHandIndex2 + position: {x: -0.0015052023, y: 0.38157284, z: 0.000000018463192} + rotation: {x: 0.021164883, y: -0.00000003741624, z: -0.0000000884418, w: 0.99977607} + scale: {x: 1, y: 1.0000001, z: 1} + - name: mixamorig:LeftHandIndex4 + parentName: mixamorig:LeftHandIndex3 + position: {x: -0.0046866676, y: 0.23628014, z: 0.0000000017981687} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 1 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 3 + humanoidOversampling: 1 + avatarSetup: 1 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + importBlendShapeDeformPercent: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Models/Characters/gepto/@KA_Idle33_Hug1_1.FBX b/Assets/04_Models/Characters/gepto/@KA_Idle33_Hug1_1.FBX new file mode 100644 index 00000000..f462a6c6 --- /dev/null +++ b/Assets/04_Models/Characters/gepto/@KA_Idle33_Hug1_1.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:802ccd4516219379478f478e50b2fa9fba513cc30de3a9da06c7c71966d32ff4 +size 1129888 diff --git a/Assets/04_Models/Characters/gepto/@KA_Idle33_Hug1_1.FBX.meta b/Assets/04_Models/Characters/gepto/@KA_Idle33_Hug1_1.FBX.meta new file mode 100644 index 00000000..c78ab0e1 --- /dev/null +++ b/Assets/04_Models/Characters/gepto/@KA_Idle33_Hug1_1.FBX.meta @@ -0,0 +1,801 @@ +fileFormatVersion: 2 +guid: e3140c001bd1dd249b2f4885d3041714 +ModelImporter: + serializedVersion: 24200 + internalIDToNameTable: [] + externalObjects: {} + materials: + materialImportMode: 2 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 0 + motionNodeName: + animationImportErrors: + animationImportWarnings: "\nClip 'Unreal Take' has import animation warnings + that might lower retargeting quality:\nNote: Activate translation DOF on avatar + to improve retargeting quality.\n\t'Spine' has translation animation that will + be discarded.\n\t'Neck' has translation animation that will be discarded.\n\t'Shoulder_L' + has translation animation that will be discarded.\n\t'Shoulder_R' has translation + animation that will be discarded.\n" + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 3 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importPhysicalCameras: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + generateMeshLods: 0 + meshLodGenerationFlags: 0 + maximumMeshLod: -1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 1 + strictVertexDataChecks: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 1 + humanDescription: + serializedVersion: 3 + human: + - boneName: Hips + humanName: Hips + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Upper Leg_L + humanName: LeftUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Upper Leg_R + humanName: RightUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Lower Leg_L + humanName: LeftLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Lower Leg_R + humanName: RightLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Foot_L + humanName: LeftFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Foot_R + humanName: RightFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine + humanName: Spine + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Chest + humanName: Chest + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Neck + humanName: Neck + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Head + humanName: Head + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Shoulder_L + humanName: LeftShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Shoulder_R + humanName: RightShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Upper Arm_L + humanName: LeftUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Upper Arm_R + humanName: RightUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Lower Arm_L + humanName: LeftLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Lower Arm_R + humanName: RightLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Hand_L + humanName: LeftHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Hand_R + humanName: RightHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Toes_L + humanName: LeftToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Toes_R + humanName: RightToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Thumb Proximal_L + humanName: Left Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Thumb Intermediate_L + humanName: Left Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Thumb Distal_L + humanName: Left Thumb Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Index Proximal_L + humanName: Left Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Index Intermediate_L + humanName: Left Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Index Distal_L + humanName: Left Index Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Middle Proximal_L + humanName: Left Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Middle Intermediate_L + humanName: Left Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Middle Distal_L + humanName: Left Middle Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Ring Proximal_L + humanName: Left Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Ring Intermediate_L + humanName: Left Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Ring Distal_L + humanName: Left Ring Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Little Proximal_L + humanName: Left Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Little Intermediate_L + humanName: Left Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Little Distal_L + humanName: Left Little Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Thumb Proximal_R + humanName: Right Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Thumb Intermediate_R + humanName: Right Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Thumb Distal_R + humanName: Right Thumb Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Index Proximal_R + humanName: Right Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Index Intermediate_R + humanName: Right Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Index Distal_R + humanName: Right Index Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Middle Proximal_R + humanName: Right Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Middle Intermediate_R + humanName: Right Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Middle Distal_R + humanName: Right Middle Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Ring Proximal_R + humanName: Right Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Ring Intermediate_R + humanName: Right Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Ring Distal_R + humanName: Right Ring Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Little Proximal_R + humanName: Right Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Little Intermediate_R + humanName: Right Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Little Distal_R + humanName: Right Little Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Upper Chest + humanName: UpperChest + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + skeleton: + - name: '@KA_Idle33_Hug1_1(Clone)' + parentName: + position: {x: 0, y: 0, z: 0} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: root + parentName: '@KA_Idle33_Hug1_1(Clone)' + position: {x: -0, y: 0, z: 0} + rotation: {x: -0.7071068, y: 0, z: -0, w: 0.7071068} + scale: {x: 1, y: 1, z: 1} + - name: Hips + parentName: root + position: {x: 1.8758327e-14, y: 0.0018233965, z: 0.9449998} + rotation: {x: 0.7071072, y: -0.0000012240399, z: -0.7071064, w: -0.0000012240412} + scale: {x: 1.0000006, y: 0.99999964, z: 1} + - name: Spine + parentName: Hips + position: {x: -0.057038344, y: -0.000596986, z: 0.000000088419256} + rotation: {x: 0.0000011846614, y: 0.00000059254756, z: -0.113730036, w: 0.99351174} + scale: {x: 1.0000002, y: 1.0000004, z: 0.9999999} + - name: Chest + parentName: Spine + position: {x: -0.1259011, y: 0.000000019073486, z: -0.000000058470757} + rotation: {x: 0.00000031937452, y: -0.00000019452885, z: 0.11285854, w: 0.9936111} + scale: {x: 0.99999994, y: 0.9999998, z: 1} + - name: Upper Chest + parentName: Chest + position: {x: -0.12618537, y: 0.0000000023841842, z: -0.000000054107} + rotation: {x: 0.00000007251216, y: 0.0000010849647, z: 0.085924655, w: 0.99630165} + scale: {x: 0.99999994, y: 0.99999994, z: 1} + - name: Neck + parentName: Upper Chest + position: {x: -0.2569362, y: 0.000037956237, z: -0.00000020595762} + rotation: {x: -0.00097054744, y: 0.00012728196, z: -0.13076055, w: 0.99141353} + scale: {x: 1.0000004, y: 1.0000004, z: 1} + - name: Head + parentName: Neck + position: {x: -0.116066895, y: 0.000000009536743, z: -0.000000046622006} + rotation: {x: 0.0001560897, y: -0.005732159, z: -0.02724545, w: 0.99961233} + scale: {x: 0.9999998, y: 0.99999964, z: 1} + - name: Shoulder_L + parentName: Upper Chest + position: {x: -0.19631073, y: -0.011195793, z: 0.009313484} + rotation: {x: -0.6579974, y: -0.012224246, z: 0.7523571, w: 0.029132156} + scale: {x: 0.99999946, y: 1.0000004, z: 1.000001} + - name: Upper Arm_L + parentName: Shoulder_L + position: {x: -0.15295109, y: 0.000000038146972, z: -2.7925554e-16} + rotation: {x: 0.21916293, y: 0.06270273, z: 0.012770387, w: 0.97358763} + scale: {x: 1.0000007, y: 0.9999998, z: 0.9999992} + - name: Lower Arm_L + parentName: Upper Arm_L + position: {x: -0.27082106, y: 0.00000017166141, z: 0.00000022888182} + rotation: {x: -0.000617936, y: 0.0057512913, z: 0.036311317, w: 0.9993238} + scale: {x: 1.0000002, y: 1.0000002, z: 1} + - name: Hand_L + parentName: Lower Arm_L + position: {x: -0.26095083, y: -6.6271424e-14, z: 0.00000019073485} + rotation: {x: -0.65016013, y: -0.012034405, z: -0.08515628, w: 0.75491416} + scale: {x: 0.9999998, y: 1, z: 0.99999994} + - name: Little Proximal_L + parentName: Hand_L + position: {x: -0.07310257, y: 0.009476233, z: 0.03670786} + rotation: {x: -0.2234354, y: 0.0358268, z: -0.008531591, w: 0.9740228} + scale: {x: 0.9999995, y: 0.9999998, z: 1.0000001} + - name: Little Intermediate_L + parentName: Little Proximal_L + position: {x: -0.02888336, y: 0.000000019073493, z: 0.000000038146972} + rotation: {x: -0.00062125875, y: 0.00035439778, z: -0.03468802, w: 0.999398} + scale: {x: 1, y: 1.0000002, z: 1.0000001} + - name: Little Distal_L + parentName: Little Intermediate_L + position: {x: -0.01796341, y: -0.000000038146972, z: -9.9586985e-15} + rotation: {x: 0.00017887015, y: 0.00052281254, z: -0.02843437, w: 0.9995955} + scale: {x: 1.0000002, y: 1.0000001, z: 0.99999994} + - name: Middle Proximal_L + parentName: Hand_L + position: {x: -0.086268306, y: -0.007767602, z: -0.0015430861} + rotation: {x: -0.030769426, y: 0.01607963, z: -0.027841704, w: 0.9990094} + scale: {x: 0.99999964, y: 0.9999999, z: 1} + - name: Middle Intermediate_L + parentName: Middle Proximal_L + position: {x: -0.049218215, y: -0.000000057220458, z: 3.6237675e-15} + rotation: {x: 0.0009421236, y: -0.00058990874, z: -0.035169274, w: 0.9993808} + scale: {x: 0.9999998, y: 1.0000004, z: 0.99999994} + - name: Middle Distal_L + parentName: Middle Intermediate_L + position: {x: -0.02899086, y: 0.000000038146972, z: 5.1869617e-15} + rotation: {x: -0.00005057214, y: 0.000053146017, z: -0.023246633, w: 0.99972975} + scale: {x: 1.0000001, y: 1.0000001, z: 0.99999994} + - name: Ring Proximal_L + parentName: Hand_L + position: {x: -0.0795063, y: -0.0018623952, z: 0.019933883} + rotation: {x: -0.11435431, y: 0.029366216, z: -0.020635532, w: 0.9927915} + scale: {x: 0.99999964, y: 0.9999998, z: 1} + - name: Ring Intermediate_L + parentName: Ring Proximal_L + position: {x: -0.0425412, y: 0.000000009536743, z: -9.4591e-16} + rotation: {x: -0.00110352, y: -0.0006045473, z: -0.031884294, w: 0.9994908} + scale: {x: 0.9999999, y: 1.0000002, z: 1} + - name: Ring Distal_L + parentName: Ring Intermediate_L + position: {x: -0.032304, y: 0.000000038146972, z: 0.000000019073495} + rotation: {x: -0.0019681472, y: 0.0021283522, z: -0.040374495, w: 0.99918044} + scale: {x: 1.0000002, y: 1.0000002, z: 1} + - name: Thumb Proximal_L + parentName: Hand_L + position: {x: -0.023121718, y: 0.014302233, z: -0.02548937} + rotation: {x: 0.50356466, y: -0.22160287, z: 0.29602998, w: 0.7808208} + scale: {x: 0.99999946, y: 0.9999999, z: 1.0000001} + - name: Thumb Intermediate_L + parentName: Thumb Proximal_L + position: {x: -0.046355132, y: 1.4477308e-15, z: 0.000000019073486} + rotation: {x: 0.00023913372, y: 0.01031832, z: -0.03271454, w: 0.9994115} + scale: {x: 1.0000001, y: 0.99999976, z: 0.9999999} + - name: Thumb Distal_L + parentName: Thumb Intermediate_L + position: {x: -0.02708557, y: 3.8857814e-18, z: 8.881783e-18} + rotation: {x: -0.00012252103, y: 0.000010855614, z: -0.073224574, w: 0.99731547} + scale: {x: 1.0000001, y: 1.0000001, z: 1} + - name: Index Proximal_L + parentName: Hand_L + position: {x: -0.0878862, y: -0.0027753275, z: -0.02567536} + rotation: {x: 0.07009496, y: 0.012127353, z: -0.031544674, w: 0.9969677} + scale: {x: 0.99999976, y: 0.9999998, z: 1} + - name: Index Intermediate_L + parentName: Index Proximal_L + position: {x: -0.045770034, y: 3.215206e-15, z: 0.000000019073486} + rotation: {x: -0.00042240313, y: -0.00033032233, z: -0.038372137, w: 0.99926347} + scale: {x: 0.9999999, y: 1.0000001, z: 0.99999994} + - name: Index Distal_L + parentName: Index Intermediate_L + position: {x: -0.024790267, y: 0.000000038146972, z: 0.000000019073484} + rotation: {x: -0.000025113854, y: 0.000039970793, z: 0.002442664, w: 0.999997} + scale: {x: 1.0000004, y: 1.0000004, z: 1.0000001} + - name: Shoulder_R + parentName: Upper Chest + position: {x: -0.19631088, y: -0.011195793, z: -0.0093136085} + rotation: {x: 0.65799725, y: 0.012223989, z: 0.7523573, w: 0.029132158} + scale: {x: 0.99999905, y: 1.0000002, z: 1.0000008} + - name: Upper Arm_R + parentName: Shoulder_R + position: {x: -0.15295115, y: 0.000000057220426, z: -0.00000015258789} + rotation: {x: -0.09579163, y: -0.061053585, z: 0.020988384, w: 0.9933056} + scale: {x: 1.0000011, y: 1, z: 0.99999887} + - name: Lower Arm_R + parentName: Upper Arm_R + position: {x: -0.2708212, y: -0.000000095367426, z: 1.25766105e-14} + rotation: {x: 0.0003253071, y: -0.0041801203, z: 0.03956416, w: 0.9992083} + scale: {x: 1.0000002, y: 1.0000002, z: 1} + - name: Hand_R + parentName: Lower Arm_R + position: {x: -0.26095092, y: -0.000000038146972, z: -2.0854437e-14} + rotation: {x: 0.5765183, y: 0.11054431, z: -0.05825216, w: 0.8074734} + scale: {x: 1, y: 0.9999996, z: 1.0000005} + - name: Index Proximal_R + parentName: Hand_R + position: {x: -0.08788627, y: -0.002775239, z: 0.025675356} + rotation: {x: -0.07018112, y: -0.01208327, z: -0.031561125, w: 0.99696165} + scale: {x: 0.99999994, y: 1.0000002, z: 1} + - name: Index Intermediate_R + parentName: Index Proximal_R + position: {x: -0.04576988, y: 0.00000003814697, z: 0.000000019073475} + rotation: {x: 0.00069364137, y: 0.00022093569, z: -0.038355637, w: 0.9992639} + scale: {x: 0.99999994, y: 1.0000002, z: 1.0000001} + - name: Index Distal_R + parentName: Index Intermediate_R + position: {x: -0.02479042, y: 0.000000019073486, z: -6.239451e-16} + rotation: {x: -0.00030495477, y: 0.00036940663, z: 0.0026933714, w: 0.99999624} + scale: {x: 1.0000002, y: 1.0000001, z: 1} + - name: Middle Proximal_R + parentName: Hand_R + position: {x: -0.08626823, y: -0.0077675814, z: 0.0015430797} + rotation: {x: 0.030836713, y: -0.016131407, z: -0.027812729, w: 0.9990072} + scale: {x: 1, y: 1.0000002, z: 1.0000001} + - name: Middle Intermediate_R + parentName: Middle Proximal_R + position: {x: -0.049218215, y: 0.000000019073484, z: 0.000000009536741} + rotation: {x: -0.0011253556, y: 0.0006386905, z: -0.035172883, w: 0.9993804} + scale: {x: 0.99999976, y: 1.0000004, z: 0.99999994} + - name: Middle Distal_R + parentName: Middle Intermediate_R + position: {x: -0.02899086, y: 0.00000003814697, z: 0.000000009536742} + rotation: {x: 0.00017025934, y: -0.00014338827, z: -0.023307534, w: 0.9997284} + scale: {x: 1.0000002, y: 1.0000005, z: 1} + - name: Ring Proximal_R + parentName: Hand_R + position: {x: -0.07950615, y: -0.0018623243, z: -0.01993387} + rotation: {x: 0.11432279, y: -0.02936206, z: -0.02064144, w: 0.99279517} + scale: {x: 1.0000001, y: 1, z: 1} + - name: Ring Intermediate_R + parentName: Ring Proximal_R + position: {x: -0.04254112, y: 0.000000019073482, z: 0.0000000095367465} + rotation: {x: 0.0011529169, y: 0.00059799437, z: -0.03188372, w: 0.9994908} + scale: {x: 0.9999995, y: 1.0000007, z: 1.0000001} + - name: Ring Distal_R + parentName: Ring Intermediate_R + position: {x: -0.032304153, y: -2.0961001e-15, z: 0.000000009536743} + rotation: {x: 0.0019493432, y: -0.0021209791, z: -0.04036092, w: 0.99918103} + scale: {x: 1.0000001, y: 1.0000005, z: 1.0000001} + - name: Little Proximal_R + parentName: Hand_R + position: {x: -0.073102504, y: 0.009476265, z: -0.036707886} + rotation: {x: 0.22341551, y: -0.035828818, z: -0.0085313395, w: 0.9740272} + scale: {x: 0.99999994, y: 1.0000001, z: 1.0000001} + - name: Little Intermediate_R + parentName: Little Proximal_R + position: {x: -0.028883437, y: 1.44329e-17, z: -4.4408908e-18} + rotation: {x: 0.0006286797, y: -0.000355318, z: -0.034670915, w: 0.9993986} + scale: {x: 0.99999976, y: 1.0000004, z: 1} + - name: Little Distal_R + parentName: Little Intermediate_R + position: {x: -0.017963333, y: 0.000000038146975, z: -0.000000019073484} + rotation: {x: -0.0002708518, y: -0.0004584283, z: -0.028371284, w: 0.9995973} + scale: {x: 1.0000001, y: 1.0000002, z: 0.9999999} + - name: Thumb Proximal_R + parentName: Hand_R + position: {x: -0.023121785, y: 0.014302322, z: 0.02548936} + rotation: {x: -0.5099686, y: 0.23889306, z: 0.27855477, w: 0.7779907} + scale: {x: 0.99999964, y: 1.000001, z: 0.9999999} + - name: Thumb Intermediate_R + parentName: Thumb Proximal_R + position: {x: -0.046355132, y: -2.866816e-14, z: -0.000000095367426} + rotation: {x: -0.00023937208, y: -0.010321595, z: -0.032716766, w: 0.99941134} + scale: {x: 1.0000002, y: 0.99999976, z: 0.9999999} + - name: Thumb Distal_R + parentName: Thumb Intermediate_R + position: {x: -0.027085494, y: -0.000000019073463, z: 0.00000005722047} + rotation: {x: 0.00018895793, y: 0.000053072334, z: -0.07324518, w: 0.997314} + scale: {x: 1.0000004, y: 1.0000001, z: 1} + - name: Upper Leg_L + parentName: Hips + position: {x: 0.000000076293944, y: 0.00000020265578, z: 0.11154585} + rotation: {x: -0.087842815, y: 0.97206324, z: -0.21707873, w: -0.01592377} + scale: {x: 1.0000006, y: 1.0000006, z: 1.0000004} + - name: Lower Leg_L + parentName: Upper Leg_L + position: {x: -0.45751983, y: -0.00000037193286, z: 0.00000027656554} + rotation: {x: 0.0000001542577, y: 0.0000005651143, z: 0.13664198, w: 0.9906205} + scale: {x: 0.99999994, y: 0.99999994, z: 1} + - name: Foot_L + parentName: Lower Leg_L + position: {x: -0.41705376, y: -0.00000011920937, z: -0.00000019073485} + rotation: {x: -0.13122405, y: 0.012162961, z: -0.029348051, w: 0.9908436} + scale: {x: 1.0000002, y: 1, z: 1.0000001} + - name: Toes_L + parentName: Foot_L + position: {x: -0.06536754, y: 0.13628979, z: 0.00050540606} + rotation: {x: -0.000000306613, y: -0.0000009006165, z: -0.7194842, w: 0.6945088} + scale: {x: 0.99999845, y: 1.0000005, z: 1.0000001} + - name: Upper Leg_R + parentName: Hips + position: {x: -0.0000003814697, y: -0.00000010281801, z: -0.11154585} + rotation: {x: -0.017797971, y: 0.9764846, z: 0.21279773, w: 0.029634835} + scale: {x: 1.0000005, y: 1.0000002, z: 1.0000004} + - name: Lower Leg_R + parentName: Upper Leg_R + position: {x: -0.45751902, y: 0.00000006198889, z: -0.00000012874602} + rotation: {x: 0.00000029117433, y: 0.00000009783935, z: 0.12911384, w: 0.9916298} + scale: {x: 0.9999999, y: 1, z: 1} + - name: Foot_R + parentName: Lower Leg_R + position: {x: -0.41705406, y: 1.6466832e-14, z: -0.00000021934508} + rotation: {x: 0.12962858, y: 0.008831013, z: -0.08861982, w: 0.9875551} + scale: {x: 1.0000004, y: 1.0000004, z: 1} + - name: Toes_R + parentName: Foot_R + position: {x: -0.06536757, y: 0.13628976, z: -0.00050546596} + rotation: {x: 0.00000042464697, y: 0.00000007707871, z: -0.7207531, w: 0.6931919} + scale: {x: 0.9999985, y: 1.0000006, z: 0.99999994} + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 1 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 3 + humanoidOversampling: 1 + avatarSetup: 1 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + importBlendShapeDeformPercent: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Models/Characters/gepto/@KA_Idle34_Hug1_2.FBX b/Assets/04_Models/Characters/gepto/@KA_Idle34_Hug1_2.FBX new file mode 100644 index 00000000..ebb10638 --- /dev/null +++ b/Assets/04_Models/Characters/gepto/@KA_Idle34_Hug1_2.FBX @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9aa0b5a2c5ff38996f47457477a402bae01bb7b705167e08e79394ed5742b06 +size 1129888 diff --git a/Assets/04_Models/Characters/gepto/@KA_Idle34_Hug1_2.FBX.meta b/Assets/04_Models/Characters/gepto/@KA_Idle34_Hug1_2.FBX.meta new file mode 100644 index 00000000..8df47513 --- /dev/null +++ b/Assets/04_Models/Characters/gepto/@KA_Idle34_Hug1_2.FBX.meta @@ -0,0 +1,801 @@ +fileFormatVersion: 2 +guid: 0166d77b2797dc74cb4bda29db3ed72c +ModelImporter: + serializedVersion: 24200 + internalIDToNameTable: [] + externalObjects: {} + materials: + materialImportMode: 2 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 0 + motionNodeName: + animationImportErrors: + animationImportWarnings: "\nClip 'Unreal Take' has import animation warnings + that might lower retargeting quality:\nNote: Activate translation DOF on avatar + to improve retargeting quality.\n\t'Spine' has translation animation that will + be discarded.\n\t'Neck' has translation animation that will be discarded.\n\t'Shoulder_L' + has translation animation that will be discarded.\n\t'Shoulder_R' has translation + animation that will be discarded.\n" + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 3 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importPhysicalCameras: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + generateMeshLods: 0 + meshLodGenerationFlags: 0 + maximumMeshLod: -1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 1 + strictVertexDataChecks: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 1 + humanDescription: + serializedVersion: 3 + human: + - boneName: Hips + humanName: Hips + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Upper Leg_L + humanName: LeftUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Upper Leg_R + humanName: RightUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Lower Leg_L + humanName: LeftLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Lower Leg_R + humanName: RightLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Foot_L + humanName: LeftFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Foot_R + humanName: RightFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine + humanName: Spine + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Chest + humanName: Chest + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Neck + humanName: Neck + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Head + humanName: Head + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Shoulder_L + humanName: LeftShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Shoulder_R + humanName: RightShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Upper Arm_L + humanName: LeftUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Upper Arm_R + humanName: RightUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Lower Arm_L + humanName: LeftLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Lower Arm_R + humanName: RightLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Hand_L + humanName: LeftHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Hand_R + humanName: RightHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Toes_L + humanName: LeftToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Toes_R + humanName: RightToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Thumb Proximal_L + humanName: Left Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Thumb Intermediate_L + humanName: Left Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Thumb Distal_L + humanName: Left Thumb Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Index Proximal_L + humanName: Left Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Index Intermediate_L + humanName: Left Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Index Distal_L + humanName: Left Index Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Middle Proximal_L + humanName: Left Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Middle Intermediate_L + humanName: Left Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Middle Distal_L + humanName: Left Middle Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Ring Proximal_L + humanName: Left Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Ring Intermediate_L + humanName: Left Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Ring Distal_L + humanName: Left Ring Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Little Proximal_L + humanName: Left Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Little Intermediate_L + humanName: Left Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Little Distal_L + humanName: Left Little Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Thumb Proximal_R + humanName: Right Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Thumb Intermediate_R + humanName: Right Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Thumb Distal_R + humanName: Right Thumb Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Index Proximal_R + humanName: Right Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Index Intermediate_R + humanName: Right Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Index Distal_R + humanName: Right Index Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Middle Proximal_R + humanName: Right Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Middle Intermediate_R + humanName: Right Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Middle Distal_R + humanName: Right Middle Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Ring Proximal_R + humanName: Right Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Ring Intermediate_R + humanName: Right Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Ring Distal_R + humanName: Right Ring Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Little Proximal_R + humanName: Right Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Little Intermediate_R + humanName: Right Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Little Distal_R + humanName: Right Little Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Upper Chest + humanName: UpperChest + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + skeleton: + - name: '@KA_Idle34_Hug1_2(Clone)' + parentName: + position: {x: 0, y: 0, z: 0} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: root + parentName: '@KA_Idle34_Hug1_2(Clone)' + position: {x: -0, y: 0, z: 0} + rotation: {x: -0.7071068, y: 0, z: -0, w: 0.7071068} + scale: {x: 1, y: 1, z: 1} + - name: Hips + parentName: root + position: {x: 1.8758327e-14, y: 0.0018233965, z: 0.9449998} + rotation: {x: 0.7071072, y: -0.0000012240399, z: -0.7071064, w: -0.0000012240412} + scale: {x: 1.0000006, y: 0.99999964, z: 1} + - name: Spine + parentName: Hips + position: {x: -0.057038344, y: -0.000596986, z: 0.000000088419256} + rotation: {x: 0.0000011846614, y: 0.00000059254756, z: -0.113730036, w: 0.99351174} + scale: {x: 1.0000002, y: 1.0000004, z: 0.9999999} + - name: Chest + parentName: Spine + position: {x: -0.1259011, y: 0.000000019073486, z: -0.000000058470757} + rotation: {x: 0.00000031937452, y: -0.00000019452885, z: 0.11285854, w: 0.9936111} + scale: {x: 0.99999994, y: 0.9999998, z: 1} + - name: Upper Chest + parentName: Chest + position: {x: -0.12618537, y: 0.0000000023841842, z: -0.000000054107} + rotation: {x: 0.00000007251216, y: 0.0000010849647, z: 0.085924655, w: 0.99630165} + scale: {x: 0.99999994, y: 0.99999994, z: 1} + - name: Neck + parentName: Upper Chest + position: {x: -0.2569362, y: 0.000037956237, z: -0.00000020595762} + rotation: {x: -0.0009705503, y: 0.00012728231, z: -0.13076055, w: 0.99141353} + scale: {x: 1.0000004, y: 1.0000004, z: 1} + - name: Head + parentName: Neck + position: {x: -0.116066895, y: 0.000000019073486, z: -0.000000046622006} + rotation: {x: 0.00015609483, y: -0.0057321517, z: -0.027245443, w: 0.99961233} + scale: {x: 0.99999976, y: 0.99999964, z: 1} + - name: Shoulder_L + parentName: Upper Chest + position: {x: -0.19631073, y: -0.011195793, z: 0.009313484} + rotation: {x: -0.6579974, y: -0.012224246, z: 0.7523571, w: 0.029132156} + scale: {x: 0.99999946, y: 1.0000004, z: 1.000001} + - name: Upper Arm_L + parentName: Shoulder_L + position: {x: -0.15295109, y: 0.000000038146972, z: -2.7925554e-16} + rotation: {x: 0.21916293, y: 0.06270273, z: 0.012770387, w: 0.97358763} + scale: {x: 1.0000007, y: 0.9999998, z: 0.9999992} + - name: Lower Arm_L + parentName: Upper Arm_L + position: {x: -0.27082106, y: 0.00000017166141, z: 0.00000022888182} + rotation: {x: -0.000617936, y: 0.0057512913, z: 0.036311317, w: 0.9993238} + scale: {x: 1.0000002, y: 1.0000002, z: 1} + - name: Hand_L + parentName: Lower Arm_L + position: {x: -0.26095083, y: -6.6271424e-14, z: 0.00000019073485} + rotation: {x: -0.65016013, y: -0.012034405, z: -0.08515628, w: 0.75491416} + scale: {x: 0.9999998, y: 1, z: 0.99999994} + - name: Little Proximal_L + parentName: Hand_L + position: {x: -0.07310257, y: 0.009476233, z: 0.03670786} + rotation: {x: -0.2234354, y: 0.0358268, z: -0.008531591, w: 0.9740228} + scale: {x: 0.9999995, y: 0.9999998, z: 1.0000001} + - name: Little Intermediate_L + parentName: Little Proximal_L + position: {x: -0.02888336, y: 0.000000019073493, z: 0.000000038146972} + rotation: {x: -0.00062125875, y: 0.00035439778, z: -0.03468802, w: 0.999398} + scale: {x: 1, y: 1.0000002, z: 1.0000001} + - name: Little Distal_L + parentName: Little Intermediate_L + position: {x: -0.01796341, y: -0.000000038146972, z: -9.9586985e-15} + rotation: {x: 0.00017887015, y: 0.00052281254, z: -0.02843437, w: 0.9995955} + scale: {x: 1.0000002, y: 1.0000001, z: 0.99999994} + - name: Middle Proximal_L + parentName: Hand_L + position: {x: -0.086268306, y: -0.007767602, z: -0.0015430861} + rotation: {x: -0.030769426, y: 0.01607963, z: -0.027841704, w: 0.9990094} + scale: {x: 0.99999964, y: 0.9999999, z: 1} + - name: Middle Intermediate_L + parentName: Middle Proximal_L + position: {x: -0.049218215, y: -0.000000057220458, z: 3.6237675e-15} + rotation: {x: 0.0009421236, y: -0.00058990874, z: -0.035169274, w: 0.9993808} + scale: {x: 0.9999998, y: 1.0000004, z: 0.99999994} + - name: Middle Distal_L + parentName: Middle Intermediate_L + position: {x: -0.02899086, y: 0.000000038146972, z: 5.1869617e-15} + rotation: {x: -0.00005057214, y: 0.000053146017, z: -0.023246633, w: 0.99972975} + scale: {x: 1.0000001, y: 1.0000001, z: 0.99999994} + - name: Ring Proximal_L + parentName: Hand_L + position: {x: -0.0795063, y: -0.0018623952, z: 0.019933883} + rotation: {x: -0.11435443, y: 0.029366279, z: -0.020635525, w: 0.9927915} + scale: {x: 0.9999997, y: 0.99999976, z: 1} + - name: Ring Intermediate_L + parentName: Ring Proximal_L + position: {x: -0.0425412, y: 0.000000009536743, z: -9.237054e-16} + rotation: {x: -0.0011031398, y: -0.00060595357, z: -0.03188506, w: 0.9994908} + scale: {x: 0.9999997, y: 1.0000002, z: 1} + - name: Ring Distal_L + parentName: Ring Intermediate_L + position: {x: -0.032304075, y: 0.000000057220458, z: 0.000000019073497} + rotation: {x: -0.0019681423, y: 0.0021283731, z: -0.04037458, w: 0.99918044} + scale: {x: 1.0000002, y: 1.0000004, z: 1} + - name: Thumb Proximal_L + parentName: Hand_L + position: {x: -0.023121718, y: 0.014302233, z: -0.02548937} + rotation: {x: 0.50356466, y: -0.22160287, z: 0.29602998, w: 0.7808208} + scale: {x: 0.99999946, y: 0.9999999, z: 1.0000001} + - name: Thumb Intermediate_L + parentName: Thumb Proximal_L + position: {x: -0.046355132, y: 1.4477308e-15, z: 0.000000019073486} + rotation: {x: 0.00023913372, y: 0.01031832, z: -0.03271454, w: 0.9994115} + scale: {x: 1.0000001, y: 0.99999976, z: 0.9999999} + - name: Thumb Distal_L + parentName: Thumb Intermediate_L + position: {x: -0.02708557, y: 3.8857814e-18, z: 8.881783e-18} + rotation: {x: -0.00012252103, y: 0.000010855614, z: -0.073224574, w: 0.99731547} + scale: {x: 1.0000001, y: 1.0000001, z: 1} + - name: Index Proximal_L + parentName: Hand_L + position: {x: -0.0878862, y: -0.0027753275, z: -0.02567536} + rotation: {x: 0.07009496, y: 0.012127353, z: -0.031544674, w: 0.9969677} + scale: {x: 0.99999976, y: 0.9999998, z: 1} + - name: Index Intermediate_L + parentName: Index Proximal_L + position: {x: -0.045770034, y: 3.215206e-15, z: 0.000000019073486} + rotation: {x: -0.00042240313, y: -0.00033032233, z: -0.038372137, w: 0.99926347} + scale: {x: 0.9999999, y: 1.0000001, z: 0.99999994} + - name: Index Distal_L + parentName: Index Intermediate_L + position: {x: -0.024790267, y: 0.000000038146972, z: 0.000000019073484} + rotation: {x: -0.000025113854, y: 0.000039970793, z: 0.002442664, w: 0.999997} + scale: {x: 1.0000004, y: 1.0000004, z: 1.0000001} + - name: Shoulder_R + parentName: Upper Chest + position: {x: -0.19631088, y: -0.011195793, z: -0.0093136085} + rotation: {x: 0.65799725, y: 0.012223989, z: 0.7523573, w: 0.029132158} + scale: {x: 0.99999905, y: 1.0000002, z: 1.0000008} + - name: Upper Arm_R + parentName: Shoulder_R + position: {x: -0.15295115, y: 0.000000057220426, z: -0.00000015258789} + rotation: {x: -0.09579163, y: -0.061053585, z: 0.020988384, w: 0.9933056} + scale: {x: 1.0000011, y: 1, z: 0.99999887} + - name: Lower Arm_R + parentName: Upper Arm_R + position: {x: -0.2708212, y: -0.000000095367426, z: 1.25766105e-14} + rotation: {x: 0.0003253071, y: -0.0041801203, z: 0.03956416, w: 0.9992083} + scale: {x: 1.0000002, y: 1.0000002, z: 1} + - name: Hand_R + parentName: Lower Arm_R + position: {x: -0.26095092, y: -0.000000038146972, z: -2.0854437e-14} + rotation: {x: 0.5765183, y: 0.11054431, z: -0.05825216, w: 0.8074734} + scale: {x: 1, y: 0.9999996, z: 1.0000005} + - name: Index Proximal_R + parentName: Hand_R + position: {x: -0.08788627, y: -0.002775239, z: 0.025675356} + rotation: {x: -0.07018112, y: -0.01208327, z: -0.031561125, w: 0.99696165} + scale: {x: 0.99999994, y: 1.0000002, z: 1} + - name: Index Intermediate_R + parentName: Index Proximal_R + position: {x: -0.04576988, y: 0.00000003814697, z: 0.000000019073475} + rotation: {x: 0.00069364137, y: 0.00022093569, z: -0.038355637, w: 0.9992639} + scale: {x: 0.99999994, y: 1.0000002, z: 1.0000001} + - name: Index Distal_R + parentName: Index Intermediate_R + position: {x: -0.02479042, y: 0.000000019073486, z: -6.239451e-16} + rotation: {x: -0.00030495477, y: 0.00036940663, z: 0.0026933714, w: 0.99999624} + scale: {x: 1.0000002, y: 1.0000001, z: 1} + - name: Middle Proximal_R + parentName: Hand_R + position: {x: -0.08626823, y: -0.0077675814, z: 0.0015430797} + rotation: {x: 0.030836713, y: -0.016131407, z: -0.027812729, w: 0.9990072} + scale: {x: 1, y: 1.0000002, z: 1.0000001} + - name: Middle Intermediate_R + parentName: Middle Proximal_R + position: {x: -0.049218215, y: 0.000000019073484, z: 0.000000009536741} + rotation: {x: -0.0011253556, y: 0.0006386905, z: -0.035172883, w: 0.9993804} + scale: {x: 0.99999976, y: 1.0000004, z: 0.99999994} + - name: Middle Distal_R + parentName: Middle Intermediate_R + position: {x: -0.02899086, y: 0.00000003814697, z: 0.000000009536742} + rotation: {x: 0.00017025934, y: -0.00014338827, z: -0.023307534, w: 0.9997284} + scale: {x: 1.0000002, y: 1.0000005, z: 1} + - name: Ring Proximal_R + parentName: Hand_R + position: {x: -0.07950615, y: -0.0018623243, z: -0.01993387} + rotation: {x: 0.11432279, y: -0.02936206, z: -0.02064144, w: 0.99279517} + scale: {x: 1.0000001, y: 1, z: 1} + - name: Ring Intermediate_R + parentName: Ring Proximal_R + position: {x: -0.04254112, y: 0.000000019073482, z: 0.0000000095367465} + rotation: {x: 0.0011529169, y: 0.00059799437, z: -0.03188372, w: 0.9994908} + scale: {x: 0.9999995, y: 1.0000007, z: 1.0000001} + - name: Ring Distal_R + parentName: Ring Intermediate_R + position: {x: -0.032304153, y: -2.0961001e-15, z: 0.000000009536743} + rotation: {x: 0.0019493432, y: -0.0021209791, z: -0.04036092, w: 0.99918103} + scale: {x: 1.0000001, y: 1.0000005, z: 1.0000001} + - name: Little Proximal_R + parentName: Hand_R + position: {x: -0.073102504, y: 0.009476265, z: -0.036707886} + rotation: {x: 0.22341551, y: -0.035828818, z: -0.0085313395, w: 0.9740272} + scale: {x: 0.99999994, y: 1.0000001, z: 1.0000001} + - name: Little Intermediate_R + parentName: Little Proximal_R + position: {x: -0.028883437, y: 1.44329e-17, z: -4.4408908e-18} + rotation: {x: 0.0006286797, y: -0.000355318, z: -0.034670915, w: 0.9993986} + scale: {x: 0.99999976, y: 1.0000004, z: 1} + - name: Little Distal_R + parentName: Little Intermediate_R + position: {x: -0.017963333, y: 0.000000038146975, z: -0.000000019073484} + rotation: {x: -0.0002708518, y: -0.0004584283, z: -0.028371284, w: 0.9995973} + scale: {x: 1.0000001, y: 1.0000002, z: 0.9999999} + - name: Thumb Proximal_R + parentName: Hand_R + position: {x: -0.023121785, y: 0.014302322, z: 0.02548936} + rotation: {x: -0.5099686, y: 0.23889306, z: 0.27855477, w: 0.7779907} + scale: {x: 0.99999964, y: 1.000001, z: 0.9999999} + - name: Thumb Intermediate_R + parentName: Thumb Proximal_R + position: {x: -0.046355132, y: -2.866816e-14, z: -0.000000095367426} + rotation: {x: -0.00023937208, y: -0.010321595, z: -0.032716766, w: 0.99941134} + scale: {x: 1.0000002, y: 0.99999976, z: 0.9999999} + - name: Thumb Distal_R + parentName: Thumb Intermediate_R + position: {x: -0.027085494, y: -0.000000019073463, z: 0.00000005722047} + rotation: {x: 0.00018895793, y: 0.000053072334, z: -0.07324518, w: 0.997314} + scale: {x: 1.0000004, y: 1.0000001, z: 1} + - name: Upper Leg_L + parentName: Hips + position: {x: 0.000000076293944, y: 0.00000020265578, z: 0.11154585} + rotation: {x: -0.0878424, y: 0.97206324, z: -0.21707872, w: -0.015923733} + scale: {x: 1.0000002, y: 1.0000006, z: 1.0000002} + - name: Lower Leg_L + parentName: Upper Leg_L + position: {x: -0.45751986, y: -0.00000040054314, z: 0.00000023841855} + rotation: {x: 0.000000097257306, y: 0.0000004296279, z: 0.1366412, w: 0.9906206} + scale: {x: 1, y: 0.99999994, z: 0.99999994} + - name: Foot_L + parentName: Lower Leg_L + position: {x: -0.4170538, y: -0.00000008583072, z: -0.000000104904174} + rotation: {x: -0.13122386, y: 0.012163009, z: -0.029347738, w: 0.9908436} + scale: {x: 1.0000002, y: 1.0000001, z: 1.0000002} + - name: Toes_L + parentName: Foot_L + position: {x: -0.06536755, y: 0.13628976, z: 0.00050536066} + rotation: {x: -0.0000003791861, y: -0.0000010255044, z: -0.71948427, w: 0.69450873} + scale: {x: 0.9999987, y: 1.0000002, z: 1} + - name: Upper Leg_R + parentName: Hips + position: {x: -0.0000003814697, y: -0.00000010281801, z: -0.11154585} + rotation: {x: -0.017797971, y: 0.9764846, z: 0.21279773, w: 0.029634835} + scale: {x: 1.0000005, y: 1.0000002, z: 1.0000004} + - name: Lower Leg_R + parentName: Upper Leg_R + position: {x: -0.45751902, y: 0.00000006198889, z: -0.00000012874602} + rotation: {x: 0.00000029117433, y: 0.00000009783935, z: 0.12911384, w: 0.9916298} + scale: {x: 0.9999999, y: 1, z: 1} + - name: Foot_R + parentName: Lower Leg_R + position: {x: -0.41705406, y: 1.6466832e-14, z: -0.00000021934508} + rotation: {x: 0.12962858, y: 0.008831013, z: -0.08861982, w: 0.9875551} + scale: {x: 1.0000004, y: 1.0000004, z: 1} + - name: Toes_R + parentName: Foot_R + position: {x: -0.06536757, y: 0.13628976, z: -0.00050546596} + rotation: {x: 0.00000042464697, y: 0.00000007707871, z: -0.7207531, w: 0.6931919} + scale: {x: 0.9999985, y: 1.0000006, z: 0.99999994} + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 1 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 3 + humanoidOversampling: 1 + avatarSetup: 1 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + importBlendShapeDeformPercent: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Models/Characters/gepto/Sad .fbx b/Assets/04_Models/Characters/gepto/Sad .fbx new file mode 100644 index 00000000..1e91566a --- /dev/null +++ b/Assets/04_Models/Characters/gepto/Sad .fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cd5021fc262ec42fc1e85185168001b36a137c771f40ec13070490d7f4abb6d +size 818976 diff --git a/Assets/04_Models/Characters/gepto/Sad .fbx.meta b/Assets/04_Models/Characters/gepto/Sad .fbx.meta new file mode 100644 index 00000000..f4594333 --- /dev/null +++ b/Assets/04_Models/Characters/gepto/Sad .fbx.meta @@ -0,0 +1,110 @@ +fileFormatVersion: 2 +guid: b60dbe33066e7c24a92724ced43e40e9 +ModelImporter: + serializedVersion: 24200 + internalIDToNameTable: [] + externalObjects: {} + materials: + materialImportMode: 2 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 0 + motionNodeName: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 3 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importPhysicalCameras: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + generateMeshLods: 0 + meshLodGenerationFlags: 0 + maximumMeshLod: -1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 1 + strictVertexDataChecks: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 1 + humanDescription: + serializedVersion: 3 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 1 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 3 + humanoidOversampling: 1 + avatarSetup: 1 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + importBlendShapeDeformPercent: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Models/Characters/gepto/geppeto_diff.jpg b/Assets/04_Models/Characters/gepto/geppeto_diff.jpg new file mode 100644 index 00000000..18e12f8d --- /dev/null +++ b/Assets/04_Models/Characters/gepto/geppeto_diff.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c39d82dcfee0cd8c6e3fce550e6de945ca50b18c3f55da30b342e3564d485dd +size 148400 diff --git a/Assets/04_Models/Characters/gepto/geppeto_diff.jpg.meta b/Assets/04_Models/Characters/gepto/geppeto_diff.jpg.meta new file mode 100644 index 00000000..c271ba27 --- /dev/null +++ b/Assets/04_Models/Characters/gepto/geppeto_diff.jpg.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 7b11787d99cacf54c858e002e9276ec5 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Models/Characters/gepto/geppetto_mat.mat b/Assets/04_Models/Characters/gepto/geppetto_mat.mat new file mode 100644 index 00000000..cc044dea --- /dev/null +++ b/Assets/04_Models/Characters/gepto/geppetto_mat.mat @@ -0,0 +1,139 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-5763849747397212794 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.RenderPipelines.Universal.Editor::UnityEditor.Rendering.Universal.AssetVersion + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: geppetto_mat + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 7b11787d99cacf54c858e002e9276ec5, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailAlbedoMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailMask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailNormalMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 7b11787d99cacf54c858e002e9276ec5, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BumpScale: 1 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.7226076 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 0.7226076 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/04_Models/Characters/gepto/geppetto_mat.mat.meta b/Assets/04_Models/Characters/gepto/geppetto_mat.mat.meta new file mode 100644 index 00000000..7417a14f --- /dev/null +++ b/Assets/04_Models/Characters/gepto/geppetto_mat.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 014bf8f1d2391aa44b2558959f7dbf5e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Models/Characters/gepto/gepto.controller b/Assets/04_Models/Characters/gepto/gepto.controller new file mode 100644 index 00000000..dcd19372 --- /dev/null +++ b/Assets/04_Models/Characters/gepto/gepto.controller @@ -0,0 +1,116 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1107 &-8705035107856722682 +AnimatorStateMachine: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Base Layer + m_ChildStates: + - serializedVersion: 1 + m_State: {fileID: -2406606947297670322} + m_Position: {x: -210, y: 20, z: 0} + - serializedVersion: 1 + m_State: {fileID: 6143119609231041675} + m_Position: {x: -378.74075, y: -74.29628, z: 0} + m_ChildStateMachines: [] + m_AnyStateTransitions: [] + m_EntryTransitions: + - {fileID: -7158770738646380667} + m_StateMachineTransitions: {} + m_StateMachineBehaviours: [] + m_AnyStatePosition: {x: 50, y: 20, z: 0} + m_EntryPosition: {x: 50, y: 120, z: 0} + m_ExitPosition: {x: 800, y: 120, z: 0} + m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} + m_DefaultState: {fileID: -2406606947297670322} +--- !u!1109 &-7158770738646380667 +AnimatorTransition: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: + m_Conditions: [] + m_DstStateMachine: {fileID: 0} + m_DstState: {fileID: -2406606947297670322} + m_Solo: 0 + m_Mute: 0 + m_IsExit: 0 + serializedVersion: 1 +--- !u!1102 &-2406606947297670322 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: mixamo_com + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: [] + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: -203655887218126122, guid: b60dbe33066e7c24a92724ced43e40e9, type: 3} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!91 &9100000 +AnimatorController: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: gepto + serializedVersion: 5 + m_AnimatorParameters: [] + m_AnimatorLayers: + - serializedVersion: 5 + m_Name: Base Layer + m_StateMachine: {fileID: -8705035107856722682} + m_Mask: {fileID: 0} + m_Motions: [] + m_Behaviours: [] + m_BlendingMode: 0 + m_SyncedLayerIndex: -1 + m_DefaultWeight: 0 + m_IKPass: 0 + m_SyncedLayerAffectsTiming: 0 + m_Controller: {fileID: 9100000} +--- !u!1102 &6143119609231041675 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Running + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: [] + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: -203655887218126122, guid: 0991bb4433265e34ea7c2d4a94f6c4ef, type: 3} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: diff --git a/Assets/04_Models/Characters/gepto/gepto.controller.meta b/Assets/04_Models/Characters/gepto/gepto.controller.meta new file mode 100644 index 00000000..e15175f0 --- /dev/null +++ b/Assets/04_Models/Characters/gepto/gepto.controller.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1ec9fafaa89a9104da0a578666860e1a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 9100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Models/MazeRoom3Dmodel/MazeRoomEffectModel/Dolphin.meta b/Assets/04_Models/MazeRoom3Dmodel/MazeRoomEffectModel/Dolphin.meta new file mode 100644 index 00000000..4be613da --- /dev/null +++ b/Assets/04_Models/MazeRoom3Dmodel/MazeRoomEffectModel/Dolphin.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 80e65e03a1e0c2347918fc9a29284bf4 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Models/MazeRoom3Dmodel/MazeRoomEffectModel/Dolphin/Dolphin.anim b/Assets/04_Models/MazeRoom3Dmodel/MazeRoomEffectModel/Dolphin/Dolphin.anim new file mode 100644 index 00000000..b83814ec --- /dev/null +++ b/Assets/04_Models/MazeRoom3Dmodel/MazeRoomEffectModel/Dolphin/Dolphin.anim @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db2b7be47abcd3377946ebff1ed1541d14f006aa0ee570ebfc5ba8eeccfe1709 +size 19947 diff --git a/Assets/04_Models/MazeRoom3Dmodel/MazeRoomEffectModel/Dolphin/Dolphin.anim.meta b/Assets/04_Models/MazeRoom3Dmodel/MazeRoomEffectModel/Dolphin/Dolphin.anim.meta new file mode 100644 index 00000000..c42ba1c8 --- /dev/null +++ b/Assets/04_Models/MazeRoom3Dmodel/MazeRoomEffectModel/Dolphin/Dolphin.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2a36046fd72018e43a1b2f619a00c160 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Models/MazeRoom3Dmodel/MazeRoomEffectModel/Dolphin/Dolphin1.vfx b/Assets/04_Models/MazeRoom3Dmodel/MazeRoomEffectModel/Dolphin/Dolphin1.vfx new file mode 100644 index 00000000..983f306b --- /dev/null +++ b/Assets/04_Models/MazeRoom3Dmodel/MazeRoomEffectModel/Dolphin/Dolphin1.vfx @@ -0,0 +1,1977 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &114023846229194376 +MonoBehaviour: + m_ObjectHideFlags: 1 + 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: 73a13919d81fb7444849bae8b5c812a2, type: 3} + m_Name: VFXBasicSpawner + m_EditorClassIdentifier: + m_UIIgnoredErrors: [] + m_Parent: {fileID: 114350483966674976} + m_Children: + - {fileID: 8926484042661614539} + m_UIPosition: {x: 705, y: -433} + m_UICollapsed: 0 + m_UISuperCollapsed: 0 + m_InputSlots: [] + m_OutputSlots: [] + m_Label: Spawn System + m_Data: {fileID: 8926484042661614529} + m_InputFlowSlot: + - link: [] + - link: [] + m_OutputFlowSlot: + - link: + - context: {fileID: 114946465509916290} + slotIndex: 0 + loopDuration: 0 + loopCount: 0 + delayBeforeLoop: 0 + delayAfterLoop: 0 +--- !u!114 &114063133802684794 +MonoBehaviour: + m_ObjectHideFlags: 1 + 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: a0b9e6b9139e58d4c957ec54595da7d3, type: 3} + m_Name: VFXQuadOutput + m_EditorClassIdentifier: + m_UIIgnoredErrors: [] + m_Parent: {fileID: 114350483966674976} + m_Children: + - {fileID: 8926484042661614567} + - {fileID: 8926484042661614569} + m_UIPosition: {x: 705, y: 544} + m_UICollapsed: 0 + m_UISuperCollapsed: 0 + m_InputSlots: + - {fileID: 8926484042661614566} + - {fileID: 114158099937248418} + m_OutputSlots: [] + m_Label: Render Quad + m_Data: {fileID: 114428730288789306} + m_InputFlowSlot: + - link: + - context: {fileID: 114780028408030698} + slotIndex: 0 + m_OutputFlowSlot: + - link: [] + blendMode: 1 + cullMode: 0 + zWriteMode: 0 + zTestMode: 0 + useAlphaClipping: 0 + generateMotionVector: 0 + excludeFromTUAndAA: 0 + sortingPriority: 0 + m_SubOutputs: + - {fileID: 8926484042661614528} + - {fileID: 8926484042661614538} + useBaseColorMap: 3 + colorMapping: 0 + uvMode: 0 + flipbookLayout: 0 + flipbookBlendFrames: 0 + flipbookMotionVectors: 0 + useSoftParticle: 1 + vfxSystemSortPriority: 0 + sort: 0 + sortMode: 0 + revertSorting: 0 + indirectDraw: 0 + computeCulling: 0 + frustumCulling: 0 + castShadows: 0 + useExposureWeight: 0 + enableRayTracing: 0 + decimationFactor: 1 + raytracedScaleMode: 0 + needsOwnSort: 1 + needsOwnAabbBuffer: 0 + shaderGraph: {fileID: 0} + materialSettings: + m_PropertyNames: [] + m_PropertyValues: [] + renderQueue: -1 + primitiveType: 1 + useGeometryShader: 0 +--- !u!114 &114158099937248418 +MonoBehaviour: + m_ObjectHideFlags: 1 + 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: 70a331b1d86cc8d4aa106ccbe0da5852, type: 3} + m_Name: VFXSlotTexture2D + m_EditorClassIdentifier: + m_UIIgnoredErrors: [] + m_Parent: {fileID: 0} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 114158099937248418} + m_MasterData: + m_Owner: {fileID: 114063133802684794} + m_Value: + m_Type: + m_SerializableType: UnityEngine.Texture2D, UnityEngine.CoreModule, Version=0.0.0.0, + Culture=neutral, PublicKeyToken=null + m_SerializableObject: '{"obj":{"fileID":2800000,"guid":"65a93ed0af94d2649a111afe1275c0e0","type":3}}' + m_Space: -1 + m_Property: + name: mainTexture + m_serializedType: + m_SerializableType: UnityEngine.Texture2D, UnityEngine.CoreModule, Version=0.0.0.0, + Culture=neutral, PublicKeyToken=null + m_Direction: 0 + m_LinkedSlots: [] +--- !u!114 &114307113894698210 +MonoBehaviour: + m_ObjectHideFlags: 1 + 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: 1b605c022ee79394a8a776c0869b3f9a, type: 3} + m_Name: VFXSlot + m_EditorClassIdentifier: + m_UIIgnoredErrors: [] + m_Parent: {fileID: 0} + m_Children: + - {fileID: 114986932069951040} + - {fileID: 114963171269329408} + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 114307113894698210} + m_MasterData: + m_Owner: {fileID: 114946465509916290} + m_Value: + m_Type: + m_SerializableType: UnityEditor.VFX.AABox, Unity.VisualEffectGraph.Editor, + Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + m_SerializableObject: '{"space":0,"center":{"x":0.0,"y":0.0,"z":0.0},"size":{"x":1.0,"y":1.0,"z":1.0}}' + m_Space: 0 + m_Property: + name: bounds + m_serializedType: + m_SerializableType: UnityEditor.VFX.AABox, Unity.VisualEffectGraph.Editor, + Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + m_Direction: 0 + m_LinkedSlots: [] +--- !u!114 &114340500867371532 +MonoBehaviour: + m_ObjectHideFlags: 1 + 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: d01270efd3285ea4a9d6c555cb0a8027, type: 3} + m_Name: VFXUI + m_EditorClassIdentifier: + groupInfos: + - title: Minimal + position: + serializedVersion: 2 + x: 679 + y: -492 + width: 475 + height: 1132 + contents: + - model: {fileID: 114023846229194376} + id: 0 + isStickyNote: 0 + - model: {fileID: 114946465509916290} + id: 0 + isStickyNote: 0 + - model: {fileID: 114780028408030698} + id: 0 + isStickyNote: 0 + - model: {fileID: 114063133802684794} + id: 0 + isStickyNote: 0 + stickyNoteInfos: [] + categories: [] + uiBounds: + serializedVersion: 2 + x: 464 + y: -492 + width: 690 + height: 1555 +--- !u!114 &114350483966674976 +MonoBehaviour: + m_ObjectHideFlags: 1 + 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: 7d4c867f6b72b714dbb5fd1780afe208, type: 3} + m_Name: Dolphin1 + m_EditorClassIdentifier: + m_UIIgnoredErrors: [] + m_Parent: {fileID: 0} + m_Children: + - {fileID: 114023846229194376} + - {fileID: 114946465509916290} + - {fileID: 114780028408030698} + - {fileID: 114063133802684794} + - {fileID: 8926484042661614542} + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_UIInfos: {fileID: 114340500867371532} + m_CustomAttributes: [] + m_ParameterInfo: + - name: Rate + path: Rate + tooltip: + space: -1 + spaceable: 0 + sheetType: m_Float + realType: Single + defaultValue: + m_Type: + m_SerializableType: System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_SerializableObject: 0 + min: -Infinity + max: Infinity + enumValues: [] + descendantCount: 0 + m_ImportDependencies: [] + m_GraphVersion: 19 + m_ResourceVersion: 1 + m_SubgraphDependencies: [] + m_CategoryPath: +--- !u!114 &114380859405582094 +MonoBehaviour: + m_ObjectHideFlags: 1 + 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: f780aa281814f9842a7c076d436932e7, type: 3} + m_Name: VFXSlotFloat + m_EditorClassIdentifier: + m_UIIgnoredErrors: [] + m_Parent: {fileID: 114963171269329408} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 114307113894698210} + m_MasterData: + m_Owner: {fileID: 0} + m_Value: + m_Type: + m_SerializableType: + m_SerializableObject: + m_Space: -1 + m_Property: + name: z + m_serializedType: + m_SerializableType: System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_Direction: 0 + m_LinkedSlots: [] +--- !u!114 &114428730288789306 +MonoBehaviour: + m_ObjectHideFlags: 1 + 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: d78581a96eae8bf4398c282eb0b098bd, type: 3} + m_Name: VFXDataParticle + m_EditorClassIdentifier: + m_UIIgnoredErrors: [] + m_Parent: {fileID: 0} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + title: Minimal + m_Owners: + - {fileID: 114946465509916290} + - {fileID: 114780028408030698} + - {fileID: 114063133802684794} + dataType: 0 + capacity: 3182 + stripCapacity: 16 + particlePerStripCount: 16 + needsComputeBounds: 0 + boundsMode: 0 + m_Space: 0 +--- !u!114 &114512514798047786 +MonoBehaviour: + m_ObjectHideFlags: 1 + 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: f780aa281814f9842a7c076d436932e7, type: 3} + m_Name: VFXSlotFloat + m_EditorClassIdentifier: + m_UIIgnoredErrors: [] + m_Parent: {fileID: 114963171269329408} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 114307113894698210} + m_MasterData: + m_Owner: {fileID: 0} + m_Value: + m_Type: + m_SerializableType: + m_SerializableObject: + m_Space: -1 + m_Property: + name: x + m_serializedType: + m_SerializableType: System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_Direction: 0 + m_LinkedSlots: [] +--- !u!114 &114538391275492396 +MonoBehaviour: + m_ObjectHideFlags: 1 + 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: f780aa281814f9842a7c076d436932e7, type: 3} + m_Name: VFXSlotFloat + m_EditorClassIdentifier: + m_UIIgnoredErrors: [] + m_Parent: {fileID: 114986932069951040} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 114307113894698210} + m_MasterData: + m_Owner: {fileID: 0} + m_Value: + m_Type: + m_SerializableType: + m_SerializableObject: + m_Space: -1 + m_Property: + name: z + m_serializedType: + m_SerializableType: System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_Direction: 0 + m_LinkedSlots: [] +--- !u!114 &114739294351936256 +MonoBehaviour: + m_ObjectHideFlags: 1 + 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: f780aa281814f9842a7c076d436932e7, type: 3} + m_Name: VFXSlotFloat + m_EditorClassIdentifier: + m_UIIgnoredErrors: [] + m_Parent: {fileID: 114986932069951040} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 114307113894698210} + m_MasterData: + m_Owner: {fileID: 0} + m_Value: + m_Type: + m_SerializableType: + m_SerializableObject: + m_Space: -1 + m_Property: + name: x + m_serializedType: + m_SerializableType: System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_Direction: 0 + m_LinkedSlots: [] +--- !u!114 &114780028408030698 +MonoBehaviour: + m_ObjectHideFlags: 1 + 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: 2dc095764ededfa4bb32fa602511ea4b, type: 3} + m_Name: VFXBasicUpdate + m_EditorClassIdentifier: + m_UIIgnoredErrors: [] + m_Parent: {fileID: 114350483966674976} + m_Children: [] + m_UIPosition: {x: 705, y: 394} + m_UICollapsed: 0 + m_UISuperCollapsed: 0 + m_InputSlots: [] + m_OutputSlots: [] + m_Label: Update Particles + m_Data: {fileID: 114428730288789306} + m_InputFlowSlot: + - link: + - context: {fileID: 114946465509916290} + slotIndex: 0 + m_OutputFlowSlot: + - link: + - context: {fileID: 114063133802684794} + slotIndex: 0 + integration: 0 + angularIntegration: 0 + ageParticles: 1 + reapParticles: 1 + skipZeroDeltaUpdate: 0 +--- !u!114 &114920711487922656 +MonoBehaviour: + m_ObjectHideFlags: 1 + 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: f780aa281814f9842a7c076d436932e7, type: 3} + m_Name: VFXSlotFloat + m_EditorClassIdentifier: + m_UIIgnoredErrors: [] + m_Parent: {fileID: 114963171269329408} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 114307113894698210} + m_MasterData: + m_Owner: {fileID: 0} + m_Value: + m_Type: + m_SerializableType: + m_SerializableObject: + m_Space: -1 + m_Property: + name: y + m_serializedType: + m_SerializableType: System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_Direction: 0 + m_LinkedSlots: [] +--- !u!114 &114935892456706286 +MonoBehaviour: + m_ObjectHideFlags: 1 + 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: f780aa281814f9842a7c076d436932e7, type: 3} + m_Name: VFXSlotFloat + m_EditorClassIdentifier: + m_UIIgnoredErrors: [] + m_Parent: {fileID: 114986932069951040} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 114307113894698210} + m_MasterData: + m_Owner: {fileID: 0} + m_Value: + m_Type: + m_SerializableType: + m_SerializableObject: + m_Space: -1 + m_Property: + name: y + m_serializedType: + m_SerializableType: System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_Direction: 0 + m_LinkedSlots: [] +--- !u!114 &114946465509916290 +MonoBehaviour: + m_ObjectHideFlags: 1 + 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: 9dfea48843f53fc438eabc12a3a30abc, type: 3} + m_Name: VFXBasicInitialize + m_EditorClassIdentifier: + m_UIIgnoredErrors: [] + m_Parent: {fileID: 114350483966674976} + m_Children: + - {fileID: 8926484042661614544} + - {fileID: 8926484042661614550} + - {fileID: 8926484042661614572} + m_UIPosition: {x: 705, y: -160} + m_UICollapsed: 0 + m_UISuperCollapsed: 0 + m_InputSlots: + - {fileID: 114307113894698210} + - {fileID: 8926484042661614534} + m_OutputSlots: [] + m_Label: Initialize Particles + m_Data: {fileID: 114428730288789306} + m_InputFlowSlot: + - link: + - context: {fileID: 114023846229194376} + slotIndex: 0 + m_OutputFlowSlot: + - link: + - context: {fileID: 114780028408030698} + slotIndex: 0 +--- !u!114 &114963171269329408 +MonoBehaviour: + m_ObjectHideFlags: 1 + 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: ac39bd03fca81b849929b9c966f1836a, type: 3} + m_Name: VFXSlotFloat3 + m_EditorClassIdentifier: + m_UIIgnoredErrors: [] + m_Parent: {fileID: 114307113894698210} + m_Children: + - {fileID: 114512514798047786} + - {fileID: 114920711487922656} + - {fileID: 114380859405582094} + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 114307113894698210} + m_MasterData: + m_Owner: {fileID: 0} + m_Value: + m_Type: + m_SerializableType: + m_SerializableObject: + m_Space: -1 + m_Property: + name: size + m_serializedType: + m_SerializableType: UnityEngine.Vector3, UnityEngine.CoreModule, Version=0.0.0.0, + Culture=neutral, PublicKeyToken=null + m_Direction: 0 + m_LinkedSlots: [] +--- !u!114 &114986932069951040 +MonoBehaviour: + m_ObjectHideFlags: 1 + 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: ac39bd03fca81b849929b9c966f1836a, type: 3} + m_Name: VFXSlotFloat3 + m_EditorClassIdentifier: + m_UIIgnoredErrors: [] + m_Parent: {fileID: 114307113894698210} + m_Children: + - {fileID: 114739294351936256} + - {fileID: 114935892456706286} + - {fileID: 114538391275492396} + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 114307113894698210} + m_MasterData: + m_Owner: {fileID: 0} + m_Value: + m_Type: + m_SerializableType: + m_SerializableObject: + m_Space: -1 + m_Property: + name: center + m_serializedType: + m_SerializableType: UnityEngine.Vector3, UnityEngine.CoreModule, Version=0.0.0.0, + Culture=neutral, PublicKeyToken=null + m_Direction: 0 + m_LinkedSlots: [] +--- !u!2058629511 &8926484042661614527 +VisualEffectResource: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Dolphin1 + m_Graph: {fileID: 114350483966674976} + m_Infos: + m_RendererSettings: + motionVectorGenerationMode: 0 + shadowCastingMode: 0 + m_CullingFlags: 3 + m_UpdateMode: 0 + m_PreWarmDeltaTime: 0.05 + m_PreWarmStepCount: 0 + m_InitialEventName: OnPlay + m_InstancingMode: 0 + m_InstancingCapacity: 64 +--- !u!114 &8926484042661614528 +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: 081ffb0090424ba4cb05370a42ead6b9, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &8926484042661614529 +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: f68759077adc0b143b6e1c101e82065e, type: 3} + m_Name: + m_EditorClassIdentifier: + m_UIIgnoredErrors: [] + m_Parent: {fileID: 0} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + title: + m_Owners: + - {fileID: 114023846229194376} +--- !u!114 &8926484042661614534 +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: ac39bd03fca81b849929b9c966f1836a, type: 3} + m_Name: + m_EditorClassIdentifier: + m_UIIgnoredErrors: [] + m_Parent: {fileID: 0} + m_Children: + - {fileID: 8926484042661614535} + - {fileID: 8926484042661614536} + - {fileID: 8926484042661614537} + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 8926484042661614534} + m_MasterData: + m_Owner: {fileID: 114946465509916290} + m_Value: + m_Type: + m_SerializableType: UnityEngine.Vector3, UnityEngine.CoreModule, Version=0.0.0.0, + Culture=neutral, PublicKeyToken=null + m_SerializableObject: '{"x":0.0,"y":0.0,"z":0.0}' + m_Space: -1 + m_Property: + name: boundsPadding + m_serializedType: + m_SerializableType: UnityEngine.Vector3, UnityEngine.CoreModule, Version=0.0.0.0, + Culture=neutral, PublicKeyToken=null + m_Direction: 0 + m_LinkedSlots: [] +--- !u!114 &8926484042661614535 +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: f780aa281814f9842a7c076d436932e7, type: 3} + m_Name: + m_EditorClassIdentifier: + m_UIIgnoredErrors: [] + m_Parent: {fileID: 8926484042661614534} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 8926484042661614534} + m_MasterData: + m_Owner: {fileID: 0} + m_Value: + m_Type: + m_SerializableType: + m_SerializableObject: + m_Space: -1 + m_Property: + name: x + m_serializedType: + m_SerializableType: System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_Direction: 0 + m_LinkedSlots: [] +--- !u!114 &8926484042661614536 +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: f780aa281814f9842a7c076d436932e7, type: 3} + m_Name: + m_EditorClassIdentifier: + m_UIIgnoredErrors: [] + m_Parent: {fileID: 8926484042661614534} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 8926484042661614534} + m_MasterData: + m_Owner: {fileID: 0} + m_Value: + m_Type: + m_SerializableType: + m_SerializableObject: + m_Space: -1 + m_Property: + name: y + m_serializedType: + m_SerializableType: System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_Direction: 0 + m_LinkedSlots: [] +--- !u!114 &8926484042661614537 +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: f780aa281814f9842a7c076d436932e7, type: 3} + m_Name: + m_EditorClassIdentifier: + m_UIIgnoredErrors: [] + m_Parent: {fileID: 8926484042661614534} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 8926484042661614534} + m_MasterData: + m_Owner: {fileID: 0} + m_Value: + m_Type: + m_SerializableType: + m_SerializableObject: + m_Space: -1 + m_Property: + name: z + m_serializedType: + m_SerializableType: System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_Direction: 0 + m_LinkedSlots: [] +--- !u!114 &8926484042661614538 +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: 388ad3b1dc9c6ae45b630f914fab638f, type: 3} + m_Name: + m_EditorClassIdentifier: + m_UIIgnoredErrors: [] + m_Parent: {fileID: 0} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 +--- !u!114 &8926484042661614539 +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: f05c6884b705ce14d82ae720f0ec209f, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.VFXSpawnerConstantRate + m_UIIgnoredErrors: [] + m_Parent: {fileID: 114023846229194376} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 0 + m_UISuperCollapsed: 0 + m_InputSlots: + - {fileID: 8926484042661614540} + m_OutputSlots: [] + m_Disabled: 0 + m_ActivationSlot: {fileID: 8926484042661614541} +--- !u!114 &8926484042661614540 +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: f780aa281814f9842a7c076d436932e7, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.VFXSlotFloat + m_UIIgnoredErrors: [] + m_Parent: {fileID: 0} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 8926484042661614540} + m_MasterData: + m_Owner: {fileID: 8926484042661614539} + m_Value: + m_Type: + m_SerializableType: System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_SerializableObject: 10 + m_Space: -1 + m_Property: + name: Rate + m_serializedType: + m_SerializableType: System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_Direction: 0 + m_LinkedSlots: + - {fileID: 8926484042661614543} +--- !u!114 &8926484042661614541 +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: b4c11ff25089a324daf359f4b0629b33, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.VFXSlotBool + m_UIIgnoredErrors: [] + m_Parent: {fileID: 0} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 8926484042661614541} + m_MasterData: + m_Owner: {fileID: 8926484042661614539} + m_Value: + m_Type: + m_SerializableType: System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_SerializableObject: True + m_Space: -1 + m_Property: + name: _vfx_enabled + m_serializedType: + m_SerializableType: System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_Direction: 0 + m_LinkedSlots: [] +--- !u!114 &8926484042661614542 +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: 330e0fca1717dde4aaa144f48232aa64, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.VFXParameter + m_UIIgnoredErrors: [] + m_Parent: {fileID: 114350483966674976} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_InputSlots: [] + m_OutputSlots: + - {fileID: 8926484042661614543} + m_ExposedName: Rate + m_Exposed: 1 + m_Order: 0 + m_Category: + m_Min: + m_Type: + m_SerializableType: + m_SerializableObject: + m_Max: + m_Type: + m_SerializableType: + m_SerializableObject: + m_IsOutput: 0 + m_EnumValues: [] + m_ValueFilter: 0 + m_Tooltip: + m_Nodes: + - m_Id: 0 + linkedSlots: + - outputSlot: {fileID: 8926484042661614543} + inputSlot: {fileID: 8926484042661614540} + position: {x: 463.49957, y: -304.50647} + expandedSlots: [] + expanded: 1 + supecollapsed: 0 +--- !u!114 &8926484042661614543 +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: f780aa281814f9842a7c076d436932e7, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.VFXSlotFloat + m_UIIgnoredErrors: [] + m_Parent: {fileID: 0} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 8926484042661614543} + m_MasterData: + m_Owner: {fileID: 8926484042661614542} + m_Value: + m_Type: + m_SerializableType: System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_SerializableObject: 0 + m_Space: -1 + m_Property: + name: o + m_serializedType: + m_SerializableType: System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_Direction: 1 + m_LinkedSlots: + - {fileID: 8926484042661614540} +--- !u!114 &8926484042661614544 +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: a971fa2e110a0ac42ac1d8dae408704b, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.Block.SetAttribute + m_UIIgnoredErrors: [] + m_Parent: {fileID: 114946465509916290} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 0 + m_UISuperCollapsed: 0 + m_InputSlots: + - {fileID: 8926484042661614545} + m_OutputSlots: [] + m_Disabled: 0 + m_ActivationSlot: {fileID: 8926484042661614546} + attribute: size + Composition: 0 + Source: 0 + Random: 0 + channels: 6 +--- !u!114 &8926484042661614545 +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: f780aa281814f9842a7c076d436932e7, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.VFXSlotFloat + m_UIIgnoredErrors: [] + m_Parent: {fileID: 0} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 8926484042661614545} + m_MasterData: + m_Owner: {fileID: 8926484042661614544} + m_Value: + m_Type: + m_SerializableType: System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_SerializableObject: 0.1 + m_Space: -1 + m_Property: + name: _Size + m_serializedType: + m_SerializableType: System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_Direction: 0 + m_LinkedSlots: [] +--- !u!114 &8926484042661614546 +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: b4c11ff25089a324daf359f4b0629b33, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.VFXSlotBool + m_UIIgnoredErrors: [] + m_Parent: {fileID: 0} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 8926484042661614546} + m_MasterData: + m_Owner: {fileID: 8926484042661614544} + m_Value: + m_Type: + m_SerializableType: System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_SerializableObject: True + m_Space: -1 + m_Property: + name: _vfx_enabled + m_serializedType: + m_SerializableType: System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_Direction: 0 + m_LinkedSlots: [] +--- !u!114 &8926484042661614550 +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: ee5e80e50a3ba6147ad69984abfdf6b3, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.Block.PositionMesh + m_UIIgnoredErrors: [] + m_Parent: {fileID: 114946465509916290} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 0 + m_UISuperCollapsed: 0 + m_InputSlots: + - {fileID: 8926484042661614551} + - {fileID: 8926484042661614552} + m_OutputSlots: [] + m_Disabled: 0 + m_ActivationSlot: {fileID: 8926484042661614565} + compositionPosition: 0 + compositionAxes: 0 + compositionDirection: 0 + positionMode: 0 + spawnMode: 0 + mode: 1 + placementMode: 0 + surfaceCoordinates: 1 + sourceMesh: 0 + skinnedTransform: 1 + applyOrientation: 1 +--- !u!114 &8926484042661614551 +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: b47b8679b468b7347a00cdd50589bc9f, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.VFXSlotMesh + m_UIIgnoredErrors: [] + m_Parent: {fileID: 0} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 8926484042661614551} + m_MasterData: + m_Owner: {fileID: 8926484042661614550} + m_Value: + m_Type: + m_SerializableType: UnityEngine.Mesh, UnityEngine.CoreModule, Version=0.0.0.0, + Culture=neutral, PublicKeyToken=null + m_SerializableObject: '{"obj":{"fileID":2883654815081506176,"guid":"8cdf04875052dc24a9d935171f6b0187","type":3}}' + m_Space: -1 + m_Property: + name: mesh + m_serializedType: + m_SerializableType: UnityEngine.Mesh, UnityEngine.CoreModule, Version=0.0.0.0, + Culture=neutral, PublicKeyToken=null + m_Direction: 0 + m_LinkedSlots: [] +--- !u!114 &8926484042661614552 +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: 3e3f628d80ffceb489beac74258f9cf7, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.VFXSlotTransform + m_UIIgnoredErrors: [] + m_Parent: {fileID: 0} + m_Children: + - {fileID: 8926484042661614553} + - {fileID: 8926484042661614557} + - {fileID: 8926484042661614561} + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 8926484042661614552} + m_MasterData: + m_Owner: {fileID: 8926484042661614550} + m_Value: + m_Type: + m_SerializableType: UnityEditor.VFX.Transform, Unity.VisualEffectGraph.Editor, + Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + m_SerializableObject: '{"position":{"x":0.0,"y":0.0,"z":0.0},"angles":{"x":0.0,"y":0.0,"z":0.0},"scale":{"x":1.0,"y":1.0,"z":1.0}}' + m_Space: 0 + m_Property: + name: transform + m_serializedType: + m_SerializableType: UnityEditor.VFX.Transform, Unity.VisualEffectGraph.Editor, + Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + m_Direction: 0 + m_LinkedSlots: [] +--- !u!114 &8926484042661614553 +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: ac39bd03fca81b849929b9c966f1836a, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.VFXSlotFloat3 + m_UIIgnoredErrors: [] + m_Parent: {fileID: 8926484042661614552} + m_Children: + - {fileID: 8926484042661614554} + - {fileID: 8926484042661614555} + - {fileID: 8926484042661614556} + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 8926484042661614552} + m_MasterData: + m_Owner: {fileID: 0} + m_Value: + m_Type: + m_SerializableType: + m_SerializableObject: + m_Space: -1 + m_Property: + name: position + m_serializedType: + m_SerializableType: UnityEngine.Vector3, UnityEngine.CoreModule, Version=0.0.0.0, + Culture=neutral, PublicKeyToken=null + m_Direction: 0 + m_LinkedSlots: [] +--- !u!114 &8926484042661614554 +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: f780aa281814f9842a7c076d436932e7, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.VFXSlotFloat + m_UIIgnoredErrors: [] + m_Parent: {fileID: 8926484042661614553} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 8926484042661614552} + m_MasterData: + m_Owner: {fileID: 0} + m_Value: + m_Type: + m_SerializableType: + m_SerializableObject: + m_Space: -1 + m_Property: + name: x + m_serializedType: + m_SerializableType: System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_Direction: 0 + m_LinkedSlots: [] +--- !u!114 &8926484042661614555 +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: f780aa281814f9842a7c076d436932e7, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.VFXSlotFloat + m_UIIgnoredErrors: [] + m_Parent: {fileID: 8926484042661614553} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 8926484042661614552} + m_MasterData: + m_Owner: {fileID: 0} + m_Value: + m_Type: + m_SerializableType: + m_SerializableObject: + m_Space: -1 + m_Property: + name: y + m_serializedType: + m_SerializableType: System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_Direction: 0 + m_LinkedSlots: [] +--- !u!114 &8926484042661614556 +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: f780aa281814f9842a7c076d436932e7, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.VFXSlotFloat + m_UIIgnoredErrors: [] + m_Parent: {fileID: 8926484042661614553} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 8926484042661614552} + m_MasterData: + m_Owner: {fileID: 0} + m_Value: + m_Type: + m_SerializableType: + m_SerializableObject: + m_Space: -1 + m_Property: + name: z + m_serializedType: + m_SerializableType: System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_Direction: 0 + m_LinkedSlots: [] +--- !u!114 &8926484042661614557 +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: ac39bd03fca81b849929b9c966f1836a, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.VFXSlotFloat3 + m_UIIgnoredErrors: [] + m_Parent: {fileID: 8926484042661614552} + m_Children: + - {fileID: 8926484042661614558} + - {fileID: 8926484042661614559} + - {fileID: 8926484042661614560} + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 8926484042661614552} + m_MasterData: + m_Owner: {fileID: 0} + m_Value: + m_Type: + m_SerializableType: + m_SerializableObject: + m_Space: -1 + m_Property: + name: angles + m_serializedType: + m_SerializableType: UnityEngine.Vector3, UnityEngine.CoreModule, Version=0.0.0.0, + Culture=neutral, PublicKeyToken=null + m_Direction: 0 + m_LinkedSlots: [] +--- !u!114 &8926484042661614558 +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: f780aa281814f9842a7c076d436932e7, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.VFXSlotFloat + m_UIIgnoredErrors: [] + m_Parent: {fileID: 8926484042661614557} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 8926484042661614552} + m_MasterData: + m_Owner: {fileID: 0} + m_Value: + m_Type: + m_SerializableType: + m_SerializableObject: + m_Space: -1 + m_Property: + name: x + m_serializedType: + m_SerializableType: System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_Direction: 0 + m_LinkedSlots: [] +--- !u!114 &8926484042661614559 +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: f780aa281814f9842a7c076d436932e7, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.VFXSlotFloat + m_UIIgnoredErrors: [] + m_Parent: {fileID: 8926484042661614557} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 8926484042661614552} + m_MasterData: + m_Owner: {fileID: 0} + m_Value: + m_Type: + m_SerializableType: + m_SerializableObject: + m_Space: -1 + m_Property: + name: y + m_serializedType: + m_SerializableType: System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_Direction: 0 + m_LinkedSlots: [] +--- !u!114 &8926484042661614560 +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: f780aa281814f9842a7c076d436932e7, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.VFXSlotFloat + m_UIIgnoredErrors: [] + m_Parent: {fileID: 8926484042661614557} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 8926484042661614552} + m_MasterData: + m_Owner: {fileID: 0} + m_Value: + m_Type: + m_SerializableType: + m_SerializableObject: + m_Space: -1 + m_Property: + name: z + m_serializedType: + m_SerializableType: System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_Direction: 0 + m_LinkedSlots: [] +--- !u!114 &8926484042661614561 +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: ac39bd03fca81b849929b9c966f1836a, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.VFXSlotFloat3 + m_UIIgnoredErrors: [] + m_Parent: {fileID: 8926484042661614552} + m_Children: + - {fileID: 8926484042661614562} + - {fileID: 8926484042661614563} + - {fileID: 8926484042661614564} + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 8926484042661614552} + m_MasterData: + m_Owner: {fileID: 0} + m_Value: + m_Type: + m_SerializableType: + m_SerializableObject: + m_Space: -1 + m_Property: + name: scale + m_serializedType: + m_SerializableType: UnityEngine.Vector3, UnityEngine.CoreModule, Version=0.0.0.0, + Culture=neutral, PublicKeyToken=null + m_Direction: 0 + m_LinkedSlots: [] +--- !u!114 &8926484042661614562 +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: f780aa281814f9842a7c076d436932e7, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.VFXSlotFloat + m_UIIgnoredErrors: [] + m_Parent: {fileID: 8926484042661614561} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 8926484042661614552} + m_MasterData: + m_Owner: {fileID: 0} + m_Value: + m_Type: + m_SerializableType: + m_SerializableObject: + m_Space: -1 + m_Property: + name: x + m_serializedType: + m_SerializableType: System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_Direction: 0 + m_LinkedSlots: [] +--- !u!114 &8926484042661614563 +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: f780aa281814f9842a7c076d436932e7, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.VFXSlotFloat + m_UIIgnoredErrors: [] + m_Parent: {fileID: 8926484042661614561} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 8926484042661614552} + m_MasterData: + m_Owner: {fileID: 0} + m_Value: + m_Type: + m_SerializableType: + m_SerializableObject: + m_Space: -1 + m_Property: + name: y + m_serializedType: + m_SerializableType: System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_Direction: 0 + m_LinkedSlots: [] +--- !u!114 &8926484042661614564 +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: f780aa281814f9842a7c076d436932e7, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.VFXSlotFloat + m_UIIgnoredErrors: [] + m_Parent: {fileID: 8926484042661614561} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 8926484042661614552} + m_MasterData: + m_Owner: {fileID: 0} + m_Value: + m_Type: + m_SerializableType: + m_SerializableObject: + m_Space: -1 + m_Property: + name: z + m_serializedType: + m_SerializableType: System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_Direction: 0 + m_LinkedSlots: [] +--- !u!114 &8926484042661614565 +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: b4c11ff25089a324daf359f4b0629b33, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.VFXSlotBool + m_UIIgnoredErrors: [] + m_Parent: {fileID: 0} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 8926484042661614565} + m_MasterData: + m_Owner: {fileID: 8926484042661614550} + m_Value: + m_Type: + m_SerializableType: System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_SerializableObject: True + m_Space: -1 + m_Property: + name: _vfx_enabled + m_serializedType: + m_SerializableType: System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_Direction: 0 + m_LinkedSlots: [] +--- !u!114 &8926484042661614566 +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: f780aa281814f9842a7c076d436932e7, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.VFXSlotFloat + m_UIIgnoredErrors: [] + m_Parent: {fileID: 0} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 8926484042661614566} + m_MasterData: + m_Owner: {fileID: 114063133802684794} + m_Value: + m_Type: + m_SerializableType: System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_SerializableObject: 1 + m_Space: -1 + m_Property: + name: softParticleFadeDistance + m_serializedType: + m_SerializableType: System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_Direction: 0 + m_LinkedSlots: [] +--- !u!114 &8926484042661614567 +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: d16c6aeaef944094b9a1633041804207, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.Block.Orient + m_UIIgnoredErrors: [] + m_Parent: {fileID: 114063133802684794} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 0 + m_UISuperCollapsed: 0 + m_InputSlots: [] + m_OutputSlots: [] + m_Disabled: 0 + m_ActivationSlot: {fileID: 8926484042661614568} + mode: 0 + axes: 4 + faceRay: 1 +--- !u!114 &8926484042661614568 +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: b4c11ff25089a324daf359f4b0629b33, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.VFXSlotBool + m_UIIgnoredErrors: [] + m_Parent: {fileID: 0} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 8926484042661614568} + m_MasterData: + m_Owner: {fileID: 8926484042661614567} + m_Value: + m_Type: + m_SerializableType: System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_SerializableObject: True + m_Space: -1 + m_Property: + name: _vfx_enabled + m_serializedType: + m_SerializableType: System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_Direction: 0 + m_LinkedSlots: [] +--- !u!114 &8926484042661614569 +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: 01ec2c1930009b04ea08905b47262415, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.Block.AttributeFromCurve + m_UIIgnoredErrors: [] + m_Parent: {fileID: 114063133802684794} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 0 + m_UISuperCollapsed: 0 + m_InputSlots: + - {fileID: 8926484042661614570} + m_OutputSlots: [] + m_Disabled: 0 + m_ActivationSlot: {fileID: 8926484042661614571} + attribute: color + Composition: 0 + AlphaComposition: 0 + SampleMode: 0 + Mode: 1 + ColorMode: 3 + channels: 6 +--- !u!114 &8926484042661614570 +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: 76f778ff57c4e8145b9681fe3268d8e9, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.VFXSlotGradient + m_UIIgnoredErrors: [] + m_Parent: {fileID: 0} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 8926484042661614570} + m_MasterData: + m_Owner: {fileID: 8926484042661614569} + m_Value: + m_Type: + m_SerializableType: UnityEngine.Gradient, UnityEngine.CoreModule, Version=0.0.0.0, + Culture=neutral, PublicKeyToken=null + m_SerializableObject: '{"colorKeys":[{"color":{"r":1.0,"g":1.0,"b":1.0,"a":1.0},"time":0.0},{"color":{"r":1.0,"g":1.0,"b":1.0,"a":1.0},"time":1.0}],"alphaKeys":[{"alpha":0.0,"time":0.0},{"alpha":1.0,"time":0.10000763088464737},{"alpha":0.800000011920929,"time":0.800000011920929},{"alpha":0.0,"time":1.0}],"gradientMode":0}' + m_Space: -1 + m_Property: + name: Color + m_serializedType: + m_SerializableType: UnityEngine.Gradient, UnityEngine.CoreModule, Version=0.0.0.0, + Culture=neutral, PublicKeyToken=null + m_Direction: 0 + m_LinkedSlots: [] +--- !u!114 &8926484042661614571 +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: b4c11ff25089a324daf359f4b0629b33, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.VFXSlotBool + m_UIIgnoredErrors: [] + m_Parent: {fileID: 0} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 8926484042661614571} + m_MasterData: + m_Owner: {fileID: 8926484042661614569} + m_Value: + m_Type: + m_SerializableType: System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_SerializableObject: True + m_Space: -1 + m_Property: + name: _vfx_enabled + m_serializedType: + m_SerializableType: System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_Direction: 0 + m_LinkedSlots: [] +--- !u!114 &8926484042661614572 +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: a971fa2e110a0ac42ac1d8dae408704b, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.Block.SetAttribute + m_UIIgnoredErrors: [] + m_Parent: {fileID: 114946465509916290} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 0 + m_UISuperCollapsed: 0 + m_InputSlots: + - {fileID: 8926484042661614573} + - {fileID: 8926484042661614574} + m_OutputSlots: [] + m_Disabled: 0 + m_ActivationSlot: {fileID: 8926484042661614575} + attribute: lifetime + Composition: 0 + Source: 0 + Random: 2 + channels: 6 +--- !u!114 &8926484042661614573 +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: f780aa281814f9842a7c076d436932e7, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.VFXSlotFloat + m_UIIgnoredErrors: [] + m_Parent: {fileID: 0} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 8926484042661614573} + m_MasterData: + m_Owner: {fileID: 8926484042661614572} + m_Value: + m_Type: + m_SerializableType: System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_SerializableObject: 0.02 + m_Space: -1 + m_Property: + name: A + m_serializedType: + m_SerializableType: System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_Direction: 0 + m_LinkedSlots: [] +--- !u!114 &8926484042661614574 +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: f780aa281814f9842a7c076d436932e7, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.VFXSlotFloat + m_UIIgnoredErrors: [] + m_Parent: {fileID: 0} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 8926484042661614574} + m_MasterData: + m_Owner: {fileID: 8926484042661614572} + m_Value: + m_Type: + m_SerializableType: System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_SerializableObject: 0.01 + m_Space: -1 + m_Property: + name: B + m_serializedType: + m_SerializableType: System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_Direction: 0 + m_LinkedSlots: [] +--- !u!114 &8926484042661614575 +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: b4c11ff25089a324daf359f4b0629b33, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.VFXSlotBool + m_UIIgnoredErrors: [] + m_Parent: {fileID: 0} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 8926484042661614575} + m_MasterData: + m_Owner: {fileID: 8926484042661614572} + m_Value: + m_Type: + m_SerializableType: System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_SerializableObject: True + m_Space: -1 + m_Property: + name: _vfx_enabled + m_serializedType: + m_SerializableType: System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_Direction: 0 + m_LinkedSlots: [] diff --git a/Assets/04_Models/MazeRoom3Dmodel/MazeRoomEffectModel/Dolphin/Dolphin1.vfx.meta b/Assets/04_Models/MazeRoom3Dmodel/MazeRoomEffectModel/Dolphin/Dolphin1.vfx.meta new file mode 100644 index 00000000..1f078fce --- /dev/null +++ b/Assets/04_Models/MazeRoom3Dmodel/MazeRoomEffectModel/Dolphin/Dolphin1.vfx.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 009024b795f06a44ab0a6e9563b2f4f0 +VisualEffectImporter: + externalObjects: {} + serializedVersion: 2 + template: + name: + category: + description: + icon: {instanceID: 0} + thumbnail: {instanceID: 0} + useAsTemplate: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Models/MazeRoom3Dmodel/MazeRoomEffectModel/Dolphin/Dolphin2.anim b/Assets/04_Models/MazeRoom3Dmodel/MazeRoomEffectModel/Dolphin/Dolphin2.anim new file mode 100644 index 00000000..f1ab4ad5 --- /dev/null +++ b/Assets/04_Models/MazeRoom3Dmodel/MazeRoomEffectModel/Dolphin/Dolphin2.anim @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1679a18822eb9032c5577663bb87c7b0125bf57c3d479861219288cb297812ef +size 1296 diff --git a/Assets/04_Models/MazeRoom3Dmodel/MazeRoomEffectModel/Dolphin/Dolphin2.anim.meta b/Assets/04_Models/MazeRoom3Dmodel/MazeRoomEffectModel/Dolphin/Dolphin2.anim.meta new file mode 100644 index 00000000..3231ac9c --- /dev/null +++ b/Assets/04_Models/MazeRoom3Dmodel/MazeRoomEffectModel/Dolphin/Dolphin2.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4cd22234f967e8a41ac9cd66c91788b6 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Models/MazeRoom3Dmodel/MazeRoomEffectModel/Dolphin/DolphinFamily.controller b/Assets/04_Models/MazeRoom3Dmodel/MazeRoomEffectModel/Dolphin/DolphinFamily.controller new file mode 100644 index 00000000..73472dc5 --- /dev/null +++ b/Assets/04_Models/MazeRoom3Dmodel/MazeRoomEffectModel/Dolphin/DolphinFamily.controller @@ -0,0 +1,72 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1102 &-3866755859154465016 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Dolphin + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: [] + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 7400000, guid: 2a36046fd72018e43a1b2f619a00c160, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!91 &9100000 +AnimatorController: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: DolphinFamily + serializedVersion: 5 + m_AnimatorParameters: [] + m_AnimatorLayers: + - serializedVersion: 5 + m_Name: Base Layer + m_StateMachine: {fileID: 499911145069571644} + m_Mask: {fileID: 0} + m_Motions: [] + m_Behaviours: [] + m_BlendingMode: 0 + m_SyncedLayerIndex: -1 + m_DefaultWeight: 0 + m_IKPass: 0 + m_SyncedLayerAffectsTiming: 0 + m_Controller: {fileID: 9100000} +--- !u!1107 &499911145069571644 +AnimatorStateMachine: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Base Layer + m_ChildStates: + - serializedVersion: 1 + m_State: {fileID: -3866755859154465016} + m_Position: {x: 200, y: 0, z: 0} + m_ChildStateMachines: [] + m_AnyStateTransitions: [] + m_EntryTransitions: [] + m_StateMachineTransitions: {} + m_StateMachineBehaviours: [] + m_AnyStatePosition: {x: 50, y: 20, z: 0} + m_EntryPosition: {x: 50, y: 120, z: 0} + m_ExitPosition: {x: 800, y: 120, z: 0} + m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} + m_DefaultState: {fileID: -3866755859154465016} diff --git a/Assets/04_Models/MazeRoom3Dmodel/MazeRoomEffectModel/Dolphin/DolphinFamily.controller.meta b/Assets/04_Models/MazeRoom3Dmodel/MazeRoomEffectModel/Dolphin/DolphinFamily.controller.meta new file mode 100644 index 00000000..005571c3 --- /dev/null +++ b/Assets/04_Models/MazeRoom3Dmodel/MazeRoomEffectModel/Dolphin/DolphinFamily.controller.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1686a987a9b85284f863b8419e239c31 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 9100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Models/MazeRoom3Dmodel/MazeRoomEffectModel/Dolphin/dolphin.glb b/Assets/04_Models/MazeRoom3Dmodel/MazeRoomEffectModel/Dolphin/dolphin.glb new file mode 100644 index 00000000..468d505d Binary files /dev/null and b/Assets/04_Models/MazeRoom3Dmodel/MazeRoomEffectModel/Dolphin/dolphin.glb differ diff --git a/Assets/04_Models/MazeRoom3Dmodel/MazeRoomEffectModel/Dolphin/dolphin.glb.meta b/Assets/04_Models/MazeRoom3Dmodel/MazeRoomEffectModel/Dolphin/dolphin.glb.meta new file mode 100644 index 00000000..623f6dfc --- /dev/null +++ b/Assets/04_Models/MazeRoom3Dmodel/MazeRoomEffectModel/Dolphin/dolphin.glb.meta @@ -0,0 +1,28 @@ +fileFormatVersion: 2 +guid: 8cdf04875052dc24a9d935171f6b0187 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 715df9372183c47e389bb6e19fbc3b52, type: 3} + editorImportSettings: + generateSecondaryUVSet: 0 + importSettings: + nodeNameMethod: 1 + animationMethod: 2 + generateMipMaps: 1 + texturesReadable: 0 + defaultMinFilterMode: 9729 + defaultMagFilterMode: 9729 + anisotropicFilterLevel: 1 + instantiationSettings: + mask: -1 + layer: 0 + skinUpdateWhenOffscreen: 1 + lightIntensityFactor: 1 + sceneObjectCreation: 2 + assetDependencies: [] + reportItems: [] diff --git a/Assets/04_Models/MazeRoom3Dmodel/MazeRoomEffectModel/whaleEffect/StarWhale.vfx b/Assets/04_Models/MazeRoom3Dmodel/MazeRoomEffectModel/whaleEffect/StarWhale.vfx index 35bec6e8..233114a8 100644 --- a/Assets/04_Models/MazeRoom3Dmodel/MazeRoomEffectModel/whaleEffect/StarWhale.vfx +++ b/Assets/04_Models/MazeRoom3Dmodel/MazeRoomEffectModel/whaleEffect/StarWhale.vfx @@ -2053,6 +2053,9 @@ MonoBehaviour: position: {x: 455, y: 290} expandedSlots: - {fileID: 8926484042661614573} + - {fileID: 8926484042661614574} + - {fileID: 8926484042661614578} + - {fileID: 8926484042661614582} expanded: 1 supecollapsed: 0 --- !u!114 &8926484042661614573 diff --git a/Assets/04_Models/MazeRoom3Dmodel/MazeRoomEffectModel/zepeto/zepeto Walking.fbx b/Assets/04_Models/MazeRoom3Dmodel/MazeRoomEffectModel/zepeto/zepeto Walking.fbx new file mode 100644 index 00000000..9ebe3583 --- /dev/null +++ b/Assets/04_Models/MazeRoom3Dmodel/MazeRoomEffectModel/zepeto/zepeto Walking.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d241cf4546454b0ec437cd9db36ada77328019e891842edda6e8f910ecaae18 +size 3685008 diff --git a/Assets/04_Models/MazeRoom3Dmodel/MazeRoomEffectModel/zepeto/zepeto Walking.fbx.meta b/Assets/04_Models/MazeRoom3Dmodel/MazeRoomEffectModel/zepeto/zepeto Walking.fbx.meta new file mode 100644 index 00000000..efc5d819 --- /dev/null +++ b/Assets/04_Models/MazeRoom3Dmodel/MazeRoomEffectModel/zepeto/zepeto Walking.fbx.meta @@ -0,0 +1,110 @@ +fileFormatVersion: 2 +guid: 9869e38cc0b204c419904ddb56fb0923 +ModelImporter: + serializedVersion: 24200 + internalIDToNameTable: [] + externalObjects: {} + materials: + materialImportMode: 2 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 0 + motionNodeName: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 1 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importPhysicalCameras: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + generateMeshLods: 0 + meshLodGenerationFlags: 0 + maximumMeshLod: -1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 1 + strictVertexDataChecks: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 1 + humanDescription: + serializedVersion: 3 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 2 + humanoidOversampling: 1 + avatarSetup: 0 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + importBlendShapeDeformPercent: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Models/MazeRoom3Dmodel/MazeRoomEffectModel/zepeto/zepeto joy.fbx b/Assets/04_Models/MazeRoom3Dmodel/MazeRoomEffectModel/zepeto/zepeto joy.fbx new file mode 100644 index 00000000..2c970d2c --- /dev/null +++ b/Assets/04_Models/MazeRoom3Dmodel/MazeRoomEffectModel/zepeto/zepeto joy.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:316a896fb07ae304611e2ee91456ffdc83a170d556f172108ff9f75567f32191 +size 4189280 diff --git a/Assets/04_Models/MazeRoom3Dmodel/MazeRoomEffectModel/zepeto/zepeto joy.fbx.meta b/Assets/04_Models/MazeRoom3Dmodel/MazeRoomEffectModel/zepeto/zepeto joy.fbx.meta new file mode 100644 index 00000000..34a82d3e --- /dev/null +++ b/Assets/04_Models/MazeRoom3Dmodel/MazeRoomEffectModel/zepeto/zepeto joy.fbx.meta @@ -0,0 +1,110 @@ +fileFormatVersion: 2 +guid: 6576ed7c5f8809f43abbdfe6a7319b0f +ModelImporter: + serializedVersion: 24200 + internalIDToNameTable: [] + externalObjects: {} + materials: + materialImportMode: 2 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 0 + motionNodeName: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 1 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importPhysicalCameras: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + generateMeshLods: 0 + meshLodGenerationFlags: 0 + maximumMeshLod: -1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 1 + strictVertexDataChecks: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 1 + humanDescription: + serializedVersion: 3 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 2 + humanoidOversampling: 1 + avatarSetup: 0 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + importBlendShapeDeformPercent: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Models/MazeRoom3Dmodel/MazeRoomEffectModel/zepeto/zepeto looking for something.fbx b/Assets/04_Models/MazeRoom3Dmodel/MazeRoomEffectModel/zepeto/zepeto looking for something.fbx new file mode 100644 index 00000000..fc72be5a --- /dev/null +++ b/Assets/04_Models/MazeRoom3Dmodel/MazeRoomEffectModel/zepeto/zepeto looking for something.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7e5c9af7b6278a83a16e21a0c5121c644ab4cafe42a480113e27f8df8aca566 +size 3895504 diff --git a/Assets/04_Models/MazeRoom3Dmodel/MazeRoomEffectModel/zepeto/zepeto looking for something.fbx.meta b/Assets/04_Models/MazeRoom3Dmodel/MazeRoomEffectModel/zepeto/zepeto looking for something.fbx.meta new file mode 100644 index 00000000..75d923ff --- /dev/null +++ b/Assets/04_Models/MazeRoom3Dmodel/MazeRoomEffectModel/zepeto/zepeto looking for something.fbx.meta @@ -0,0 +1,652 @@ +fileFormatVersion: 2 +guid: 50c3c2d2d1f204c4093b760347108d64 +ModelImporter: + serializedVersion: 24200 + internalIDToNameTable: [] + externalObjects: {} + materials: + materialImportMode: 2 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 0 + motionNodeName: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 3 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: + - serializedVersion: 16 + name: Looking + takeName: mixamo.com + internalID: -203655887218126122 + firstFrame: 0 + lastFrame: 120 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 1 + loopBlendPositionY: 1 + loopBlendPositionXZ: 1 + keepOriginalOrientation: 0 + keepOriginalPositionY: 0 + keepOriginalPositionXZ: 0 + heightFromFeet: 1 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: [] + maskType: 3 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + isReadable: 1 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importPhysicalCameras: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + generateMeshLods: 0 + meshLodGenerationFlags: 0 + maximumMeshLod: -1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 1 + strictVertexDataChecks: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 1 + humanDescription: + serializedVersion: 3 + human: + - boneName: mixamorig:Hips + humanName: Hips + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: mixamorig:LeftUpLeg + humanName: LeftUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: mixamorig:RightUpLeg + humanName: RightUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: mixamorig:LeftLeg + humanName: LeftLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: mixamorig:RightLeg + humanName: RightLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: mixamorig:LeftFoot + humanName: LeftFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: mixamorig:RightFoot + humanName: RightFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: mixamorig:Spine + humanName: Spine + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: mixamorig:Spine1 + humanName: Chest + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: mixamorig:Neck + humanName: Neck + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: mixamorig:Head + humanName: Head + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: mixamorig:LeftShoulder + humanName: LeftShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: mixamorig:RightShoulder + humanName: RightShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: mixamorig:LeftArm + humanName: LeftUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: mixamorig:RightArm + humanName: RightUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: mixamorig:LeftForeArm + humanName: LeftLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: mixamorig:RightForeArm + humanName: RightLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: mixamorig:LeftHand + humanName: LeftHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: mixamorig:RightHand + humanName: RightHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: mixamorig:LeftToeBase + humanName: LeftToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: mixamorig:RightToeBase + humanName: RightToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: mixamorig:LeftEye + humanName: LeftEye + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: mixamorig:RightEye + humanName: RightEye + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: mixamorig:LeftHandThumb1 + humanName: Left Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: mixamorig:LeftHandThumb2 + humanName: Left Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: mixamorig:LeftHandThumb3 + humanName: Left Thumb Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: mixamorig:LeftHandIndex1 + humanName: Left Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: mixamorig:LeftHandIndex2 + humanName: Left Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: mixamorig:LeftHandIndex3 + humanName: Left Index Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: mixamorig:RightHandThumb1 + humanName: Right Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: mixamorig:RightHandThumb2 + humanName: Right Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: mixamorig:RightHandThumb3 + humanName: Right Thumb Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: mixamorig:RightHandIndex1 + humanName: Right Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: mixamorig:RightHandIndex2 + humanName: Right Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: mixamorig:RightHandIndex3 + humanName: Right Index Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: mixamorig:Spine2 + humanName: UpperChest + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + skeleton: + - name: zepeto looking for something(Clone) + parentName: + position: {x: 0, y: 0, z: 0} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: Peasant_Man + parentName: zepeto looking for something(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: mixamorig:Hips + parentName: zepeto looking for something(Clone) + position: {x: 0.005020563, y: 0.9131704, z: 0.0054629687} + rotation: {x: -0.0000000043655177, y: 0.00000006984919, z: -0.000000820728, w: 1} + scale: {x: 1, y: 1.0000001, z: 1} + - name: mixamorig:Spine + parentName: mixamorig:Hips + position: {x: -0.0011691913, y: 0.106810376, z: 0.0037344168} + rotation: {x: 0.00060612883, y: 0.00000002378011, z: 0.00000081998616, w: 0.9999998} + scale: {x: 1, y: 1, z: 1} + - name: mixamorig:Spine1 + parentName: mixamorig:Spine + position: {x: 1.6009808e-13, y: 0.13893229, z: 8.9061203e-10} + rotation: {x: -0.01310352, y: -0.000000069783724, z: -0.0000000059234195, w: 0.99991417} + scale: {x: 0.99999994, y: 1.0000001, z: 0.99999994} + - name: mixamorig:Spine2 + parentName: mixamorig:Spine1 + position: {x: 2.8808612e-13, y: 0.14768194, z: -2.1469077e-10} + rotation: {x: 0.012497445, y: -0.000000046635236, z: 0.000000005238346, w: 0.9999219} + scale: {x: 1, y: 1, z: 1.0000001} + - name: mixamorig:Neck + parentName: mixamorig:Spine2 + position: {x: -1.7969442e-12, y: 0.35332292, z: -0.03247365} + rotation: {x: -0.0000000121071935, y: 0.000000011641536, z: 0.000000011641537, w: 1} + scale: {x: 1.0000001, y: 1, z: 1} + - name: mixamorig:Head + parentName: mixamorig:Neck + position: {x: 3.1349565e-13, y: 0.16905738, z: 0.011955245} + rotation: {x: 0.0000000121071935, y: 0.000000011641532, z: -0.000000016007112, w: 1} + scale: {x: 1.0000001, y: 1, z: 0.9999999} + - name: mixamorig:HeadTop_End + parentName: mixamorig:Head + position: {x: -5.48851e-15, y: 0.22166023, z: 0.02225315} + rotation: {x: -0, y: -0, z: -1.4094628e-16, w: 1} + scale: {x: 1.0000001, y: 1, z: 1} + - name: mixamorig:LeftEye + parentName: mixamorig:Head + position: {x: -0.05478759, y: 0.072866336, z: 0.119323} + rotation: {x: -0, y: -0, z: -1.4094628e-16, w: 1} + scale: {x: 1.0000001, y: 1, z: 1} + - name: mixamorig:RightEye + parentName: mixamorig:Head + position: {x: 0.05478764, y: 0.07286465, z: 0.11932254} + rotation: {x: -0, y: -0, z: -1.4094628e-16, w: 1} + scale: {x: 1.0000001, y: 1, z: 1} + - name: mixamorig:LeftShoulder + parentName: mixamorig:Spine2 + position: {x: -0.12896392, y: 0.2661254, z: -0.04508966} + rotation: {x: 0.53877527, y: -0.45795318, z: 0.5764463, w: 0.4095238} + scale: {x: 1.0000004, y: 1.0000005, z: 1.0000005} + - name: mixamorig:LeftArm + parentName: mixamorig:LeftShoulder + position: {x: -0, y: 0.19714853, z: 5.684342e-16} + rotation: {x: -0.12387233, y: 0.00537926, z: -0.043050233, w: 0.9913493} + scale: {x: 0.99999994, y: 1, z: 0.9999997} + - name: mixamorig:LeftForeArm + parentName: mixamorig:LeftArm + position: {x: 2.2113093e-11, y: 0.2417811, z: -8.5265126e-16} + rotation: {x: 0.00000004470348, y: 0.000000029336658, z: 0.0000000098953015, w: 1} + scale: {x: 1, y: 1.0000002, z: 1.0000001} + - name: mixamorig:LeftHand + parentName: mixamorig:LeftForeArm + position: {x: -4.049448e-11, y: 0.27144986, z: 2.842171e-16} + rotation: {x: -0, y: -0.000000051222738, z: -0.00000006699701, w: 1} + scale: {x: 0.99999994, y: 1.0000004, z: 1.0000002} + - name: mixamorig:LeftHandThumb1 + parentName: mixamorig:LeftHand + position: {x: 0.058908515, y: 0.06538308, z: 0.05056809} + rotation: {x: 0.066965334, y: -0.008152755, z: -0.3492117, w: 0.9346124} + scale: {x: 1.0000001, y: 1.0000005, z: 1.0000002} + - name: mixamorig:LeftHandThumb2 + parentName: mixamorig:LeftHandThumb1 + position: {x: -4.9285376e-12, y: 0.049249753, z: -7.608776e-12} + rotation: {x: -0.000000014901159, y: 0.000000029802319, z: -0.00000004097819, w: 1} + scale: {x: 1.0000001, y: 1.0000006, z: 1.0000005} + - name: mixamorig:LeftHandThumb3 + parentName: mixamorig:LeftHandThumb2 + position: {x: -4.2048496e-12, y: 0.04203451, z: -6.4918023e-12} + rotation: {x: 0.000000059604638, y: -0.000000044703476, z: -0.000000047497444, w: 1} + scale: {x: 0.9999998, y: 1.0000007, z: 1.0000005} + - name: mixamorig:LeftHandThumb4 + parentName: mixamorig:LeftHandThumb3 + position: {x: -6.8296657e-12, y: 0.06824805, z: -1.05387695e-11} + rotation: {x: -0, y: -0, z: -8.881787e-16, w: 1} + scale: {x: 1.0000001, y: 1.0000002, z: 1.0000006} + - name: mixamorig:LeftHandIndex1 + parentName: mixamorig:LeftHand + position: {x: 4.857892e-12, y: 0.16444632, z: 4.4669093e-10} + rotation: {x: 2.168117e-23, y: -0.000000051222738, z: -0.00000006699701, w: -1} + scale: {x: 1.0000001, y: 1.0000004, z: 1.0000002} + - name: mixamorig:LeftHandIndex2 + parentName: mixamorig:LeftHandIndex1 + position: {x: 2.7555913e-12, y: 0.04820471, z: -5.684342e-16} + rotation: {x: 0.00000004470348, y: 0.000000029802319, z: 0.000000007392373, w: -1} + scale: {x: 1, y: 1.0000005, z: 1.0000004} + - name: mixamorig:LeftHandIndex3 + parentName: mixamorig:LeftHandIndex2 + position: {x: -1.35331035e-11, y: 0.06383169, z: 1.1368684e-15} + rotation: {x: -0, y: -0, z: 2.1175824e-22, w: 1} + scale: {x: 1, y: 1.0000004, z: 1.0000004} + - name: mixamorig:LeftHandIndex4 + parentName: mixamorig:LeftHandIndex3 + position: {x: -1.09798125e-11, y: 0.051789217, z: 1.7053025e-15} + rotation: {x: -0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1.0000006, z: 1.0000004} + - name: mixamorig:RightShoulder + parentName: mixamorig:Spine2 + position: {x: 0.12896344, y: 0.26612493, z: -0.04508966} + rotation: {x: -0.5387768, y: -0.45795152, z: 0.5764474, w: -0.40952206} + scale: {x: 1.0000004, y: 1.0000004, z: 1.0000002} + - name: mixamorig:RightArm + parentName: mixamorig:RightShoulder + position: {x: 2.6645352e-17, y: 0.1971493, z: 2.842171e-16} + rotation: {x: 0.123875305, y: 0.005379513, z: -0.04305002, w: -0.991349} + scale: {x: 1.0000006, y: 1.0000006, z: 1} + - name: mixamorig:RightForeArm + parentName: mixamorig:RightArm + position: {x: -4.5322855e-13, y: 0.241781, z: -5.684342e-16} + rotation: {x: -0, y: -0, z: -0.0000000013969838, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: mixamorig:RightHand + parentName: mixamorig:RightForeArm + position: {x: -1.6544987e-13, y: 0.27145, z: 8.5265126e-16} + rotation: {x: -0, y: -0, z: -0, w: 1} + scale: {x: 1.0000001, y: 1.0000001, z: 1} + - name: mixamorig:RightHandThumb1 + parentName: mixamorig:RightHand + position: {x: -0.05890853, y: 0.065383, z: 0.05057} + rotation: {x: 0.068011746, y: 0.005341282, z: 0.348997, w: 0.9346373} + scale: {x: 1.0000001, y: 1.0000005, z: 1} + - name: mixamorig:RightHandThumb2 + parentName: mixamorig:RightHandThumb1 + position: {x: -7.105427e-17, y: 0.049246192, z: 8.5265126e-16} + rotation: {x: 0.000091254704, y: 0.000000111758695, z: 0.000004530884, w: 1} + scale: {x: 1.0000002, y: 1.0000002, z: 0.9999998} + - name: mixamorig:RightHandThumb3 + parentName: mixamorig:RightHandThumb2 + position: {x: -1.4210854e-16, y: 0.042034954, z: 2.842171e-16} + rotation: {x: -0.000013589857, y: -0.00000011953261, z: -0.0000042179504, w: 1} + scale: {x: 1.0000001, y: 1, z: 1.0000002} + - name: mixamorig:RightHandThumb4 + parentName: mixamorig:RightHandThumb3 + position: {x: -4.405365e-15, y: 0.06824871, z: 1.364242e-14} + rotation: {x: -0, y: -0, z: 1.9455799e-13, w: 1} + scale: {x: 1, y: 1, z: 1.0000001} + - name: mixamorig:RightHandIndex1 + parentName: mixamorig:RightHand + position: {x: -9.991119e-14, y: 0.16444598, z: 2.2737367e-15} + rotation: {x: -0, y: -0, z: -0, w: 1} + scale: {x: 1.0000001, y: 1.0000002, z: 1} + - name: mixamorig:RightHandIndex2 + parentName: mixamorig:RightHandIndex1 + position: {x: -2.9212188e-14, y: 0.048201997, z: -5.684342e-16} + rotation: {x: -0, y: -0, z: -0, w: 1} + scale: {x: 1.0000004, y: 1.0000004, z: 1.0000002} + - name: mixamorig:RightHandIndex3 + parentName: mixamorig:RightHandIndex2 + position: {x: -3.8697933e-14, y: 0.063829996, z: 1.1368684e-15} + rotation: {x: -0, y: -0, z: -0, w: 1} + scale: {x: 1.0000004, y: 1.0000006, z: 1.0000004} + - name: mixamorig:RightHandIndex4 + parentName: mixamorig:RightHandIndex3 + position: {x: -3.1352698e-14, y: 0.05179, z: -2.842171e-16} + rotation: {x: -0, y: -0, z: -0, w: 1} + scale: {x: 1.0000005, y: 1.0000007, z: 1.0000002} + - name: mixamorig:LeftUpLeg + parentName: mixamorig:Hips + position: {x: -0.14073023, y: -0.07904136, z: -0.01462963} + rotation: {x: -0.00012550093, y: 0.06519034, z: 0.997871, w: -0.0019206902} + scale: {x: 1.0000004, y: 1, z: 1.0000001} + - name: mixamorig:LeftLeg + parentName: mixamorig:LeftUpLeg + position: {x: -1.7040555e-11, y: 0.34295353, z: 0.0000000020225621} + rotation: {x: -0.17438507, y: 0.0000012322417, z: -0.000028000262, w: 0.98467755} + scale: {x: 1.0000006, y: 1.0000007, z: 1.0000002} + - name: mixamorig:LeftFoot + parentName: mixamorig:LeftLeg + position: {x: -1.0552327e-10, y: 0.3062599, z: 0.0000000010070607} + rotation: {x: 0.51747537, y: 0.021565668, z: -0.026916994, w: 0.85500276} + scale: {x: 1.0000002, y: 1.0000001, z: 1} + - name: mixamorig:LeftToeBase + parentName: mixamorig:LeftFoot + position: {x: 1.3549162e-12, y: 0.265, z: -6.1533e-14} + rotation: {x: 0.34420374, y: 0.0144513985, z: 0.00924172, w: 0.93873835} + scale: {x: 1.0000001, y: 1.0000001, z: 0.99999994} + - name: mixamorig:LeftToe_End + parentName: mixamorig:LeftToeBase + position: {x: 3.0112197e-11, y: 0.1525861, z: -1.2034646e-10} + rotation: {x: 0.000000029802319, y: -0, z: 0.0000000018626449, w: 1} + scale: {x: 1.0000001, y: 1.0000002, z: 0.99999994} + - name: mixamorig:RightUpLeg + parentName: mixamorig:Hips + position: {x: 0.14073054, y: -0.07904046, z: -0.014629596} + rotation: {x: 0.00012535334, y: 0.06519035, z: 0.997871, w: 0.0019184306} + scale: {x: 1.0000004, y: 1.0000004, z: 1.0000002} + - name: mixamorig:RightLeg + parentName: mixamorig:RightUpLeg + position: {x: -8.8817837e-17, y: 0.34295347, z: 7.105427e-17} + rotation: {x: -0.17438483, y: -0.0000011751546, z: 0.000026208452, w: 0.9846776} + scale: {x: 1.0000005, y: 1.0000004, z: 1.0000005} + - name: mixamorig:RightFoot + parentName: mixamorig:RightLeg + position: {x: 2.664535e-16, y: 0.30626073, z: -1.7763567e-16} + rotation: {x: 0.5174737, y: -0.021566208, z: 0.026916936, w: 0.8550037} + scale: {x: 1.0000001, y: 1.0000004, z: 1.0000001} + - name: mixamorig:RightToeBase + parentName: mixamorig:RightFoot + position: {x: -1.9539925e-16, y: 0.265, z: 7.105427e-17} + rotation: {x: 0.34420162, y: -0.014480994, z: -0.009161476, w: 0.93873936} + scale: {x: 1.0000001, y: 1.0000001, z: 1.0000004} + - name: mixamorig:RightToe_End + parentName: mixamorig:RightToeBase + position: {x: 1.4210854e-16, y: 0.15258999, z: 1.8145207e-16} + rotation: {x: -0.000000029802319, y: -0, z: 0.0000000027939675, w: 1} + scale: {x: 1.0000002, y: 1.0000001, z: 0.99999994} + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 1 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 3 + humanoidOversampling: 1 + avatarSetup: 1 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + importBlendShapeDeformPercent: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Models/MazeRoom3Dmodel/MazeRoomEffectModel/zepeto/zepeto1.vfx b/Assets/04_Models/MazeRoom3Dmodel/MazeRoomEffectModel/zepeto/zepeto1.vfx new file mode 100644 index 00000000..d41c9a57 --- /dev/null +++ b/Assets/04_Models/MazeRoom3Dmodel/MazeRoomEffectModel/zepeto/zepeto1.vfx @@ -0,0 +1,2544 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &114023846229194376 +MonoBehaviour: + m_ObjectHideFlags: 1 + 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: 73a13919d81fb7444849bae8b5c812a2, type: 3} + m_Name: VFXBasicSpawner + m_EditorClassIdentifier: + m_UIIgnoredErrors: [] + m_Parent: {fileID: 114350483966674976} + m_Children: + - {fileID: 8926484042661614539} + m_UIPosition: {x: 705, y: -433} + m_UICollapsed: 0 + m_UISuperCollapsed: 0 + m_InputSlots: [] + m_OutputSlots: [] + m_Label: Spawn System + m_Data: {fileID: 8926484042661614529} + m_InputFlowSlot: + - link: [] + - link: [] + m_OutputFlowSlot: + - link: + - context: {fileID: 114946465509916290} + slotIndex: 0 + loopDuration: 0 + loopCount: 0 + delayBeforeLoop: 0 + delayAfterLoop: 0 +--- !u!114 &114063133802684794 +MonoBehaviour: + m_ObjectHideFlags: 1 + 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: a0b9e6b9139e58d4c957ec54595da7d3, type: 3} + m_Name: VFXQuadOutput + m_EditorClassIdentifier: + m_UIIgnoredErrors: [] + m_Parent: {fileID: 114350483966674976} + m_Children: + - {fileID: 8926484042661614564} + - {fileID: 8926484042661614566} + m_UIPosition: {x: 705, y: 881} + m_UICollapsed: 0 + m_UISuperCollapsed: 0 + m_InputSlots: + - {fileID: 8926484042661614571} + - {fileID: 114158099937248418} + m_OutputSlots: [] + m_Label: Render Quad + m_Data: {fileID: 114428730288789306} + m_InputFlowSlot: + - link: + - context: {fileID: 114780028408030698} + slotIndex: 0 + m_OutputFlowSlot: + - link: [] + blendMode: 1 + cullMode: 0 + zWriteMode: 0 + zTestMode: 0 + useAlphaClipping: 0 + generateMotionVector: 0 + excludeFromTUAndAA: 0 + sortingPriority: 0 + m_SubOutputs: + - {fileID: 8926484042661614528} + - {fileID: 8926484042661614538} + useBaseColorMap: 3 + colorMapping: 0 + uvMode: 0 + flipbookLayout: 0 + flipbookBlendFrames: 0 + flipbookMotionVectors: 0 + useSoftParticle: 1 + vfxSystemSortPriority: 0 + sort: 0 + sortMode: 0 + revertSorting: 0 + indirectDraw: 0 + computeCulling: 0 + frustumCulling: 0 + castShadows: 0 + useExposureWeight: 0 + enableRayTracing: 0 + decimationFactor: 1 + raytracedScaleMode: 0 + needsOwnSort: 1 + needsOwnAabbBuffer: 0 + shaderGraph: {fileID: 0} + materialSettings: + m_PropertyNames: [] + m_PropertyValues: [] + renderQueue: -1 + primitiveType: 1 + useGeometryShader: 0 +--- !u!114 &114158099937248418 +MonoBehaviour: + m_ObjectHideFlags: 1 + 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: 70a331b1d86cc8d4aa106ccbe0da5852, type: 3} + m_Name: VFXSlotTexture2D + m_EditorClassIdentifier: + m_UIIgnoredErrors: [] + m_Parent: {fileID: 0} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 114158099937248418} + m_MasterData: + m_Owner: {fileID: 114063133802684794} + m_Value: + m_Type: + m_SerializableType: UnityEngine.Texture2D, UnityEngine.CoreModule, Version=0.0.0.0, + Culture=neutral, PublicKeyToken=null + m_SerializableObject: '{"obj":{"fileID":2800000,"guid":"40b3682ff37e2c44ea2a624069cd0f9f","type":3}}' + m_Space: -1 + m_Property: + name: mainTexture + m_serializedType: + m_SerializableType: UnityEngine.Texture2D, UnityEngine.CoreModule, Version=0.0.0.0, + Culture=neutral, PublicKeyToken=null + m_Direction: 0 + m_LinkedSlots: [] +--- !u!114 &114307113894698210 +MonoBehaviour: + m_ObjectHideFlags: 1 + 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: 1b605c022ee79394a8a776c0869b3f9a, type: 3} + m_Name: VFXSlot + m_EditorClassIdentifier: + m_UIIgnoredErrors: [] + m_Parent: {fileID: 0} + m_Children: + - {fileID: 114986932069951040} + - {fileID: 114963171269329408} + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 0 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 114307113894698210} + m_MasterData: + m_Owner: {fileID: 114946465509916290} + m_Value: + m_Type: + m_SerializableType: UnityEditor.VFX.AABox, Unity.VisualEffectGraph.Editor, + Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + m_SerializableObject: '{"space":0,"center":{"x":0.0,"y":0.0,"z":0.0},"size":{"x":1.0,"y":1.0,"z":1.0}}' + m_Space: 0 + m_Property: + name: bounds + m_serializedType: + m_SerializableType: UnityEditor.VFX.AABox, Unity.VisualEffectGraph.Editor, + Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + m_Direction: 0 + m_LinkedSlots: [] +--- !u!114 &114340500867371532 +MonoBehaviour: + m_ObjectHideFlags: 1 + 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: d01270efd3285ea4a9d6c555cb0a8027, type: 3} + m_Name: VFXUI + m_EditorClassIdentifier: + groupInfos: + - title: Minimal + position: + serializedVersion: 2 + x: 680 + y: -492 + width: 474 + height: 1873 + contents: + - model: {fileID: 114023846229194376} + id: 0 + isStickyNote: 0 + - model: {fileID: 114946465509916290} + id: 0 + isStickyNote: 0 + - model: {fileID: 114780028408030698} + id: 0 + isStickyNote: 0 + - model: {fileID: 114063133802684794} + id: 0 + isStickyNote: 0 + - title: New Group Node + position: + serializedVersion: 2 + x: 0 + y: 0 + width: 100 + height: 100 + contents: [] + stickyNoteInfos: [] + categories: [] + uiBounds: + serializedVersion: 2 + x: 0 + y: -492 + width: 1154 + height: 1892 +--- !u!114 &114350483966674976 +MonoBehaviour: + m_ObjectHideFlags: 1 + 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: 7d4c867f6b72b714dbb5fd1780afe208, type: 3} + m_Name: zepeto1 + m_EditorClassIdentifier: + m_UIIgnoredErrors: [] + m_Parent: {fileID: 0} + m_Children: + - {fileID: 114023846229194376} + - {fileID: 114946465509916290} + - {fileID: 114780028408030698} + - {fileID: 114063133802684794} + - {fileID: 8926484042661614569} + - {fileID: 8926484042661614573} + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_UIInfos: {fileID: 114340500867371532} + m_CustomAttributes: [] + m_ParameterInfo: + - name: New Skinned Mesh Renderer + path: New Skinned Mesh Renderer + tooltip: + space: -1 + spaceable: 0 + sheetType: m_NamedObject + realType: SkinnedMeshRenderer + defaultValue: + m_Type: + m_SerializableType: UnityEngine.SkinnedMeshRenderer, UnityEngine.CoreModule, + Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + m_SerializableObject: + min: -Infinity + max: Infinity + enumValues: [] + descendantCount: 0 + - name: New Transform + path: + tooltip: + space: 0 + spaceable: 1 + sheetType: + realType: Transform + defaultValue: + m_Type: + m_SerializableType: + m_SerializableObject: + min: -Infinity + max: Infinity + enumValues: [] + descendantCount: 3 + - name: position + path: New Transform_position + tooltip: Sets the transform position. + space: -1 + spaceable: 0 + sheetType: m_Vector3f + realType: Vector3 + defaultValue: + m_Type: + m_SerializableType: UnityEngine.Vector3, UnityEngine.CoreModule, Version=0.0.0.0, + Culture=neutral, PublicKeyToken=null + m_SerializableObject: '{"x":0.0,"y":0.0,"z":0.0}' + min: -Infinity + max: Infinity + enumValues: [] + descendantCount: 0 + - name: angles + path: New Transform_angles + tooltip: Sets the euler angles of the transform. + space: -1 + spaceable: 0 + sheetType: m_Vector3f + realType: Vector3 + defaultValue: + m_Type: + m_SerializableType: UnityEngine.Vector3, UnityEngine.CoreModule, Version=0.0.0.0, + Culture=neutral, PublicKeyToken=null + m_SerializableObject: '{"x":0.0,"y":0.0,"z":0.0}' + min: -Infinity + max: Infinity + enumValues: [] + descendantCount: 0 + - name: scale + path: New Transform_scale + tooltip: Sets the scale of the transform along each axis. + space: -1 + spaceable: 0 + sheetType: m_Vector3f + realType: Vector3 + defaultValue: + m_Type: + m_SerializableType: UnityEngine.Vector3, UnityEngine.CoreModule, Version=0.0.0.0, + Culture=neutral, PublicKeyToken=null + m_SerializableObject: '{"x":1.0,"y":1.0,"z":1.0}' + min: -Infinity + max: Infinity + enumValues: [] + descendantCount: 0 + m_ImportDependencies: [] + m_GraphVersion: 19 + m_ResourceVersion: 1 + m_SubgraphDependencies: [] + m_CategoryPath: +--- !u!114 &114380859405582094 +MonoBehaviour: + m_ObjectHideFlags: 1 + 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: f780aa281814f9842a7c076d436932e7, type: 3} + m_Name: VFXSlotFloat + m_EditorClassIdentifier: + m_UIIgnoredErrors: [] + m_Parent: {fileID: 114963171269329408} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 114307113894698210} + m_MasterData: + m_Owner: {fileID: 0} + m_Value: + m_Type: + m_SerializableType: + m_SerializableObject: + m_Space: -1 + m_Property: + name: z + m_serializedType: + m_SerializableType: System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_Direction: 0 + m_LinkedSlots: [] +--- !u!114 &114428730288789306 +MonoBehaviour: + m_ObjectHideFlags: 1 + 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: d78581a96eae8bf4398c282eb0b098bd, type: 3} + m_Name: VFXDataParticle + m_EditorClassIdentifier: + m_UIIgnoredErrors: [] + m_Parent: {fileID: 0} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + title: Minimal + m_Owners: + - {fileID: 114946465509916290} + - {fileID: 114780028408030698} + - {fileID: 114063133802684794} + dataType: 0 + capacity: 20431 + stripCapacity: 16 + particlePerStripCount: 16 + needsComputeBounds: 0 + boundsMode: 0 + m_Space: 0 +--- !u!114 &114512514798047786 +MonoBehaviour: + m_ObjectHideFlags: 1 + 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: f780aa281814f9842a7c076d436932e7, type: 3} + m_Name: VFXSlotFloat + m_EditorClassIdentifier: + m_UIIgnoredErrors: [] + m_Parent: {fileID: 114963171269329408} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 114307113894698210} + m_MasterData: + m_Owner: {fileID: 0} + m_Value: + m_Type: + m_SerializableType: + m_SerializableObject: + m_Space: -1 + m_Property: + name: x + m_serializedType: + m_SerializableType: System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_Direction: 0 + m_LinkedSlots: [] +--- !u!114 &114538391275492396 +MonoBehaviour: + m_ObjectHideFlags: 1 + 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: f780aa281814f9842a7c076d436932e7, type: 3} + m_Name: VFXSlotFloat + m_EditorClassIdentifier: + m_UIIgnoredErrors: [] + m_Parent: {fileID: 114986932069951040} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 114307113894698210} + m_MasterData: + m_Owner: {fileID: 0} + m_Value: + m_Type: + m_SerializableType: + m_SerializableObject: + m_Space: -1 + m_Property: + name: z + m_serializedType: + m_SerializableType: System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_Direction: 0 + m_LinkedSlots: [] +--- !u!114 &114739294351936256 +MonoBehaviour: + m_ObjectHideFlags: 1 + 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: f780aa281814f9842a7c076d436932e7, type: 3} + m_Name: VFXSlotFloat + m_EditorClassIdentifier: + m_UIIgnoredErrors: [] + m_Parent: {fileID: 114986932069951040} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 114307113894698210} + m_MasterData: + m_Owner: {fileID: 0} + m_Value: + m_Type: + m_SerializableType: + m_SerializableObject: + m_Space: -1 + m_Property: + name: x + m_serializedType: + m_SerializableType: System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_Direction: 0 + m_LinkedSlots: [] +--- !u!114 &114780028408030698 +MonoBehaviour: + m_ObjectHideFlags: 1 + 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: 2dc095764ededfa4bb32fa602511ea4b, type: 3} + m_Name: VFXBasicUpdate + m_EditorClassIdentifier: + m_UIIgnoredErrors: [] + m_Parent: {fileID: 114350483966674976} + m_Children: [] + m_UIPosition: {x: 705, y: 731} + m_UICollapsed: 0 + m_UISuperCollapsed: 0 + m_InputSlots: [] + m_OutputSlots: [] + m_Label: Update Particles + m_Data: {fileID: 114428730288789306} + m_InputFlowSlot: + - link: + - context: {fileID: 114946465509916290} + slotIndex: 0 + m_OutputFlowSlot: + - link: + - context: {fileID: 114063133802684794} + slotIndex: 0 + integration: 0 + angularIntegration: 0 + ageParticles: 1 + reapParticles: 1 + skipZeroDeltaUpdate: 0 +--- !u!114 &114920711487922656 +MonoBehaviour: + m_ObjectHideFlags: 1 + 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: f780aa281814f9842a7c076d436932e7, type: 3} + m_Name: VFXSlotFloat + m_EditorClassIdentifier: + m_UIIgnoredErrors: [] + m_Parent: {fileID: 114963171269329408} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 114307113894698210} + m_MasterData: + m_Owner: {fileID: 0} + m_Value: + m_Type: + m_SerializableType: + m_SerializableObject: + m_Space: -1 + m_Property: + name: y + m_serializedType: + m_SerializableType: System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_Direction: 0 + m_LinkedSlots: [] +--- !u!114 &114935892456706286 +MonoBehaviour: + m_ObjectHideFlags: 1 + 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: f780aa281814f9842a7c076d436932e7, type: 3} + m_Name: VFXSlotFloat + m_EditorClassIdentifier: + m_UIIgnoredErrors: [] + m_Parent: {fileID: 114986932069951040} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 114307113894698210} + m_MasterData: + m_Owner: {fileID: 0} + m_Value: + m_Type: + m_SerializableType: + m_SerializableObject: + m_Space: -1 + m_Property: + name: y + m_serializedType: + m_SerializableType: System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_Direction: 0 + m_LinkedSlots: [] +--- !u!114 &114946465509916290 +MonoBehaviour: + m_ObjectHideFlags: 1 + 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: 9dfea48843f53fc438eabc12a3a30abc, type: 3} + m_Name: VFXBasicInitialize + m_EditorClassIdentifier: + m_UIIgnoredErrors: [] + m_Parent: {fileID: 114350483966674976} + m_Children: + - {fileID: 8926484042661614542} + - {fileID: 8926484042661614548} + - {fileID: 8926484042661614587} + m_UIPosition: {x: 705, y: -172} + m_UICollapsed: 0 + m_UISuperCollapsed: 0 + m_InputSlots: + - {fileID: 114307113894698210} + - {fileID: 8926484042661614534} + m_OutputSlots: [] + m_Label: Initialize Particles + m_Data: {fileID: 114428730288789306} + m_InputFlowSlot: + - link: + - context: {fileID: 114023846229194376} + slotIndex: 0 + m_OutputFlowSlot: + - link: + - context: {fileID: 114780028408030698} + slotIndex: 0 +--- !u!114 &114963171269329408 +MonoBehaviour: + m_ObjectHideFlags: 1 + 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: ac39bd03fca81b849929b9c966f1836a, type: 3} + m_Name: VFXSlotFloat3 + m_EditorClassIdentifier: + m_UIIgnoredErrors: [] + m_Parent: {fileID: 114307113894698210} + m_Children: + - {fileID: 114512514798047786} + - {fileID: 114920711487922656} + - {fileID: 114380859405582094} + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 114307113894698210} + m_MasterData: + m_Owner: {fileID: 0} + m_Value: + m_Type: + m_SerializableType: + m_SerializableObject: + m_Space: -1 + m_Property: + name: size + m_serializedType: + m_SerializableType: UnityEngine.Vector3, UnityEngine.CoreModule, Version=0.0.0.0, + Culture=neutral, PublicKeyToken=null + m_Direction: 0 + m_LinkedSlots: [] +--- !u!114 &114986932069951040 +MonoBehaviour: + m_ObjectHideFlags: 1 + 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: ac39bd03fca81b849929b9c966f1836a, type: 3} + m_Name: VFXSlotFloat3 + m_EditorClassIdentifier: + m_UIIgnoredErrors: [] + m_Parent: {fileID: 114307113894698210} + m_Children: + - {fileID: 114739294351936256} + - {fileID: 114935892456706286} + - {fileID: 114538391275492396} + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 114307113894698210} + m_MasterData: + m_Owner: {fileID: 0} + m_Value: + m_Type: + m_SerializableType: + m_SerializableObject: + m_Space: -1 + m_Property: + name: center + m_serializedType: + m_SerializableType: UnityEngine.Vector3, UnityEngine.CoreModule, Version=0.0.0.0, + Culture=neutral, PublicKeyToken=null + m_Direction: 0 + m_LinkedSlots: [] +--- !u!2058629511 &8926484042661614527 +VisualEffectResource: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zepeto1 + m_Graph: {fileID: 114350483966674976} + m_Infos: + m_RendererSettings: + motionVectorGenerationMode: 0 + shadowCastingMode: 0 + m_CullingFlags: 3 + m_UpdateMode: 0 + m_PreWarmDeltaTime: 0.05 + m_PreWarmStepCount: 0 + m_InitialEventName: OnPlay + m_InstancingMode: 0 + m_InstancingCapacity: 64 +--- !u!114 &8926484042661614528 +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: 081ffb0090424ba4cb05370a42ead6b9, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &8926484042661614529 +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: f68759077adc0b143b6e1c101e82065e, type: 3} + m_Name: + m_EditorClassIdentifier: + m_UIIgnoredErrors: [] + m_Parent: {fileID: 0} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + title: + m_Owners: + - {fileID: 114023846229194376} +--- !u!114 &8926484042661614534 +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: ac39bd03fca81b849929b9c966f1836a, type: 3} + m_Name: + m_EditorClassIdentifier: + m_UIIgnoredErrors: [] + m_Parent: {fileID: 0} + m_Children: + - {fileID: 8926484042661614535} + - {fileID: 8926484042661614536} + - {fileID: 8926484042661614537} + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 0 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 8926484042661614534} + m_MasterData: + m_Owner: {fileID: 114946465509916290} + m_Value: + m_Type: + m_SerializableType: UnityEngine.Vector3, UnityEngine.CoreModule, Version=0.0.0.0, + Culture=neutral, PublicKeyToken=null + m_SerializableObject: '{"x":0.5,"y":0.5,"z":0.5}' + m_Space: -1 + m_Property: + name: boundsPadding + m_serializedType: + m_SerializableType: UnityEngine.Vector3, UnityEngine.CoreModule, Version=0.0.0.0, + Culture=neutral, PublicKeyToken=null + m_Direction: 0 + m_LinkedSlots: [] +--- !u!114 &8926484042661614535 +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: f780aa281814f9842a7c076d436932e7, type: 3} + m_Name: + m_EditorClassIdentifier: + m_UIIgnoredErrors: [] + m_Parent: {fileID: 8926484042661614534} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 8926484042661614534} + m_MasterData: + m_Owner: {fileID: 0} + m_Value: + m_Type: + m_SerializableType: + m_SerializableObject: + m_Space: -1 + m_Property: + name: x + m_serializedType: + m_SerializableType: System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_Direction: 0 + m_LinkedSlots: [] +--- !u!114 &8926484042661614536 +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: f780aa281814f9842a7c076d436932e7, type: 3} + m_Name: + m_EditorClassIdentifier: + m_UIIgnoredErrors: [] + m_Parent: {fileID: 8926484042661614534} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 8926484042661614534} + m_MasterData: + m_Owner: {fileID: 0} + m_Value: + m_Type: + m_SerializableType: + m_SerializableObject: + m_Space: -1 + m_Property: + name: y + m_serializedType: + m_SerializableType: System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_Direction: 0 + m_LinkedSlots: [] +--- !u!114 &8926484042661614537 +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: f780aa281814f9842a7c076d436932e7, type: 3} + m_Name: + m_EditorClassIdentifier: + m_UIIgnoredErrors: [] + m_Parent: {fileID: 8926484042661614534} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 8926484042661614534} + m_MasterData: + m_Owner: {fileID: 0} + m_Value: + m_Type: + m_SerializableType: + m_SerializableObject: + m_Space: -1 + m_Property: + name: z + m_serializedType: + m_SerializableType: System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_Direction: 0 + m_LinkedSlots: [] +--- !u!114 &8926484042661614538 +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: 388ad3b1dc9c6ae45b630f914fab638f, type: 3} + m_Name: + m_EditorClassIdentifier: + m_UIIgnoredErrors: [] + m_Parent: {fileID: 0} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 +--- !u!114 &8926484042661614539 +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: f05c6884b705ce14d82ae720f0ec209f, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.VFXSpawnerConstantRate + m_UIIgnoredErrors: [] + m_Parent: {fileID: 114023846229194376} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 0 + m_UISuperCollapsed: 0 + m_InputSlots: + - {fileID: 8926484042661614540} + m_OutputSlots: [] + m_Disabled: 0 + m_ActivationSlot: {fileID: 8926484042661614541} +--- !u!114 &8926484042661614540 +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: f780aa281814f9842a7c076d436932e7, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.VFXSlotFloat + m_UIIgnoredErrors: [] + m_Parent: {fileID: 0} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 8926484042661614540} + m_MasterData: + m_Owner: {fileID: 8926484042661614539} + m_Value: + m_Type: + m_SerializableType: System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_SerializableObject: 1600000 + m_Space: -1 + m_Property: + name: Rate + m_serializedType: + m_SerializableType: System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_Direction: 0 + m_LinkedSlots: [] +--- !u!114 &8926484042661614541 +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: b4c11ff25089a324daf359f4b0629b33, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.VFXSlotBool + m_UIIgnoredErrors: [] + m_Parent: {fileID: 0} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 8926484042661614541} + m_MasterData: + m_Owner: {fileID: 8926484042661614539} + m_Value: + m_Type: + m_SerializableType: System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_SerializableObject: True + m_Space: -1 + m_Property: + name: _vfx_enabled + m_serializedType: + m_SerializableType: System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_Direction: 0 + m_LinkedSlots: [] +--- !u!114 &8926484042661614542 +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: a971fa2e110a0ac42ac1d8dae408704b, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.Block.SetAttribute + m_UIIgnoredErrors: [] + m_Parent: {fileID: 114946465509916290} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 0 + m_UISuperCollapsed: 0 + m_InputSlots: + - {fileID: 8926484042661614543} + m_OutputSlots: [] + m_Disabled: 0 + m_ActivationSlot: {fileID: 8926484042661614544} + attribute: size + Composition: 0 + Source: 0 + Random: 0 + channels: 6 +--- !u!114 &8926484042661614543 +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: f780aa281814f9842a7c076d436932e7, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.VFXSlotFloat + m_UIIgnoredErrors: [] + m_Parent: {fileID: 0} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 8926484042661614543} + m_MasterData: + m_Owner: {fileID: 8926484042661614542} + m_Value: + m_Type: + m_SerializableType: System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_SerializableObject: 0.01 + m_Space: -1 + m_Property: + name: _Size + m_serializedType: + m_SerializableType: System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_Direction: 0 + m_LinkedSlots: [] +--- !u!114 &8926484042661614544 +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: b4c11ff25089a324daf359f4b0629b33, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.VFXSlotBool + m_UIIgnoredErrors: [] + m_Parent: {fileID: 0} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 8926484042661614544} + m_MasterData: + m_Owner: {fileID: 8926484042661614542} + m_Value: + m_Type: + m_SerializableType: System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_SerializableObject: True + m_Space: -1 + m_Property: + name: _vfx_enabled + m_serializedType: + m_SerializableType: System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_Direction: 0 + m_LinkedSlots: [] +--- !u!114 &8926484042661614548 +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: ee5e80e50a3ba6147ad69984abfdf6b3, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.Block.PositionMesh + m_UIIgnoredErrors: [] + m_Parent: {fileID: 114946465509916290} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 0 + m_UISuperCollapsed: 0 + m_InputSlots: + - {fileID: 8926484042661614549} + - {fileID: 8926484042661614550} + m_OutputSlots: [] + m_Disabled: 0 + m_ActivationSlot: {fileID: 8926484042661614563} + compositionPosition: 0 + compositionAxes: 0 + compositionDirection: 0 + positionMode: 0 + spawnMode: 0 + mode: 1 + placementMode: 2 + surfaceCoordinates: 1 + sourceMesh: 1 + skinnedTransform: 1 + applyOrientation: 1 +--- !u!114 &8926484042661614549 +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: d66abc5b83d0f8f47a6d26c1af7be4b2, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.VFXSlotSkinnedMeshRenderer + m_UIIgnoredErrors: [] + m_Parent: {fileID: 0} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 8926484042661614549} + m_MasterData: + m_Owner: {fileID: 8926484042661614548} + m_Value: + m_Type: + m_SerializableType: UnityEngine.SkinnedMeshRenderer, UnityEngine.CoreModule, + Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + m_SerializableObject: + m_Space: -1 + m_Property: + name: skinnedMesh + m_serializedType: + m_SerializableType: UnityEngine.SkinnedMeshRenderer, UnityEngine.CoreModule, + Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + m_Direction: 0 + m_LinkedSlots: + - {fileID: 8926484042661614570} +--- !u!114 &8926484042661614550 +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: 3e3f628d80ffceb489beac74258f9cf7, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.VFXSlotTransform + m_UIIgnoredErrors: [] + m_Parent: {fileID: 0} + m_Children: + - {fileID: 8926484042661614551} + - {fileID: 8926484042661614555} + - {fileID: 8926484042661614559} + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 0 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 8926484042661614550} + m_MasterData: + m_Owner: {fileID: 8926484042661614548} + m_Value: + m_Type: + m_SerializableType: UnityEditor.VFX.Transform, Unity.VisualEffectGraph.Editor, + Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + m_SerializableObject: '{"position":{"x":0.0,"y":0.0,"z":0.0},"angles":{"x":0.0,"y":0.0,"z":0.0},"scale":{"x":1.0,"y":1.0,"z":1.0}}' + m_Space: 0 + m_Property: + name: transform + m_serializedType: + m_SerializableType: UnityEditor.VFX.Transform, Unity.VisualEffectGraph.Editor, + Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + m_Direction: 0 + m_LinkedSlots: [] +--- !u!114 &8926484042661614551 +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: ac39bd03fca81b849929b9c966f1836a, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.VFXSlotFloat3 + m_UIIgnoredErrors: [] + m_Parent: {fileID: 8926484042661614550} + m_Children: + - {fileID: 8926484042661614552} + - {fileID: 8926484042661614553} + - {fileID: 8926484042661614554} + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 0 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 8926484042661614550} + m_MasterData: + m_Owner: {fileID: 0} + m_Value: + m_Type: + m_SerializableType: + m_SerializableObject: + m_Space: -1 + m_Property: + name: position + m_serializedType: + m_SerializableType: UnityEngine.Vector3, UnityEngine.CoreModule, Version=0.0.0.0, + Culture=neutral, PublicKeyToken=null + m_Direction: 0 + m_LinkedSlots: + - {fileID: 8926484042661614575} +--- !u!114 &8926484042661614552 +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: f780aa281814f9842a7c076d436932e7, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.VFXSlotFloat + m_UIIgnoredErrors: [] + m_Parent: {fileID: 8926484042661614551} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 8926484042661614550} + m_MasterData: + m_Owner: {fileID: 0} + m_Value: + m_Type: + m_SerializableType: + m_SerializableObject: + m_Space: -1 + m_Property: + name: x + m_serializedType: + m_SerializableType: System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_Direction: 0 + m_LinkedSlots: [] +--- !u!114 &8926484042661614553 +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: f780aa281814f9842a7c076d436932e7, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.VFXSlotFloat + m_UIIgnoredErrors: [] + m_Parent: {fileID: 8926484042661614551} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 8926484042661614550} + m_MasterData: + m_Owner: {fileID: 0} + m_Value: + m_Type: + m_SerializableType: + m_SerializableObject: + m_Space: -1 + m_Property: + name: y + m_serializedType: + m_SerializableType: System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_Direction: 0 + m_LinkedSlots: [] +--- !u!114 &8926484042661614554 +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: f780aa281814f9842a7c076d436932e7, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.VFXSlotFloat + m_UIIgnoredErrors: [] + m_Parent: {fileID: 8926484042661614551} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 8926484042661614550} + m_MasterData: + m_Owner: {fileID: 0} + m_Value: + m_Type: + m_SerializableType: + m_SerializableObject: + m_Space: -1 + m_Property: + name: z + m_serializedType: + m_SerializableType: System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_Direction: 0 + m_LinkedSlots: [] +--- !u!114 &8926484042661614555 +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: ac39bd03fca81b849929b9c966f1836a, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.VFXSlotFloat3 + m_UIIgnoredErrors: [] + m_Parent: {fileID: 8926484042661614550} + m_Children: + - {fileID: 8926484042661614556} + - {fileID: 8926484042661614557} + - {fileID: 8926484042661614558} + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 0 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 8926484042661614550} + m_MasterData: + m_Owner: {fileID: 0} + m_Value: + m_Type: + m_SerializableType: + m_SerializableObject: + m_Space: -1 + m_Property: + name: angles + m_serializedType: + m_SerializableType: UnityEngine.Vector3, UnityEngine.CoreModule, Version=0.0.0.0, + Culture=neutral, PublicKeyToken=null + m_Direction: 0 + m_LinkedSlots: + - {fileID: 8926484042661614579} +--- !u!114 &8926484042661614556 +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: f780aa281814f9842a7c076d436932e7, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.VFXSlotFloat + m_UIIgnoredErrors: [] + m_Parent: {fileID: 8926484042661614555} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 8926484042661614550} + m_MasterData: + m_Owner: {fileID: 0} + m_Value: + m_Type: + m_SerializableType: + m_SerializableObject: + m_Space: -1 + m_Property: + name: x + m_serializedType: + m_SerializableType: System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_Direction: 0 + m_LinkedSlots: [] +--- !u!114 &8926484042661614557 +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: f780aa281814f9842a7c076d436932e7, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.VFXSlotFloat + m_UIIgnoredErrors: [] + m_Parent: {fileID: 8926484042661614555} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 8926484042661614550} + m_MasterData: + m_Owner: {fileID: 0} + m_Value: + m_Type: + m_SerializableType: + m_SerializableObject: + m_Space: -1 + m_Property: + name: y + m_serializedType: + m_SerializableType: System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_Direction: 0 + m_LinkedSlots: [] +--- !u!114 &8926484042661614558 +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: f780aa281814f9842a7c076d436932e7, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.VFXSlotFloat + m_UIIgnoredErrors: [] + m_Parent: {fileID: 8926484042661614555} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 8926484042661614550} + m_MasterData: + m_Owner: {fileID: 0} + m_Value: + m_Type: + m_SerializableType: + m_SerializableObject: + m_Space: -1 + m_Property: + name: z + m_serializedType: + m_SerializableType: System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_Direction: 0 + m_LinkedSlots: [] +--- !u!114 &8926484042661614559 +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: ac39bd03fca81b849929b9c966f1836a, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.VFXSlotFloat3 + m_UIIgnoredErrors: [] + m_Parent: {fileID: 8926484042661614550} + m_Children: + - {fileID: 8926484042661614560} + - {fileID: 8926484042661614561} + - {fileID: 8926484042661614562} + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 0 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 8926484042661614550} + m_MasterData: + m_Owner: {fileID: 0} + m_Value: + m_Type: + m_SerializableType: + m_SerializableObject: + m_Space: -1 + m_Property: + name: scale + m_serializedType: + m_SerializableType: UnityEngine.Vector3, UnityEngine.CoreModule, Version=0.0.0.0, + Culture=neutral, PublicKeyToken=null + m_Direction: 0 + m_LinkedSlots: [] +--- !u!114 &8926484042661614560 +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: f780aa281814f9842a7c076d436932e7, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.VFXSlotFloat + m_UIIgnoredErrors: [] + m_Parent: {fileID: 8926484042661614559} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 8926484042661614550} + m_MasterData: + m_Owner: {fileID: 0} + m_Value: + m_Type: + m_SerializableType: + m_SerializableObject: + m_Space: -1 + m_Property: + name: x + m_serializedType: + m_SerializableType: System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_Direction: 0 + m_LinkedSlots: [] +--- !u!114 &8926484042661614561 +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: f780aa281814f9842a7c076d436932e7, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.VFXSlotFloat + m_UIIgnoredErrors: [] + m_Parent: {fileID: 8926484042661614559} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 8926484042661614550} + m_MasterData: + m_Owner: {fileID: 0} + m_Value: + m_Type: + m_SerializableType: + m_SerializableObject: + m_Space: -1 + m_Property: + name: y + m_serializedType: + m_SerializableType: System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_Direction: 0 + m_LinkedSlots: [] +--- !u!114 &8926484042661614562 +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: f780aa281814f9842a7c076d436932e7, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.VFXSlotFloat + m_UIIgnoredErrors: [] + m_Parent: {fileID: 8926484042661614559} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 8926484042661614550} + m_MasterData: + m_Owner: {fileID: 0} + m_Value: + m_Type: + m_SerializableType: + m_SerializableObject: + m_Space: -1 + m_Property: + name: z + m_serializedType: + m_SerializableType: System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_Direction: 0 + m_LinkedSlots: [] +--- !u!114 &8926484042661614563 +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: b4c11ff25089a324daf359f4b0629b33, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.VFXSlotBool + m_UIIgnoredErrors: [] + m_Parent: {fileID: 0} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 8926484042661614563} + m_MasterData: + m_Owner: {fileID: 8926484042661614548} + m_Value: + m_Type: + m_SerializableType: System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_SerializableObject: True + m_Space: -1 + m_Property: + name: _vfx_enabled + m_serializedType: + m_SerializableType: System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_Direction: 0 + m_LinkedSlots: [] +--- !u!114 &8926484042661614564 +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: d16c6aeaef944094b9a1633041804207, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.Block.Orient + m_UIIgnoredErrors: [] + m_Parent: {fileID: 114063133802684794} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 0 + m_UISuperCollapsed: 0 + m_InputSlots: [] + m_OutputSlots: [] + m_Disabled: 0 + m_ActivationSlot: {fileID: 8926484042661614565} + mode: 0 + axes: 4 + faceRay: 1 +--- !u!114 &8926484042661614565 +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: b4c11ff25089a324daf359f4b0629b33, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.VFXSlotBool + m_UIIgnoredErrors: [] + m_Parent: {fileID: 0} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 8926484042661614565} + m_MasterData: + m_Owner: {fileID: 8926484042661614564} + m_Value: + m_Type: + m_SerializableType: System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_SerializableObject: True + m_Space: -1 + m_Property: + name: _vfx_enabled + m_serializedType: + m_SerializableType: System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_Direction: 0 + m_LinkedSlots: [] +--- !u!114 &8926484042661614566 +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: 01ec2c1930009b04ea08905b47262415, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.Block.AttributeFromCurve + m_UIIgnoredErrors: [] + m_Parent: {fileID: 114063133802684794} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 0 + m_UISuperCollapsed: 0 + m_InputSlots: + - {fileID: 8926484042661614567} + m_OutputSlots: [] + m_Disabled: 0 + m_ActivationSlot: {fileID: 8926484042661614568} + attribute: color + Composition: 0 + AlphaComposition: 0 + SampleMode: 0 + Mode: 1 + ColorMode: 3 + channels: 6 +--- !u!114 &8926484042661614567 +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: 76f778ff57c4e8145b9681fe3268d8e9, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.VFXSlotGradient + m_UIIgnoredErrors: [] + m_Parent: {fileID: 0} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 8926484042661614567} + m_MasterData: + m_Owner: {fileID: 8926484042661614566} + m_Value: + m_Type: + m_SerializableType: UnityEngine.Gradient, UnityEngine.CoreModule, Version=0.0.0.0, + Culture=neutral, PublicKeyToken=null + m_SerializableObject: '{"colorKeys":[{"color":{"r":0.7208971977233887,"g":0.9345566034317017,"b":3.396226406097412,"a":1.0},"time":0.0},{"color":{"r":1.0,"g":1.0,"b":1.0,"a":1.0},"time":1.0}],"alphaKeys":[{"alpha":0.0,"time":0.0},{"alpha":1.0,"time":0.10000763088464737},{"alpha":0.800000011920929,"time":0.800000011920929},{"alpha":0.0,"time":1.0}],"gradientMode":0}' + m_Space: -1 + m_Property: + name: Color + m_serializedType: + m_SerializableType: UnityEngine.Gradient, UnityEngine.CoreModule, Version=0.0.0.0, + Culture=neutral, PublicKeyToken=null + m_Direction: 0 + m_LinkedSlots: [] +--- !u!114 &8926484042661614568 +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: b4c11ff25089a324daf359f4b0629b33, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.VFXSlotBool + m_UIIgnoredErrors: [] + m_Parent: {fileID: 0} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 8926484042661614568} + m_MasterData: + m_Owner: {fileID: 8926484042661614566} + m_Value: + m_Type: + m_SerializableType: System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_SerializableObject: True + m_Space: -1 + m_Property: + name: _vfx_enabled + m_serializedType: + m_SerializableType: System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_Direction: 0 + m_LinkedSlots: [] +--- !u!114 &8926484042661614569 +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: 330e0fca1717dde4aaa144f48232aa64, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.VFXParameter + m_UIIgnoredErrors: [] + m_Parent: {fileID: 114350483966674976} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 0 + m_UISuperCollapsed: 0 + m_InputSlots: [] + m_OutputSlots: + - {fileID: 8926484042661614570} + m_ExposedName: New Skinned Mesh Renderer + m_Exposed: 1 + m_Order: 0 + m_Category: + m_Min: + m_Type: + m_SerializableType: + m_SerializableObject: + m_Max: + m_Type: + m_SerializableType: + m_SerializableObject: + m_IsOutput: 0 + m_EnumValues: [] + m_ValueFilter: 0 + m_Tooltip: + m_Nodes: + - m_Id: 0 + linkedSlots: + - outputSlot: {fileID: 8926484042661614570} + inputSlot: {fileID: 8926484042661614549} + position: {x: 335, y: 110} + expandedSlots: [] + expanded: 1 + supecollapsed: 0 +--- !u!114 &8926484042661614570 +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: d66abc5b83d0f8f47a6d26c1af7be4b2, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.VFXSlotSkinnedMeshRenderer + m_UIIgnoredErrors: [] + m_Parent: {fileID: 0} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 8926484042661614570} + m_MasterData: + m_Owner: {fileID: 8926484042661614569} + m_Value: + m_Type: + m_SerializableType: UnityEngine.SkinnedMeshRenderer, UnityEngine.CoreModule, + Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + m_SerializableObject: + m_Space: -1 + m_Property: + name: o + m_serializedType: + m_SerializableType: UnityEngine.SkinnedMeshRenderer, UnityEngine.CoreModule, + Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + m_Direction: 1 + m_LinkedSlots: + - {fileID: 8926484042661614549} +--- !u!114 &8926484042661614571 +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: f780aa281814f9842a7c076d436932e7, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.VFXSlotFloat + m_UIIgnoredErrors: [] + m_Parent: {fileID: 0} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 8926484042661614571} + m_MasterData: + m_Owner: {fileID: 114063133802684794} + m_Value: + m_Type: + m_SerializableType: System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_SerializableObject: 1 + m_Space: -1 + m_Property: + name: softParticleFadeDistance + m_serializedType: + m_SerializableType: System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_Direction: 0 + m_LinkedSlots: [] +--- !u!114 &8926484042661614573 +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: 330e0fca1717dde4aaa144f48232aa64, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.VFXParameter + m_UIIgnoredErrors: [] + m_Parent: {fileID: 114350483966674976} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_InputSlots: [] + m_OutputSlots: + - {fileID: 8926484042661614574} + m_ExposedName: New Transform + m_Exposed: 1 + m_Order: 1 + m_Category: + m_Min: + m_Type: + m_SerializableType: + m_SerializableObject: + m_Max: + m_Type: + m_SerializableType: + m_SerializableObject: + m_IsOutput: 0 + m_EnumValues: [] + m_ValueFilter: 0 + m_Tooltip: + m_Nodes: + - m_Id: 0 + linkedSlots: + - outputSlot: {fileID: 8926484042661614575} + inputSlot: {fileID: 8926484042661614551} + - outputSlot: {fileID: 8926484042661614579} + inputSlot: {fileID: 8926484042661614555} + position: {x: 413, y: 377} + expandedSlots: + - {fileID: 8926484042661614574} + expanded: 1 + supecollapsed: 0 +--- !u!114 &8926484042661614574 +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: 3e3f628d80ffceb489beac74258f9cf7, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.VFXSlotTransform + m_UIIgnoredErrors: [] + m_Parent: {fileID: 0} + m_Children: + - {fileID: 8926484042661614575} + - {fileID: 8926484042661614579} + - {fileID: 8926484042661614583} + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 8926484042661614574} + m_MasterData: + m_Owner: {fileID: 8926484042661614573} + m_Value: + m_Type: + m_SerializableType: UnityEditor.VFX.Transform, Unity.VisualEffectGraph.Editor, + Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + m_SerializableObject: '{"position":{"x":0.0,"y":0.0,"z":0.0},"angles":{"x":0.0,"y":0.0,"z":0.0},"scale":{"x":1.0,"y":1.0,"z":1.0}}' + m_Space: 0 + m_Property: + name: o + m_serializedType: + m_SerializableType: UnityEditor.VFX.Transform, Unity.VisualEffectGraph.Editor, + Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + m_Direction: 1 + m_LinkedSlots: [] +--- !u!114 &8926484042661614575 +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: ac39bd03fca81b849929b9c966f1836a, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.VFXSlotFloat3 + m_UIIgnoredErrors: [] + m_Parent: {fileID: 8926484042661614574} + m_Children: + - {fileID: 8926484042661614576} + - {fileID: 8926484042661614577} + - {fileID: 8926484042661614578} + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 8926484042661614574} + m_MasterData: + m_Owner: {fileID: 0} + m_Value: + m_Type: + m_SerializableType: + m_SerializableObject: + m_Space: -1 + m_Property: + name: position + m_serializedType: + m_SerializableType: UnityEngine.Vector3, UnityEngine.CoreModule, Version=0.0.0.0, + Culture=neutral, PublicKeyToken=null + m_Direction: 1 + m_LinkedSlots: + - {fileID: 8926484042661614551} +--- !u!114 &8926484042661614576 +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: f780aa281814f9842a7c076d436932e7, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.VFXSlotFloat + m_UIIgnoredErrors: [] + m_Parent: {fileID: 8926484042661614575} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 8926484042661614574} + m_MasterData: + m_Owner: {fileID: 0} + m_Value: + m_Type: + m_SerializableType: + m_SerializableObject: + m_Space: -1 + m_Property: + name: x + m_serializedType: + m_SerializableType: System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_Direction: 1 + m_LinkedSlots: [] +--- !u!114 &8926484042661614577 +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: f780aa281814f9842a7c076d436932e7, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.VFXSlotFloat + m_UIIgnoredErrors: [] + m_Parent: {fileID: 8926484042661614575} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 8926484042661614574} + m_MasterData: + m_Owner: {fileID: 0} + m_Value: + m_Type: + m_SerializableType: + m_SerializableObject: + m_Space: -1 + m_Property: + name: y + m_serializedType: + m_SerializableType: System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_Direction: 1 + m_LinkedSlots: [] +--- !u!114 &8926484042661614578 +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: f780aa281814f9842a7c076d436932e7, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.VFXSlotFloat + m_UIIgnoredErrors: [] + m_Parent: {fileID: 8926484042661614575} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 8926484042661614574} + m_MasterData: + m_Owner: {fileID: 0} + m_Value: + m_Type: + m_SerializableType: + m_SerializableObject: + m_Space: -1 + m_Property: + name: z + m_serializedType: + m_SerializableType: System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_Direction: 1 + m_LinkedSlots: [] +--- !u!114 &8926484042661614579 +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: ac39bd03fca81b849929b9c966f1836a, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.VFXSlotFloat3 + m_UIIgnoredErrors: [] + m_Parent: {fileID: 8926484042661614574} + m_Children: + - {fileID: 8926484042661614580} + - {fileID: 8926484042661614581} + - {fileID: 8926484042661614582} + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 8926484042661614574} + m_MasterData: + m_Owner: {fileID: 0} + m_Value: + m_Type: + m_SerializableType: + m_SerializableObject: + m_Space: -1 + m_Property: + name: angles + m_serializedType: + m_SerializableType: UnityEngine.Vector3, UnityEngine.CoreModule, Version=0.0.0.0, + Culture=neutral, PublicKeyToken=null + m_Direction: 1 + m_LinkedSlots: + - {fileID: 8926484042661614555} +--- !u!114 &8926484042661614580 +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: f780aa281814f9842a7c076d436932e7, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.VFXSlotFloat + m_UIIgnoredErrors: [] + m_Parent: {fileID: 8926484042661614579} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 8926484042661614574} + m_MasterData: + m_Owner: {fileID: 0} + m_Value: + m_Type: + m_SerializableType: + m_SerializableObject: + m_Space: -1 + m_Property: + name: x + m_serializedType: + m_SerializableType: System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_Direction: 1 + m_LinkedSlots: [] +--- !u!114 &8926484042661614581 +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: f780aa281814f9842a7c076d436932e7, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.VFXSlotFloat + m_UIIgnoredErrors: [] + m_Parent: {fileID: 8926484042661614579} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 8926484042661614574} + m_MasterData: + m_Owner: {fileID: 0} + m_Value: + m_Type: + m_SerializableType: + m_SerializableObject: + m_Space: -1 + m_Property: + name: y + m_serializedType: + m_SerializableType: System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_Direction: 1 + m_LinkedSlots: [] +--- !u!114 &8926484042661614582 +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: f780aa281814f9842a7c076d436932e7, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.VFXSlotFloat + m_UIIgnoredErrors: [] + m_Parent: {fileID: 8926484042661614579} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 8926484042661614574} + m_MasterData: + m_Owner: {fileID: 0} + m_Value: + m_Type: + m_SerializableType: + m_SerializableObject: + m_Space: -1 + m_Property: + name: z + m_serializedType: + m_SerializableType: System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_Direction: 1 + m_LinkedSlots: [] +--- !u!114 &8926484042661614583 +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: ac39bd03fca81b849929b9c966f1836a, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.VFXSlotFloat3 + m_UIIgnoredErrors: [] + m_Parent: {fileID: 8926484042661614574} + m_Children: + - {fileID: 8926484042661614584} + - {fileID: 8926484042661614585} + - {fileID: 8926484042661614586} + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 8926484042661614574} + m_MasterData: + m_Owner: {fileID: 0} + m_Value: + m_Type: + m_SerializableType: + m_SerializableObject: + m_Space: -1 + m_Property: + name: scale + m_serializedType: + m_SerializableType: UnityEngine.Vector3, UnityEngine.CoreModule, Version=0.0.0.0, + Culture=neutral, PublicKeyToken=null + m_Direction: 1 + m_LinkedSlots: [] +--- !u!114 &8926484042661614584 +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: f780aa281814f9842a7c076d436932e7, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.VFXSlotFloat + m_UIIgnoredErrors: [] + m_Parent: {fileID: 8926484042661614583} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 8926484042661614574} + m_MasterData: + m_Owner: {fileID: 0} + m_Value: + m_Type: + m_SerializableType: + m_SerializableObject: + m_Space: -1 + m_Property: + name: x + m_serializedType: + m_SerializableType: System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_Direction: 1 + m_LinkedSlots: [] +--- !u!114 &8926484042661614585 +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: f780aa281814f9842a7c076d436932e7, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.VFXSlotFloat + m_UIIgnoredErrors: [] + m_Parent: {fileID: 8926484042661614583} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 8926484042661614574} + m_MasterData: + m_Owner: {fileID: 0} + m_Value: + m_Type: + m_SerializableType: + m_SerializableObject: + m_Space: -1 + m_Property: + name: y + m_serializedType: + m_SerializableType: System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_Direction: 1 + m_LinkedSlots: [] +--- !u!114 &8926484042661614586 +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: f780aa281814f9842a7c076d436932e7, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.VFXSlotFloat + m_UIIgnoredErrors: [] + m_Parent: {fileID: 8926484042661614583} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 8926484042661614574} + m_MasterData: + m_Owner: {fileID: 0} + m_Value: + m_Type: + m_SerializableType: + m_SerializableObject: + m_Space: -1 + m_Property: + name: z + m_serializedType: + m_SerializableType: System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_Direction: 1 + m_LinkedSlots: [] +--- !u!114 &8926484042661614587 +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: a971fa2e110a0ac42ac1d8dae408704b, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.Block.SetAttribute + m_UIIgnoredErrors: [] + m_Parent: {fileID: 114946465509916290} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 0 + m_UISuperCollapsed: 0 + m_InputSlots: + - {fileID: 8926484042661614588} + - {fileID: 8926484042661614589} + m_OutputSlots: [] + m_Disabled: 0 + m_ActivationSlot: {fileID: 8926484042661614590} + attribute: lifetime + Composition: 0 + Source: 0 + Random: 2 + channels: 6 +--- !u!114 &8926484042661614588 +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: f780aa281814f9842a7c076d436932e7, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.VFXSlotFloat + m_UIIgnoredErrors: [] + m_Parent: {fileID: 0} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 8926484042661614588} + m_MasterData: + m_Owner: {fileID: 8926484042661614587} + m_Value: + m_Type: + m_SerializableType: System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_SerializableObject: 0.1 + m_Space: -1 + m_Property: + name: A + m_serializedType: + m_SerializableType: System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_Direction: 0 + m_LinkedSlots: [] +--- !u!114 &8926484042661614589 +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: f780aa281814f9842a7c076d436932e7, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.VFXSlotFloat + m_UIIgnoredErrors: [] + m_Parent: {fileID: 0} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 8926484042661614589} + m_MasterData: + m_Owner: {fileID: 8926484042661614587} + m_Value: + m_Type: + m_SerializableType: System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_SerializableObject: 5 + m_Space: -1 + m_Property: + name: B + m_serializedType: + m_SerializableType: System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_Direction: 0 + m_LinkedSlots: [] +--- !u!114 &8926484042661614590 +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: b4c11ff25089a324daf359f4b0629b33, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.VisualEffectGraph.Editor::UnityEditor.VFX.VFXSlotBool + m_UIIgnoredErrors: [] + m_Parent: {fileID: 0} + m_Children: [] + m_UIPosition: {x: 0, y: 0} + m_UICollapsed: 1 + m_UISuperCollapsed: 0 + m_MasterSlot: {fileID: 8926484042661614590} + m_MasterData: + m_Owner: {fileID: 8926484042661614587} + m_Value: + m_Type: + m_SerializableType: System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_SerializableObject: True + m_Space: -1 + m_Property: + name: _vfx_enabled + m_serializedType: + m_SerializableType: System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + m_Direction: 0 + m_LinkedSlots: [] diff --git a/Assets/04_Models/MazeRoom3Dmodel/MazeRoomEffectModel/zepeto/zepeto1.vfx.meta b/Assets/04_Models/MazeRoom3Dmodel/MazeRoomEffectModel/zepeto/zepeto1.vfx.meta new file mode 100644 index 00000000..7c85148d --- /dev/null +++ b/Assets/04_Models/MazeRoom3Dmodel/MazeRoomEffectModel/zepeto/zepeto1.vfx.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 82f1b099e4c38ce48b51f75ef2e0cb48 +VisualEffectImporter: + externalObjects: {} + serializedVersion: 2 + template: + name: + category: + description: + icon: {instanceID: 0} + thumbnail: {instanceID: 0} + useAsTemplate: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Models/MazeRoom3Dmodel/MazeRoomEffectModel/zepeto/zepetoController.controller b/Assets/04_Models/MazeRoom3Dmodel/MazeRoomEffectModel/zepeto/zepetoController.controller new file mode 100644 index 00000000..4d8929aa --- /dev/null +++ b/Assets/04_Models/MazeRoom3Dmodel/MazeRoomEffectModel/zepeto/zepetoController.controller @@ -0,0 +1,176 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1102 &-8732849399143162299 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Joy + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: [] + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: -203655887218126122, guid: c5f35713abc8f5646954800d7ec085fd, type: 3} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &-7622370358278079790 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Walking + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: + - {fileID: 1741460660016092104} + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: -203655887218126122, guid: ae56668d6f1234244b3a544da81dca58, type: 3} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1107 &-5039801920370917755 +AnimatorStateMachine: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Base Layer + m_ChildStates: + - serializedVersion: 1 + m_State: {fileID: -7622370358278079790} + m_Position: {x: 30, y: 210, z: 0} + - serializedVersion: 1 + m_State: {fileID: 785775716436635782} + m_Position: {x: 30, y: 290, z: 0} + - serializedVersion: 1 + m_State: {fileID: -8732849399143162299} + m_Position: {x: 30, y: 370, z: 0} + m_ChildStateMachines: [] + m_AnyStateTransitions: [] + m_EntryTransitions: [] + m_StateMachineTransitions: {} + m_StateMachineBehaviours: [] + m_AnyStatePosition: {x: 50, y: 20, z: 0} + m_EntryPosition: {x: 50, y: 120, z: 0} + m_ExitPosition: {x: 800, y: 120, z: 0} + m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} + m_DefaultState: {fileID: -7622370358278079790} +--- !u!91 &9100000 +AnimatorController: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: zepetoController + serializedVersion: 5 + m_AnimatorParameters: [] + m_AnimatorLayers: + - serializedVersion: 5 + m_Name: Base Layer + m_StateMachine: {fileID: -5039801920370917755} + m_Mask: {fileID: 0} + m_Motions: [] + m_Behaviours: [] + m_BlendingMode: 0 + m_SyncedLayerIndex: -1 + m_DefaultWeight: 0 + m_IKPass: 0 + m_SyncedLayerAffectsTiming: 0 + m_Controller: {fileID: 9100000} +--- !u!1102 &785775716436635782 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Looking + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: + - {fileID: 8824387987699168019} + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: -203655887218126122, guid: 50c3c2d2d1f204c4093b760347108d64, type: 3} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1101 &1741460660016092104 +AnimatorStateTransition: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: + m_Conditions: [] + m_DstStateMachine: {fileID: 0} + m_DstState: {fileID: 785775716436635782} + m_Solo: 0 + m_Mute: 0 + m_IsExit: 0 + serializedVersion: 3 + m_TransitionDuration: 0.25 + m_TransitionOffset: 0 + m_ExitTime: 0.7580645 + m_HasExitTime: 1 + m_HasFixedDuration: 1 + m_InterruptionSource: 0 + m_OrderedInterruption: 1 + m_CanTransitionToSelf: 1 +--- !u!1101 &8824387987699168019 +AnimatorStateTransition: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: + m_Conditions: [] + m_DstStateMachine: {fileID: 0} + m_DstState: {fileID: -8732849399143162299} + m_Solo: 0 + m_Mute: 0 + m_IsExit: 0 + serializedVersion: 3 + m_TransitionDuration: 0.25 + m_TransitionOffset: 0 + m_ExitTime: 0.9375 + m_HasExitTime: 1 + m_HasFixedDuration: 1 + m_InterruptionSource: 0 + m_OrderedInterruption: 1 + m_CanTransitionToSelf: 1 diff --git a/Assets/04_Models/MazeRoom3Dmodel/MazeRoomEffectModel/zepeto/zepetoController.controller.meta b/Assets/04_Models/MazeRoom3Dmodel/MazeRoomEffectModel/zepeto/zepetoController.controller.meta new file mode 100644 index 00000000..b71dc0db --- /dev/null +++ b/Assets/04_Models/MazeRoom3Dmodel/MazeRoomEffectModel/zepeto/zepetoController.controller.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7a9aaba5cef19c94abdd6b7815be70f0 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 9100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Models/Objects/stone_hut_with_camp_fire.glb b/Assets/04_Models/Objects/stone_hut_with_camp_fire.glb new file mode 100644 index 00000000..e5d842a0 Binary files /dev/null and b/Assets/04_Models/Objects/stone_hut_with_camp_fire.glb differ diff --git a/Assets/04_Models/Objects/stone_hut_with_camp_fire.glb.meta b/Assets/04_Models/Objects/stone_hut_with_camp_fire.glb.meta new file mode 100644 index 00000000..6dd1a140 --- /dev/null +++ b/Assets/04_Models/Objects/stone_hut_with_camp_fire.glb.meta @@ -0,0 +1,28 @@ +fileFormatVersion: 2 +guid: 44bc951c8943f4642b0ef9dc7fb25204 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 715df9372183c47e389bb6e19fbc3b52, type: 3} + editorImportSettings: + generateSecondaryUVSet: 0 + importSettings: + nodeNameMethod: 1 + animationMethod: 2 + generateMipMaps: 1 + texturesReadable: 0 + defaultMinFilterMode: 9729 + defaultMagFilterMode: 9729 + anisotropicFilterLevel: 1 + instantiationSettings: + mask: -1 + layer: 0 + skinUpdateWhenOffscreen: 1 + lightIntensityFactor: 1 + sceneObjectCreation: 2 + assetDependencies: [] + reportItems: [] diff --git a/Assets/04_Models/UI/Dialog/WorldDialog.prefab b/Assets/04_Models/UI/Dialog/WorldDialog.prefab index 9fbf6f43..52a6197d 100644 --- a/Assets/04_Models/UI/Dialog/WorldDialog.prefab +++ b/Assets/04_Models/UI/Dialog/WorldDialog.prefab @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d4d3681c755e436b42a8df87e96c14d3512f0de8e610926bd3d992fdf438b10d +oid sha256:4d388a3f860789c496ee0ed5d070cd418b700c815739b002bcbfd63f71cdc95a size 29490 diff --git a/Assets/04_Models/VRPlayer.prefab b/Assets/04_Models/VRPlayer.prefab index f41488d8..4b9202b9 100644 --- a/Assets/04_Models/VRPlayer.prefab +++ b/Assets/04_Models/VRPlayer.prefab @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:85ecc5b5afdbe06f6273b4192c98862bf385d30b2f585e914ee7a878776fdbbf -size 106540 +oid sha256:d8d8dff5e3cd0c29cd86ccb70104c075b598ed1702ad010112c265f06e52ca2b +size 163330 diff --git a/Assets/07_Data/Communication/DialogGraph/CatsRoom/Fairy_CatsRoom_Area1.wdg b/Assets/07_Data/Communication/DialogGraph/CatsRoom/Fairy_CatsRoom_Area1.wdg index f569dcfe..f4d0e219 100644 --- a/Assets/07_Data/Communication/DialogGraph/CatsRoom/Fairy_CatsRoom_Area1.wdg +++ b/Assets/07_Data/Communication/DialogGraph/CatsRoom/Fairy_CatsRoom_Area1.wdg @@ -368,9 +368,8 @@ MonoBehaviour: type: {class: 'Constant`1[[WhaleAdventure.Dialog.GraphTool.Editor.DialogText, Assembly-CSharp-Editor]]', ns: Unity.GraphToolkit.Editor, asm: Unity.GraphToolkit.Internal.Editor} data: m_Value: - Value: "\uB4E3\uAE30\uB85C\uB294 \uACE0\uC591\uC774\uB4E4\uC740 \uC0DD\uC120\uC744 - \uC88B\uC544\uD55C\uB2E4\uACE0 \uB4E4\uC5C8\uB294\uB370 \uB3C4\uC6C0\uC774 - \uB420\uC9C0\uB3C4 \uBAB0\uB77C." + Value: "\uACE0\uC591\uC774\uB4E4\uC740 \uC74C\uC545\uC744 \uC88B\uC544\uD55C\uB2E4\uACE0 + \uB4E4\uC5C8\uC5B4." - rid: 6595524353106116651 type: {class: 'Constant`1[[GestureData, Assembly-CSharp]]', ns: Unity.GraphToolkit.Editor, asm: Unity.GraphToolkit.Internal.Editor} data: diff --git a/Assets/07_Data/Communication/DialogGraph/CatsRoom/Fairy_CatsRoom_ClearArea.wdg b/Assets/07_Data/Communication/DialogGraph/CatsRoom/Fairy_CatsRoom_ClearArea.wdg index 4098c3f0..e117b658 100644 --- a/Assets/07_Data/Communication/DialogGraph/CatsRoom/Fairy_CatsRoom_ClearArea.wdg +++ b/Assets/07_Data/Communication/DialogGraph/CatsRoom/Fairy_CatsRoom_ClearArea.wdg @@ -280,8 +280,7 @@ MonoBehaviour: type: {class: 'Constant`1[[WhaleAdventure.Dialog.GraphTool.Editor.DialogText, Assembly-CSharp-Editor]]', ns: Unity.GraphToolkit.Editor, asm: Unity.GraphToolkit.Internal.Editor} data: m_Value: - Value: "\uB2E4\uC74C \uACF5\uAC04\uC73C\uB85C \uAC00\uB294 \uBB38\uC774 - \uC5F4\uB838\uC5B4." + Value: "\uB2E4\uC74C \uACF5\uAC04\uC73C\uB85C \uAC08 \uC218 \uC788\uC5B4." - rid: 6595524353106116640 type: {class: 'Constant`1[[GestureData, Assembly-CSharp]]', ns: Unity.GraphToolkit.Editor, asm: Unity.GraphToolkit.Internal.Editor} data: @@ -723,16 +722,16 @@ MonoBehaviour: - rid: 6595524374970761408 type: {class: 'Constant`1[[System.String, mscorlib]]', ns: Unity.GraphToolkit.Editor, asm: Unity.GraphToolkit.Internal.Editor} data: - m_Value: OpenDoor + m_Value: OpenDoor1 - rid: 6595524374970761409 type: {class: 'Constant`1[[System.String, mscorlib]]', ns: Unity.GraphToolkit.Editor, asm: Unity.GraphToolkit.Internal.Editor} data: - m_Value: OpenDoor + m_Value: OpenDoor2 - rid: 6595524374970761412 type: {class: 'Constant`1[[System.String, mscorlib]]', ns: Unity.GraphToolkit.Editor, asm: Unity.GraphToolkit.Internal.Editor} data: - m_Value: '{SpaceSceneCode1}' + m_Value: 1 - rid: 6595524374970761413 type: {class: 'Constant`1[[System.String, mscorlib]]', ns: Unity.GraphToolkit.Editor, asm: Unity.GraphToolkit.Internal.Editor} data: - m_Value: '{SpaceSceneCode2}' + m_Value: 2 diff --git a/Assets/07_Data/Communication/DialogGraph/MazeRoom.meta b/Assets/07_Data/Communication/DialogGraph/MazeRoom.meta new file mode 100644 index 00000000..b1f602b3 --- /dev/null +++ b/Assets/07_Data/Communication/DialogGraph/MazeRoom.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4ff0827653ed3624fb58cbe5adc6b3f0 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/07_Data/Communication/DialogGraph/MazeRoom/Fairy_MazeRoom_Area1.wdg b/Assets/07_Data/Communication/DialogGraph/MazeRoom/Fairy_MazeRoom_Area1.wdg new file mode 100644 index 00000000..56fd0011 --- /dev/null +++ b/Assets/07_Data/Communication/DialogGraph/MazeRoom/Fairy_MazeRoom_Area1.wdg @@ -0,0 +1,263 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &1 +MonoBehaviour: + m_ObjectHideFlags: 61 + 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: 790b4d75d92f4b0984310a268dbd952f, type: 3} + m_Name: Fairy_MazeRoom_Area1 + m_EditorClassIdentifier: Unity.GraphToolkit.Editor::Unity.GraphToolkit.Editor.Implementation.GraphObjectImp + m_GraphModel: + rid: 6595524353106116630 + references: + version: 2 + RefIds: + - rid: -2 + type: {class: , ns: , asm: } + - rid: 6595524353106116630 + type: {class: GraphModelImp, ns: Unity.GraphToolkit.Editor.Implementation, asm: Unity.GraphToolkit.Editor} + data: + m_Guid: + m_Value0: 13819889836145151562 + m_Value1: 2645381255326452780 + m_HashGuid: + serializedVersion: 2 + Hash: 4a8e76c6951ccabf2ccc35633c48b624 + m_Name: Fairy_MazeRoom_Area1 + m_GraphNodeModels: + - rid: 6595524353106116633 + - rid: 6595524353106116635 + m_GraphWireModels: + - rid: 6595524353106116636 + m_GraphStickyNoteModels: [] + m_GraphPlacematModels: [] + m_GraphVariableModels: [] + m_GraphPortalModels: [] + m_SectionModels: + - rid: 6595524353106116631 + m_LocalSubgraphs: [] + m_LastKnownBounds: + serializedVersion: 2 + x: 131 + y: 80 + width: 625 + height: 384 + m_GraphElementMetaData: + - m_Guid: + m_Value0: 14845512388065122572 + m_Value1: 17804268460506216482 + m_HashGuid: + serializedVersion: 2 + Hash: 0c5948afdcda05ce22f82972d57715f7 + m_Category: 0 + m_Index: 0 + - m_Guid: + m_Value0: 7989713923298697385 + m_Value1: 15604869423937906234 + m_HashGuid: + serializedVersion: 2 + Hash: a920365f7b2ae16e3a662c1c10a28fd8 + m_Category: 0 + m_Index: 1 + - m_Guid: + m_Value0: 5269650743910428719 + m_Value1: 257959026697812224 + m_HashGuid: + serializedVersion: 2 + Hash: 2f7027896e8f214900b9ed385e749403 + m_Category: 2 + m_Index: 0 + m_EntryPoint: + rid: 6595524353106116633 + m_Graph: + rid: 6595524353106116632 + - rid: 6595524353106116631 + type: {class: SectionModel, ns: Unity.GraphToolkit.Editor, asm: Unity.GraphToolkit.Internal.Editor} + data: + m_Guid: + m_Value0: 13482299192089173763 + m_Value1: 8100932157345530803 + m_HashGuid: + serializedVersion: 2 + Hash: 03df02d4aebf1abbb3831e64e04a6c70 + m_Version: 2 + m_Items: [] + m_Title: + - rid: 6595524353106116632 + type: {class: DialogGraph, ns: WhaleAdventure.Dialog.GraphTool.Editor, asm: Assembly-CSharp-Editor} + data: + - rid: 6595524353106116633 + type: {class: UserNodeModelImp, ns: Unity.GraphToolkit.Editor.Implementation, asm: Unity.GraphToolkit.Editor} + data: + m_Guid: + m_Value0: 14845512388065122572 + m_Value1: 17804268460506216482 + m_HashGuid: + serializedVersion: 2 + Hash: 0c5948afdcda05ce22f82972d57715f7 + m_Version: 2 + m_Position: {x: 131.26909, y: 137.42287} + m_Title: + m_Tooltip: + m_NodePreviewModel: + rid: -2 + m_State: 0 + m_InputConstantsById: + m_KeyList: [] + m_ValueList: [] + m_InputPortInfos: + expandedPortsById: + m_KeyList: [] + m_ValueList: + m_OutputPortInfos: + expandedPortsById: + m_KeyList: [] + m_ValueList: + m_Collapsed: 0 + m_CurrentModeIndex: 0 + m_ElementColor: + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_HasUserColor: 0 + m_Node: + rid: 6595524353106116634 + - rid: 6595524353106116634 + type: {class: DialogStartNode, ns: WhaleAdventure.Dialog.GraphTool.Editor, asm: Assembly-CSharp-Editor} + data: + - rid: 6595524353106116635 + type: {class: UserNodeModelImp, ns: Unity.GraphToolkit.Editor.Implementation, asm: Unity.GraphToolkit.Editor} + data: + m_Guid: + m_Value0: 7989713923298697385 + m_Value1: 15604869423937906234 + m_HashGuid: + serializedVersion: 2 + Hash: a920365f7b2ae16e3a662c1c10a28fd8 + m_Version: 2 + m_Position: {x: 417.10632, y: 80.29323} + m_Title: + m_Tooltip: + m_NodePreviewModel: + rid: -2 + m_State: 0 + m_InputConstantsById: + m_KeyList: + - __option_ChoiceCount + - Speaker + - TalkText + - Gesture + - Expression + - Voice + - LineDuration + - LookAtPlayer + - WaitForInput + - __option_EventKey + m_ValueList: + - rid: 6595524353106116637 + - rid: 6595524353106116638 + - rid: 6595524353106116639 + - rid: 6595524353106116640 + - rid: 6595524353106116641 + - rid: 6595524353106116642 + - rid: 6595524353106116643 + - rid: 6595524353106116644 + - rid: 6595524374970761386 + - rid: 6595524374970761398 + m_InputPortInfos: + expandedPortsById: + m_KeyList: [] + m_ValueList: + m_OutputPortInfos: + expandedPortsById: + m_KeyList: [] + m_ValueList: + m_Collapsed: 0 + m_CurrentModeIndex: 0 + m_ElementColor: + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_HasUserColor: 0 + m_Node: + rid: 6595524353106116645 + - rid: 6595524353106116636 + type: {class: WireModel, ns: Unity.GraphToolkit.Editor, asm: Unity.GraphToolkit.Internal.Editor} + data: + m_Guid: + m_Value0: 5269650743910428719 + m_Value1: 257959026697812224 + m_HashGuid: + serializedVersion: 2 + Hash: 2f7027896e8f214900b9ed385e749403 + m_Version: 2 + m_FromPortReference: + m_NodeModelGuid: + m_Value0: 14845512388065122572 + m_Value1: 17804268460506216482 + m_NodeModelHashGuid: + serializedVersion: 2 + Hash: 0c5948afdcda05ce22f82972d57715f7 + m_UniqueId: Out + m_PortDirection: 2 + m_PortOrientation: 0 + m_Title: + m_ToPortReference: + m_NodeModelGuid: + m_Value0: 7989713923298697385 + m_Value1: 15604869423937906234 + m_NodeModelHashGuid: + serializedVersion: 2 + Hash: a920365f7b2ae16e3a662c1c10a28fd8 + m_UniqueId: In + m_PortDirection: 1 + m_PortOrientation: 0 + m_Title: + - rid: 6595524353106116637 + type: {class: 'Constant`1[[System.Int32, mscorlib]]', ns: Unity.GraphToolkit.Editor, asm: Unity.GraphToolkit.Internal.Editor} + data: + m_Value: 0 + - rid: 6595524353106116638 + type: {class: 'Constant`1[[CharacterData, Assembly-CSharp]]', ns: Unity.GraphToolkit.Editor, asm: Unity.GraphToolkit.Internal.Editor} + data: + m_Value: {fileID: 11400000, guid: 816884903bb3c4d478520286d768c304, type: 2} + - rid: 6595524353106116639 + type: {class: 'Constant`1[[WhaleAdventure.Dialog.GraphTool.Editor.DialogText, Assembly-CSharp-Editor]]', ns: Unity.GraphToolkit.Editor, asm: Unity.GraphToolkit.Internal.Editor} + data: + m_Value: + Value: "\uC548\uB155 \uD53C\uB178\uD0A4\uC624. \uC5EC\uAE30\uAE4C\uC9C0 + \uC654\uAD6C\uB098. \uC774\uACF3\uC740 \uD611\uACE1\uC758 \uBBF8\uB85C\uC57C. + \uAE30\uC5B5\uC758 \uC870\uAC01\uC744 \uCC3E\uC544\uC11C \uB2E4\uC2DC + \uB9CC\uB098\uC790." + - rid: 6595524353106116640 + type: {class: 'Constant`1[[GestureData, Assembly-CSharp]]', ns: Unity.GraphToolkit.Editor, asm: Unity.GraphToolkit.Internal.Editor} + data: + m_Value: {fileID: 0} + - rid: 6595524353106116641 + type: {class: 'Constant`1[[ExpressionData, Assembly-CSharp]]', ns: Unity.GraphToolkit.Editor, asm: Unity.GraphToolkit.Internal.Editor} + data: + m_Value: {fileID: 0} + - rid: 6595524353106116642 + type: {class: 'Constant`1[[VoiceClip, Assembly-CSharp]]', ns: Unity.GraphToolkit.Editor, asm: Unity.GraphToolkit.Internal.Editor} + data: + m_Value: {fileID: 0} + - rid: 6595524353106116643 + type: {class: 'Constant`1[[System.Single, mscorlib]]', ns: Unity.GraphToolkit.Editor, asm: Unity.GraphToolkit.Internal.Editor} + data: + m_Value: 5 + - rid: 6595524353106116644 + type: {class: 'Constant`1[[System.Boolean, mscorlib]]', ns: Unity.GraphToolkit.Editor, asm: Unity.GraphToolkit.Internal.Editor} + data: + m_Value: 1 + - rid: 6595524353106116645 + type: {class: DialogLineNode, ns: WhaleAdventure.Dialog.GraphTool.Editor, asm: Assembly-CSharp-Editor} + data: + - rid: 6595524374970761386 + type: {class: 'Constant`1[[System.Boolean, mscorlib]]', ns: Unity.GraphToolkit.Editor, asm: Unity.GraphToolkit.Internal.Editor} + data: + m_Value: 0 + - rid: 6595524374970761398 + type: {class: 'Constant`1[[System.String, mscorlib]]', ns: Unity.GraphToolkit.Editor, asm: Unity.GraphToolkit.Internal.Editor} + data: + m_Value: diff --git a/Assets/07_Data/Communication/DialogGraph/MazeRoom/Fairy_MazeRoom_Area1.wdg.meta b/Assets/07_Data/Communication/DialogGraph/MazeRoom/Fairy_MazeRoom_Area1.wdg.meta new file mode 100644 index 00000000..267d67d2 --- /dev/null +++ b/Assets/07_Data/Communication/DialogGraph/MazeRoom/Fairy_MazeRoom_Area1.wdg.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: b863650b9984bf1459a1fdc04526f7f5 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 2ae5ca89bbed445479d9023586f0c041, type: 3} diff --git a/Assets/07_Data/Communication/DialogGraph/MazeRoom/Fairy_MazeRoom_ClearArea.wdg b/Assets/07_Data/Communication/DialogGraph/MazeRoom/Fairy_MazeRoom_ClearArea.wdg new file mode 100644 index 00000000..4e7a40b8 --- /dev/null +++ b/Assets/07_Data/Communication/DialogGraph/MazeRoom/Fairy_MazeRoom_ClearArea.wdg @@ -0,0 +1,737 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &1 +MonoBehaviour: + m_ObjectHideFlags: 61 + 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: 790b4d75d92f4b0984310a268dbd952f, type: 3} + m_Name: Fairy_MazeRoom_ClearArea + m_EditorClassIdentifier: Unity.GraphToolkit.Editor::Unity.GraphToolkit.Editor.Implementation.GraphObjectImp + m_GraphModel: + rid: 6595524353106116630 + references: + version: 2 + RefIds: + - rid: -2 + type: {class: , ns: , asm: } + - rid: 3968048971479253128 + type: {class: WireModel, ns: Unity.GraphToolkit.Editor, asm: Unity.GraphToolkit.Internal.Editor} + data: + m_Guid: + m_Value0: 10798192187907452387 + m_Value1: 10667399895293939646 + m_HashGuid: + serializedVersion: 2 + Hash: e32d9f6895e2da95becf08bcaf370a94 + m_Version: 2 + m_FromPortReference: + m_NodeModelGuid: + m_Value0: 7989713923298697385 + m_Value1: 15604869423937906234 + m_NodeModelHashGuid: + serializedVersion: 2 + Hash: a920365f7b2ae16e3a662c1c10a28fd8 + m_UniqueId: Out + m_PortDirection: 2 + m_PortOrientation: 0 + m_Title: + m_ToPortReference: + m_NodeModelGuid: + m_Value0: 7697830479301862552 + m_Value1: 13043115897654624489 + m_NodeModelHashGuid: + serializedVersion: 2 + Hash: 9864f63b0930d46ae940f4b3cd7402b5 + m_UniqueId: In + m_PortDirection: 1 + m_PortOrientation: 0 + m_Title: + - rid: 6595524353106116630 + type: {class: GraphModelImp, ns: Unity.GraphToolkit.Editor.Implementation, asm: Unity.GraphToolkit.Editor} + data: + m_Guid: + m_Value0: 13819889836145151562 + m_Value1: 2645381255326452780 + m_HashGuid: + serializedVersion: 2 + Hash: 4a8e76c6951ccabf2ccc35633c48b624 + m_Name: Fairy_MazeRoom_ClearArea + m_GraphNodeModels: + - rid: 6595524353106116633 + - rid: 6595524353106116635 + - rid: 6595524353106116646 + - rid: 6595524374970761358 + - rid: 6595524374970761369 + m_GraphWireModels: + - rid: 6595524353106116636 + - rid: 6595524374970761359 + - rid: 6595524374970761370 + - rid: 3968048971479253128 + m_GraphStickyNoteModels: [] + m_GraphPlacematModels: [] + m_GraphVariableModels: [] + m_GraphPortalModels: [] + m_SectionModels: + - rid: 6595524353106116631 + m_LocalSubgraphs: [] + m_LastKnownBounds: + serializedVersion: 2 + x: -112 + y: -41 + width: 1767 + height: 882 + m_GraphElementMetaData: + - m_Guid: + m_Value0: 14845512388065122572 + m_Value1: 17804268460506216482 + m_HashGuid: + serializedVersion: 2 + Hash: 0c5948afdcda05ce22f82972d57715f7 + m_Category: 0 + m_Index: 0 + - m_Guid: + m_Value0: 7989713923298697385 + m_Value1: 15604869423937906234 + m_HashGuid: + serializedVersion: 2 + Hash: a920365f7b2ae16e3a662c1c10a28fd8 + m_Category: 0 + m_Index: 1 + - m_Guid: + m_Value0: 5269650743910428719 + m_Value1: 257959026697812224 + m_HashGuid: + serializedVersion: 2 + Hash: 2f7027896e8f214900b9ed385e749403 + m_Category: 2 + m_Index: 0 + - m_Guid: + m_Value0: 7697830479301862552 + m_Value1: 13043115897654624489 + m_HashGuid: + serializedVersion: 2 + Hash: 9864f63b0930d46ae940f4b3cd7402b5 + m_Category: 0 + m_Index: 2 + - m_Guid: + m_Value0: 6309969824669224220 + m_Value1: 11825358839457157206 + m_HashGuid: + serializedVersion: 2 + Hash: 1ccdd7b61f84915756905e07361d1ca4 + m_Category: 0 + m_Index: 3 + - m_Guid: + m_Value0: 3397748348636220684 + m_Value1: 10317322138978035326 + m_HashGuid: + serializedVersion: 2 + Hash: 0ccda1fc1e3a272f7e260f67d27d2e8f + m_Category: 2 + m_Index: 1 + - m_Guid: + m_Value0: 14492247198202050630 + m_Value1: 8595945445982712313 + m_HashGuid: + serializedVersion: 2 + Hash: 46b8fb250bce1ec9f9b16f00d7ee4a77 + m_Category: 0 + m_Index: 4 + - m_Guid: + m_Value0: 4733159566535984953 + m_Value1: 16169765346515963957 + m_HashGuid: + serializedVersion: 2 + Hash: 39879e648c8faf413550815ce98b66e0 + m_Category: 2 + m_Index: 2 + - m_Guid: + m_Value0: 10798192187907452387 + m_Value1: 10667399895293939646 + m_HashGuid: + serializedVersion: 2 + Hash: e32d9f6895e2da95becf08bcaf370a94 + m_Category: 2 + m_Index: 3 + m_EntryPoint: + rid: 6595524353106116633 + m_Graph: + rid: 6595524353106116632 + - rid: 6595524353106116631 + type: {class: SectionModel, ns: Unity.GraphToolkit.Editor, asm: Unity.GraphToolkit.Internal.Editor} + data: + m_Guid: + m_Value0: 13482299192089173763 + m_Value1: 8100932157345530803 + m_HashGuid: + serializedVersion: 2 + Hash: 03df02d4aebf1abbb3831e64e04a6c70 + m_Version: 2 + m_Items: [] + m_Title: + - rid: 6595524353106116632 + type: {class: DialogGraph, ns: WhaleAdventure.Dialog.GraphTool.Editor, asm: Assembly-CSharp-Editor} + data: + - rid: 6595524353106116633 + type: {class: UserNodeModelImp, ns: Unity.GraphToolkit.Editor.Implementation, asm: Unity.GraphToolkit.Editor} + data: + m_Guid: + m_Value0: 14845512388065122572 + m_Value1: 17804268460506216482 + m_HashGuid: + serializedVersion: 2 + Hash: 0c5948afdcda05ce22f82972d57715f7 + m_Version: 2 + m_Position: {x: -111.80914, y: 118.74901} + m_Title: + m_Tooltip: + m_NodePreviewModel: + rid: -2 + m_State: 0 + m_InputConstantsById: + m_KeyList: [] + m_ValueList: [] + m_InputPortInfos: + expandedPortsById: + m_KeyList: [] + m_ValueList: + m_OutputPortInfos: + expandedPortsById: + m_KeyList: [] + m_ValueList: + m_Collapsed: 0 + m_CurrentModeIndex: 0 + m_ElementColor: + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_HasUserColor: 0 + m_Node: + rid: 6595524353106116634 + - rid: 6595524353106116634 + type: {class: DialogStartNode, ns: WhaleAdventure.Dialog.GraphTool.Editor, asm: Assembly-CSharp-Editor} + data: + - rid: 6595524353106116635 + type: {class: UserNodeModelImp, ns: Unity.GraphToolkit.Editor.Implementation, asm: Unity.GraphToolkit.Editor} + data: + m_Guid: + m_Value0: 7989713923298697385 + m_Value1: 15604869423937906234 + m_HashGuid: + serializedVersion: 2 + Hash: a920365f7b2ae16e3a662c1c10a28fd8 + m_Version: 2 + m_Position: {x: 301.8961, y: 88.74901} + m_Title: + m_Tooltip: + m_NodePreviewModel: + rid: -2 + m_State: 0 + m_InputConstantsById: + m_KeyList: + - __option_ChoiceCount + - Speaker + - TalkText + - Gesture + - Expression + - Voice + - LineDuration + - LookAtPlayer + - WaitForInput + - __option_EventKey + m_ValueList: + - rid: 6595524353106116637 + - rid: 6595524353106116638 + - rid: 6595524353106116639 + - rid: 6595524353106116640 + - rid: 6595524353106116641 + - rid: 6595524353106116642 + - rid: 6595524353106116643 + - rid: 6595524353106116644 + - rid: 6595524374970761380 + - rid: 6595524374970761406 + m_InputPortInfos: + expandedPortsById: + m_KeyList: [] + m_ValueList: + m_OutputPortInfos: + expandedPortsById: + m_KeyList: [] + m_ValueList: + m_Collapsed: 0 + m_CurrentModeIndex: 0 + m_ElementColor: + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_HasUserColor: 0 + m_Node: + rid: 6595524353106116645 + - rid: 6595524353106116636 + type: {class: WireModel, ns: Unity.GraphToolkit.Editor, asm: Unity.GraphToolkit.Internal.Editor} + data: + m_Guid: + m_Value0: 5269650743910428719 + m_Value1: 257959026697812224 + m_HashGuid: + serializedVersion: 2 + Hash: 2f7027896e8f214900b9ed385e749403 + m_Version: 2 + m_FromPortReference: + m_NodeModelGuid: + m_Value0: 14845512388065122572 + m_Value1: 17804268460506216482 + m_NodeModelHashGuid: + serializedVersion: 2 + Hash: 0c5948afdcda05ce22f82972d57715f7 + m_UniqueId: Out + m_PortDirection: 2 + m_PortOrientation: 0 + m_Title: + m_ToPortReference: + m_NodeModelGuid: + m_Value0: 7989713923298697385 + m_Value1: 15604869423937906234 + m_NodeModelHashGuid: + serializedVersion: 2 + Hash: a920365f7b2ae16e3a662c1c10a28fd8 + m_UniqueId: In + m_PortDirection: 1 + m_PortOrientation: 0 + m_Title: + - rid: 6595524353106116637 + type: {class: 'Constant`1[[System.Int32, mscorlib]]', ns: Unity.GraphToolkit.Editor, asm: Unity.GraphToolkit.Internal.Editor} + data: + m_Value: 0 + - rid: 6595524353106116638 + type: {class: 'Constant`1[[CharacterData, Assembly-CSharp]]', ns: Unity.GraphToolkit.Editor, asm: Unity.GraphToolkit.Internal.Editor} + data: + m_Value: {fileID: 11400000, guid: 816884903bb3c4d478520286d768c304, type: 2} + - rid: 6595524353106116639 + type: {class: 'Constant`1[[WhaleAdventure.Dialog.GraphTool.Editor.DialogText, Assembly-CSharp-Editor]]', ns: Unity.GraphToolkit.Editor, asm: Unity.GraphToolkit.Internal.Editor} + data: + m_Value: + Value: "\uB2E4\uC74C \uACF5\uAC04\uC73C\uB85C \uAC08 \uC218 \uC788\uC5B4." + - rid: 6595524353106116640 + type: {class: 'Constant`1[[GestureData, Assembly-CSharp]]', ns: Unity.GraphToolkit.Editor, asm: Unity.GraphToolkit.Internal.Editor} + data: + m_Value: {fileID: 0} + - rid: 6595524353106116641 + type: {class: 'Constant`1[[ExpressionData, Assembly-CSharp]]', ns: Unity.GraphToolkit.Editor, asm: Unity.GraphToolkit.Internal.Editor} + data: + m_Value: {fileID: 0} + - rid: 6595524353106116642 + type: {class: 'Constant`1[[VoiceClip, Assembly-CSharp]]', ns: Unity.GraphToolkit.Editor, asm: Unity.GraphToolkit.Internal.Editor} + data: + m_Value: {fileID: 0} + - rid: 6595524353106116643 + type: {class: 'Constant`1[[System.Single, mscorlib]]', ns: Unity.GraphToolkit.Editor, asm: Unity.GraphToolkit.Internal.Editor} + data: + m_Value: 5 + - rid: 6595524353106116644 + type: {class: 'Constant`1[[System.Boolean, mscorlib]]', ns: Unity.GraphToolkit.Editor, asm: Unity.GraphToolkit.Internal.Editor} + data: + m_Value: 1 + - rid: 6595524353106116645 + type: {class: DialogLineNode, ns: WhaleAdventure.Dialog.GraphTool.Editor, asm: Assembly-CSharp-Editor} + data: + - rid: 6595524353106116646 + type: {class: UserNodeModelImp, ns: Unity.GraphToolkit.Editor.Implementation, asm: Unity.GraphToolkit.Editor} + data: + m_Guid: + m_Value0: 7697830479301862552 + m_Value1: 13043115897654624489 + m_HashGuid: + serializedVersion: 2 + Hash: 9864f63b0930d46ae940f4b3cd7402b5 + m_Version: 2 + m_Position: {x: 808.30005, y: 85.15} + m_Title: + m_Tooltip: + m_NodePreviewModel: + rid: -2 + m_State: 0 + m_InputConstantsById: + m_KeyList: + - __option_ChoiceCount + - Speaker + - TalkText + - Gesture + - Expression + - Voice + - LineDuration + - LookAtPlayer + - ChoiceQuestion + - Choice0Text + - Choice1Text + - WaitForInput + - __option_EventKey + - Choice0Code + - Choice1Code + m_ValueList: + - rid: 6595524353106116648 + - rid: 6595524353106116649 + - rid: 6595524353106116650 + - rid: 6595524353106116651 + - rid: 6595524353106116652 + - rid: 6595524353106116653 + - rid: 6595524353106116654 + - rid: 6595524353106116655 + - rid: 6595524374970761341 + - rid: 6595524374970761342 + - rid: 6595524374970761343 + - rid: 6595524374970761381 + - rid: 6595524374970761407 + - rid: 6595524374970761412 + - rid: 6595524374970761413 + m_InputPortInfos: + expandedPortsById: + m_KeyList: [] + m_ValueList: + m_OutputPortInfos: + expandedPortsById: + m_KeyList: [] + m_ValueList: + m_Collapsed: 0 + m_CurrentModeIndex: 0 + m_ElementColor: + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_HasUserColor: 0 + m_Node: + rid: 6595524353106116656 + - rid: 6595524353106116648 + type: {class: 'Constant`1[[System.Int32, mscorlib]]', ns: Unity.GraphToolkit.Editor, asm: Unity.GraphToolkit.Internal.Editor} + data: + m_Value: 2 + - rid: 6595524353106116649 + type: {class: 'Constant`1[[CharacterData, Assembly-CSharp]]', ns: Unity.GraphToolkit.Editor, asm: Unity.GraphToolkit.Internal.Editor} + data: + m_Value: {fileID: 11400000, guid: 816884903bb3c4d478520286d768c304, type: 2} + - rid: 6595524353106116650 + type: {class: 'Constant`1[[WhaleAdventure.Dialog.GraphTool.Editor.DialogText, Assembly-CSharp-Editor]]', ns: Unity.GraphToolkit.Editor, asm: Unity.GraphToolkit.Internal.Editor} + data: + m_Value: + Value: "\uC5B4\uB290 \uACF5\uAC04\uC73C\uB85C \uC774\uB3D9\uD560\uB798?" + - rid: 6595524353106116651 + type: {class: 'Constant`1[[GestureData, Assembly-CSharp]]', ns: Unity.GraphToolkit.Editor, asm: Unity.GraphToolkit.Internal.Editor} + data: + m_Value: {fileID: 0} + - rid: 6595524353106116652 + type: {class: 'Constant`1[[ExpressionData, Assembly-CSharp]]', ns: Unity.GraphToolkit.Editor, asm: Unity.GraphToolkit.Internal.Editor} + data: + m_Value: {fileID: 0} + - rid: 6595524353106116653 + type: {class: 'Constant`1[[VoiceClip, Assembly-CSharp]]', ns: Unity.GraphToolkit.Editor, asm: Unity.GraphToolkit.Internal.Editor} + data: + m_Value: {fileID: 0} + - rid: 6595524353106116654 + type: {class: 'Constant`1[[System.Single, mscorlib]]', ns: Unity.GraphToolkit.Editor, asm: Unity.GraphToolkit.Internal.Editor} + data: + m_Value: 5 + - rid: 6595524353106116655 + type: {class: 'Constant`1[[System.Boolean, mscorlib]]', ns: Unity.GraphToolkit.Editor, asm: Unity.GraphToolkit.Internal.Editor} + data: + m_Value: 0 + - rid: 6595524353106116656 + type: {class: DialogLineNode, ns: WhaleAdventure.Dialog.GraphTool.Editor, asm: Assembly-CSharp-Editor} + data: + - rid: 6595524374970761341 + type: {class: 'Constant`1[[WhaleAdventure.Dialog.GraphTool.Editor.DialogText, Assembly-CSharp-Editor]]', ns: Unity.GraphToolkit.Editor, asm: Unity.GraphToolkit.Internal.Editor} + data: + m_Value: + Value: + - rid: 6595524374970761342 + type: {class: 'Constant`1[[WhaleAdventure.Dialog.GraphTool.Editor.DialogText, Assembly-CSharp-Editor]]', ns: Unity.GraphToolkit.Editor, asm: Unity.GraphToolkit.Internal.Editor} + data: + m_Value: + Value: '{SpaceSceneName1}' + - rid: 6595524374970761343 + type: {class: 'Constant`1[[WhaleAdventure.Dialog.GraphTool.Editor.DialogText, Assembly-CSharp-Editor]]', ns: Unity.GraphToolkit.Editor, asm: Unity.GraphToolkit.Internal.Editor} + data: + m_Value: + Value: '{SpaceSceneName2}' + - rid: 6595524374970761358 + type: {class: UserNodeModelImp, ns: Unity.GraphToolkit.Editor.Implementation, asm: Unity.GraphToolkit.Editor} + data: + m_Guid: + m_Value0: 6309969824669224220 + m_Value1: 11825358839457157206 + m_HashGuid: + serializedVersion: 2 + Hash: 1ccdd7b61f84915756905e07361d1ca4 + m_Version: 2 + m_Position: {x: 1315.6232, y: -40.787323} + m_Title: + m_Tooltip: + m_NodePreviewModel: + rid: -2 + m_State: 0 + m_InputConstantsById: + m_KeyList: + - __option_ChoiceCount + - Speaker + - TalkText + - Gesture + - Expression + - Voice + - LineDuration + - LookAtPlayer + - WaitForInput + - __option_EventKey + m_ValueList: + - rid: 6595524374970761360 + - rid: 6595524374970761361 + - rid: 6595524374970761362 + - rid: 6595524374970761363 + - rid: 6595524374970761364 + - rid: 6595524374970761365 + - rid: 6595524374970761366 + - rid: 6595524374970761367 + - rid: 6595524374970761382 + - rid: 6595524374970761408 + m_InputPortInfos: + expandedPortsById: + m_KeyList: [] + m_ValueList: + m_OutputPortInfos: + expandedPortsById: + m_KeyList: [] + m_ValueList: + m_Collapsed: 0 + m_CurrentModeIndex: 0 + m_ElementColor: + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_HasUserColor: 0 + m_Node: + rid: 6595524374970761368 + - rid: 6595524374970761359 + type: {class: WireModel, ns: Unity.GraphToolkit.Editor, asm: Unity.GraphToolkit.Internal.Editor} + data: + m_Guid: + m_Value0: 3397748348636220684 + m_Value1: 10317322138978035326 + m_HashGuid: + serializedVersion: 2 + Hash: 0ccda1fc1e3a272f7e260f67d27d2e8f + m_Version: 2 + m_FromPortReference: + m_NodeModelGuid: + m_Value0: 7697830479301862552 + m_Value1: 13043115897654624489 + m_NodeModelHashGuid: + serializedVersion: 2 + Hash: 9864f63b0930d46ae940f4b3cd7402b5 + m_UniqueId: Choice0Out + m_PortDirection: 2 + m_PortOrientation: 0 + m_Title: "Choice 1 \u2192" + m_ToPortReference: + m_NodeModelGuid: + m_Value0: 6309969824669224220 + m_Value1: 11825358839457157206 + m_NodeModelHashGuid: + serializedVersion: 2 + Hash: 1ccdd7b61f84915756905e07361d1ca4 + m_UniqueId: In + m_PortDirection: 1 + m_PortOrientation: 0 + m_Title: + - rid: 6595524374970761360 + type: {class: 'Constant`1[[System.Int32, mscorlib]]', ns: Unity.GraphToolkit.Editor, asm: Unity.GraphToolkit.Internal.Editor} + data: + m_Value: 0 + - rid: 6595524374970761361 + type: {class: 'Constant`1[[CharacterData, Assembly-CSharp]]', ns: Unity.GraphToolkit.Editor, asm: Unity.GraphToolkit.Internal.Editor} + data: + m_Value: {fileID: 11400000, guid: 816884903bb3c4d478520286d768c304, type: 2} + - rid: 6595524374970761362 + type: {class: 'Constant`1[[WhaleAdventure.Dialog.GraphTool.Editor.DialogText, Assembly-CSharp-Editor]]', ns: Unity.GraphToolkit.Editor, asm: Unity.GraphToolkit.Internal.Editor} + data: + m_Value: + Value: "\uC88B\uC544! {SpaceSceneName1}\uB85C \uC774\uB3D9\uD558\uC790." + - rid: 6595524374970761363 + type: {class: 'Constant`1[[GestureData, Assembly-CSharp]]', ns: Unity.GraphToolkit.Editor, asm: Unity.GraphToolkit.Internal.Editor} + data: + m_Value: {fileID: 0} + - rid: 6595524374970761364 + type: {class: 'Constant`1[[ExpressionData, Assembly-CSharp]]', ns: Unity.GraphToolkit.Editor, asm: Unity.GraphToolkit.Internal.Editor} + data: + m_Value: {fileID: 0} + - rid: 6595524374970761365 + type: {class: 'Constant`1[[VoiceClip, Assembly-CSharp]]', ns: Unity.GraphToolkit.Editor, asm: Unity.GraphToolkit.Internal.Editor} + data: + m_Value: {fileID: 0} + - rid: 6595524374970761366 + type: {class: 'Constant`1[[System.Single, mscorlib]]', ns: Unity.GraphToolkit.Editor, asm: Unity.GraphToolkit.Internal.Editor} + data: + m_Value: 5 + - rid: 6595524374970761367 + type: {class: 'Constant`1[[System.Boolean, mscorlib]]', ns: Unity.GraphToolkit.Editor, asm: Unity.GraphToolkit.Internal.Editor} + data: + m_Value: 0 + - rid: 6595524374970761368 + type: {class: DialogLineNode, ns: WhaleAdventure.Dialog.GraphTool.Editor, asm: Assembly-CSharp-Editor} + data: + - rid: 6595524374970761369 + type: {class: UserNodeModelImp, ns: Unity.GraphToolkit.Editor.Implementation, asm: Unity.GraphToolkit.Editor} + data: + m_Guid: + m_Value0: 14492247198202050630 + m_Value1: 8595945445982712313 + m_HashGuid: + serializedVersion: 2 + Hash: 46b8fb250bce1ec9f9b16f00d7ee4a77 + m_Version: 2 + m_Position: {x: 1314.8867, y: 457.07712} + m_Title: + m_Tooltip: + m_NodePreviewModel: + rid: -2 + m_State: 0 + m_InputConstantsById: + m_KeyList: + - __option_ChoiceCount + - Speaker + - TalkText + - Gesture + - Expression + - Voice + - LineDuration + - LookAtPlayer + - WaitForInput + - __option_EventKey + m_ValueList: + - rid: 6595524374970761371 + - rid: 6595524374970761372 + - rid: 6595524374970761373 + - rid: 6595524374970761374 + - rid: 6595524374970761375 + - rid: 6595524374970761376 + - rid: 6595524374970761377 + - rid: 6595524374970761378 + - rid: 6595524374970761383 + - rid: 6595524374970761409 + m_InputPortInfos: + expandedPortsById: + m_KeyList: [] + m_ValueList: + m_OutputPortInfos: + expandedPortsById: + m_KeyList: [] + m_ValueList: + m_Collapsed: 0 + m_CurrentModeIndex: 0 + m_ElementColor: + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_HasUserColor: 0 + m_Node: + rid: 6595524374970761379 + - rid: 6595524374970761370 + type: {class: WireModel, ns: Unity.GraphToolkit.Editor, asm: Unity.GraphToolkit.Internal.Editor} + data: + m_Guid: + m_Value0: 4733159566535984953 + m_Value1: 16169765346515963957 + m_HashGuid: + serializedVersion: 2 + Hash: 39879e648c8faf413550815ce98b66e0 + m_Version: 2 + m_FromPortReference: + m_NodeModelGuid: + m_Value0: 7697830479301862552 + m_Value1: 13043115897654624489 + m_NodeModelHashGuid: + serializedVersion: 2 + Hash: 9864f63b0930d46ae940f4b3cd7402b5 + m_UniqueId: Choice1Out + m_PortDirection: 2 + m_PortOrientation: 0 + m_Title: "Choice 2 \u2192" + m_ToPortReference: + m_NodeModelGuid: + m_Value0: 14492247198202050630 + m_Value1: 8595945445982712313 + m_NodeModelHashGuid: + serializedVersion: 2 + Hash: 46b8fb250bce1ec9f9b16f00d7ee4a77 + m_UniqueId: In + m_PortDirection: 1 + m_PortOrientation: 0 + m_Title: + - rid: 6595524374970761371 + type: {class: 'Constant`1[[System.Int32, mscorlib]]', ns: Unity.GraphToolkit.Editor, asm: Unity.GraphToolkit.Internal.Editor} + data: + m_Value: 0 + - rid: 6595524374970761372 + type: {class: 'Constant`1[[CharacterData, Assembly-CSharp]]', ns: Unity.GraphToolkit.Editor, asm: Unity.GraphToolkit.Internal.Editor} + data: + m_Value: {fileID: 11400000, guid: 816884903bb3c4d478520286d768c304, type: 2} + - rid: 6595524374970761373 + type: {class: 'Constant`1[[WhaleAdventure.Dialog.GraphTool.Editor.DialogText, Assembly-CSharp-Editor]]', ns: Unity.GraphToolkit.Editor, asm: Unity.GraphToolkit.Internal.Editor} + data: + m_Value: + Value: "\uC88B\uC544! {SpaceSceneName2}\uB85C \uC774\uB3D9\uD558\uC790." + - rid: 6595524374970761374 + type: {class: 'Constant`1[[GestureData, Assembly-CSharp]]', ns: Unity.GraphToolkit.Editor, asm: Unity.GraphToolkit.Internal.Editor} + data: + m_Value: {fileID: 0} + - rid: 6595524374970761375 + type: {class: 'Constant`1[[ExpressionData, Assembly-CSharp]]', ns: Unity.GraphToolkit.Editor, asm: Unity.GraphToolkit.Internal.Editor} + data: + m_Value: {fileID: 0} + - rid: 6595524374970761376 + type: {class: 'Constant`1[[VoiceClip, Assembly-CSharp]]', ns: Unity.GraphToolkit.Editor, asm: Unity.GraphToolkit.Internal.Editor} + data: + m_Value: {fileID: 0} + - rid: 6595524374970761377 + type: {class: 'Constant`1[[System.Single, mscorlib]]', ns: Unity.GraphToolkit.Editor, asm: Unity.GraphToolkit.Internal.Editor} + data: + m_Value: 5 + - rid: 6595524374970761378 + type: {class: 'Constant`1[[System.Boolean, mscorlib]]', ns: Unity.GraphToolkit.Editor, asm: Unity.GraphToolkit.Internal.Editor} + data: + m_Value: 0 + - rid: 6595524374970761379 + type: {class: DialogLineNode, ns: WhaleAdventure.Dialog.GraphTool.Editor, asm: Assembly-CSharp-Editor} + data: + - rid: 6595524374970761380 + type: {class: 'Constant`1[[System.Boolean, mscorlib]]', ns: Unity.GraphToolkit.Editor, asm: Unity.GraphToolkit.Internal.Editor} + data: + m_Value: 0 + - rid: 6595524374970761381 + type: {class: 'Constant`1[[System.Boolean, mscorlib]]', ns: Unity.GraphToolkit.Editor, asm: Unity.GraphToolkit.Internal.Editor} + data: + m_Value: 0 + - rid: 6595524374970761382 + type: {class: 'Constant`1[[System.Boolean, mscorlib]]', ns: Unity.GraphToolkit.Editor, asm: Unity.GraphToolkit.Internal.Editor} + data: + m_Value: 1 + - rid: 6595524374970761383 + type: {class: 'Constant`1[[System.Boolean, mscorlib]]', ns: Unity.GraphToolkit.Editor, asm: Unity.GraphToolkit.Internal.Editor} + data: + m_Value: 1 + - rid: 6595524374970761406 + type: {class: 'Constant`1[[System.String, mscorlib]]', ns: Unity.GraphToolkit.Editor, asm: Unity.GraphToolkit.Internal.Editor} + data: + m_Value: + - rid: 6595524374970761407 + type: {class: 'Constant`1[[System.String, mscorlib]]', ns: Unity.GraphToolkit.Editor, asm: Unity.GraphToolkit.Internal.Editor} + data: + m_Value: + - rid: 6595524374970761408 + type: {class: 'Constant`1[[System.String, mscorlib]]', ns: Unity.GraphToolkit.Editor, asm: Unity.GraphToolkit.Internal.Editor} + data: + m_Value: OpenDoor1 + - rid: 6595524374970761409 + type: {class: 'Constant`1[[System.String, mscorlib]]', ns: Unity.GraphToolkit.Editor, asm: Unity.GraphToolkit.Internal.Editor} + data: + m_Value: OpenDoor2 + - rid: 6595524374970761412 + type: {class: 'Constant`1[[System.String, mscorlib]]', ns: Unity.GraphToolkit.Editor, asm: Unity.GraphToolkit.Internal.Editor} + data: + m_Value: 1 + - rid: 6595524374970761413 + type: {class: 'Constant`1[[System.String, mscorlib]]', ns: Unity.GraphToolkit.Editor, asm: Unity.GraphToolkit.Internal.Editor} + data: + m_Value: 2 diff --git a/Assets/07_Data/Communication/DialogGraph/MazeRoom/Fairy_MazeRoom_ClearArea.wdg.meta b/Assets/07_Data/Communication/DialogGraph/MazeRoom/Fairy_MazeRoom_ClearArea.wdg.meta new file mode 100644 index 00000000..ecdfb735 --- /dev/null +++ b/Assets/07_Data/Communication/DialogGraph/MazeRoom/Fairy_MazeRoom_ClearArea.wdg.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: dd769599561912d4ab99b5464eb22c30 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 2ae5ca89bbed445479d9023586f0c041, type: 3} diff --git a/Assets/11_Audio/Source/SFX/Blip.wav b/Assets/10_FX/SFX/Blip.wav similarity index 100% rename from Assets/11_Audio/Source/SFX/Blip.wav rename to Assets/10_FX/SFX/Blip.wav diff --git a/Assets/11_Audio/Source/SFX/Blip.wav.meta b/Assets/10_FX/SFX/Blip.wav.meta similarity index 100% rename from Assets/11_Audio/Source/SFX/Blip.wav.meta rename to Assets/10_FX/SFX/Blip.wav.meta diff --git a/Assets/11_Audio/Source/SFX/PickupStar.wav b/Assets/10_FX/SFX/PickupStar.wav similarity index 100% rename from Assets/11_Audio/Source/SFX/PickupStar.wav rename to Assets/10_FX/SFX/PickupStar.wav diff --git a/Assets/11_Audio/Source/SFX/PickupStar.wav.meta b/Assets/10_FX/SFX/PickupStar.wav.meta similarity index 100% rename from Assets/11_Audio/Source/SFX/PickupStar.wav.meta rename to Assets/10_FX/SFX/PickupStar.wav.meta diff --git a/Assets/10_FX/SFX/StarField.mp3 b/Assets/10_FX/SFX/StarField.mp3 new file mode 100644 index 00000000..88a84e37 --- /dev/null +++ b/Assets/10_FX/SFX/StarField.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c7f1db6bba4dbd9133008691a2dc17d70f067216ccde45df5b35819c9c36951 +size 3840768 diff --git a/Assets/10_FX/SFX/StarField.mp3.meta b/Assets/10_FX/SFX/StarField.mp3.meta new file mode 100644 index 00000000..4f566abe --- /dev/null +++ b/Assets/10_FX/SFX/StarField.mp3.meta @@ -0,0 +1,23 @@ +fileFormatVersion: 2 +guid: 12d472c5c325f3243bbdb07467af766b +AudioImporter: + externalObjects: {} + serializedVersion: 8 + defaultSettings: + serializedVersion: 2 + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + preloadAudioData: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/11_Audio/Source/SFX/StartBlip.wav b/Assets/10_FX/SFX/StartBlip.wav similarity index 100% rename from Assets/11_Audio/Source/SFX/StartBlip.wav rename to Assets/10_FX/SFX/StartBlip.wav diff --git a/Assets/11_Audio/Source/SFX/StartBlip.wav.meta b/Assets/10_FX/SFX/StartBlip.wav.meta similarity index 100% rename from Assets/11_Audio/Source/SFX/StartBlip.wav.meta rename to Assets/10_FX/SFX/StartBlip.wav.meta diff --git a/Assets/10_FX/SFX/Success.mp3 b/Assets/10_FX/SFX/Success.mp3 new file mode 100644 index 00000000..ed25d371 --- /dev/null +++ b/Assets/10_FX/SFX/Success.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:698d9f57279045824ef4fbe4c7ec7eb0438b92c75a272fe2c839fdddf226cdc6 +size 67200 diff --git a/Assets/10_FX/SFX/Success.mp3.meta b/Assets/10_FX/SFX/Success.mp3.meta new file mode 100644 index 00000000..d535a042 --- /dev/null +++ b/Assets/10_FX/SFX/Success.mp3.meta @@ -0,0 +1,23 @@ +fileFormatVersion: 2 +guid: c377747ad59543945aeb4b5b57c8f0cf +AudioImporter: + externalObjects: {} + serializedVersion: 8 + defaultSettings: + serializedVersion: 2 + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + preloadAudioData: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/11_Audio/Source/BGM/MazeRoomSound.mp3 b/Assets/11_Audio/Source/BGM/MazeRoomSound.mp3 new file mode 100644 index 00000000..3d79a3cc --- /dev/null +++ b/Assets/11_Audio/Source/BGM/MazeRoomSound.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56b31f997020da1abd4092f5e82457592323717a23e4d560c5f8135d26c3b8be +size 6322668 diff --git a/Assets/11_Audio/Source/BGM/MazeRoomSound.mp3.meta b/Assets/11_Audio/Source/BGM/MazeRoomSound.mp3.meta new file mode 100644 index 00000000..fe725e68 --- /dev/null +++ b/Assets/11_Audio/Source/BGM/MazeRoomSound.mp3.meta @@ -0,0 +1,23 @@ +fileFormatVersion: 2 +guid: d2aa51f345ce99743b3b217bd6a43994 +AudioImporter: + externalObjects: {} + serializedVersion: 8 + defaultSettings: + serializedVersion: 2 + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + preloadAudioData: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/My project/Fonts/Pretendard-Black SDF.asset.meta b/Assets/My project/Fonts/Pretendard-Black SDF.asset.meta index 3e6e1530..e1c0a876 100644 --- a/Assets/My project/Fonts/Pretendard-Black SDF.asset.meta +++ b/Assets/My project/Fonts/Pretendard-Black SDF.asset.meta @@ -2,7 +2,7 @@ fileFormatVersion: 2 guid: 21ea34fc6d434e440882af6aa29c81c3 NativeFormatImporter: externalObjects: {} - mainObjectFileID: 11400000 + mainObjectFileID: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/New Terrain 1.asset b/Assets/New Terrain 1.asset new file mode 100644 index 00000000..4d956b74 --- /dev/null +++ b/Assets/New Terrain 1.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:368dbe6748851fdf60be88e380844e7ed88f532eb5476343fd04172c45b5cf1c +size 1958860 diff --git a/Assets/New Terrain 1.asset.meta b/Assets/New Terrain 1.asset.meta new file mode 100644 index 00000000..53b994d1 --- /dev/null +++ b/Assets/New Terrain 1.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d5fd6eed5b5a9b940b1db858e80950af +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 15600000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Piloto Studio/Materials/Arcane/ArcaneRing_Runes.mat b/Assets/Piloto Studio/Materials/Arcane/ArcaneRing_Runes.mat index f00c9907..87ff8908 100644 --- a/Assets/Piloto Studio/Materials/Arcane/ArcaneRing_Runes.mat +++ b/Assets/Piloto Studio/Materials/Arcane/ArcaneRing_Runes.mat @@ -68,6 +68,8 @@ Material: - MOTIONVECTORS - TransparentDepthPrepass - TransparentDepthPostpass + - DepthOnly + - SHADOWCASTER m_LockedProperties: m_SavedProperties: serializedVersion: 3 @@ -141,6 +143,7 @@ Material: - _DoubleSidedGIMode: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 1 + - _DstBlendAlpha: 1 - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 0 - _ExcludeFromTUAndAA: 0 @@ -153,7 +156,7 @@ Material: - _MiddlePointPos1: 0.5 - _MultiplyNoiseDesaturation: 1 - _OpaqueCullMode: 2 - - _QueueControl: -1 + - _QueueControl: 1 - _QueueOffset: 0 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 @@ -161,7 +164,8 @@ Material: - _RequireSplitLighting: 0 - _SoftFadeFactor: 0.1 - _SourceBlendRGB: 1 - - _SrcBlend: 1 + - _SrcBlend: 5 + - _SrcBlendAlpha: 1 - _StencilRef: 0 - _StencilRefDepth: 1 - _StencilRefDistortionVec: 4 diff --git a/Assets/Piloto Studio/Materials/Arcane/ArcaneRunes_Atlas.mat b/Assets/Piloto Studio/Materials/Arcane/ArcaneRunes_Atlas.mat index c0608ded..e631173c 100644 --- a/Assets/Piloto Studio/Materials/Arcane/ArcaneRunes_Atlas.mat +++ b/Assets/Piloto Studio/Materials/Arcane/ArcaneRunes_Atlas.mat @@ -57,6 +57,8 @@ Material: - MOTIONVECTORS - TransparentDepthPrepass - TransparentDepthPostpass + - DepthOnly + - SHADOWCASTER m_LockedProperties: m_SavedProperties: serializedVersion: 3 @@ -241,6 +243,7 @@ Material: - _DoubleSidedGIMode: 0 - _DoubleSidedNormalMode: 1 - _DstBlend: 10 + - _DstBlendAlpha: 10 - _EmissiveColorMode: 1 - _EmissiveExposureWeight: 1 - _EmissiveIntensity: 1 @@ -283,7 +286,7 @@ Material: - _PPDMinSamples: 5 - _PPDPrimitiveLength: 1 - _PPDPrimitiveWidth: 1 - - _QueueControl: -1 + - _QueueControl: 1 - _QueueOffset: 0 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 @@ -299,7 +302,8 @@ Material: - _SpecularAAScreenSpaceVariance: 0.1 - _SpecularAAThreshold: 0.2 - _SpecularOcclusionMode: 1 - - _SrcBlend: 1 + - _SrcBlend: 5 + - _SrcBlendAlpha: 1 - _StencilRef: 0 - _StencilRefDepth: 1 - _StencilRefDistortionVec: 4 diff --git a/Assets/Piloto Studio/Materials/Blood/BloodLiquid_Slow_thick.mat b/Assets/Piloto Studio/Materials/Blood/BloodLiquid_Slow_thick.mat index 97ae6394..1c3b18d7 100644 --- a/Assets/Piloto Studio/Materials/Blood/BloodLiquid_Slow_thick.mat +++ b/Assets/Piloto Studio/Materials/Blood/BloodLiquid_Slow_thick.mat @@ -57,6 +57,8 @@ Material: - MOTIONVECTORS - TransparentDepthPrepass - TransparentDepthPostpass + - DepthOnly + - SHADOWCASTER m_LockedProperties: m_SavedProperties: serializedVersion: 3 @@ -241,6 +243,7 @@ Material: - _DoubleSidedGIMode: 0 - _DoubleSidedNormalMode: 1 - _DstBlend: 10 + - _DstBlendAlpha: 10 - _EmissiveColorMode: 1 - _EmissiveExposureWeight: 1 - _EmissiveIntensity: 1 @@ -283,7 +286,7 @@ Material: - _PPDMinSamples: 5 - _PPDPrimitiveLength: 1 - _PPDPrimitiveWidth: 1 - - _QueueControl: -1 + - _QueueControl: 1 - _QueueOffset: 0 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 @@ -299,7 +302,8 @@ Material: - _SpecularAAScreenSpaceVariance: 0.1 - _SpecularAAThreshold: 0.2 - _SpecularOcclusionMode: 1 - - _SrcBlend: 1 + - _SrcBlend: 5 + - _SrcBlendAlpha: 1 - _StencilRef: 0 - _StencilRefDepth: 1 - _StencilRefDistortionVec: 4 diff --git a/Assets/Piloto Studio/Materials/Fire/FireNoise_NoFade_Alpha.mat b/Assets/Piloto Studio/Materials/Fire/FireNoise_NoFade_Alpha.mat index eff64e18..53bfe1f4 100644 --- a/Assets/Piloto Studio/Materials/Fire/FireNoise_NoFade_Alpha.mat +++ b/Assets/Piloto Studio/Materials/Fire/FireNoise_NoFade_Alpha.mat @@ -56,6 +56,8 @@ Material: - MOTIONVECTORS - TransparentDepthPrepass - TransparentDepthPostpass + - DepthOnly + - SHADOWCASTER m_LockedProperties: m_SavedProperties: serializedVersion: 3 @@ -240,6 +242,7 @@ Material: - _DoubleSidedGIMode: 0 - _DoubleSidedNormalMode: 1 - _DstBlend: 10 + - _DstBlendAlpha: 10 - _EmissiveColorMode: 1 - _EmissiveExposureWeight: 1 - _EmissiveIntensity: 1 @@ -282,7 +285,7 @@ Material: - _PPDMinSamples: 5 - _PPDPrimitiveLength: 1 - _PPDPrimitiveWidth: 1 - - _QueueControl: -1 + - _QueueControl: 1 - _QueueOffset: 0 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 @@ -298,7 +301,8 @@ Material: - _SpecularAAScreenSpaceVariance: 0.1 - _SpecularAAThreshold: 0.2 - _SpecularOcclusionMode: 1 - - _SrcBlend: 1 + - _SrcBlend: 5 + - _SrcBlendAlpha: 1 - _StencilRef: 0 - _StencilRefDepth: 1 - _StencilRefDistortionVec: 4 diff --git a/Assets/Piloto Studio/Materials/Fire/Fire_AlphaDistort_Ramped.mat b/Assets/Piloto Studio/Materials/Fire/Fire_AlphaDistort_Ramped.mat index 1fdb23e9..d02c6945 100644 --- a/Assets/Piloto Studio/Materials/Fire/Fire_AlphaDistort_Ramped.mat +++ b/Assets/Piloto Studio/Materials/Fire/Fire_AlphaDistort_Ramped.mat @@ -158,6 +158,7 @@ Material: - _DoubleSidedGIMode: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 + - _DstBlendAlpha: 10 - _DstBlendOutline: 10 - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 0 @@ -212,7 +213,8 @@ Material: - _SoftFadeFactor: 0 - _SourceBlendRGB: 10 - _SpecularHighlights: 1 - - _SrcBlend: 1 + - _SrcBlend: 5 + - _SrcBlendAlpha: 1 - _SrcBlendOutline: 1 - _StencilRef: 0 - _StencilRefDepth: 1 diff --git a/Assets/Piloto Studio/Materials/Fire/Fire_AlphaDistort_Ramped_Ice.mat b/Assets/Piloto Studio/Materials/Fire/Fire_AlphaDistort_Ramped_Ice.mat index 0dd6d47f..e8477cb5 100644 --- a/Assets/Piloto Studio/Materials/Fire/Fire_AlphaDistort_Ramped_Ice.mat +++ b/Assets/Piloto Studio/Materials/Fire/Fire_AlphaDistort_Ramped_Ice.mat @@ -54,6 +54,8 @@ Material: - TransparentBackface - TransparentDepthPrepass - TransparentDepthPostpass + - DepthOnly + - SHADOWCASTER m_LockedProperties: m_SavedProperties: serializedVersion: 3 @@ -144,6 +146,7 @@ Material: - _DoubleSidedGIMode: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 + - _DstBlendAlpha: 10 - _DstBlendOutline: 10 - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 0 @@ -178,7 +181,7 @@ Material: - _OpaqueCullMode: 2 - _Parallax: 0.02 - _PremultipliedRGBTexture: 1 - - _QueueControl: -1 + - _QueueControl: 1 - _QueueOffset: 0 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 @@ -197,7 +200,8 @@ Material: - _SoftFadeFactor: 0 - _SourceBlendRGB: 10 - _SpecularHighlights: 1 - - _SrcBlend: 1 + - _SrcBlend: 5 + - _SrcBlendAlpha: 1 - _SrcBlendOutline: 1 - _StencilRef: 0 - _StencilRefDepth: 1 diff --git a/Assets/Piloto Studio/Materials/Ghostly Mist & Dark/DarkOrb_Faded.mat b/Assets/Piloto Studio/Materials/Ghostly Mist & Dark/DarkOrb_Faded.mat index 262b1be2..64b70bee 100644 --- a/Assets/Piloto Studio/Materials/Ghostly Mist & Dark/DarkOrb_Faded.mat +++ b/Assets/Piloto Studio/Materials/Ghostly Mist & Dark/DarkOrb_Faded.mat @@ -44,6 +44,8 @@ Material: - MOTIONVECTORS - TransparentDepthPrepass - TransparentDepthPostpass + - DepthOnly + - SHADOWCASTER m_LockedProperties: m_SavedProperties: serializedVersion: 3 @@ -228,6 +230,7 @@ Material: - _DoubleSidedGIMode: 0 - _DoubleSidedNormalMode: 1 - _DstBlend: 10 + - _DstBlendAlpha: 10 - _EmissiveColorMode: 1 - _EmissiveExposureWeight: 1 - _EmissiveIntensity: 1 @@ -270,7 +273,7 @@ Material: - _PPDMinSamples: 5 - _PPDPrimitiveLength: 1 - _PPDPrimitiveWidth: 1 - - _QueueControl: -1 + - _QueueControl: 1 - _QueueOffset: 0 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 @@ -286,7 +289,8 @@ Material: - _SpecularAAScreenSpaceVariance: 0.1 - _SpecularAAThreshold: 0.2 - _SpecularOcclusionMode: 1 - - _SrcBlend: 1 + - _SrcBlend: 5 + - _SrcBlendAlpha: 1 - _StencilRef: 0 - _StencilRefDepth: 1 - _StencilRefDistortionVec: 4 diff --git a/Assets/Piloto Studio/Materials/Ghostly Mist & Dark/MistOrb.mat b/Assets/Piloto Studio/Materials/Ghostly Mist & Dark/MistOrb.mat index 84ee318d..6d40dd70 100644 --- a/Assets/Piloto Studio/Materials/Ghostly Mist & Dark/MistOrb.mat +++ b/Assets/Piloto Studio/Materials/Ghostly Mist & Dark/MistOrb.mat @@ -56,6 +56,8 @@ Material: - MOTIONVECTORS - TransparentDepthPrepass - TransparentDepthPostpass + - DepthOnly + - SHADOWCASTER m_LockedProperties: m_SavedProperties: serializedVersion: 3 @@ -240,6 +242,7 @@ Material: - _DoubleSidedGIMode: 0 - _DoubleSidedNormalMode: 1 - _DstBlend: 10 + - _DstBlendAlpha: 10 - _EmissiveColorMode: 1 - _EmissiveExposureWeight: 1 - _EmissiveIntensity: 1 @@ -282,7 +285,7 @@ Material: - _PPDMinSamples: 5 - _PPDPrimitiveLength: 1 - _PPDPrimitiveWidth: 1 - - _QueueControl: -1 + - _QueueControl: 1 - _QueueOffset: 0 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 @@ -298,7 +301,8 @@ Material: - _SpecularAAScreenSpaceVariance: 0.1 - _SpecularAAThreshold: 0.2 - _SpecularOcclusionMode: 1 - - _SrcBlend: 1 + - _SrcBlend: 5 + - _SrcBlendAlpha: 1 - _StencilRef: 0 - _StencilRefDepth: 1 - _StencilRefDistortionVec: 4 diff --git a/Assets/Piloto Studio/Materials/Holy/HolySmoke.mat b/Assets/Piloto Studio/Materials/Holy/HolySmoke.mat index 299e8399..d9e7027c 100644 --- a/Assets/Piloto Studio/Materials/Holy/HolySmoke.mat +++ b/Assets/Piloto Studio/Materials/Holy/HolySmoke.mat @@ -57,6 +57,8 @@ Material: - MOTIONVECTORS - TransparentDepthPrepass - TransparentDepthPostpass + - DepthOnly + - SHADOWCASTER m_LockedProperties: m_SavedProperties: serializedVersion: 3 @@ -130,6 +132,7 @@ Material: - _DoubleSidedGIMode: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 1 + - _DstBlendAlpha: 1 - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 0 - _ExcludeFromTUAndAA: 0 @@ -142,7 +145,7 @@ Material: - _MiddlePointPos1: 0.5 - _MultiplyNoiseDesaturation: 1 - _OpaqueCullMode: 2 - - _QueueControl: -1 + - _QueueControl: 1 - _QueueOffset: 0 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 @@ -150,7 +153,8 @@ Material: - _RequireSplitLighting: 0 - _SoftFadeFactor: 0.1 - _SourceBlendRGB: 1 - - _SrcBlend: 1 + - _SrcBlend: 5 + - _SrcBlendAlpha: 1 - _StencilRef: 0 - _StencilRefDepth: 1 - _StencilRefDistortionVec: 4 diff --git a/Assets/Piloto Studio/Materials/Holy/HolyStar_Alpha.mat b/Assets/Piloto Studio/Materials/Holy/HolyStar_Alpha.mat index 5f8afe71..062948f4 100644 --- a/Assets/Piloto Studio/Materials/Holy/HolyStar_Alpha.mat +++ b/Assets/Piloto Studio/Materials/Holy/HolyStar_Alpha.mat @@ -40,6 +40,8 @@ Material: - MOTIONVECTORS - TransparentDepthPrepass - TransparentDepthPostpass + - DepthOnly + - SHADOWCASTER m_LockedProperties: m_SavedProperties: serializedVersion: 3 @@ -113,6 +115,7 @@ Material: - _DoubleSidedGIMode: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 + - _DstBlendAlpha: 10 - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 0 - _ExcludeFromTUAndAA: 0 @@ -125,7 +128,7 @@ Material: - _MiddlePointPos1: 0.5 - _MultiplyNoiseDesaturation: 1 - _OpaqueCullMode: 2 - - _QueueControl: -1 + - _QueueControl: 1 - _QueueOffset: 0 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 @@ -133,7 +136,8 @@ Material: - _RequireSplitLighting: 0 - _SoftFadeFactor: 1 - _SourceBlendRGB: 10 - - _SrcBlend: 1 + - _SrcBlend: 5 + - _SrcBlendAlpha: 1 - _StencilRef: 0 - _StencilRefDepth: 1 - _StencilRefDistortionVec: 4 diff --git a/Assets/Piloto Studio/Materials/Holy/Pentagram_Alpha.mat b/Assets/Piloto Studio/Materials/Holy/Pentagram_Alpha.mat index c80cf0b4..6acfb3e3 100644 --- a/Assets/Piloto Studio/Materials/Holy/Pentagram_Alpha.mat +++ b/Assets/Piloto Studio/Materials/Holy/Pentagram_Alpha.mat @@ -56,6 +56,8 @@ Material: - MOTIONVECTORS - TransparentDepthPrepass - TransparentDepthPostpass + - DepthOnly + - SHADOWCASTER m_LockedProperties: m_SavedProperties: serializedVersion: 3 @@ -129,6 +131,7 @@ Material: - _DoubleSidedGIMode: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 + - _DstBlendAlpha: 10 - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 0 - _ExcludeFromTUAndAA: 0 @@ -141,7 +144,7 @@ Material: - _MiddlePointPos1: 0.5 - _MultiplyNoiseDesaturation: 1 - _OpaqueCullMode: 2 - - _QueueControl: -1 + - _QueueControl: 1 - _QueueOffset: 0 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 @@ -149,7 +152,8 @@ Material: - _RequireSplitLighting: 0 - _SoftFadeFactor: 1 - _SourceBlendRGB: 10 - - _SrcBlend: 1 + - _SrcBlend: 5 + - _SrcBlendAlpha: 1 - _StencilRef: 0 - _StencilRefDepth: 1 - _StencilRefDistortionVec: 4 diff --git a/Assets/Piloto Studio/Materials/Ice/Ice_Crystal.mat b/Assets/Piloto Studio/Materials/Ice/Ice_Crystal.mat index 7630d4ce..0517f14b 100644 --- a/Assets/Piloto Studio/Materials/Ice/Ice_Crystal.mat +++ b/Assets/Piloto Studio/Materials/Ice/Ice_Crystal.mat @@ -56,6 +56,8 @@ Material: - MOTIONVECTORS - TransparentDepthPrepass - TransparentDepthPostpass + - DepthOnly + - SHADOWCASTER m_LockedProperties: m_SavedProperties: serializedVersion: 3 @@ -134,6 +136,7 @@ Material: - _DoubleSidedGIMode: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 + - _DstBlendAlpha: 10 - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 0 - _ExcludeFromTUAndAA: 0 @@ -146,7 +149,7 @@ Material: - _MiddlePointPos1: 0.5 - _MultiplyNoiseDesaturation: 1 - _OpaqueCullMode: 2 - - _QueueControl: -1 + - _QueueControl: 1 - _QueueOffset: 0 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 @@ -154,7 +157,8 @@ Material: - _RequireSplitLighting: 0 - _SoftFadeFactor: 0.1 - _SourceBlendRGB: 10 - - _SrcBlend: 1 + - _SrcBlend: 5 + - _SrcBlendAlpha: 1 - _StencilRef: 0 - _StencilRefDepth: 1 - _StencilRefDistortionVec: 4 diff --git a/Assets/Piloto Studio/Materials/Nature & Fairy/LeafAtlas_Greyscale.mat b/Assets/Piloto Studio/Materials/Nature & Fairy/LeafAtlas_Greyscale.mat index bbe39164..8a2888c1 100644 --- a/Assets/Piloto Studio/Materials/Nature & Fairy/LeafAtlas_Greyscale.mat +++ b/Assets/Piloto Studio/Materials/Nature & Fairy/LeafAtlas_Greyscale.mat @@ -69,6 +69,8 @@ Material: - MOTIONVECTORS - TransparentDepthPrepass - TransparentDepthPostpass + - DepthOnly + - SHADOWCASTER m_LockedProperties: m_SavedProperties: serializedVersion: 3 @@ -253,6 +255,7 @@ Material: - _DoubleSidedGIMode: 0 - _DoubleSidedNormalMode: 1 - _DstBlend: 10 + - _DstBlendAlpha: 10 - _EmissiveColorMode: 1 - _EmissiveExposureWeight: 1 - _EmissiveIntensity: 1 @@ -295,7 +298,7 @@ Material: - _PPDMinSamples: 5 - _PPDPrimitiveLength: 1 - _PPDPrimitiveWidth: 1 - - _QueueControl: -1 + - _QueueControl: 1 - _QueueOffset: 0 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 @@ -311,7 +314,8 @@ Material: - _SpecularAAScreenSpaceVariance: 0.1 - _SpecularAAThreshold: 0.2 - _SpecularOcclusionMode: 1 - - _SrcBlend: 1 + - _SrcBlend: 5 + - _SrcBlendAlpha: 1 - _StencilRef: 0 - _StencilRefDepth: 1 - _StencilRefDistortionVec: 4 diff --git a/Assets/Piloto Studio/Materials/Nature & Fairy/Ring_NatureVines.mat b/Assets/Piloto Studio/Materials/Nature & Fairy/Ring_NatureVines.mat index 53a5c4c3..768cb789 100644 --- a/Assets/Piloto Studio/Materials/Nature & Fairy/Ring_NatureVines.mat +++ b/Assets/Piloto Studio/Materials/Nature & Fairy/Ring_NatureVines.mat @@ -68,6 +68,8 @@ Material: - MOTIONVECTORS - TransparentDepthPrepass - TransparentDepthPostpass + - DepthOnly + - SHADOWCASTER m_LockedProperties: m_SavedProperties: serializedVersion: 3 @@ -252,6 +254,7 @@ Material: - _DoubleSidedGIMode: 0 - _DoubleSidedNormalMode: 1 - _DstBlend: 1 + - _DstBlendAlpha: 1 - _EmissiveColorMode: 1 - _EmissiveExposureWeight: 1 - _EmissiveIntensity: 1 @@ -294,7 +297,7 @@ Material: - _PPDMinSamples: 5 - _PPDPrimitiveLength: 1 - _PPDPrimitiveWidth: 1 - - _QueueControl: -1 + - _QueueControl: 1 - _QueueOffset: 0 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 @@ -310,7 +313,8 @@ Material: - _SpecularAAScreenSpaceVariance: 0.1 - _SpecularAAThreshold: 0.2 - _SpecularOcclusionMode: 1 - - _SrcBlend: 1 + - _SrcBlend: 5 + - _SrcBlendAlpha: 1 - _StencilRef: 0 - _StencilRefDepth: 1 - _StencilRefDistortionVec: 4 diff --git a/Assets/Piloto Studio/Materials/Nature & Fairy/VinesTrail_Panning.mat b/Assets/Piloto Studio/Materials/Nature & Fairy/VinesTrail_Panning.mat index 17bda92f..20538418 100644 --- a/Assets/Piloto Studio/Materials/Nature & Fairy/VinesTrail_Panning.mat +++ b/Assets/Piloto Studio/Materials/Nature & Fairy/VinesTrail_Panning.mat @@ -27,6 +27,8 @@ Material: - MOTIONVECTORS - TransparentDepthPrepass - TransparentDepthPostpass + - DepthOnly + - SHADOWCASTER m_LockedProperties: m_SavedProperties: serializedVersion: 3 @@ -100,6 +102,7 @@ Material: - _DoubleSidedGIMode: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 + - _DstBlendAlpha: 10 - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 0 - _ExcludeFromTUAndAA: 0 @@ -112,7 +115,7 @@ Material: - _MiddlePointPos1: 0.5 - _MultiplyNoiseDesaturation: 1 - _OpaqueCullMode: 2 - - _QueueControl: -1 + - _QueueControl: 1 - _QueueOffset: 0 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 @@ -120,7 +123,8 @@ Material: - _RequireSplitLighting: 0 - _SoftFadeFactor: 0 - _SourceBlendRGB: 10 - - _SrcBlend: 1 + - _SrcBlend: 5 + - _SrcBlendAlpha: 1 - _StencilRef: 0 - _StencilRefDepth: 1 - _StencilRefDistortionVec: 4 diff --git a/Assets/Piloto Studio/Materials/OverlyToony/AnimeSmoke_Soft.mat b/Assets/Piloto Studio/Materials/OverlyToony/AnimeSmoke_Soft.mat index 2f1529f7..7c2d71ea 100644 --- a/Assets/Piloto Studio/Materials/OverlyToony/AnimeSmoke_Soft.mat +++ b/Assets/Piloto Studio/Materials/OverlyToony/AnimeSmoke_Soft.mat @@ -60,6 +60,8 @@ Material: - TransparentBackface - TransparentDepthPrepass - TransparentDepthPostpass + - DepthOnly + - SHADOWCASTER m_LockedProperties: m_SavedProperties: serializedVersion: 3 @@ -181,6 +183,7 @@ Material: - _DoubleSidedGIMode: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 + - _DstBlendAlpha: 10 - _Emission: 2 - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 0 @@ -202,7 +205,7 @@ Material: - _Opacity: 1 - _OpaqueCullMode: 2 - _Parallax: 0.02 - - _QueueControl: -1 + - _QueueControl: 1 - _QueueOffset: 0 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 @@ -212,7 +215,8 @@ Material: - _SoftFadeFactor: 1 - _SourceBlendRGB: 10 - _SpecularHighlights: 1 - - _SrcBlend: 1 + - _SrcBlend: 5 + - _SrcBlendAlpha: 1 - _StencilRef: 0 - _StencilRefDepth: 1 - _StencilRefDistortionVec: 4 diff --git a/Assets/Piloto Studio/Materials/Rainbow/IridescenceRadial.mat b/Assets/Piloto Studio/Materials/Rainbow/IridescenceRadial.mat index 5d6c4f42..f7c78a94 100644 --- a/Assets/Piloto Studio/Materials/Rainbow/IridescenceRadial.mat +++ b/Assets/Piloto Studio/Materials/Rainbow/IridescenceRadial.mat @@ -69,6 +69,8 @@ Material: - MOTIONVECTORS - TransparentDepthPrepass - TransparentDepthPostpass + - DepthOnly + - SHADOWCASTER m_LockedProperties: m_SavedProperties: serializedVersion: 3 @@ -253,6 +255,7 @@ Material: - _DoubleSidedGIMode: 0 - _DoubleSidedNormalMode: 1 - _DstBlend: 10 + - _DstBlendAlpha: 10 - _EmissiveColorMode: 1 - _EmissiveExposureWeight: 1 - _EmissiveIntensity: 1 @@ -295,7 +298,7 @@ Material: - _PPDMinSamples: 5 - _PPDPrimitiveLength: 1 - _PPDPrimitiveWidth: 1 - - _QueueControl: -1 + - _QueueControl: 1 - _QueueOffset: 0 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 @@ -311,7 +314,8 @@ Material: - _SpecularAAScreenSpaceVariance: 0.1 - _SpecularAAThreshold: 0.2 - _SpecularOcclusionMode: 1 - - _SrcBlend: 1 + - _SrcBlend: 5 + - _SrcBlendAlpha: 1 - _StencilRef: 0 - _StencilRefDepth: 1 - _StencilRefDistortionVec: 4 diff --git a/Assets/Piloto Studio/Materials/Rainbow/ManaSpeck_Rainbow.mat b/Assets/Piloto Studio/Materials/Rainbow/ManaSpeck_Rainbow.mat index c70a947e..8f5ec60c 100644 --- a/Assets/Piloto Studio/Materials/Rainbow/ManaSpeck_Rainbow.mat +++ b/Assets/Piloto Studio/Materials/Rainbow/ManaSpeck_Rainbow.mat @@ -53,6 +53,8 @@ Material: - MOTIONVECTORS - TransparentDepthPrepass - TransparentDepthPostpass + - DepthOnly + - SHADOWCASTER m_LockedProperties: m_SavedProperties: serializedVersion: 3 @@ -126,6 +128,7 @@ Material: - _DoubleSidedGIMode: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 + - _DstBlendAlpha: 10 - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 0 - _ExcludeFromTUAndAA: 0 @@ -138,7 +141,7 @@ Material: - _MiddlePointPos1: 0.5 - _MultiplyNoiseDesaturation: 0 - _OpaqueCullMode: 2 - - _QueueControl: -1 + - _QueueControl: 1 - _QueueOffset: 0 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 @@ -146,7 +149,8 @@ Material: - _RequireSplitLighting: 0 - _SoftFadeFactor: 0.1 - _SourceBlendRGB: 10 - - _SrcBlend: 1 + - _SrcBlend: 5 + - _SrcBlendAlpha: 1 - _StencilRef: 0 - _StencilRefDepth: 1 - _StencilRefDistortionVec: 4 diff --git a/Assets/Piloto Studio/Materials/Rainbow/RainbowNoise_Slow_Scaled.mat b/Assets/Piloto Studio/Materials/Rainbow/RainbowNoise_Slow_Scaled.mat index 15920d30..4631bb53 100644 --- a/Assets/Piloto Studio/Materials/Rainbow/RainbowNoise_Slow_Scaled.mat +++ b/Assets/Piloto Studio/Materials/Rainbow/RainbowNoise_Slow_Scaled.mat @@ -70,6 +70,8 @@ Material: - MOTIONVECTORS - TransparentDepthPrepass - TransparentDepthPostpass + - DepthOnly + - SHADOWCASTER m_LockedProperties: m_SavedProperties: serializedVersion: 3 @@ -254,6 +256,7 @@ Material: - _DoubleSidedGIMode: 0 - _DoubleSidedNormalMode: 1 - _DstBlend: 10 + - _DstBlendAlpha: 10 - _EmissiveColorMode: 1 - _EmissiveExposureWeight: 1 - _EmissiveIntensity: 1 @@ -296,7 +299,7 @@ Material: - _PPDMinSamples: 5 - _PPDPrimitiveLength: 1 - _PPDPrimitiveWidth: 1 - - _QueueControl: -1 + - _QueueControl: 1 - _QueueOffset: 0 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 @@ -312,7 +315,8 @@ Material: - _SpecularAAScreenSpaceVariance: 0.1 - _SpecularAAThreshold: 0.2 - _SpecularOcclusionMode: 1 - - _SrcBlend: 1 + - _SrcBlend: 5 + - _SrcBlendAlpha: 1 - _StencilRef: 0 - _StencilRefDepth: 1 - _StencilRefDistortionVec: 4 diff --git a/Assets/Piloto Studio/Materials/Rainbow/RainbowSided_FlareSoft.mat b/Assets/Piloto Studio/Materials/Rainbow/RainbowSided_FlareSoft.mat index 61d66ee3..fd270ba0 100644 --- a/Assets/Piloto Studio/Materials/Rainbow/RainbowSided_FlareSoft.mat +++ b/Assets/Piloto Studio/Materials/Rainbow/RainbowSided_FlareSoft.mat @@ -69,6 +69,8 @@ Material: - MOTIONVECTORS - TransparentDepthPrepass - TransparentDepthPostpass + - DepthOnly + - SHADOWCASTER m_LockedProperties: m_SavedProperties: serializedVersion: 3 @@ -142,6 +144,7 @@ Material: - _DoubleSidedGIMode: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 1 + - _DstBlendAlpha: 1 - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 0 - _ExcludeFromTUAndAA: 0 @@ -154,7 +157,7 @@ Material: - _MiddlePointPos1: 0.5 - _MultiplyNoiseDesaturation: 1 - _OpaqueCullMode: 2 - - _QueueControl: -1 + - _QueueControl: 1 - _QueueOffset: 0 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 @@ -162,7 +165,8 @@ Material: - _RequireSplitLighting: 0 - _SoftFadeFactor: 1 - _SourceBlendRGB: 1 - - _SrcBlend: 1 + - _SrcBlend: 5 + - _SrcBlendAlpha: 1 - _StencilRef: 0 - _StencilRefDepth: 1 - _StencilRefDistortionVec: 4 diff --git a/Assets/Piloto Studio/Materials/Shared/AnimeSlash.mat b/Assets/Piloto Studio/Materials/Shared/AnimeSlash.mat index 48c1e3c1..aebd86c4 100644 --- a/Assets/Piloto Studio/Materials/Shared/AnimeSlash.mat +++ b/Assets/Piloto Studio/Materials/Shared/AnimeSlash.mat @@ -40,6 +40,8 @@ Material: - MOTIONVECTORS - TransparentDepthPrepass - TransparentDepthPostpass + - DepthOnly + - SHADOWCASTER m_LockedProperties: m_SavedProperties: serializedVersion: 3 @@ -113,6 +115,7 @@ Material: - _DoubleSidedGIMode: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 + - _DstBlendAlpha: 10 - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 0 - _ExcludeFromTUAndAA: 0 @@ -125,7 +128,7 @@ Material: - _MiddlePointPos1: 0.5 - _MultiplyNoiseDesaturation: 1 - _OpaqueCullMode: 2 - - _QueueControl: -1 + - _QueueControl: 1 - _QueueOffset: 0 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 @@ -133,7 +136,8 @@ Material: - _RequireSplitLighting: 0 - _SoftFadeFactor: 0 - _SourceBlendRGB: 10 - - _SrcBlend: 1 + - _SrcBlend: 5 + - _SrcBlendAlpha: 1 - _StencilRef: 0 - _StencilRefDepth: 1 - _StencilRefDistortionVec: 4 diff --git a/Assets/Piloto Studio/Materials/Shared/AstralMist_Flecks_Blend_Desaturate_Soft.mat b/Assets/Piloto Studio/Materials/Shared/AstralMist_Flecks_Blend_Desaturate_Soft.mat index 3990b0a4..10bf1c00 100644 --- a/Assets/Piloto Studio/Materials/Shared/AstralMist_Flecks_Blend_Desaturate_Soft.mat +++ b/Assets/Piloto Studio/Materials/Shared/AstralMist_Flecks_Blend_Desaturate_Soft.mat @@ -57,6 +57,8 @@ Material: - TransparentBackface - TransparentDepthPrepass - TransparentDepthPostpass + - DepthOnly + - SHADOWCASTER m_LockedProperties: m_SavedProperties: serializedVersion: 3 @@ -147,6 +149,7 @@ Material: - _DoubleSidedGIMode: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 + - _DstBlendAlpha: 10 - _DstBlendOutline: 10 - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 0 @@ -181,7 +184,7 @@ Material: - _OpaqueCullMode: 2 - _Parallax: 0.02 - _PremultipliedRGBTexture: 1 - - _QueueControl: -1 + - _QueueControl: 1 - _QueueOffset: 0 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 @@ -200,7 +203,8 @@ Material: - _SoftFadeFactor: 3 - _SourceBlendRGB: 10 - _SpecularHighlights: 1 - - _SrcBlend: 1 + - _SrcBlend: 5 + - _SrcBlendAlpha: 1 - _SrcBlendOutline: 1 - _StencilRef: 0 - _StencilRefDepth: 1 diff --git a/Assets/Piloto Studio/Materials/Shared/Circle_Add_Flowy_Soft.mat b/Assets/Piloto Studio/Materials/Shared/Circle_Add_Flowy_Soft.mat index b82cc7ea..67d2f910 100644 --- a/Assets/Piloto Studio/Materials/Shared/Circle_Add_Flowy_Soft.mat +++ b/Assets/Piloto Studio/Materials/Shared/Circle_Add_Flowy_Soft.mat @@ -44,6 +44,8 @@ Material: - MOTIONVECTORS - TransparentDepthPrepass - TransparentDepthPostpass + - DepthOnly + - SHADOWCASTER m_LockedProperties: m_SavedProperties: serializedVersion: 3 @@ -117,6 +119,7 @@ Material: - _DoubleSidedGIMode: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 1 + - _DstBlendAlpha: 1 - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 0 - _ExcludeFromTUAndAA: 0 @@ -129,7 +132,7 @@ Material: - _MiddlePointPos1: 0.5 - _MultiplyNoiseDesaturation: 1 - _OpaqueCullMode: 2 - - _QueueControl: -1 + - _QueueControl: 1 - _QueueOffset: 0 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 @@ -137,7 +140,8 @@ Material: - _RequireSplitLighting: 0 - _SoftFadeFactor: 1 - _SourceBlendRGB: 1 - - _SrcBlend: 1 + - _SrcBlend: 5 + - _SrcBlendAlpha: 1 - _StencilRef: 0 - _StencilRefDepth: 1 - _StencilRefDistortionVec: 4 diff --git a/Assets/Piloto Studio/Materials/Shared/Fire_Add_Soft.mat b/Assets/Piloto Studio/Materials/Shared/Fire_Add_Soft.mat index 77dd9752..5ef1dfbf 100644 --- a/Assets/Piloto Studio/Materials/Shared/Fire_Add_Soft.mat +++ b/Assets/Piloto Studio/Materials/Shared/Fire_Add_Soft.mat @@ -56,6 +56,8 @@ Material: - MOTIONVECTORS - TransparentDepthPrepass - TransparentDepthPostpass + - DepthOnly + - SHADOWCASTER m_LockedProperties: m_SavedProperties: serializedVersion: 3 @@ -129,6 +131,7 @@ Material: - _DoubleSidedGIMode: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 1 + - _DstBlendAlpha: 1 - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 0 - _ExcludeFromTUAndAA: 0 @@ -141,7 +144,7 @@ Material: - _MiddlePointPos1: 0.5 - _MultiplyNoiseDesaturation: 1 - _OpaqueCullMode: 2 - - _QueueControl: -1 + - _QueueControl: 1 - _QueueOffset: 0 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 @@ -149,7 +152,8 @@ Material: - _RequireSplitLighting: 0 - _SoftFadeFactor: 1 - _SourceBlendRGB: 1 - - _SrcBlend: 1 + - _SrcBlend: 5 + - _SrcBlendAlpha: 1 - _StencilRef: 0 - _StencilRefDepth: 1 - _StencilRefDistortionVec: 4 diff --git a/Assets/Piloto Studio/Materials/Shared/Flare2_Additive.mat b/Assets/Piloto Studio/Materials/Shared/Flare2_Additive.mat index 68b7abf6..6df5ebe9 100644 --- a/Assets/Piloto Studio/Materials/Shared/Flare2_Additive.mat +++ b/Assets/Piloto Studio/Materials/Shared/Flare2_Additive.mat @@ -57,6 +57,8 @@ Material: - MOTIONVECTORS - TransparentDepthPrepass - TransparentDepthPostpass + - DepthOnly + - SHADOWCASTER m_LockedProperties: m_SavedProperties: serializedVersion: 3 @@ -241,6 +243,7 @@ Material: - _DoubleSidedGIMode: 0 - _DoubleSidedNormalMode: 1 - _DstBlend: 1 + - _DstBlendAlpha: 1 - _EmissiveColorMode: 1 - _EmissiveExposureWeight: 1 - _EmissiveIntensity: 1 @@ -282,7 +285,7 @@ Material: - _PPDMinSamples: 5 - _PPDPrimitiveLength: 1 - _PPDPrimitiveWidth: 1 - - _QueueControl: -1 + - _QueueControl: 1 - _QueueOffset: 0 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 @@ -298,7 +301,8 @@ Material: - _SpecularAAScreenSpaceVariance: 0.1 - _SpecularAAThreshold: 0.2 - _SpecularOcclusionMode: 1 - - _SrcBlend: 1 + - _SrcBlend: 5 + - _SrcBlendAlpha: 1 - _StencilRef: 0 - _StencilRefDepth: 1 - _StencilRefDistortionVec: 4 diff --git a/Assets/Piloto Studio/Materials/Shared/Flare_GlowdotPickbook_Alpha.mat b/Assets/Piloto Studio/Materials/Shared/Flare_GlowdotPickbook_Alpha.mat index 4fe209ae..f8ab4502 100644 --- a/Assets/Piloto Studio/Materials/Shared/Flare_GlowdotPickbook_Alpha.mat +++ b/Assets/Piloto Studio/Materials/Shared/Flare_GlowdotPickbook_Alpha.mat @@ -56,6 +56,8 @@ Material: - MOTIONVECTORS - TransparentDepthPrepass - TransparentDepthPostpass + - DepthOnly + - SHADOWCASTER m_LockedProperties: m_SavedProperties: serializedVersion: 3 @@ -129,6 +131,7 @@ Material: - _DoubleSidedGIMode: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 + - _DstBlendAlpha: 10 - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 0 - _ExcludeFromTUAndAA: 0 @@ -141,7 +144,7 @@ Material: - _MiddlePointPos1: 0.5 - _MultiplyNoiseDesaturation: 1 - _OpaqueCullMode: 2 - - _QueueControl: -1 + - _QueueControl: 1 - _QueueOffset: 0 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 @@ -149,7 +152,8 @@ Material: - _RequireSplitLighting: 0 - _SoftFadeFactor: 0.1 - _SourceBlendRGB: 10 - - _SrcBlend: 1 + - _SrcBlend: 5 + - _SrcBlendAlpha: 1 - _StencilRef: 0 - _StencilRefDepth: 1 - _StencilRefDistortionVec: 4 diff --git a/Assets/Piloto Studio/Materials/Shared/Flare_GlowdotPickbook_Strong.mat b/Assets/Piloto Studio/Materials/Shared/Flare_GlowdotPickbook_Strong.mat index 44226859..156905ae 100644 --- a/Assets/Piloto Studio/Materials/Shared/Flare_GlowdotPickbook_Strong.mat +++ b/Assets/Piloto Studio/Materials/Shared/Flare_GlowdotPickbook_Strong.mat @@ -55,6 +55,8 @@ Material: - MOTIONVECTORS - TransparentDepthPrepass - TransparentDepthPostpass + - DepthOnly + - SHADOWCASTER m_LockedProperties: m_SavedProperties: serializedVersion: 3 @@ -128,6 +130,7 @@ Material: - _DoubleSidedGIMode: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 1 + - _DstBlendAlpha: 1 - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 0 - _ExcludeFromTUAndAA: 0 @@ -140,7 +143,7 @@ Material: - _MiddlePointPos1: 0.5 - _MultiplyNoiseDesaturation: 1 - _OpaqueCullMode: 2 - - _QueueControl: -1 + - _QueueControl: 1 - _QueueOffset: 0 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 @@ -148,7 +151,8 @@ Material: - _RequireSplitLighting: 0 - _SoftFadeFactor: 0.1 - _SourceBlendRGB: 1 - - _SrcBlend: 1 + - _SrcBlend: 5 + - _SrcBlendAlpha: 1 - _StencilRef: 0 - _StencilRefDepth: 1 - _StencilRefDistortionVec: 4 diff --git a/Assets/Piloto Studio/Materials/Shared/Flare_SoftStarburstImpact.mat b/Assets/Piloto Studio/Materials/Shared/Flare_SoftStarburstImpact.mat index 0c2c1296..f83a09aa 100644 --- a/Assets/Piloto Studio/Materials/Shared/Flare_SoftStarburstImpact.mat +++ b/Assets/Piloto Studio/Materials/Shared/Flare_SoftStarburstImpact.mat @@ -27,6 +27,8 @@ Material: - MOTIONVECTORS - TransparentDepthPrepass - TransparentDepthPostpass + - DepthOnly + - SHADOWCASTER m_LockedProperties: m_SavedProperties: serializedVersion: 3 @@ -100,6 +102,7 @@ Material: - _DoubleSidedGIMode: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 1 + - _DstBlendAlpha: 1 - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 0 - _ExcludeFromTUAndAA: 0 @@ -112,7 +115,7 @@ Material: - _MiddlePointPos1: 0.5 - _MultiplyNoiseDesaturation: 1 - _OpaqueCullMode: 2 - - _QueueControl: -1 + - _QueueControl: 1 - _QueueOffset: 0 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 @@ -120,7 +123,8 @@ Material: - _RequireSplitLighting: 0 - _SoftFadeFactor: 1 - _SourceBlendRGB: 1 - - _SrcBlend: 1 + - _SrcBlend: 5 + - _SrcBlendAlpha: 1 - _StencilRef: 0 - _StencilRefDepth: 1 - _StencilRefDistortionVec: 4 diff --git a/Assets/Piloto Studio/Materials/Shared/Flare_Spiky_DirectionalSoft.mat b/Assets/Piloto Studio/Materials/Shared/Flare_Spiky_DirectionalSoft.mat index 4693ed21..e0ee23fc 100644 --- a/Assets/Piloto Studio/Materials/Shared/Flare_Spiky_DirectionalSoft.mat +++ b/Assets/Piloto Studio/Materials/Shared/Flare_Spiky_DirectionalSoft.mat @@ -58,6 +58,8 @@ Material: - MOTIONVECTORS - TransparentDepthPrepass - TransparentDepthPostpass + - DepthOnly + - SHADOWCASTER m_LockedProperties: m_SavedProperties: serializedVersion: 3 @@ -242,6 +244,7 @@ Material: - _DoubleSidedGIMode: 0 - _DoubleSidedNormalMode: 1 - _DstBlend: 1 + - _DstBlendAlpha: 1 - _EmissiveColorMode: 1 - _EmissiveExposureWeight: 1 - _EmissiveIntensity: 1 @@ -283,7 +286,7 @@ Material: - _PPDMinSamples: 5 - _PPDPrimitiveLength: 1 - _PPDPrimitiveWidth: 1 - - _QueueControl: -1 + - _QueueControl: 1 - _QueueOffset: 0 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 @@ -299,7 +302,8 @@ Material: - _SpecularAAScreenSpaceVariance: 0.1 - _SpecularAAThreshold: 0.2 - _SpecularOcclusionMode: 1 - - _SrcBlend: 1 + - _SrcBlend: 5 + - _SrcBlendAlpha: 1 - _StencilRef: 0 - _StencilRefDepth: 1 - _StencilRefDistortionVec: 4 diff --git a/Assets/Piloto Studio/Materials/Shared/Flare_Ultrawide_Soft.mat b/Assets/Piloto Studio/Materials/Shared/Flare_Ultrawide_Soft.mat index 1b3d9dab..b955a16d 100644 --- a/Assets/Piloto Studio/Materials/Shared/Flare_Ultrawide_Soft.mat +++ b/Assets/Piloto Studio/Materials/Shared/Flare_Ultrawide_Soft.mat @@ -43,6 +43,8 @@ Material: - MOTIONVECTORS - TransparentDepthPrepass - TransparentDepthPostpass + - DepthOnly + - SHADOWCASTER m_LockedProperties: m_SavedProperties: serializedVersion: 3 @@ -116,6 +118,7 @@ Material: - _DoubleSidedGIMode: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 1 + - _DstBlendAlpha: 1 - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 0 - _ExcludeFromTUAndAA: 0 @@ -128,7 +131,7 @@ Material: - _MiddlePointPos1: 0.5 - _MultiplyNoiseDesaturation: 1 - _OpaqueCullMode: 2 - - _QueueControl: -1 + - _QueueControl: 1 - _QueueOffset: 0 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 @@ -136,7 +139,8 @@ Material: - _RequireSplitLighting: 0 - _SoftFadeFactor: 0.3 - _SourceBlendRGB: 1 - - _SrcBlend: 1 + - _SrcBlend: 5 + - _SrcBlendAlpha: 1 - _StencilRef: 0 - _StencilRefDepth: 1 - _StencilRefDistortionVec: 4 diff --git a/Assets/Piloto Studio/Materials/Shared/Flecks_Clipped_Alpha.mat b/Assets/Piloto Studio/Materials/Shared/Flecks_Clipped_Alpha.mat index 95261f3e..aa38d7ff 100644 --- a/Assets/Piloto Studio/Materials/Shared/Flecks_Clipped_Alpha.mat +++ b/Assets/Piloto Studio/Materials/Shared/Flecks_Clipped_Alpha.mat @@ -143,6 +143,7 @@ Material: - _DoubleSidedGIMode: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 + - _DstBlendAlpha: 10 - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 0 - _ExcludeFromTUAndAA: 0 @@ -163,7 +164,8 @@ Material: - _RequireSplitLighting: 0 - _SoftFadeFactor: 0 - _SourceBlendRGB: 10 - - _SrcBlend: 1 + - _SrcBlend: 5 + - _SrcBlendAlpha: 1 - _StencilRef: 0 - _StencilRefDepth: 1 - _StencilRefDistortionVec: 4 diff --git a/Assets/Piloto Studio/Materials/Shared/Flecks_Fluid_Alpha.mat b/Assets/Piloto Studio/Materials/Shared/Flecks_Fluid_Alpha.mat index 53d2f770..49a9b01c 100644 --- a/Assets/Piloto Studio/Materials/Shared/Flecks_Fluid_Alpha.mat +++ b/Assets/Piloto Studio/Materials/Shared/Flecks_Fluid_Alpha.mat @@ -39,6 +39,8 @@ Material: - MOTIONVECTORS - TransparentDepthPrepass - TransparentDepthPostpass + - DepthOnly + - SHADOWCASTER m_LockedProperties: m_SavedProperties: serializedVersion: 3 @@ -120,6 +122,7 @@ Material: - _DoubleSidedGIMode: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 + - _DstBlendAlpha: 10 - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 0 - _ExcludeFromTUAndAA: 0 @@ -132,7 +135,7 @@ Material: - _MiddlePointPos1: 0.5 - _MultiplyNoiseDesaturation: 1 - _OpaqueCullMode: 2 - - _QueueControl: -1 + - _QueueControl: 1 - _QueueOffset: 0 - _ReceiveShadows: 1 - _ReceivesSSR: 0 @@ -141,7 +144,8 @@ Material: - _RequireSplitLighting: 0 - _SoftFadeFactor: 0 - _SourceBlendRGB: 10 - - _SrcBlend: 1 + - _SrcBlend: 5 + - _SrcBlendAlpha: 1 - _StencilRef: 0 - _StencilRefDepth: 1 - _StencilRefDistortionVec: 4 diff --git a/Assets/Piloto Studio/Materials/Shared/Flecks_Shiny_Alpha.mat b/Assets/Piloto Studio/Materials/Shared/Flecks_Shiny_Alpha.mat index 3b23a42b..cc2761c6 100644 --- a/Assets/Piloto Studio/Materials/Shared/Flecks_Shiny_Alpha.mat +++ b/Assets/Piloto Studio/Materials/Shared/Flecks_Shiny_Alpha.mat @@ -55,6 +55,8 @@ Material: - MOTIONVECTORS - TransparentDepthPrepass - TransparentDepthPostpass + - DepthOnly + - SHADOWCASTER m_LockedProperties: m_SavedProperties: serializedVersion: 3 @@ -128,6 +130,7 @@ Material: - _DoubleSidedGIMode: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 + - _DstBlendAlpha: 10 - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 0 - _ExcludeFromTUAndAA: 0 @@ -140,7 +143,7 @@ Material: - _MiddlePointPos1: 0.5 - _MultiplyNoiseDesaturation: 1 - _OpaqueCullMode: 2 - - _QueueControl: -1 + - _QueueControl: 1 - _QueueOffset: 0 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 @@ -148,7 +151,8 @@ Material: - _RequireSplitLighting: 0 - _SoftFadeFactor: 0 - _SourceBlendRGB: 10 - - _SrcBlend: 1 + - _SrcBlend: 5 + - _SrcBlendAlpha: 1 - _StencilRef: 0 - _StencilRefDepth: 1 - _StencilRefDistortionVec: 4 diff --git a/Assets/Piloto Studio/Materials/Shared/FuzzAdd_Soft.mat b/Assets/Piloto Studio/Materials/Shared/FuzzAdd_Soft.mat index fa4fd550..da97eb7b 100644 --- a/Assets/Piloto Studio/Materials/Shared/FuzzAdd_Soft.mat +++ b/Assets/Piloto Studio/Materials/Shared/FuzzAdd_Soft.mat @@ -103,6 +103,7 @@ Material: - _DoubleSidedGIMode: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 1 + - _DstBlendAlpha: 1 - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 0 - _ExcludeFromTUAndAA: 0 @@ -123,7 +124,8 @@ Material: - _RequireSplitLighting: 0 - _SoftFadeFactor: 1 - _SourceBlendRGB: 1 - - _SrcBlend: 1 + - _SrcBlend: 5 + - _SrcBlendAlpha: 1 - _StencilRef: 0 - _StencilRefDepth: 1 - _StencilRefDistortionVec: 4 diff --git a/Assets/Piloto Studio/Materials/Shared/ImpactFlare_1.mat b/Assets/Piloto Studio/Materials/Shared/ImpactFlare_1.mat index 53294358..76d11c5e 100644 --- a/Assets/Piloto Studio/Materials/Shared/ImpactFlare_1.mat +++ b/Assets/Piloto Studio/Materials/Shared/ImpactFlare_1.mat @@ -43,6 +43,8 @@ Material: - MOTIONVECTORS - TransparentDepthPrepass - TransparentDepthPostpass + - DepthOnly + - SHADOWCASTER m_LockedProperties: m_SavedProperties: serializedVersion: 3 @@ -116,6 +118,7 @@ Material: - _DoubleSidedGIMode: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 1 + - _DstBlendAlpha: 1 - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 0 - _ExcludeFromTUAndAA: 0 @@ -128,7 +131,7 @@ Material: - _MiddlePointPos1: 0.5 - _MultiplyNoiseDesaturation: 1 - _OpaqueCullMode: 2 - - _QueueControl: -1 + - _QueueControl: 1 - _QueueOffset: 0 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 @@ -136,7 +139,8 @@ Material: - _RequireSplitLighting: 0 - _SoftFadeFactor: 1 - _SourceBlendRGB: 1 - - _SrcBlend: 1 + - _SrcBlend: 5 + - _SrcBlendAlpha: 1 - _StencilRef: 0 - _StencilRefDepth: 1 - _StencilRefDistortionVec: 4 diff --git a/Assets/Piloto Studio/Materials/Shared/ImpactFlare_2_Alpha.mat b/Assets/Piloto Studio/Materials/Shared/ImpactFlare_2_Alpha.mat index 62f93205..ca89831a 100644 --- a/Assets/Piloto Studio/Materials/Shared/ImpactFlare_2_Alpha.mat +++ b/Assets/Piloto Studio/Materials/Shared/ImpactFlare_2_Alpha.mat @@ -56,6 +56,8 @@ Material: - MOTIONVECTORS - TransparentDepthPrepass - TransparentDepthPostpass + - DepthOnly + - SHADOWCASTER m_LockedProperties: m_SavedProperties: serializedVersion: 3 @@ -129,6 +131,7 @@ Material: - _DoubleSidedGIMode: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 + - _DstBlendAlpha: 10 - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 0 - _ExcludeFromTUAndAA: 0 @@ -141,7 +144,7 @@ Material: - _MiddlePointPos1: 0.5 - _MultiplyNoiseDesaturation: 1 - _OpaqueCullMode: 2 - - _QueueControl: -1 + - _QueueControl: 1 - _QueueOffset: 0 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 @@ -149,7 +152,8 @@ Material: - _RequireSplitLighting: 0 - _SoftFadeFactor: 0.1 - _SourceBlendRGB: 10 - - _SrcBlend: 1 + - _SrcBlend: 5 + - _SrcBlendAlpha: 1 - _StencilRef: 0 - _StencilRefDepth: 1 - _StencilRefDistortionVec: 4 diff --git a/Assets/Piloto Studio/Materials/Shared/ImpactLightrays_Add.mat b/Assets/Piloto Studio/Materials/Shared/ImpactLightrays_Add.mat index 62609a0b..532d9f31 100644 --- a/Assets/Piloto Studio/Materials/Shared/ImpactLightrays_Add.mat +++ b/Assets/Piloto Studio/Materials/Shared/ImpactLightrays_Add.mat @@ -27,6 +27,8 @@ Material: - MOTIONVECTORS - TransparentDepthPrepass - TransparentDepthPostpass + - DepthOnly + - SHADOWCASTER m_LockedProperties: m_SavedProperties: serializedVersion: 3 @@ -100,6 +102,7 @@ Material: - _DoubleSidedGIMode: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 1 + - _DstBlendAlpha: 1 - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 0 - _ExcludeFromTUAndAA: 0 @@ -112,7 +115,7 @@ Material: - _MiddlePointPos1: 0.5 - _MultiplyNoiseDesaturation: 1 - _OpaqueCullMode: 2 - - _QueueControl: -1 + - _QueueControl: 1 - _QueueOffset: 0 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 @@ -120,7 +123,8 @@ Material: - _RequireSplitLighting: 0 - _SoftFadeFactor: 0.1 - _SourceBlendRGB: 1 - - _SrcBlend: 1 + - _SrcBlend: 5 + - _SrcBlendAlpha: 1 - _StencilRef: 0 - _StencilRefDepth: 1 - _StencilRefDistortionVec: 4 diff --git a/Assets/Piloto Studio/Materials/Shared/LightFlash_Soft.mat b/Assets/Piloto Studio/Materials/Shared/LightFlash_Soft.mat index aba26c07..eb90cf34 100644 --- a/Assets/Piloto Studio/Materials/Shared/LightFlash_Soft.mat +++ b/Assets/Piloto Studio/Materials/Shared/LightFlash_Soft.mat @@ -41,6 +41,8 @@ Material: - MOTIONVECTORS - TransparentDepthPrepass - TransparentDepthPostpass + - DepthOnly + - SHADOWCASTER m_LockedProperties: m_SavedProperties: serializedVersion: 3 @@ -114,6 +116,7 @@ Material: - _DoubleSidedGIMode: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 1 + - _DstBlendAlpha: 1 - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 0 - _ExcludeFromTUAndAA: 0 @@ -126,7 +129,7 @@ Material: - _MiddlePointPos1: 0.5 - _MultiplyNoiseDesaturation: 1 - _OpaqueCullMode: 2 - - _QueueControl: -1 + - _QueueControl: 1 - _QueueOffset: 0 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 @@ -134,7 +137,8 @@ Material: - _RequireSplitLighting: 0 - _SoftFadeFactor: 1 - _SourceBlendRGB: 1 - - _SrcBlend: 1 + - _SrcBlend: 5 + - _SrcBlendAlpha: 1 - _StencilRef: 0 - _StencilRefDepth: 1 - _StencilRefDistortionVec: 4 diff --git a/Assets/Piloto Studio/Materials/Shared/MeshLight.mat b/Assets/Piloto Studio/Materials/Shared/MeshLight.mat index 70d3053f..e9ea7b99 100644 --- a/Assets/Piloto Studio/Materials/Shared/MeshLight.mat +++ b/Assets/Piloto Studio/Materials/Shared/MeshLight.mat @@ -43,6 +43,8 @@ Material: - MOTIONVECTORS - TransparentDepthPrepass - TransparentDepthPostpass + - DepthOnly + - SHADOWCASTER m_LockedProperties: m_SavedProperties: serializedVersion: 3 @@ -227,6 +229,7 @@ Material: - _DoubleSidedGIMode: 0 - _DoubleSidedNormalMode: 1 - _DstBlend: 1 + - _DstBlendAlpha: 1 - _EmissiveColorMode: 1 - _EmissiveExposureWeight: 1 - _EmissiveIntensity: 1 @@ -269,7 +272,7 @@ Material: - _PPDMinSamples: 5 - _PPDPrimitiveLength: 1 - _PPDPrimitiveWidth: 1 - - _QueueControl: -1 + - _QueueControl: 1 - _QueueOffset: 0 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 @@ -285,7 +288,8 @@ Material: - _SpecularAAScreenSpaceVariance: 0.1 - _SpecularAAThreshold: 0.2 - _SpecularOcclusionMode: 1 - - _SrcBlend: 1 + - _SrcBlend: 5 + - _SrcBlendAlpha: 1 - _StencilRef: 0 - _StencilRefDepth: 1 - _StencilRefDistortionVec: 4 diff --git a/Assets/Piloto Studio/Materials/Shared/Smoke_HarshBlack_Add_Soft.mat b/Assets/Piloto Studio/Materials/Shared/Smoke_HarshBlack_Add_Soft.mat index ba58629c..a291c9ce 100644 --- a/Assets/Piloto Studio/Materials/Shared/Smoke_HarshBlack_Add_Soft.mat +++ b/Assets/Piloto Studio/Materials/Shared/Smoke_HarshBlack_Add_Soft.mat @@ -116,6 +116,7 @@ Material: - _DoubleSidedGIMode: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 1 + - _DstBlendAlpha: 1 - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 0 - _ExcludeFromTUAndAA: 0 @@ -136,7 +137,8 @@ Material: - _RequireSplitLighting: 0 - _SoftFadeFactor: 1 - _SourceBlendRGB: 1 - - _SrcBlend: 1 + - _SrcBlend: 5 + - _SrcBlendAlpha: 1 - _StencilRef: 0 - _StencilRefDepth: 1 - _StencilRefDistortionVec: 4 diff --git a/Assets/Piloto Studio/Materials/Shared/Smoke_HarshBlack_Soft.mat b/Assets/Piloto Studio/Materials/Shared/Smoke_HarshBlack_Soft.mat index 54d3b07e..d6431149 100644 --- a/Assets/Piloto Studio/Materials/Shared/Smoke_HarshBlack_Soft.mat +++ b/Assets/Piloto Studio/Materials/Shared/Smoke_HarshBlack_Soft.mat @@ -28,6 +28,8 @@ Material: - MOTIONVECTORS - TransparentDepthPrepass - TransparentDepthPostpass + - DepthOnly + - SHADOWCASTER m_LockedProperties: m_SavedProperties: serializedVersion: 3 @@ -101,6 +103,7 @@ Material: - _DoubleSidedGIMode: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 + - _DstBlendAlpha: 10 - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 0 - _ExcludeFromTUAndAA: 0 @@ -113,7 +116,7 @@ Material: - _MiddlePointPos1: 0.5 - _MultiplyNoiseDesaturation: 1 - _OpaqueCullMode: 2 - - _QueueControl: -1 + - _QueueControl: 1 - _QueueOffset: 0 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 @@ -121,7 +124,8 @@ Material: - _RequireSplitLighting: 0 - _SoftFadeFactor: 1 - _SourceBlendRGB: 10 - - _SrcBlend: 1 + - _SrcBlend: 5 + - _SrcBlendAlpha: 1 - _StencilRef: 0 - _StencilRefDepth: 1 - _StencilRefDistortionVec: 4 diff --git a/Assets/Piloto Studio/Materials/Shared/Smoke_Harsh_Add_Softer.mat b/Assets/Piloto Studio/Materials/Shared/Smoke_Harsh_Add_Softer.mat index 6994a24b..321c3066 100644 --- a/Assets/Piloto Studio/Materials/Shared/Smoke_Harsh_Add_Softer.mat +++ b/Assets/Piloto Studio/Materials/Shared/Smoke_Harsh_Add_Softer.mat @@ -70,6 +70,8 @@ Material: - MOTIONVECTORS - TransparentDepthPrepass - TransparentDepthPostpass + - DepthOnly + - SHADOWCASTER m_LockedProperties: m_SavedProperties: serializedVersion: 3 @@ -143,6 +145,7 @@ Material: - _DoubleSidedGIMode: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 1 + - _DstBlendAlpha: 1 - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 0 - _ExcludeFromTUAndAA: 0 @@ -155,7 +158,7 @@ Material: - _MiddlePointPos1: 0.5 - _MultiplyNoiseDesaturation: 1 - _OpaqueCullMode: 2 - - _QueueControl: -1 + - _QueueControl: 1 - _QueueOffset: 0 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 @@ -163,7 +166,8 @@ Material: - _RequireSplitLighting: 0 - _SoftFadeFactor: 2.6 - _SourceBlendRGB: 1 - - _SrcBlend: 1 + - _SrcBlend: 5 + - _SrcBlendAlpha: 1 - _StencilRef: 0 - _StencilRefDepth: 1 - _StencilRefDistortionVec: 4 diff --git a/Assets/Piloto Studio/Materials/Shared/Smoke_Twirly_AddSoft.mat b/Assets/Piloto Studio/Materials/Shared/Smoke_Twirly_AddSoft.mat index 31052085..5cd46ae8 100644 --- a/Assets/Piloto Studio/Materials/Shared/Smoke_Twirly_AddSoft.mat +++ b/Assets/Piloto Studio/Materials/Shared/Smoke_Twirly_AddSoft.mat @@ -41,6 +41,8 @@ Material: - MOTIONVECTORS - TransparentDepthPrepass - TransparentDepthPostpass + - DepthOnly + - SHADOWCASTER m_LockedProperties: m_SavedProperties: serializedVersion: 3 @@ -114,6 +116,7 @@ Material: - _DoubleSidedGIMode: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 1 + - _DstBlendAlpha: 1 - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 0 - _ExcludeFromTUAndAA: 0 @@ -126,7 +129,7 @@ Material: - _MiddlePointPos1: 0.5 - _MultiplyNoiseDesaturation: 1 - _OpaqueCullMode: 2 - - _QueueControl: -1 + - _QueueControl: 1 - _QueueOffset: 0 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 @@ -134,7 +137,8 @@ Material: - _RequireSplitLighting: 0 - _SoftFadeFactor: 1 - _SourceBlendRGB: 1 - - _SrcBlend: 1 + - _SrcBlend: 5 + - _SrcBlendAlpha: 1 - _StencilRef: 0 - _StencilRefDepth: 1 - _StencilRefDistortionVec: 4 diff --git a/Assets/Piloto Studio/Materials/Shared/Smoke_Twirly_Dissolve.mat b/Assets/Piloto Studio/Materials/Shared/Smoke_Twirly_Dissolve.mat index 1a5ea9e2..df2c5f6e 100644 --- a/Assets/Piloto Studio/Materials/Shared/Smoke_Twirly_Dissolve.mat +++ b/Assets/Piloto Studio/Materials/Shared/Smoke_Twirly_Dissolve.mat @@ -28,6 +28,8 @@ Material: - MOTIONVECTORS - TransparentDepthPrepass - TransparentDepthPostpass + - DepthOnly + - SHADOWCASTER m_LockedProperties: m_SavedProperties: serializedVersion: 3 @@ -101,6 +103,7 @@ Material: - _DoubleSidedGIMode: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 + - _DstBlendAlpha: 10 - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 0 - _ExcludeFromTUAndAA: 0 @@ -113,7 +116,7 @@ Material: - _MiddlePointPos1: 0.5 - _MultiplyNoiseDesaturation: 1 - _OpaqueCullMode: 2 - - _QueueControl: -1 + - _QueueControl: 1 - _QueueOffset: 0 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 @@ -121,7 +124,8 @@ Material: - _RequireSplitLighting: 0 - _SoftFadeFactor: 1 - _SourceBlendRGB: 10 - - _SrcBlend: 1 + - _SrcBlend: 5 + - _SrcBlendAlpha: 1 - _StencilRef: 0 - _StencilRefDepth: 1 - _StencilRefDistortionVec: 4 diff --git a/Assets/Piloto Studio/Materials/Shared/White_AlphaDouble_HyperBright.mat b/Assets/Piloto Studio/Materials/Shared/White_AlphaDouble_HyperBright.mat index 41fd741d..499c2fbc 100644 --- a/Assets/Piloto Studio/Materials/Shared/White_AlphaDouble_HyperBright.mat +++ b/Assets/Piloto Studio/Materials/Shared/White_AlphaDouble_HyperBright.mat @@ -69,6 +69,8 @@ Material: - MOTIONVECTORS - TransparentDepthPrepass - TransparentDepthPostpass + - DepthOnly + - SHADOWCASTER m_LockedProperties: m_SavedProperties: serializedVersion: 3 @@ -142,6 +144,7 @@ Material: - _DoubleSidedGIMode: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 + - _DstBlendAlpha: 10 - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 0 - _ExcludeFromTUAndAA: 0 @@ -154,7 +157,7 @@ Material: - _MiddlePointPos1: 0.5 - _MultiplyNoiseDesaturation: 1 - _OpaqueCullMode: 2 - - _QueueControl: -1 + - _QueueControl: 1 - _QueueOffset: 0 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 @@ -162,7 +165,8 @@ Material: - _RequireSplitLighting: 0 - _SoftFadeFactor: 0.1 - _SourceBlendRGB: 10 - - _SrcBlend: 1 + - _SrcBlend: 5 + - _SrcBlendAlpha: 1 - _StencilRef: 0 - _StencilRefDepth: 1 - _StencilRefDistortionVec: 4 diff --git a/Assets/Piloto Studio/Materials/Shields/Shield_TopLayer_Rainbow.mat b/Assets/Piloto Studio/Materials/Shields/Shield_TopLayer_Rainbow.mat index 8e812425..06850295 100644 --- a/Assets/Piloto Studio/Materials/Shields/Shield_TopLayer_Rainbow.mat +++ b/Assets/Piloto Studio/Materials/Shields/Shield_TopLayer_Rainbow.mat @@ -39,6 +39,8 @@ Material: - MOTIONVECTORS - TransparentDepthPrepass - TransparentDepthPostpass + - DepthOnly + - SHADOWCASTER m_LockedProperties: m_SavedProperties: serializedVersion: 3 @@ -112,6 +114,7 @@ Material: - _DoubleSidedGIMode: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 1 + - _DstBlendAlpha: 1 - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 0 - _ExcludeFromTUAndAA: 0 @@ -124,7 +127,7 @@ Material: - _MiddlePointPos1: 0.5 - _MultiplyNoiseDesaturation: 0 - _OpaqueCullMode: 2 - - _QueueControl: -1 + - _QueueControl: 1 - _QueueOffset: 0 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 @@ -132,7 +135,8 @@ Material: - _RequireSplitLighting: 0 - _SoftFadeFactor: 0.1 - _SourceBlendRGB: 1 - - _SrcBlend: 1 + - _SrcBlend: 5 + - _SrcBlendAlpha: 1 - _StencilRef: 0 - _StencilRefDepth: 1 - _StencilRefDistortionVec: 4 diff --git a/Assets/Piloto Studio/Materials/Shock/ElectricNoise_Quick_DoubleFade.mat b/Assets/Piloto Studio/Materials/Shock/ElectricNoise_Quick_DoubleFade.mat index 7d3ecfda..947ee4cb 100644 --- a/Assets/Piloto Studio/Materials/Shock/ElectricNoise_Quick_DoubleFade.mat +++ b/Assets/Piloto Studio/Materials/Shock/ElectricNoise_Quick_DoubleFade.mat @@ -70,6 +70,8 @@ Material: - MOTIONVECTORS - TransparentDepthPrepass - TransparentDepthPostpass + - DepthOnly + - SHADOWCASTER m_LockedProperties: m_SavedProperties: serializedVersion: 3 @@ -254,6 +256,7 @@ Material: - _DoubleSidedGIMode: 0 - _DoubleSidedNormalMode: 1 - _DstBlend: 1 + - _DstBlendAlpha: 1 - _EmissiveColorMode: 1 - _EmissiveExposureWeight: 1 - _EmissiveIntensity: 1 @@ -296,7 +299,7 @@ Material: - _PPDMinSamples: 5 - _PPDPrimitiveLength: 1 - _PPDPrimitiveWidth: 1 - - _QueueControl: -1 + - _QueueControl: 1 - _QueueOffset: 0 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 @@ -312,7 +315,8 @@ Material: - _SpecularAAScreenSpaceVariance: 0.1 - _SpecularAAThreshold: 0.2 - _SpecularOcclusionMode: 1 - - _SrcBlend: 1 + - _SrcBlend: 5 + - _SrcBlendAlpha: 1 - _StencilRef: 0 - _StencilRefDepth: 1 - _StencilRefDistortionVec: 4 diff --git a/Assets/Piloto Studio/Materials/Shock/Electric_FlipVerticalBlue.mat b/Assets/Piloto Studio/Materials/Shock/Electric_FlipVerticalBlue.mat index 41267e0c..4ecab07d 100644 --- a/Assets/Piloto Studio/Materials/Shock/Electric_FlipVerticalBlue.mat +++ b/Assets/Piloto Studio/Materials/Shock/Electric_FlipVerticalBlue.mat @@ -40,6 +40,8 @@ Material: - MOTIONVECTORS - TransparentDepthPrepass - TransparentDepthPostpass + - DepthOnly + - SHADOWCASTER m_LockedProperties: m_SavedProperties: serializedVersion: 3 @@ -113,6 +115,7 @@ Material: - _DoubleSidedGIMode: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 + - _DstBlendAlpha: 10 - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 0 - _ExcludeFromTUAndAA: 0 @@ -125,7 +128,7 @@ Material: - _MiddlePointPos1: 0.5 - _MultiplyNoiseDesaturation: 1 - _OpaqueCullMode: 2 - - _QueueControl: -1 + - _QueueControl: 1 - _QueueOffset: 0 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 @@ -133,7 +136,8 @@ Material: - _RequireSplitLighting: 0 - _SoftFadeFactor: 1 - _SourceBlendRGB: 10 - - _SrcBlend: 1 + - _SrcBlend: 5 + - _SrcBlendAlpha: 1 - _StencilRef: 0 - _StencilRefDepth: 1 - _StencilRefDistortionVec: 4 diff --git a/Assets/Piloto Studio/Materials/Shock/ElectricityFlipbook.mat b/Assets/Piloto Studio/Materials/Shock/ElectricityFlipbook.mat index 49d099dd..e22139fa 100644 --- a/Assets/Piloto Studio/Materials/Shock/ElectricityFlipbook.mat +++ b/Assets/Piloto Studio/Materials/Shock/ElectricityFlipbook.mat @@ -28,6 +28,8 @@ Material: - MOTIONVECTORS - TransparentDepthPrepass - TransparentDepthPostpass + - DepthOnly + - SHADOWCASTER m_LockedProperties: m_SavedProperties: serializedVersion: 3 @@ -101,6 +103,7 @@ Material: - _DoubleSidedGIMode: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 + - _DstBlendAlpha: 10 - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 0 - _ExcludeFromTUAndAA: 0 @@ -113,7 +116,7 @@ Material: - _MiddlePointPos1: 0.5 - _MultiplyNoiseDesaturation: 1 - _OpaqueCullMode: 2 - - _QueueControl: -1 + - _QueueControl: 1 - _QueueOffset: 0 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 @@ -121,7 +124,8 @@ Material: - _RequireSplitLighting: 0 - _SoftFadeFactor: 0 - _SourceBlendRGB: 10 - - _SrcBlend: 1 + - _SrcBlend: 5 + - _SrcBlendAlpha: 1 - _StencilRef: 0 - _StencilRefDepth: 1 - _StencilRefDistortionVec: 4 diff --git a/Assets/Piloto Studio/Materials/Shock/ElectricityFlipbook_Faded.mat b/Assets/Piloto Studio/Materials/Shock/ElectricityFlipbook_Faded.mat index a5538550..89d104ab 100644 --- a/Assets/Piloto Studio/Materials/Shock/ElectricityFlipbook_Faded.mat +++ b/Assets/Piloto Studio/Materials/Shock/ElectricityFlipbook_Faded.mat @@ -57,6 +57,8 @@ Material: - MOTIONVECTORS - TransparentDepthPrepass - TransparentDepthPostpass + - DepthOnly + - SHADOWCASTER m_LockedProperties: m_SavedProperties: serializedVersion: 3 @@ -130,6 +132,7 @@ Material: - _DoubleSidedGIMode: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 + - _DstBlendAlpha: 10 - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 0 - _ExcludeFromTUAndAA: 0 @@ -142,7 +145,7 @@ Material: - _MiddlePointPos1: 0.5 - _MultiplyNoiseDesaturation: 1 - _OpaqueCullMode: 2 - - _QueueControl: -1 + - _QueueControl: 1 - _QueueOffset: 0 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 @@ -150,7 +153,8 @@ Material: - _RequireSplitLighting: 0 - _SoftFadeFactor: 1 - _SourceBlendRGB: 10 - - _SrcBlend: 1 + - _SrcBlend: 5 + - _SrcBlendAlpha: 1 - _StencilRef: 0 - _StencilRefDepth: 1 - _StencilRefDistortionVec: 4 diff --git a/Assets/Piloto Studio/Materials/Shock/ShockTrail_NoFade_Quick.mat b/Assets/Piloto Studio/Materials/Shock/ShockTrail_NoFade_Quick.mat index 5d89ffe7..b85d2e76 100644 --- a/Assets/Piloto Studio/Materials/Shock/ShockTrail_NoFade_Quick.mat +++ b/Assets/Piloto Studio/Materials/Shock/ShockTrail_NoFade_Quick.mat @@ -43,6 +43,8 @@ Material: - MOTIONVECTORS - TransparentDepthPrepass - TransparentDepthPostpass + - DepthOnly + - SHADOWCASTER m_LockedProperties: m_SavedProperties: serializedVersion: 3 @@ -227,6 +229,7 @@ Material: - _DoubleSidedGIMode: 0 - _DoubleSidedNormalMode: 1 - _DstBlend: 1 + - _DstBlendAlpha: 1 - _EmissiveColorMode: 1 - _EmissiveExposureWeight: 1 - _EmissiveIntensity: 1 @@ -269,7 +272,7 @@ Material: - _PPDMinSamples: 5 - _PPDPrimitiveLength: 1 - _PPDPrimitiveWidth: 1 - - _QueueControl: -1 + - _QueueControl: 1 - _QueueOffset: 0 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 @@ -285,7 +288,8 @@ Material: - _SpecularAAScreenSpaceVariance: 0.1 - _SpecularAAThreshold: 0.2 - _SpecularOcclusionMode: 1 - - _SrcBlend: 1 + - _SrcBlend: 5 + - _SrcBlendAlpha: 1 - _StencilRef: 0 - _StencilRefDepth: 1 - _StencilRefDistortionVec: 4 diff --git a/Assets/Piloto Studio/Materials/Tech/TechSquare_Filled.mat b/Assets/Piloto Studio/Materials/Tech/TechSquare_Filled.mat index 4de13087..fc92a932 100644 --- a/Assets/Piloto Studio/Materials/Tech/TechSquare_Filled.mat +++ b/Assets/Piloto Studio/Materials/Tech/TechSquare_Filled.mat @@ -26,6 +26,8 @@ Material: - MOTIONVECTORS - TransparentDepthPrepass - TransparentDepthPostpass + - DepthOnly + - SHADOWCASTER m_LockedProperties: m_SavedProperties: serializedVersion: 3 @@ -99,6 +101,7 @@ Material: - _DoubleSidedGIMode: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 1 + - _DstBlendAlpha: 1 - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 0 - _ExcludeFromTUAndAA: 0 @@ -111,7 +114,7 @@ Material: - _MiddlePointPos1: 0.5 - _MultiplyNoiseDesaturation: 1 - _OpaqueCullMode: 2 - - _QueueControl: -1 + - _QueueControl: 1 - _QueueOffset: 0 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 @@ -119,7 +122,8 @@ Material: - _RequireSplitLighting: 0 - _SoftFadeFactor: 0.1 - _SourceBlendRGB: 1 - - _SrcBlend: 1 + - _SrcBlend: 5 + - _SrcBlendAlpha: 1 - _StencilRef: 0 - _StencilRefDepth: 1 - _StencilRefDistortionVec: 4 diff --git a/Assets/Piloto Studio/Materials/Tech/Tech_AuraGround2.mat b/Assets/Piloto Studio/Materials/Tech/Tech_AuraGround2.mat index f0fd7097..25e492b7 100644 --- a/Assets/Piloto Studio/Materials/Tech/Tech_AuraGround2.mat +++ b/Assets/Piloto Studio/Materials/Tech/Tech_AuraGround2.mat @@ -55,6 +55,8 @@ Material: - MOTIONVECTORS - TransparentDepthPrepass - TransparentDepthPostpass + - DepthOnly + - SHADOWCASTER m_LockedProperties: m_SavedProperties: serializedVersion: 3 @@ -128,6 +130,7 @@ Material: - _DoubleSidedGIMode: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 1 + - _DstBlendAlpha: 1 - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 0 - _ExcludeFromTUAndAA: 0 @@ -140,7 +143,7 @@ Material: - _MiddlePointPos1: 0.5 - _MultiplyNoiseDesaturation: 1 - _OpaqueCullMode: 2 - - _QueueControl: -1 + - _QueueControl: 1 - _QueueOffset: 0 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 @@ -148,7 +151,8 @@ Material: - _RequireSplitLighting: 0 - _SoftFadeFactor: 0.1 - _SourceBlendRGB: 1 - - _SrcBlend: 1 + - _SrcBlend: 5 + - _SrcBlendAlpha: 1 - _StencilRef: 0 - _StencilRefDepth: 1 - _StencilRefDistortionVec: 4 diff --git a/Assets/Piloto Studio/Materials/Tech/Tech_NeonShapesPickbook.mat b/Assets/Piloto Studio/Materials/Tech/Tech_NeonShapesPickbook.mat index 26913b58..a23b3e5b 100644 --- a/Assets/Piloto Studio/Materials/Tech/Tech_NeonShapesPickbook.mat +++ b/Assets/Piloto Studio/Materials/Tech/Tech_NeonShapesPickbook.mat @@ -52,6 +52,8 @@ Material: - MOTIONVECTORS - TransparentDepthPrepass - TransparentDepthPostpass + - DepthOnly + - SHADOWCASTER m_LockedProperties: m_SavedProperties: serializedVersion: 3 @@ -125,6 +127,7 @@ Material: - _DoubleSidedGIMode: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 1 + - _DstBlendAlpha: 1 - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 0 - _ExcludeFromTUAndAA: 0 @@ -137,7 +140,7 @@ Material: - _MiddlePointPos1: 0.5 - _MultiplyNoiseDesaturation: 1 - _OpaqueCullMode: 2 - - _QueueControl: -1 + - _QueueControl: 1 - _QueueOffset: 0 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 @@ -145,7 +148,8 @@ Material: - _RequireSplitLighting: 0 - _SoftFadeFactor: 0.1 - _SourceBlendRGB: 1 - - _SrcBlend: 1 + - _SrcBlend: 5 + - _SrcBlendAlpha: 1 - _StencilRef: 0 - _StencilRefDepth: 1 - _StencilRefDistortionVec: 4 diff --git a/Assets/Piloto Studio/Materials/Trails/AlphaTrail_Smoky.mat b/Assets/Piloto Studio/Materials/Trails/AlphaTrail_Smoky.mat index 594edb06..7ad0f898 100644 --- a/Assets/Piloto Studio/Materials/Trails/AlphaTrail_Smoky.mat +++ b/Assets/Piloto Studio/Materials/Trails/AlphaTrail_Smoky.mat @@ -43,6 +43,8 @@ Material: - TransparentDepthPostpass - TransparentDepthPrepass - MOTIONVECTORS + - DepthOnly + - SHADOWCASTER m_LockedProperties: m_SavedProperties: serializedVersion: 3 @@ -116,6 +118,7 @@ Material: - _DoubleSidedGIMode: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 + - _DstBlendAlpha: 10 - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 0 - _ExcludeFromTUAndAA: 0 @@ -129,7 +132,7 @@ Material: - _MoveToMaterialUV: 0.7435209 - _MultiplyNoiseDesaturation: 0 - _OpaqueCullMode: 2 - - _QueueControl: -1 + - _QueueControl: 1 - _QueueOffset: 0 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 @@ -137,7 +140,8 @@ Material: - _RequireSplitLighting: 0 - _SoftFadeFactor: 0.1 - _SourceBlendRGB: 10 - - _SrcBlend: 1 + - _SrcBlend: 5 + - _SrcBlendAlpha: 1 - _StencilRef: 0 - _StencilRefDepth: 1 - _StencilRefDistortionVec: 4 diff --git a/Assets/Piloto Studio/Materials/Trails/ShockTrail_NoTapering.mat b/Assets/Piloto Studio/Materials/Trails/ShockTrail_NoTapering.mat index 6404f63f..ff4def45 100644 --- a/Assets/Piloto Studio/Materials/Trails/ShockTrail_NoTapering.mat +++ b/Assets/Piloto Studio/Materials/Trails/ShockTrail_NoTapering.mat @@ -43,6 +43,8 @@ Material: - MOTIONVECTORS - TransparentDepthPrepass - TransparentDepthPostpass + - DepthOnly + - SHADOWCASTER m_LockedProperties: m_SavedProperties: serializedVersion: 3 @@ -227,6 +229,7 @@ Material: - _DoubleSidedGIMode: 0 - _DoubleSidedNormalMode: 1 - _DstBlend: 1 + - _DstBlendAlpha: 1 - _EmissiveColorMode: 1 - _EmissiveExposureWeight: 1 - _EmissiveIntensity: 1 @@ -269,7 +272,7 @@ Material: - _PPDMinSamples: 5 - _PPDPrimitiveLength: 1 - _PPDPrimitiveWidth: 1 - - _QueueControl: -1 + - _QueueControl: 1 - _QueueOffset: 0 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 @@ -285,7 +288,8 @@ Material: - _SpecularAAScreenSpaceVariance: 0.1 - _SpecularAAThreshold: 0.2 - _SpecularOcclusionMode: 1 - - _SrcBlend: 1 + - _SrcBlend: 5 + - _SrcBlendAlpha: 1 - _StencilRef: 0 - _StencilRefDepth: 1 - _StencilRefDistortionVec: 4 diff --git a/Assets/Piloto Studio/Materials/Trails/Spark2_Additive.mat b/Assets/Piloto Studio/Materials/Trails/Spark2_Additive.mat index c8c0de01..e0a1e58a 100644 --- a/Assets/Piloto Studio/Materials/Trails/Spark2_Additive.mat +++ b/Assets/Piloto Studio/Materials/Trails/Spark2_Additive.mat @@ -70,6 +70,8 @@ Material: - MOTIONVECTORS - TransparentDepthPrepass - TransparentDepthPostpass + - DepthOnly + - SHADOWCASTER m_LockedProperties: m_SavedProperties: serializedVersion: 3 @@ -254,6 +256,7 @@ Material: - _DoubleSidedGIMode: 0 - _DoubleSidedNormalMode: 1 - _DstBlend: 1 + - _DstBlendAlpha: 1 - _EmissiveColorMode: 1 - _EmissiveExposureWeight: 1 - _EmissiveIntensity: 1 @@ -295,7 +298,7 @@ Material: - _PPDMinSamples: 5 - _PPDPrimitiveLength: 1 - _PPDPrimitiveWidth: 1 - - _QueueControl: -1 + - _QueueControl: 1 - _QueueOffset: 0 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 @@ -311,7 +314,8 @@ Material: - _SpecularAAScreenSpaceVariance: 0.1 - _SpecularAAThreshold: 0.2 - _SpecularOcclusionMode: 1 - - _SrcBlend: 1 + - _SrcBlend: 5 + - _SrcBlendAlpha: 1 - _StencilRef: 0 - _StencilRefDepth: 1 - _StencilRefDistortionVec: 4 diff --git a/Assets/Piloto Studio/Materials/Trails/SpeedTrail_Alpha.mat b/Assets/Piloto Studio/Materials/Trails/SpeedTrail_Alpha.mat index d5f95999..84d6329a 100644 --- a/Assets/Piloto Studio/Materials/Trails/SpeedTrail_Alpha.mat +++ b/Assets/Piloto Studio/Materials/Trails/SpeedTrail_Alpha.mat @@ -70,6 +70,8 @@ Material: - MOTIONVECTORS - TransparentDepthPrepass - TransparentDepthPostpass + - DepthOnly + - SHADOWCASTER m_LockedProperties: m_SavedProperties: serializedVersion: 3 @@ -254,6 +256,7 @@ Material: - _DoubleSidedGIMode: 0 - _DoubleSidedNormalMode: 1 - _DstBlend: 10 + - _DstBlendAlpha: 10 - _EmissiveColorMode: 1 - _EmissiveExposureWeight: 1 - _EmissiveIntensity: 1 @@ -295,7 +298,7 @@ Material: - _PPDMinSamples: 5 - _PPDPrimitiveLength: 1 - _PPDPrimitiveWidth: 1 - - _QueueControl: -1 + - _QueueControl: 1 - _QueueOffset: 0 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 @@ -311,7 +314,8 @@ Material: - _SpecularAAScreenSpaceVariance: 0.1 - _SpecularAAThreshold: 0.2 - _SpecularOcclusionMode: 1 - - _SrcBlend: 1 + - _SrcBlend: 5 + - _SrcBlendAlpha: 1 - _StencilRef: 0 - _StencilRefDepth: 1 - _StencilRefDistortionVec: 4 diff --git a/Assets/Piloto Studio/Materials/Trails/Trail1.mat b/Assets/Piloto Studio/Materials/Trails/Trail1.mat index c1891e07..a9e2c00c 100644 --- a/Assets/Piloto Studio/Materials/Trails/Trail1.mat +++ b/Assets/Piloto Studio/Materials/Trails/Trail1.mat @@ -57,6 +57,8 @@ Material: - MOTIONVECTORS - TransparentDepthPrepass - TransparentDepthPostpass + - DepthOnly + - SHADOWCASTER m_LockedProperties: m_SavedProperties: serializedVersion: 3 @@ -241,6 +243,7 @@ Material: - _DoubleSidedGIMode: 0 - _DoubleSidedNormalMode: 1 - _DstBlend: 1 + - _DstBlendAlpha: 1 - _EmissiveColorMode: 1 - _EmissiveExposureWeight: 1 - _EmissiveIntensity: 1 @@ -282,7 +285,7 @@ Material: - _PPDMinSamples: 5 - _PPDPrimitiveLength: 1 - _PPDPrimitiveWidth: 1 - - _QueueControl: -1 + - _QueueControl: 1 - _QueueOffset: 0 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 @@ -298,7 +301,8 @@ Material: - _SpecularAAScreenSpaceVariance: 0.1 - _SpecularAAThreshold: 0.2 - _SpecularOcclusionMode: 1 - - _SrcBlend: 1 + - _SrcBlend: 5 + - _SrcBlendAlpha: 1 - _StencilRef: 0 - _StencilRefDepth: 1 - _StencilRefDistortionVec: 4 diff --git a/Assets/Piloto Studio/Materials/Trails/Trail1_Alpha.mat b/Assets/Piloto Studio/Materials/Trails/Trail1_Alpha.mat index 917cfb7b..19276fd4 100644 --- a/Assets/Piloto Studio/Materials/Trails/Trail1_Alpha.mat +++ b/Assets/Piloto Studio/Materials/Trails/Trail1_Alpha.mat @@ -71,6 +71,8 @@ Material: - MOTIONVECTORS - TransparentDepthPrepass - TransparentDepthPostpass + - DepthOnly + - SHADOWCASTER m_LockedProperties: m_SavedProperties: serializedVersion: 3 @@ -255,6 +257,7 @@ Material: - _DoubleSidedGIMode: 0 - _DoubleSidedNormalMode: 1 - _DstBlend: 10 + - _DstBlendAlpha: 10 - _EmissiveColorMode: 1 - _EmissiveExposureWeight: 1 - _EmissiveIntensity: 1 @@ -296,7 +299,7 @@ Material: - _PPDMinSamples: 5 - _PPDPrimitiveLength: 1 - _PPDPrimitiveWidth: 1 - - _QueueControl: -1 + - _QueueControl: 1 - _QueueOffset: 0 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 @@ -312,7 +315,8 @@ Material: - _SpecularAAScreenSpaceVariance: 0.1 - _SpecularAAThreshold: 0.2 - _SpecularOcclusionMode: 1 - - _SrcBlend: 1 + - _SrcBlend: 5 + - _SrcBlendAlpha: 1 - _StencilRef: 0 - _StencilRefDepth: 1 - _StencilRefDistortionVec: 4 diff --git a/Assets/Piloto Studio/Materials/Trails/Trail_SmokyAlpha.mat b/Assets/Piloto Studio/Materials/Trails/Trail_SmokyAlpha.mat index 6bf65954..9b2d1ed0 100644 --- a/Assets/Piloto Studio/Materials/Trails/Trail_SmokyAlpha.mat +++ b/Assets/Piloto Studio/Materials/Trails/Trail_SmokyAlpha.mat @@ -40,6 +40,8 @@ Material: - MOTIONVECTORS - TransparentDepthPrepass - TransparentDepthPostpass + - DepthOnly + - SHADOWCASTER m_LockedProperties: m_SavedProperties: serializedVersion: 3 @@ -113,6 +115,7 @@ Material: - _DoubleSidedGIMode: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 + - _DstBlendAlpha: 10 - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 0 - _ExcludeFromTUAndAA: 0 @@ -125,7 +128,7 @@ Material: - _MiddlePointPos1: 0.5 - _MultiplyNoiseDesaturation: 1 - _OpaqueCullMode: 2 - - _QueueControl: -1 + - _QueueControl: 1 - _QueueOffset: 0 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 @@ -133,7 +136,8 @@ Material: - _RequireSplitLighting: 0 - _SoftFadeFactor: 0.1 - _SourceBlendRGB: 10 - - _SrcBlend: 1 + - _SrcBlend: 5 + - _SrcBlendAlpha: 1 - _StencilRef: 0 - _StencilRefDepth: 1 - _StencilRefDistortionVec: 4 diff --git a/Assets/Piloto Studio/Materials/Trails/Trail_SmokyAlpha_ColorRampedRed.mat b/Assets/Piloto Studio/Materials/Trails/Trail_SmokyAlpha_ColorRampedRed.mat index 2dd0a1c5..3fae3399 100644 --- a/Assets/Piloto Studio/Materials/Trails/Trail_SmokyAlpha_ColorRampedRed.mat +++ b/Assets/Piloto Studio/Materials/Trails/Trail_SmokyAlpha_ColorRampedRed.mat @@ -44,6 +44,8 @@ Material: - MOTIONVECTORS - TransparentDepthPrepass - TransparentDepthPostpass + - DepthOnly + - SHADOWCASTER m_LockedProperties: m_SavedProperties: serializedVersion: 3 @@ -117,6 +119,7 @@ Material: - _DoubleSidedGIMode: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 + - _DstBlendAlpha: 10 - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 0 - _ExcludeFromTUAndAA: 0 @@ -129,7 +132,7 @@ Material: - _MiddlePointPos1: 0.5 - _MultiplyNoiseDesaturation: 1 - _OpaqueCullMode: 2 - - _QueueControl: -1 + - _QueueControl: 1 - _QueueOffset: 0 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 @@ -137,7 +140,8 @@ Material: - _RequireSplitLighting: 0 - _SoftFadeFactor: 0.1 - _SourceBlendRGB: 10 - - _SrcBlend: 1 + - _SrcBlend: 5 + - _SrcBlendAlpha: 1 - _StencilRef: 0 - _StencilRefDepth: 1 - _StencilRefDistortionVec: 4 diff --git a/Assets/Piloto Studio/Materials/Trails/Trail_UniverseNoTapering.mat b/Assets/Piloto Studio/Materials/Trails/Trail_UniverseNoTapering.mat index 43eb2888..d36d1fc3 100644 --- a/Assets/Piloto Studio/Materials/Trails/Trail_UniverseNoTapering.mat +++ b/Assets/Piloto Studio/Materials/Trails/Trail_UniverseNoTapering.mat @@ -54,6 +54,8 @@ Material: - MOTIONVECTORS - TransparentDepthPrepass - TransparentDepthPostpass + - DepthOnly + - SHADOWCASTER m_LockedProperties: m_SavedProperties: serializedVersion: 3 @@ -127,6 +129,7 @@ Material: - _DoubleSidedGIMode: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 1 + - _DstBlendAlpha: 1 - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 0 - _ExcludeFromTUAndAA: 0 @@ -139,7 +142,7 @@ Material: - _MiddlePointPos1: 0.5 - _MultiplyNoiseDesaturation: 1 - _OpaqueCullMode: 2 - - _QueueControl: -1 + - _QueueControl: 1 - _QueueOffset: 0 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 @@ -147,7 +150,8 @@ Material: - _RequireSplitLighting: 0 - _SoftFadeFactor: 0.1 - _SourceBlendRGB: 1 - - _SrcBlend: 1 + - _SrcBlend: 5 + - _SrcBlendAlpha: 1 - _StencilRef: 0 - _StencilRefDepth: 1 - _StencilRefDistortionVec: 4 diff --git a/Assets/Piloto Studio/Materials/Trails/Trail_WavySwirlBlue.mat b/Assets/Piloto Studio/Materials/Trails/Trail_WavySwirlBlue.mat index 27a0bcad..7dcd6668 100644 --- a/Assets/Piloto Studio/Materials/Trails/Trail_WavySwirlBlue.mat +++ b/Assets/Piloto Studio/Materials/Trails/Trail_WavySwirlBlue.mat @@ -44,6 +44,8 @@ Material: - MOTIONVECTORS - TransparentDepthPrepass - TransparentDepthPostpass + - DepthOnly + - SHADOWCASTER m_LockedProperties: m_SavedProperties: serializedVersion: 3 @@ -117,6 +119,7 @@ Material: - _DoubleSidedGIMode: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 + - _DstBlendAlpha: 10 - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 0 - _ExcludeFromTUAndAA: 0 @@ -129,7 +132,7 @@ Material: - _MiddlePointPos1: 0.5 - _MultiplyNoiseDesaturation: 1 - _OpaqueCullMode: 2 - - _QueueControl: -1 + - _QueueControl: 1 - _QueueOffset: 0 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 @@ -137,7 +140,8 @@ Material: - _RequireSplitLighting: 0 - _SoftFadeFactor: 0.1 - _SourceBlendRGB: 10 - - _SrcBlend: 1 + - _SrcBlend: 5 + - _SrcBlendAlpha: 1 - _StencilRef: 0 - _StencilRefDepth: 1 - _StencilRefDistortionVec: 4 diff --git a/Assets/Piloto Studio/Materials/Trails/Trail_WispyGeneric_Add.mat b/Assets/Piloto Studio/Materials/Trails/Trail_WispyGeneric_Add.mat index a64486d9..69def4b6 100644 --- a/Assets/Piloto Studio/Materials/Trails/Trail_WispyGeneric_Add.mat +++ b/Assets/Piloto Studio/Materials/Trails/Trail_WispyGeneric_Add.mat @@ -58,6 +58,8 @@ Material: - MOTIONVECTORS - TransparentDepthPrepass - TransparentDepthPostpass + - DepthOnly + - SHADOWCASTER m_LockedProperties: m_SavedProperties: serializedVersion: 3 @@ -131,6 +133,7 @@ Material: - _DoubleSidedGIMode: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 1 + - _DstBlendAlpha: 1 - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 0 - _ExcludeFromTUAndAA: 0 @@ -143,7 +146,7 @@ Material: - _MiddlePointPos1: 0.5 - _MultiplyNoiseDesaturation: 1 - _OpaqueCullMode: 2 - - _QueueControl: -1 + - _QueueControl: 1 - _QueueOffset: 0 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 @@ -151,7 +154,8 @@ Material: - _RequireSplitLighting: 0 - _SoftFadeFactor: 0.25 - _SourceBlendRGB: 1 - - _SrcBlend: 1 + - _SrcBlend: 5 + - _SrcBlendAlpha: 1 - _StencilRef: 0 - _StencilRefDepth: 1 - _StencilRefDistortionVec: 4 diff --git a/Assets/Piloto Studio/Materials/Trails/Tral3.mat b/Assets/Piloto Studio/Materials/Trails/Tral3.mat index 69fea505..3ddbfbbc 100644 --- a/Assets/Piloto Studio/Materials/Trails/Tral3.mat +++ b/Assets/Piloto Studio/Materials/Trails/Tral3.mat @@ -57,6 +57,8 @@ Material: - MOTIONVECTORS - TransparentDepthPrepass - TransparentDepthPostpass + - DepthOnly + - SHADOWCASTER m_LockedProperties: m_SavedProperties: serializedVersion: 3 @@ -241,6 +243,7 @@ Material: - _DoubleSidedGIMode: 0 - _DoubleSidedNormalMode: 1 - _DstBlend: 1 + - _DstBlendAlpha: 1 - _EmissiveColorMode: 1 - _EmissiveExposureWeight: 1 - _EmissiveIntensity: 1 @@ -282,7 +285,7 @@ Material: - _PPDMinSamples: 5 - _PPDPrimitiveLength: 1 - _PPDPrimitiveWidth: 1 - - _QueueControl: -1 + - _QueueControl: 1 - _QueueOffset: 0 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 @@ -298,7 +301,8 @@ Material: - _SpecularAAScreenSpaceVariance: 0.1 - _SpecularAAThreshold: 0.2 - _SpecularOcclusionMode: 1 - - _SrcBlend: 1 + - _SrcBlend: 5 + - _SrcBlendAlpha: 1 - _StencilRef: 0 - _StencilRefDepth: 1 - _StencilRefDistortionVec: 4 diff --git a/Assets/Piloto Studio/Materials/Void & Universe/Flare_GlintPurple.mat b/Assets/Piloto Studio/Materials/Void & Universe/Flare_GlintPurple.mat index 520cfb37..4a5218e7 100644 --- a/Assets/Piloto Studio/Materials/Void & Universe/Flare_GlintPurple.mat +++ b/Assets/Piloto Studio/Materials/Void & Universe/Flare_GlintPurple.mat @@ -40,6 +40,8 @@ Material: - MOTIONVECTORS - TransparentDepthPrepass - TransparentDepthPostpass + - DepthOnly + - SHADOWCASTER m_LockedProperties: m_SavedProperties: serializedVersion: 3 @@ -113,6 +115,7 @@ Material: - _DoubleSidedGIMode: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 1 + - _DstBlendAlpha: 1 - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 0 - _ExcludeFromTUAndAA: 0 @@ -125,7 +128,7 @@ Material: - _MiddlePointPos1: 0.5 - _MultiplyNoiseDesaturation: 1 - _OpaqueCullMode: 2 - - _QueueControl: -1 + - _QueueControl: 1 - _QueueOffset: 0 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 @@ -133,7 +136,8 @@ Material: - _RequireSplitLighting: 0 - _SoftFadeFactor: 0.1 - _SourceBlendRGB: 1 - - _SrcBlend: 1 + - _SrcBlend: 5 + - _SrcBlendAlpha: 1 - _StencilRef: 0 - _StencilRefDepth: 1 - _StencilRefDistortionVec: 4 diff --git a/Assets/Piloto Studio/Materials/Void & Universe/GalaxySuck.mat b/Assets/Piloto Studio/Materials/Void & Universe/GalaxySuck.mat index 25f5b373..d1c806c7 100644 --- a/Assets/Piloto Studio/Materials/Void & Universe/GalaxySuck.mat +++ b/Assets/Piloto Studio/Materials/Void & Universe/GalaxySuck.mat @@ -53,6 +53,8 @@ Material: - MOTIONVECTORS - TransparentDepthPrepass - TransparentDepthPostpass + - DepthOnly + - SHADOWCASTER m_LockedProperties: m_SavedProperties: serializedVersion: 3 @@ -126,6 +128,7 @@ Material: - _DoubleSidedGIMode: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 + - _DstBlendAlpha: 10 - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 0 - _ExcludeFromTUAndAA: 0 @@ -138,7 +141,7 @@ Material: - _MiddlePointPos1: 0.5 - _MultiplyNoiseDesaturation: 1 - _OpaqueCullMode: 2 - - _QueueControl: -1 + - _QueueControl: 1 - _QueueOffset: 0 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 @@ -146,7 +149,8 @@ Material: - _RequireSplitLighting: 0 - _SoftFadeFactor: 0.1 - _SourceBlendRGB: 10 - - _SrcBlend: 1 + - _SrcBlend: 5 + - _SrcBlendAlpha: 1 - _StencilRef: 0 - _StencilRefDepth: 1 - _StencilRefDistortionVec: 4 diff --git a/Assets/Piloto Studio/Materials/Void & Universe/VoidRibbons_Atlas.mat b/Assets/Piloto Studio/Materials/Void & Universe/VoidRibbons_Atlas.mat index 3a800347..19a802bb 100644 --- a/Assets/Piloto Studio/Materials/Void & Universe/VoidRibbons_Atlas.mat +++ b/Assets/Piloto Studio/Materials/Void & Universe/VoidRibbons_Atlas.mat @@ -57,6 +57,8 @@ Material: - MOTIONVECTORS - TransparentDepthPrepass - TransparentDepthPostpass + - DepthOnly + - SHADOWCASTER m_LockedProperties: m_SavedProperties: serializedVersion: 3 @@ -130,6 +132,7 @@ Material: - _DoubleSidedGIMode: 0 - _DoubleSidedNormalMode: 2 - _DstBlend: 10 + - _DstBlendAlpha: 10 - _EnableBlendModePreserveSpecularLighting: 0 - _EnableFogOnTransparent: 0 - _ExcludeFromTUAndAA: 0 @@ -142,7 +145,7 @@ Material: - _MiddlePointPos1: 0.5 - _MultiplyNoiseDesaturation: 1 - _OpaqueCullMode: 2 - - _QueueControl: -1 + - _QueueControl: 1 - _QueueOffset: 0 - _ReceivesSSR: 0 - _ReceivesSSRTransparent: 0 @@ -150,7 +153,8 @@ Material: - _RequireSplitLighting: 0 - _SoftFadeFactor: 0 - _SourceBlendRGB: 10 - - _SrcBlend: 1 + - _SrcBlend: 5 + - _SrcBlendAlpha: 1 - _StencilRef: 0 - _StencilRefDepth: 1 - _StencilRefDistortionVec: 4 diff --git a/Assets/Stylized Water 3/_Demo/DemoAssets/Terrain/Layers/SWS_Seaweed.terrainlayer b/Assets/Stylized Water 3/_Demo/DemoAssets/Terrain/Layers/SWS_Seaweed.terrainlayer index 4e288e33..7b4990f5 100644 --- a/Assets/Stylized Water 3/_Demo/DemoAssets/Terrain/Layers/SWS_Seaweed.terrainlayer +++ b/Assets/Stylized Water 3/_Demo/DemoAssets/Terrain/Layers/SWS_Seaweed.terrainlayer @@ -20,3 +20,4 @@ TerrainLayer: m_DiffuseRemapMax: {x: 1, y: 1, z: 1, w: 1} m_MaskMapRemapMin: {x: 0, y: 0, z: 0, w: 0} m_MaskMapRemapMax: {x: 1, y: 1, z: 1, w: 1} + m_SmoothnessSource: 1 diff --git a/Assets/Stylized Water 3/_Demo/DemoAssets/Terrain/SW3 Demo Island.asset b/Assets/Stylized Water 3/_Demo/DemoAssets/Terrain/SW3 Demo Island.asset index e79bb59e..c768b8cf 100644 --- a/Assets/Stylized Water 3/_Demo/DemoAssets/Terrain/SW3 Demo Island.asset +++ b/Assets/Stylized Water 3/_Demo/DemoAssets/Terrain/SW3 Demo Island.asset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:02f49fac92196de312e430021b46aa1fafbd66238750dc608f3611edf024588f +oid sha256:0b78735c95c0c59df136632c30c4af33c10f5712c023723603323e7be98c6300 size 5581228 diff --git a/Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Roboto-Bold SDF.asset b/Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Roboto-Bold SDF.asset index 4a7fbf95..654c804d 100644 --- a/Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Roboto-Bold SDF.asset +++ b/Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Roboto-Bold SDF.asset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:44996938d3ec85f88a83f736ea92a691d7a4a88d4bca4cdaaeb6f087d7092698 -size 2242581 +oid sha256:d23d9e76f5032fc22cf08117817c5c575582c63413e3f69817a72de7172c1bef +size 2241799 diff --git a/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Fallback.asset b/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Fallback.asset index d03dedd4..19f87263 100644 --- a/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Fallback.asset +++ b/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Fallback.asset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6f310fab8a74c8d8d08574af4325641da7e6dcf2ca42ef251645df4a0b1e84b3 -size 17480 +oid sha256:06458142b1e806fbba1e415f22b2c262a80a8881a3ebb880f89a841f77f3eb3f +size 544626