diff --git a/.vs/RimWorld-Animation-Studio/v16/.suo b/.vs/RimWorld-Animation-Studio/v16/.suo index d438df66..ba2bf947 100644 Binary files a/.vs/RimWorld-Animation-Studio/v16/.suo and b/.vs/RimWorld-Animation-Studio/v16/.suo differ diff --git a/Assets/Resources/Prefabs/KeyframeSlider.prefab b/Assets/Resources/Prefabs/KeyframeSlider.prefab index f3132a03..1fd10fd3 100644 --- a/Assets/Resources/Prefabs/KeyframeSlider.prefab +++ b/Assets/Resources/Prefabs/KeyframeSlider.prefab @@ -242,6 +242,8 @@ MonoBehaviour: maxGhosts: 50 actorID: 0 keyframeID: 0 + linkedSlider: {fileID: 0} + linkedOffset: 0 --- !u!1 &8359461402257861397 GameObject: m_ObjectHideFlags: 0 diff --git a/Assets/Scenes/MainScene.unity b/Assets/Scenes/MainScene.unity index 327dbd5f..0691edc4 100644 --- a/Assets/Scenes/MainScene.unity +++ b/Assets/Scenes/MainScene.unity @@ -8316,7 +8316,7 @@ MonoBehaviour: actorCard: {fileID: 3804747680621674853} animationTimelines: {fileID: 1100016168} actorBodies: {fileID: 1828035561} - stretchkeyframesToggle: {fileID: 462332576} + stretchKeyframesToggle: {fileID: 462332576} playBackSpeedField: {fileID: 1579799916} playToggleButton: {fileID: 79733375} actorBodyPrefab: {fileID: -4411442180840688308, guid: dc4c8b005322f3b46a2f122a55f38db2, @@ -17458,7 +17458,7 @@ MonoBehaviour: m_TargetGraphic: {fileID: 922060210} m_HandleRect: {fileID: 922060209} m_Direction: 2 - m_Value: 1 + m_Value: 0 m_Size: 1 m_NumberOfSteps: 0 m_OnValueChanged: diff --git a/Assets/Scripts/AnimationComponents/AnimationClips/PawnAnimationClip.cs b/Assets/Scripts/AnimationComponents/AnimationClips/PawnAnimationClip.cs index 9b669672..fa57829d 100644 --- a/Assets/Scripts/AnimationComponents/AnimationClips/PawnAnimationClip.cs +++ b/Assets/Scripts/AnimationComponents/AnimationClips/PawnAnimationClip.cs @@ -34,15 +34,14 @@ namespace RimWorldAnimationStudio HeadBob.Clear(); GenitalAngle.Clear(); + int keyframePosition = 0; int duration = 0; + keyframes[keyframes.Count - 1].tickDuration = 1; + foreach (PawnKeyframe frame in keyframes) { duration += frame.tickDuration; } - int keyframePosition = 0; - - keyframes[keyframes.Count - 1].tickDuration = 1; - for (int i = 0; i < keyframes.Count; i++) { PawnKeyframe keyframe = keyframes[i]; @@ -82,7 +81,7 @@ namespace RimWorldAnimationStudio quiver.Add(keyframePosition + keyframe.tickDuration - 1, false); } - keyframe.atTick = keyframePosition + 1; + keyframe.atTick = keyframePosition + Constants.minTick; keyframePosition += keyframe.tickDuration; } } diff --git a/Assets/Scripts/AnimationComponents/KeyFrames/PawnKeyframe.cs b/Assets/Scripts/AnimationComponents/KeyFrames/PawnKeyframe.cs index dc3db273..fcf0886e 100644 --- a/Assets/Scripts/AnimationComponents/KeyFrames/PawnKeyframe.cs +++ b/Assets/Scripts/AnimationComponents/KeyFrames/PawnKeyframe.cs @@ -3,6 +3,7 @@ using System.Linq; using System.Xml; using System.Xml.Serialization; using UnityEngine; +using UnityEngine.UI; namespace RimWorldAnimationStudio { @@ -45,5 +46,10 @@ namespace RimWorldAnimationStudio public bool HasValidKeyframeID() { return keyframeID >= 100000 && keyframeID < 1000000; } + + public KeyframeSlider GetKeyframeSlider() + { + return Selectable.allSelectablesArray.FirstOrDefault(x => x.GetComponent()?.keyframeID == keyframeID)?.GetComponent< KeyframeSlider>(); + } } } diff --git a/Assets/Scripts/GUI/KeyframeSlider.cs b/Assets/Scripts/GUI/KeyframeSlider.cs index 0a61a4f2..2af15d83 100644 --- a/Assets/Scripts/GUI/KeyframeSlider.cs +++ b/Assets/Scripts/GUI/KeyframeSlider.cs @@ -23,9 +23,15 @@ namespace RimWorldAnimationStudio private PawnAnimationClip clip; private PawnKeyframe keyframe; - private float dragTimeStart = -1f; - public void Initialize(AnimationTimeline timeline, int actorID, int keyframeID) + private float dragTimeStart = -1f; + private int dragTickStart = -1; + + public KeyframeSlider linkedSlider; + public Keyframe pivotKeyframe; + public int linkedOffset; + + public void Initialize(AnimationTimeline timeline, int actorID, int keyframeID) { this.timeline = timeline; this.clip = Workspace.Instance.GetPawnAnimationClip(actorID); @@ -48,8 +54,6 @@ namespace RimWorldAnimationStudio keyframe.atTick = (int)value; clip.BuildSimpleCurves(); - //AnimationController.Instance.stageTick = keyframe.atTick.Value; - timeline.InitiateUpdateOfGhostFrames(); } @@ -99,52 +103,76 @@ namespace RimWorldAnimationStudio if (Input.GetKey(KeyCode.LeftControl) || Input.GetKey(KeyCode.LeftCommand)) { Workspace.keyframeID.Add(keyframeID); } - else + else if (Workspace.keyframeID.NullOrEmpty() || Workspace.keyframeID.Contains(keyframeID) == false) { Workspace.keyframeID = new List { keyframeID }; } if (eventData.clickCount >= 2) { AnimationController.Instance.stageTick = keyframe.atTick.Value; } - - //Workspace.Instance.RecordEvent("Keyframe selected"); } public void OnBeginDrag(PointerEventData eventData) { - //AnimationController.Instance.stageTick = keyframe.atTick.Value; Workspace.actorID = actorID; - - Workspace.keyframeID = new List { keyframeID }; - dragTimeStart = Time.unscaledTime; + dragTickStart = keyframe.atTick.Value; + + if (Workspace.keyframeID.NullOrEmpty() || Workspace.keyframeID.Contains(keyframeID) == false) + { Workspace.keyframeID = new List { keyframeID }; } + + List selectedKeyframes = Workspace.Instance.GetPawnKeyframes(Workspace.keyframeID).Except(new List() { keyframe })?.ToList(); + + // Link other slected keyframes to the movement of this one + if (selectedKeyframes.NotNullOrEmpty()) + { + foreach (PawnKeyframe selectedKeyframe in selectedKeyframes) + { + KeyframeSlider unlinkedSlider = selectedKeyframe.GetKeyframeSlider(); + + if (unlinkedSlider != null) + { + unlinkedSlider.linkedSlider = this; + unlinkedSlider.linkedOffset = unlinkedSlider.keyframe.atTick.Value - keyframe.atTick.Value; + } + } + + pivotKeyframe = keyframe.atTick < selectedKeyframes[0].atTick ? selectedKeyframes.Last() : selectedKeyframes.First(); + } } public override void OnDrag(PointerEventData eventData) { - if (keyframe.atTick == 1) - { value = 1; return; } + Workspace.actorID = actorID; + // The first keyframe can't be moved + if (keyframe.atTick == Constants.minTick) + { value = Constants.minTick; return; } + + // Sticky drag if (Time.unscaledTime - dragTimeStart < 0.05f) return; interactable = true; base.OnDrag(eventData); + // Snap to nearest keyframe (on another timeline) int targetTick = Workspace.FindClosestKeyFrameAtTick(keyframe.atTick.Value, Mathf.CeilToInt(Workspace.StageWindowSize * 0.01f), actorID); - if (Input.GetKey(KeyCode.LeftShift) && Workspace.Instance.DoesPawnKeyframeExistAtTick(Workspace.stageID, actorID, targetTick) == false) { value = (float)targetTick; } - // Prevent frames from being moved to tick 1 - if (value == 1) - { value = 2; } - - //AnimationController.Instance.stageTick = keyframe.atTick.Value; - Workspace.actorID = actorID; + // Prevent other frames from being moved to the first keyframe + if (value == Constants.minTick) + { value = Constants.minTick + 1; } } public void OnEndDrag(PointerEventData eventData) { - if (keyframe.atTick == 1) - { value = 1; return; } + if (keyframe.atTick == Constants.minTick) + { value = Constants.minTick; return; } + + foreach (Selectable otherSlider in Selectable.allSelectablesArray) + { + if (otherSlider is KeyframeSlider) + { Debug.Log("unlinked keyframes"); (otherSlider as KeyframeSlider).linkedSlider = null; } + } interactable = false; Workspace.Instance.RecordEvent("Keyframe move"); @@ -154,25 +182,60 @@ namespace RimWorldAnimationStudio { base.Update(); + // Update outdated values + if (Workspace.keyframeID.NullOrEmpty() || Workspace.keyframeID.Contains(keyframeID) == false) + { linkedSlider = null; } + + else if (AnimationController.Instance.stretchKeyframesToggle.isOn && linkedSlider != null && linkedSlider.IsPivotKeyframe(keyframe) == false) + { + //int minTick = linkedSlider.pivotKeyframe.atTick.Value + GetIndexAmongstSelectedKeyframes(); + //value = Mathf.Clamp(Mathf.CeilToInt(linkedSlider.keyframe.atTick.Value + linkedOffset * linkedSlider.ScaledOffsetFromPivot()), minTick, Workspace.StageWindowSize); + value = Mathf.CeilToInt(linkedSlider.keyframe.atTick.Value + linkedOffset * linkedSlider.ScaledOffsetFromPivot()); + } + + else if (AnimationController.Instance.stretchKeyframesToggle.isOn == false && linkedSlider != null) + { value = Mathf.Clamp(linkedSlider.keyframe.atTick.Value + linkedOffset, Constants.minTick + 1, Workspace.StageWindowSize); } + + else if (keyframe.atTick.Value != value) + { value = keyframe.atTick.Value; } + + // Update key color if (keyframe.atTick.HasValue && Workspace.keyframeID.Contains(keyframeID) && AnimationController.Instance.stageTick == keyframe.atTick.Value) { handleImage.color = Constants.ColorPurple; } else if (Workspace.keyframeID.Contains(keyframeID)) { handleImage.color = Constants.ColorCyan; } - else if (keyframe.atTick.HasValue && AnimationController.Instance.stageTick == keyframe.atTick.Value) + else if (AnimationController.Instance.stageTick == keyframe.atTick.Value) { handleImage.color = Constants.ColorPink; } else { handleImage.color = Constants.ColorGrey; } + // Show sound symbol string soundDef = Workspace.Instance.GetPawnKeyframe(actorID, keyframeID)?.soundEffect; + soundIcon.SetActive(soundDef != null && soundDef != "" && soundDef != "None"); + } - if (soundDef != null && soundDef != "" && soundDef != "None") - { soundIcon.SetActive(true); } + public float ScaledOffsetFromPivot() + { + //if (IsPivotKeyframe(keyframe)) return 1f; + if (dragTickStart == pivotKeyframe.atTick.Value) return 0f; - else - { soundIcon.SetActive(false); } + return (float)(keyframe.atTick.Value - pivotKeyframe.atTick.Value) / (dragTickStart - pivotKeyframe.atTick.Value); + } + + public bool IsPivotKeyframe(Keyframe otherKeyframe) + { + return pivotKeyframe == otherKeyframe; + } + + public int GetIndexAmongstSelectedKeyframes() + { + List selectedKeyframes = Workspace.Instance.GetPawnKeyframes(Workspace.keyframeID).OrderBy(x => x.atTick)?.ToList(); + if (selectedKeyframes.NullOrEmpty() || selectedKeyframes.Contains(keyframe) == false) return -1; + + return selectedKeyframes.IndexOf(keyframe); } } } diff --git a/Assets/Scripts/GUI/StageCard.cs b/Assets/Scripts/GUI/StageCard.cs index 811eb6d4..486c84b1 100644 --- a/Assets/Scripts/GUI/StageCard.cs +++ b/Assets/Scripts/GUI/StageCard.cs @@ -64,7 +64,7 @@ namespace RimWorldAnimationStudio if (Workspace.stageID != transform.GetSiblingIndex()) { - AnimationController.Instance.stageTick = 1; + AnimationController.Instance.stageTick = Constants.minTick; Workspace.Instance.RecordEvent("Stage selected"); } diff --git a/Assets/Scripts/Managers/AnimationController.cs b/Assets/Scripts/Managers/AnimationController.cs index 15e041d3..a215599e 100644 --- a/Assets/Scripts/Managers/AnimationController.cs +++ b/Assets/Scripts/Managers/AnimationController.cs @@ -13,7 +13,7 @@ namespace RimWorldAnimationStudio { [Header("Animation settings")] public bool isAnimating = false; - public int stageTick = 1; + public int stageTick = Constants.minTick; [Header("Object references")] public Slider stageTimelineSlider; @@ -25,7 +25,7 @@ namespace RimWorldAnimationStudio public ActorCard actorCard; public Transform animationTimelines; public Transform actorBodies; - public Toggle stretchkeyframesToggle; + public Toggle stretchKeyframesToggle; public InputField playBackSpeedField; public Button playToggleButton; @@ -34,7 +34,7 @@ namespace RimWorldAnimationStudio public GameObject animationTimelinePrefab; // Private timing variables - private int lastStageTick = 1; + private int lastStageTick = Constants.minTick; private float timeSinceLastUpdate = 0; private int cycleIndex = 0; private bool isDirty = true; @@ -57,7 +57,7 @@ namespace RimWorldAnimationStudio { Initialize(); } // Update tick if animating - stageTick = Mathf.Clamp(stageTick, 1, Workspace.StageWindowSize); + stageTick = Mathf.Clamp(stageTick, Constants.minTick, Workspace.StageWindowSize); if (isAnimating) { @@ -72,12 +72,12 @@ namespace RimWorldAnimationStudio if (stageTick > Workspace.StageWindowSize) { if (stageLoopDropdown.value == 1) - { stageTick = 1; } + { stageTick = Constants.minTick; } else if (stageLoopDropdown.value >= 2) { ++cycleIndex; - stageTick = 1; + stageTick = Constants.minTick; if ((stageLoopDropdown.value == 2 && cycleIndex >= int.Parse(cyclesNormalField.text)) || (stageLoopDropdown.value == 3 && cycleIndex >= int.Parse(cyclesFastField.text))) @@ -148,7 +148,7 @@ namespace RimWorldAnimationStudio bool requiresGenitals = actor.requiredGenitals.Any(x => x == "Penis") || Workspace.animationDef.actors[actorID].isFucking; float clipPercent = (float)(stageTick % clip.duration) / clip.duration; - if (stageTick == clip.duration) clipPercent = 1f; + if (stageTick > Constants.minTick && stageTick == clip.duration) clipPercent = 1f; if (Workspace.animationDef.animationStages[Workspace.stageID].isLooping == false) { clipPercent = (float)stageTick / clip.duration; } @@ -401,7 +401,7 @@ namespace RimWorldAnimationStudio if (tickToPasteAt < 1) continue; if (tickToPasteAt > Workspace.StageWindowSize) { - if (stretchkeyframesToggle.isOn) + if (stretchKeyframesToggle.isOn) { ResizeStageWindowSize(tickToPasteAt); } else continue; @@ -487,7 +487,7 @@ namespace RimWorldAnimationStudio if (keyframe == null || clip == null) return; - if (keyframe.atTick == 1 && force == false) + if (keyframe.atTick == Constants.minTick && force == false) { Debug.LogWarning("Cannot delete key frame - the first key frame of an animation clip cannot be deleted"); return; } if (clip.keyframes.Count <= 2 && force == false) @@ -527,7 +527,7 @@ namespace RimWorldAnimationStudio if (Workspace.animationDef == null) return; int.TryParse(animationClipTimeField.text, out int newStageTick); - stageTick = Mathf.Clamp(newStageTick, 1, Workspace.StageWindowSize); + stageTick = Mathf.Clamp(newStageTick, Constants.minTick, Workspace.StageWindowSize); stageTimelineSlider.value = stageTick; } @@ -540,8 +540,11 @@ namespace RimWorldAnimationStudio Debug.Log("Resizing animation clip length to " + newStageWindowSize.ToString() + " ticks."); - if (stretchkeyframesToggle.isOn) - { StretchKeyframes(newStageWindowSize); } + if (stretchKeyframesToggle.isOn) + { + List keyframes = Workspace.animationDef.animationStages[Workspace.stageID].animationClips.SelectMany(x => x.keyframes)?.ToList(); + StretchKeyframes(keyframes, Workspace.StageWindowSize, newStageWindowSize); + } else { @@ -566,7 +569,7 @@ namespace RimWorldAnimationStudio ResizeStageWindowSize(newStageWindowSize); } - public void StretchKeyframes(int newStageWindowSize) + /*public void StretchKeyframes(int newStageWindowSize) { float scale = (float)newStageWindowSize / Workspace.StageWindowSize; @@ -580,6 +583,39 @@ namespace RimWorldAnimationStudio clip.BuildSimpleCurves(); } + }*/ + + public void StretchKeyframes(List keyframesToStretch, int v1, int v2) + { + int v0 = keyframesToStretch.Min(x => x.atTick.Value); + + if (v1 == v0) + { OffsetKeyframes(keyframesToStretch, v1, v2); return; } + + float scaleFactor = (float)(v2 - v0) / (v1 - v0); + + foreach (PawnKeyframe keyframe in keyframesToStretch) + { + keyframe.atTick = Mathf.RoundToInt(scaleFactor * (keyframe.atTick.Value - v0) + v0); + } + + foreach(PawnAnimationClip clip in Workspace.animationDef.animationStages[Workspace.stageID].animationClips) + { clip.BuildSimpleCurves(); } + } + + public void OffsetKeyframes(List keyframesToOffset, int v1, int v2) + { + float offset = v2 - v1; + + foreach (PawnKeyframe keyframe in keyframesToOffset) + { + keyframe.atTick = Mathf.RoundToInt(keyframe.atTick.Value + offset); + Debug.Log(keyframe.atTick); + Workspace.Instance.GetAnimationClipThatOwnsKeyframe(keyframe.keyframeID, out int clipID).BuildSimpleCurves(); + } + + foreach (PawnAnimationClip clip in Workspace.animationDef.animationStages[Workspace.stageID].animationClips) + { clip.BuildSimpleCurves(); } } public void ResizeStageWindowSize(int newStageWindowSize) diff --git a/Assets/Scripts/Managers/InputManager.cs b/Assets/Scripts/Managers/InputManager.cs index 69d0e21a..6afcc1d8 100644 --- a/Assets/Scripts/Managers/InputManager.cs +++ b/Assets/Scripts/Managers/InputManager.cs @@ -341,19 +341,19 @@ namespace RimWorldAnimationStudio public void ToPreviousTick() { if (Workspace.animationDef == null) return; - AnimationController.Instance.stageTick = Mathf.Clamp(AnimationController.Instance.stageTick - 1, 1, Workspace.StageWindowSize); + AnimationController.Instance.stageTick = Mathf.Clamp(AnimationController.Instance.stageTick - 1, Constants.minTick, Workspace.StageWindowSize); } public void ToNextTick() { if (Workspace.animationDef == null) return; - AnimationController.Instance.stageTick = Mathf.Clamp(AnimationController.Instance.stageTick + 1, 1, Workspace.StageWindowSize); + AnimationController.Instance.stageTick = Mathf.Clamp(AnimationController.Instance.stageTick + 1, Constants.minTick, Workspace.StageWindowSize); } public void ToFirstTick() { if (Workspace.animationDef == null) return; - AnimationController.Instance.stageTick = 1; + AnimationController.Instance.stageTick = Constants.minTick; } public void ToLastTick() diff --git a/Assets/Scripts/Math/Constants/Constants.cs b/Assets/Scripts/Math/Constants/Constants.cs index 7e783304..891f4b4c 100644 --- a/Assets/Scripts/Math/Constants/Constants.cs +++ b/Assets/Scripts/Math/Constants/Constants.cs @@ -8,6 +8,7 @@ namespace RimWorldAnimationStudio public static class Constants { public static int defaultAnimationClipLength = 600; + public static int minTick = 1; public static int minAnimationClipLength = 2; public static int maxAnimationClipLength = 9999; diff --git a/Assets/Scripts/Workspace/Workspace.cs b/Assets/Scripts/Workspace/Workspace.cs index 8101ea00..0ac8a52d 100644 --- a/Assets/Scripts/Workspace/Workspace.cs +++ b/Assets/Scripts/Workspace/Workspace.cs @@ -37,6 +37,9 @@ namespace RimWorldAnimationStudio if (animationDef.animationStages[stageID].stageWindowSize < 0) { animationDef.animationStages[stageID].stageWindowSize = animationDef.animationStages[stageID].animationClips.Select(x => x.duration).Max(); } + Debug.Log(animationDef.animationStages[stageID].stageWindowSize); + + return animationDef.animationStages[stageID].stageWindowSize; } } diff --git a/Library/ArtifactDB b/Library/ArtifactDB index 373aa6d8..a4ca2c88 100644 Binary files a/Library/ArtifactDB and b/Library/ArtifactDB differ diff --git a/Library/Artifacts/02/02d038242aec7f08a0ae0ef619f35253 b/Library/Artifacts/02/02d038242aec7f08a0ae0ef619f35253 new file mode 100644 index 00000000..98c4912a Binary files /dev/null and b/Library/Artifacts/02/02d038242aec7f08a0ae0ef619f35253 differ diff --git a/Library/Artifacts/08/0849b09ca822548dbe60ea1cf0d488a7 b/Library/Artifacts/08/0849b09ca822548dbe60ea1cf0d488a7 new file mode 100644 index 00000000..1d683eff Binary files /dev/null and b/Library/Artifacts/08/0849b09ca822548dbe60ea1cf0d488a7 differ diff --git a/Library/Artifacts/62/62e03d82699bc107796b6a42349be48e b/Library/Artifacts/09/09d5f5a0acc8d9eb4e75d166755c7858 similarity index 51% rename from Library/Artifacts/62/62e03d82699bc107796b6a42349be48e rename to Library/Artifacts/09/09d5f5a0acc8d9eb4e75d166755c7858 index 97072c78..17f2ab10 100644 Binary files a/Library/Artifacts/62/62e03d82699bc107796b6a42349be48e and b/Library/Artifacts/09/09d5f5a0acc8d9eb4e75d166755c7858 differ diff --git a/Library/Artifacts/0e/0e12311ad2d088363b0e1aa9d63c6e76 b/Library/Artifacts/0e/0e12311ad2d088363b0e1aa9d63c6e76 new file mode 100644 index 00000000..59c74d51 Binary files /dev/null and b/Library/Artifacts/0e/0e12311ad2d088363b0e1aa9d63c6e76 differ diff --git a/Library/Artifacts/0e/0e9c5317b41cd4f57111a1dd7414a115 b/Library/Artifacts/0e/0e9c5317b41cd4f57111a1dd7414a115 new file mode 100644 index 00000000..5e74be58 Binary files /dev/null and b/Library/Artifacts/0e/0e9c5317b41cd4f57111a1dd7414a115 differ diff --git a/Library/Artifacts/0f/0fc8b8437dd20dce6456b408a2605838 b/Library/Artifacts/0f/0fc8b8437dd20dce6456b408a2605838 new file mode 100644 index 00000000..baef6762 Binary files /dev/null and b/Library/Artifacts/0f/0fc8b8437dd20dce6456b408a2605838 differ diff --git a/Library/Artifacts/11/11b0b41b683dc2d8d4c91636e263d16c b/Library/Artifacts/11/11b0b41b683dc2d8d4c91636e263d16c deleted file mode 100644 index f170620e..00000000 Binary files a/Library/Artifacts/11/11b0b41b683dc2d8d4c91636e263d16c and /dev/null differ diff --git a/Library/Artifacts/12/126de03784b1ff4ed6b4f7f3bece7efa b/Library/Artifacts/12/126de03784b1ff4ed6b4f7f3bece7efa deleted file mode 100644 index 693e1081..00000000 Binary files a/Library/Artifacts/12/126de03784b1ff4ed6b4f7f3bece7efa and /dev/null differ diff --git a/Library/Artifacts/1a/1abece6722aa0aef74545a4c54c26668 b/Library/Artifacts/1a/1abece6722aa0aef74545a4c54c26668 new file mode 100644 index 00000000..b03b4226 Binary files /dev/null and b/Library/Artifacts/1a/1abece6722aa0aef74545a4c54c26668 differ diff --git a/Library/Artifacts/1b/1be3197b4cea048fca37d5d1e008ae8f b/Library/Artifacts/1b/1be3197b4cea048fca37d5d1e008ae8f new file mode 100644 index 00000000..d97f18f8 Binary files /dev/null and b/Library/Artifacts/1b/1be3197b4cea048fca37d5d1e008ae8f differ diff --git a/Library/Artifacts/1c/1cd72c8d9cf2e32d335c1559118249c3 b/Library/Artifacts/1c/1cd72c8d9cf2e32d335c1559118249c3 new file mode 100644 index 00000000..605ef153 Binary files /dev/null and b/Library/Artifacts/1c/1cd72c8d9cf2e32d335c1559118249c3 differ diff --git a/Library/Artifacts/1d/1df6d1645d796f1d98c338b82971d674 b/Library/Artifacts/1d/1df6d1645d796f1d98c338b82971d674 new file mode 100644 index 00000000..ae54b82e Binary files /dev/null and b/Library/Artifacts/1d/1df6d1645d796f1d98c338b82971d674 differ diff --git a/Library/Artifacts/16/16d9a81a2d6093a011cc3320059d3086 b/Library/Artifacts/21/2185b63a589824799b6e884ffe5f561b similarity index 51% rename from Library/Artifacts/16/16d9a81a2d6093a011cc3320059d3086 rename to Library/Artifacts/21/2185b63a589824799b6e884ffe5f561b index e722ce3f..300b0276 100644 Binary files a/Library/Artifacts/16/16d9a81a2d6093a011cc3320059d3086 and b/Library/Artifacts/21/2185b63a589824799b6e884ffe5f561b differ diff --git a/Library/Artifacts/23/2314d4e006fd0f8f255b77d566dcddd7 b/Library/Artifacts/23/2314d4e006fd0f8f255b77d566dcddd7 deleted file mode 100644 index 00eb1ca6..00000000 Binary files a/Library/Artifacts/23/2314d4e006fd0f8f255b77d566dcddd7 and /dev/null differ diff --git a/Library/Artifacts/23/2391bf4e29e8a5b6c1fa9644fc9b7e2a b/Library/Artifacts/23/2391bf4e29e8a5b6c1fa9644fc9b7e2a new file mode 100644 index 00000000..ff8a300c Binary files /dev/null and b/Library/Artifacts/23/2391bf4e29e8a5b6c1fa9644fc9b7e2a differ diff --git a/Library/Artifacts/28/2877e5a14f5c299bd3601757424a7c89 b/Library/Artifacts/28/2877e5a14f5c299bd3601757424a7c89 deleted file mode 100644 index 33392ded..00000000 Binary files a/Library/Artifacts/28/2877e5a14f5c299bd3601757424a7c89 and /dev/null differ diff --git a/Library/Artifacts/2c/2c86dab841b89a3a9cc26efefec2ac5f b/Library/Artifacts/2c/2c86dab841b89a3a9cc26efefec2ac5f deleted file mode 100644 index 4bb44f93..00000000 Binary files a/Library/Artifacts/2c/2c86dab841b89a3a9cc26efefec2ac5f and /dev/null differ diff --git a/Library/Artifacts/2e/2ea355ffc2a6caf29b72c0f2f22af111 b/Library/Artifacts/2e/2ea355ffc2a6caf29b72c0f2f22af111 new file mode 100644 index 00000000..2e07458b Binary files /dev/null and b/Library/Artifacts/2e/2ea355ffc2a6caf29b72c0f2f22af111 differ diff --git a/Library/Artifacts/2f/2ff3701b57e2a01e2c2215bb4351fbda b/Library/Artifacts/2f/2ff3701b57e2a01e2c2215bb4351fbda deleted file mode 100644 index 3ffcecba..00000000 Binary files a/Library/Artifacts/2f/2ff3701b57e2a01e2c2215bb4351fbda and /dev/null differ diff --git a/Library/Artifacts/32/323cfebd1ab3ab1eb238bca56546faea b/Library/Artifacts/32/323cfebd1ab3ab1eb238bca56546faea new file mode 100644 index 00000000..4e5e7fe2 Binary files /dev/null and b/Library/Artifacts/32/323cfebd1ab3ab1eb238bca56546faea differ diff --git a/Library/Artifacts/34/3443da02546860be97e3e7fa8b74051f b/Library/Artifacts/34/3443da02546860be97e3e7fa8b74051f new file mode 100644 index 00000000..759ceb41 Binary files /dev/null and b/Library/Artifacts/34/3443da02546860be97e3e7fa8b74051f differ diff --git a/Library/Artifacts/36/3668d4d5a5812a1434d80ce887fb1b93 b/Library/Artifacts/36/3668d4d5a5812a1434d80ce887fb1b93 new file mode 100644 index 00000000..2c96821e Binary files /dev/null and b/Library/Artifacts/36/3668d4d5a5812a1434d80ce887fb1b93 differ diff --git a/Library/Artifacts/38/38868a65cfad47d13178814300492661 b/Library/Artifacts/38/38868a65cfad47d13178814300492661 deleted file mode 100644 index 4a1e7fe6..00000000 Binary files a/Library/Artifacts/38/38868a65cfad47d13178814300492661 and /dev/null differ diff --git a/Library/Artifacts/3d/3d24a99f7315ba23370371b8d70e1880 b/Library/Artifacts/3d/3d24a99f7315ba23370371b8d70e1880 new file mode 100644 index 00000000..60873d54 Binary files /dev/null and b/Library/Artifacts/3d/3d24a99f7315ba23370371b8d70e1880 differ diff --git a/Library/Artifacts/3d/3df8530ec14d4448d800a26ddeb13d49 b/Library/Artifacts/3d/3df8530ec14d4448d800a26ddeb13d49 new file mode 100644 index 00000000..c8ee36a2 Binary files /dev/null and b/Library/Artifacts/3d/3df8530ec14d4448d800a26ddeb13d49 differ diff --git a/Library/Artifacts/28/282bc08edb1fe781ce03e0a09447a1d1 b/Library/Artifacts/3f/3f7d662127509df25ba49e5255102b2e similarity index 95% rename from Library/Artifacts/28/282bc08edb1fe781ce03e0a09447a1d1 rename to Library/Artifacts/3f/3f7d662127509df25ba49e5255102b2e index f341d3fd..9b1fa0a5 100644 Binary files a/Library/Artifacts/28/282bc08edb1fe781ce03e0a09447a1d1 and b/Library/Artifacts/3f/3f7d662127509df25ba49e5255102b2e differ diff --git a/Library/Artifacts/44/44ea4205fba0f72708875d2996cede48 b/Library/Artifacts/44/44ea4205fba0f72708875d2996cede48 deleted file mode 100644 index be497454..00000000 Binary files a/Library/Artifacts/44/44ea4205fba0f72708875d2996cede48 and /dev/null differ diff --git a/Library/Artifacts/45/455b03c70f8edb4c582326a578d548a8 b/Library/Artifacts/45/455b03c70f8edb4c582326a578d548a8 deleted file mode 100644 index 361f2cd9..00000000 Binary files a/Library/Artifacts/45/455b03c70f8edb4c582326a578d548a8 and /dev/null differ diff --git a/Library/Artifacts/48/48a264869c5f2da939f104384c13ee8c b/Library/Artifacts/48/48a264869c5f2da939f104384c13ee8c deleted file mode 100644 index 966b8707..00000000 Binary files a/Library/Artifacts/48/48a264869c5f2da939f104384c13ee8c and /dev/null differ diff --git a/Library/Artifacts/49/498a068a834e39ea2168f2ef4539f92e b/Library/Artifacts/49/498a068a834e39ea2168f2ef4539f92e new file mode 100644 index 00000000..d8013d45 Binary files /dev/null and b/Library/Artifacts/49/498a068a834e39ea2168f2ef4539f92e differ diff --git a/Library/Artifacts/4b/4b85a0fce4aa6186cc9dc3bff8a46e78 b/Library/Artifacts/4b/4b85a0fce4aa6186cc9dc3bff8a46e78 deleted file mode 100644 index 20881805..00000000 Binary files a/Library/Artifacts/4b/4b85a0fce4aa6186cc9dc3bff8a46e78 and /dev/null differ diff --git a/Library/Artifacts/4d/4d1ccf450769c817225cddb4efa536e8 b/Library/Artifacts/4d/4d1ccf450769c817225cddb4efa536e8 new file mode 100644 index 00000000..b61e886c Binary files /dev/null and b/Library/Artifacts/4d/4d1ccf450769c817225cddb4efa536e8 differ diff --git a/Library/Artifacts/4e/4e3907b6490ab944db19a6e3919df192 b/Library/Artifacts/4e/4e3907b6490ab944db19a6e3919df192 deleted file mode 100644 index 6ae99001..00000000 Binary files a/Library/Artifacts/4e/4e3907b6490ab944db19a6e3919df192 and /dev/null differ diff --git a/Library/Artifacts/4e/4ee7c56c6207d6b358b710043a101b0f b/Library/Artifacts/4e/4ee7c56c6207d6b358b710043a101b0f deleted file mode 100644 index b1a51e7d..00000000 Binary files a/Library/Artifacts/4e/4ee7c56c6207d6b358b710043a101b0f and /dev/null differ diff --git a/Library/Artifacts/00/0079499d318ab22970c3670f455d7603 b/Library/Artifacts/4f/4f8ed142a7c2608511e1c60192124240 similarity index 51% rename from Library/Artifacts/00/0079499d318ab22970c3670f455d7603 rename to Library/Artifacts/4f/4f8ed142a7c2608511e1c60192124240 index cf515cbf..15d42b12 100644 Binary files a/Library/Artifacts/00/0079499d318ab22970c3670f455d7603 and b/Library/Artifacts/4f/4f8ed142a7c2608511e1c60192124240 differ diff --git a/Library/Artifacts/51/5131fe4a17a1247a0551a24ba6e1962f b/Library/Artifacts/51/5131fe4a17a1247a0551a24ba6e1962f new file mode 100644 index 00000000..17baf159 Binary files /dev/null and b/Library/Artifacts/51/5131fe4a17a1247a0551a24ba6e1962f differ diff --git a/Library/Artifacts/52/52c999a19a1bfe6ac0312fc3ab3654cc b/Library/Artifacts/52/52c999a19a1bfe6ac0312fc3ab3654cc deleted file mode 100644 index aa24efe8..00000000 Binary files a/Library/Artifacts/52/52c999a19a1bfe6ac0312fc3ab3654cc and /dev/null differ diff --git a/Library/Artifacts/53/533f3a44005dcc9282cf381609785135 b/Library/Artifacts/53/533f3a44005dcc9282cf381609785135 deleted file mode 100644 index 07537a96..00000000 Binary files a/Library/Artifacts/53/533f3a44005dcc9282cf381609785135 and /dev/null differ diff --git a/Library/Artifacts/53/53b42736bdd902205c64434b2067e5b0 b/Library/Artifacts/53/53b42736bdd902205c64434b2067e5b0 deleted file mode 100644 index 7e5bf1c9..00000000 Binary files a/Library/Artifacts/53/53b42736bdd902205c64434b2067e5b0 and /dev/null differ diff --git a/Library/Artifacts/be/beb3b045511bd918925a38634fdea0f5 b/Library/Artifacts/54/542163b115139605c90060f97521ff54 similarity index 92% rename from Library/Artifacts/be/beb3b045511bd918925a38634fdea0f5 rename to Library/Artifacts/54/542163b115139605c90060f97521ff54 index f65c27a7..2a452018 100644 Binary files a/Library/Artifacts/be/beb3b045511bd918925a38634fdea0f5 and b/Library/Artifacts/54/542163b115139605c90060f97521ff54 differ diff --git a/Library/Artifacts/55/5528dbd1e936348442a803d991e85312 b/Library/Artifacts/55/5528dbd1e936348442a803d991e85312 deleted file mode 100644 index 001553b8..00000000 Binary files a/Library/Artifacts/55/5528dbd1e936348442a803d991e85312 and /dev/null differ diff --git a/Library/Artifacts/56/56c6f1e704206665706fe41ed727b2d0 b/Library/Artifacts/56/56c6f1e704206665706fe41ed727b2d0 new file mode 100644 index 00000000..83123fff Binary files /dev/null and b/Library/Artifacts/56/56c6f1e704206665706fe41ed727b2d0 differ diff --git a/Library/Artifacts/cc/cc495cdd4bbc67b3c287623a8ee720fa b/Library/Artifacts/5a/5a52b1acbc2f4f2cfd61fa2829f185b5 similarity index 95% rename from Library/Artifacts/cc/cc495cdd4bbc67b3c287623a8ee720fa rename to Library/Artifacts/5a/5a52b1acbc2f4f2cfd61fa2829f185b5 index 53c5f2a3..a16bab67 100644 Binary files a/Library/Artifacts/cc/cc495cdd4bbc67b3c287623a8ee720fa and b/Library/Artifacts/5a/5a52b1acbc2f4f2cfd61fa2829f185b5 differ diff --git a/Library/Artifacts/5a/5a57c9b955014b661a1c774bb6ecb782 b/Library/Artifacts/5a/5a57c9b955014b661a1c774bb6ecb782 new file mode 100644 index 00000000..2f4a5418 Binary files /dev/null and b/Library/Artifacts/5a/5a57c9b955014b661a1c774bb6ecb782 differ diff --git a/Library/Artifacts/5a/5aedf05dc9124869240e1364da64c4ec b/Library/Artifacts/5a/5aedf05dc9124869240e1364da64c4ec deleted file mode 100644 index 2fdf2012..00000000 Binary files a/Library/Artifacts/5a/5aedf05dc9124869240e1364da64c4ec and /dev/null differ diff --git a/Library/Artifacts/5e/5ee82798c357968ec0b9bf4622589f63 b/Library/Artifacts/5e/5ee82798c357968ec0b9bf4622589f63 new file mode 100644 index 00000000..9e3c357e Binary files /dev/null and b/Library/Artifacts/5e/5ee82798c357968ec0b9bf4622589f63 differ diff --git a/Library/Artifacts/60/605d028ce47aa1384a27aa9c11093b4d b/Library/Artifacts/60/605d028ce47aa1384a27aa9c11093b4d new file mode 100644 index 00000000..87b89cf3 Binary files /dev/null and b/Library/Artifacts/60/605d028ce47aa1384a27aa9c11093b4d differ diff --git a/Library/Artifacts/64/649a6fc93ff5bff0e8410995bd1d62d0 b/Library/Artifacts/64/649a6fc93ff5bff0e8410995bd1d62d0 new file mode 100644 index 00000000..6f5bb98e Binary files /dev/null and b/Library/Artifacts/64/649a6fc93ff5bff0e8410995bd1d62d0 differ diff --git a/Library/Artifacts/65/65cb6c7686662a85a37bbd01831eec35 b/Library/Artifacts/65/65cb6c7686662a85a37bbd01831eec35 deleted file mode 100644 index 5f252b26..00000000 Binary files a/Library/Artifacts/65/65cb6c7686662a85a37bbd01831eec35 and /dev/null differ diff --git a/Library/Artifacts/66/66570a981116293f4bacb9581dcbcdbc b/Library/Artifacts/66/66570a981116293f4bacb9581dcbcdbc new file mode 100644 index 00000000..93663baa Binary files /dev/null and b/Library/Artifacts/66/66570a981116293f4bacb9581dcbcdbc differ diff --git a/Library/Artifacts/67/678663bf1ace83d88bb8809803a0feec b/Library/Artifacts/67/678663bf1ace83d88bb8809803a0feec new file mode 100644 index 00000000..5dad78e7 Binary files /dev/null and b/Library/Artifacts/67/678663bf1ace83d88bb8809803a0feec differ diff --git a/Library/Artifacts/68/6864f5348d56c2245e607c8ae048cbad b/Library/Artifacts/68/6864f5348d56c2245e607c8ae048cbad deleted file mode 100644 index 815ffebe..00000000 Binary files a/Library/Artifacts/68/6864f5348d56c2245e607c8ae048cbad and /dev/null differ diff --git a/Library/Artifacts/68/68757ffd15e539f44e1d0933dbb07f21 b/Library/Artifacts/68/68757ffd15e539f44e1d0933dbb07f21 deleted file mode 100644 index 43365b82..00000000 Binary files a/Library/Artifacts/68/68757ffd15e539f44e1d0933dbb07f21 and /dev/null differ diff --git a/Library/Artifacts/60/6098e06242189d71f4e7c50820861db7 b/Library/Artifacts/6d/6d073850cf62451d5d93ee9da26f8a2a similarity index 98% rename from Library/Artifacts/60/6098e06242189d71f4e7c50820861db7 rename to Library/Artifacts/6d/6d073850cf62451d5d93ee9da26f8a2a index 57fd4c14..b005a74a 100644 Binary files a/Library/Artifacts/60/6098e06242189d71f4e7c50820861db7 and b/Library/Artifacts/6d/6d073850cf62451d5d93ee9da26f8a2a differ diff --git a/Library/Artifacts/6f/6f6b361a5c4f34ac04b8c5e8dee4b14d b/Library/Artifacts/6f/6f6b361a5c4f34ac04b8c5e8dee4b14d deleted file mode 100644 index 1a6645b4..00000000 Binary files a/Library/Artifacts/6f/6f6b361a5c4f34ac04b8c5e8dee4b14d and /dev/null differ diff --git a/Library/Artifacts/73/73970973be75cfcba4b6985db34d359e b/Library/Artifacts/73/73970973be75cfcba4b6985db34d359e new file mode 100644 index 00000000..409117df Binary files /dev/null and b/Library/Artifacts/73/73970973be75cfcba4b6985db34d359e differ diff --git a/Library/Artifacts/80/806ca765630a0000d90c11162ca1719a b/Library/Artifacts/80/806ca765630a0000d90c11162ca1719a new file mode 100644 index 00000000..ef5f3874 Binary files /dev/null and b/Library/Artifacts/80/806ca765630a0000d90c11162ca1719a differ diff --git a/Library/Artifacts/89/89619f484fdf58b39e0b938400a64608 b/Library/Artifacts/89/89619f484fdf58b39e0b938400a64608 new file mode 100644 index 00000000..164aa836 Binary files /dev/null and b/Library/Artifacts/89/89619f484fdf58b39e0b938400a64608 differ diff --git a/Library/Artifacts/89/89fa44427cebb99893d66cefec028087 b/Library/Artifacts/89/89fa44427cebb99893d66cefec028087 new file mode 100644 index 00000000..c277523d Binary files /dev/null and b/Library/Artifacts/89/89fa44427cebb99893d66cefec028087 differ diff --git a/Library/Artifacts/8a/8af2c2d0ca781bb4666d524a1922d351 b/Library/Artifacts/8a/8af2c2d0ca781bb4666d524a1922d351 new file mode 100644 index 00000000..21375c34 Binary files /dev/null and b/Library/Artifacts/8a/8af2c2d0ca781bb4666d524a1922d351 differ diff --git a/Library/Artifacts/8d/8d96e626a0fbda17cebc78df7299570b b/Library/Artifacts/8d/8d96e626a0fbda17cebc78df7299570b deleted file mode 100644 index 69fcee56..00000000 Binary files a/Library/Artifacts/8d/8d96e626a0fbda17cebc78df7299570b and /dev/null differ diff --git a/Library/Artifacts/8c/8c5b93e921be5a5ea74a8334f7bb4c84 b/Library/Artifacts/8e/8eeb3e8240d542a465e60b3eadfab3ed similarity index 51% rename from Library/Artifacts/8c/8c5b93e921be5a5ea74a8334f7bb4c84 rename to Library/Artifacts/8e/8eeb3e8240d542a465e60b3eadfab3ed index 428a6e88..b94aeb27 100644 Binary files a/Library/Artifacts/8c/8c5b93e921be5a5ea74a8334f7bb4c84 and b/Library/Artifacts/8e/8eeb3e8240d542a465e60b3eadfab3ed differ diff --git a/Library/Artifacts/90/90efccdf87697142c0eb2872657295de b/Library/Artifacts/90/90efccdf87697142c0eb2872657295de deleted file mode 100644 index 030be5cb..00000000 Binary files a/Library/Artifacts/90/90efccdf87697142c0eb2872657295de and /dev/null differ diff --git a/Library/Artifacts/91/916b645af3c0b2ef8b41920896a0d165 b/Library/Artifacts/91/916b645af3c0b2ef8b41920896a0d165 new file mode 100644 index 00000000..27ebb691 Binary files /dev/null and b/Library/Artifacts/91/916b645af3c0b2ef8b41920896a0d165 differ diff --git a/Library/Artifacts/94/94452e40e1d683df59bb47fc974daca1 b/Library/Artifacts/94/94452e40e1d683df59bb47fc974daca1 deleted file mode 100644 index d0c717da..00000000 Binary files a/Library/Artifacts/94/94452e40e1d683df59bb47fc974daca1 and /dev/null differ diff --git a/Library/Artifacts/94/944d0e282cd10494e5d6b6f937a01fbf b/Library/Artifacts/94/944d0e282cd10494e5d6b6f937a01fbf new file mode 100644 index 00000000..942d3f9d Binary files /dev/null and b/Library/Artifacts/94/944d0e282cd10494e5d6b6f937a01fbf differ diff --git a/Library/Artifacts/94/94856e6bdd22cf835b494abed65be7c0 b/Library/Artifacts/94/94856e6bdd22cf835b494abed65be7c0 new file mode 100644 index 00000000..9ddd85df Binary files /dev/null and b/Library/Artifacts/94/94856e6bdd22cf835b494abed65be7c0 differ diff --git a/Library/Artifacts/95/9535dba88e96b11a6049796a2486ae9f b/Library/Artifacts/95/9535dba88e96b11a6049796a2486ae9f new file mode 100644 index 00000000..28e3e876 Binary files /dev/null and b/Library/Artifacts/95/9535dba88e96b11a6049796a2486ae9f differ diff --git a/Library/Artifacts/98/98d5e8314e079b51f51c1baaacca04f8 b/Library/Artifacts/98/98d5e8314e079b51f51c1baaacca04f8 deleted file mode 100644 index 4c671372..00000000 Binary files a/Library/Artifacts/98/98d5e8314e079b51f51c1baaacca04f8 and /dev/null differ diff --git a/Library/Artifacts/0c/0ccbf41ed3f6a7d95088e05b4dd8d604 b/Library/Artifacts/99/99ab23523be72ba427e1c8f3c737912e similarity index 93% rename from Library/Artifacts/0c/0ccbf41ed3f6a7d95088e05b4dd8d604 rename to Library/Artifacts/99/99ab23523be72ba427e1c8f3c737912e index d34ac4f7..9d6807e1 100644 Binary files a/Library/Artifacts/0c/0ccbf41ed3f6a7d95088e05b4dd8d604 and b/Library/Artifacts/99/99ab23523be72ba427e1c8f3c737912e differ diff --git a/Library/Artifacts/9a/9a0d64004528f452f40cc7ec14e196d8 b/Library/Artifacts/9a/9a0d64004528f452f40cc7ec14e196d8 new file mode 100644 index 00000000..99e16cc1 Binary files /dev/null and b/Library/Artifacts/9a/9a0d64004528f452f40cc7ec14e196d8 differ diff --git a/Library/Artifacts/9d/9d583772fc9560e69191089fd96952f6 b/Library/Artifacts/9d/9d583772fc9560e69191089fd96952f6 deleted file mode 100644 index 39026ff1..00000000 Binary files a/Library/Artifacts/9d/9d583772fc9560e69191089fd96952f6 and /dev/null differ diff --git a/Library/Artifacts/27/27f4ce52838da7cd7ffb3002cbdad27e b/Library/Artifacts/9e/9e01f22821bd69e1442d2c62f4d773ab similarity index 97% rename from Library/Artifacts/27/27f4ce52838da7cd7ffb3002cbdad27e rename to Library/Artifacts/9e/9e01f22821bd69e1442d2c62f4d773ab index bc0f81fe..f1419a37 100644 Binary files a/Library/Artifacts/27/27f4ce52838da7cd7ffb3002cbdad27e and b/Library/Artifacts/9e/9e01f22821bd69e1442d2c62f4d773ab differ diff --git a/Library/Artifacts/34/34b6c56438f99ea0f67b9096581ea543 b/Library/Artifacts/9e/9e3019cbdeaea5f2007208846059b4c6 similarity index 50% rename from Library/Artifacts/34/34b6c56438f99ea0f67b9096581ea543 rename to Library/Artifacts/9e/9e3019cbdeaea5f2007208846059b4c6 index 242b78cf..c389757a 100644 Binary files a/Library/Artifacts/34/34b6c56438f99ea0f67b9096581ea543 and b/Library/Artifacts/9e/9e3019cbdeaea5f2007208846059b4c6 differ diff --git a/Library/Artifacts/80/800ba3c25bf5e2b11cbe58afb47f76ba b/Library/Artifacts/a0/a00f49cf5ac488a05b9467a25525d828 similarity index 92% rename from Library/Artifacts/80/800ba3c25bf5e2b11cbe58afb47f76ba rename to Library/Artifacts/a0/a00f49cf5ac488a05b9467a25525d828 index 2cd3f18c..292bee9f 100644 Binary files a/Library/Artifacts/80/800ba3c25bf5e2b11cbe58afb47f76ba and b/Library/Artifacts/a0/a00f49cf5ac488a05b9467a25525d828 differ diff --git a/Library/Artifacts/a0/a0d9c5823b6824a8c0d942b9b7f9911c b/Library/Artifacts/a0/a0d9c5823b6824a8c0d942b9b7f9911c new file mode 100644 index 00000000..5d42b841 Binary files /dev/null and b/Library/Artifacts/a0/a0d9c5823b6824a8c0d942b9b7f9911c differ diff --git a/Library/Artifacts/a1/a1df5a1b70c88300b8b54a1d537be0db b/Library/Artifacts/a1/a1df5a1b70c88300b8b54a1d537be0db new file mode 100644 index 00000000..949f22f6 Binary files /dev/null and b/Library/Artifacts/a1/a1df5a1b70c88300b8b54a1d537be0db differ diff --git a/Library/Artifacts/a5/a56188b5cbb00f65c056c97c0c9cf1c7 b/Library/Artifacts/a5/a56188b5cbb00f65c056c97c0c9cf1c7 deleted file mode 100644 index 04f7a078..00000000 Binary files a/Library/Artifacts/a5/a56188b5cbb00f65c056c97c0c9cf1c7 and /dev/null differ diff --git a/Library/Artifacts/a7/a71c575c22c59430a9b7c6052ff5b0b3 b/Library/Artifacts/a7/a71c575c22c59430a9b7c6052ff5b0b3 new file mode 100644 index 00000000..c3eee965 Binary files /dev/null and b/Library/Artifacts/a7/a71c575c22c59430a9b7c6052ff5b0b3 differ diff --git a/Library/Artifacts/e0/e0ef95b99b3f583df2dc630cc974f6ee b/Library/Artifacts/ac/ac8ca18eeb2b48a944fd3e14c53de09b similarity index 98% rename from Library/Artifacts/e0/e0ef95b99b3f583df2dc630cc974f6ee rename to Library/Artifacts/ac/ac8ca18eeb2b48a944fd3e14c53de09b index 70632172..f5ae180c 100644 Binary files a/Library/Artifacts/e0/e0ef95b99b3f583df2dc630cc974f6ee and b/Library/Artifacts/ac/ac8ca18eeb2b48a944fd3e14c53de09b differ diff --git a/Library/Artifacts/ae/ae8acaf5e06375958ac1f8f4e1829be8 b/Library/Artifacts/ae/ae8acaf5e06375958ac1f8f4e1829be8 new file mode 100644 index 00000000..4dd8e561 Binary files /dev/null and b/Library/Artifacts/ae/ae8acaf5e06375958ac1f8f4e1829be8 differ diff --git a/Library/Artifacts/af/af3e2b083ded73933e142bd964ee7c6a b/Library/Artifacts/af/af3e2b083ded73933e142bd964ee7c6a new file mode 100644 index 00000000..114226ba Binary files /dev/null and b/Library/Artifacts/af/af3e2b083ded73933e142bd964ee7c6a differ diff --git a/Library/Artifacts/af/affbde7006e621a330ad3c3dd8a61e86 b/Library/Artifacts/af/affbde7006e621a330ad3c3dd8a61e86 deleted file mode 100644 index 28b2df77..00000000 Binary files a/Library/Artifacts/af/affbde7006e621a330ad3c3dd8a61e86 and /dev/null differ diff --git a/Library/Artifacts/b2/b2ee9e171216ca5ab2b303e4a7813074 b/Library/Artifacts/b2/b2ee9e171216ca5ab2b303e4a7813074 deleted file mode 100644 index 3e689cd5..00000000 Binary files a/Library/Artifacts/b2/b2ee9e171216ca5ab2b303e4a7813074 and /dev/null differ diff --git a/Library/Artifacts/b4/b493d91632c61bbb00bd3a216fb36954 b/Library/Artifacts/b4/b493d91632c61bbb00bd3a216fb36954 new file mode 100644 index 00000000..70642384 Binary files /dev/null and b/Library/Artifacts/b4/b493d91632c61bbb00bd3a216fb36954 differ diff --git a/Library/Artifacts/b5/b530e645717e1a38c555ecbb0e87d9b2 b/Library/Artifacts/b5/b530e645717e1a38c555ecbb0e87d9b2 new file mode 100644 index 00000000..0b32b8aa Binary files /dev/null and b/Library/Artifacts/b5/b530e645717e1a38c555ecbb0e87d9b2 differ diff --git a/Library/Artifacts/b6/b63bc4155f99dba0318877c683c97458 b/Library/Artifacts/b6/b63bc4155f99dba0318877c683c97458 new file mode 100644 index 00000000..df7b70d8 Binary files /dev/null and b/Library/Artifacts/b6/b63bc4155f99dba0318877c683c97458 differ diff --git a/Library/Artifacts/51/5197309788ee4638a5fc9d47979a73bb b/Library/Artifacts/b6/b6842725fe5696f4d5e35c7f368fadf1 similarity index 94% rename from Library/Artifacts/51/5197309788ee4638a5fc9d47979a73bb rename to Library/Artifacts/b6/b6842725fe5696f4d5e35c7f368fadf1 index edaa32bb..178c60a0 100644 Binary files a/Library/Artifacts/51/5197309788ee4638a5fc9d47979a73bb and b/Library/Artifacts/b6/b6842725fe5696f4d5e35c7f368fadf1 differ diff --git a/Library/Artifacts/d4/d406612026b7a0798aeef4ede630ee6e b/Library/Artifacts/b9/b9757c8c5f968e708a5b6fb82844018e similarity index 62% rename from Library/Artifacts/d4/d406612026b7a0798aeef4ede630ee6e rename to Library/Artifacts/b9/b9757c8c5f968e708a5b6fb82844018e index 42146e0a..26b4797c 100644 Binary files a/Library/Artifacts/d4/d406612026b7a0798aeef4ede630ee6e and b/Library/Artifacts/b9/b9757c8c5f968e708a5b6fb82844018e differ diff --git a/Library/Artifacts/b9/b9a3614df4cde0197263760022e80510 b/Library/Artifacts/b9/b9a3614df4cde0197263760022e80510 deleted file mode 100644 index ce759e35..00000000 Binary files a/Library/Artifacts/b9/b9a3614df4cde0197263760022e80510 and /dev/null differ diff --git a/Library/Artifacts/ba/ba53a25ec580b7ad21efac86c74bbf28 b/Library/Artifacts/ba/ba53a25ec580b7ad21efac86c74bbf28 new file mode 100644 index 00000000..4c24235c Binary files /dev/null and b/Library/Artifacts/ba/ba53a25ec580b7ad21efac86c74bbf28 differ diff --git a/Library/Artifacts/bb/bb94090f399549e74864dd45e53c7569 b/Library/Artifacts/bb/bb94090f399549e74864dd45e53c7569 new file mode 100644 index 00000000..ea6ec21a Binary files /dev/null and b/Library/Artifacts/bb/bb94090f399549e74864dd45e53c7569 differ diff --git a/Library/Artifacts/bd/bd7c67e6051c85be1ca741c395b8081a b/Library/Artifacts/bd/bd7c67e6051c85be1ca741c395b8081a new file mode 100644 index 00000000..8b7f2994 Binary files /dev/null and b/Library/Artifacts/bd/bd7c67e6051c85be1ca741c395b8081a differ diff --git a/Library/Artifacts/bd/bde4348b229243174c6bce96340d72e5 b/Library/Artifacts/bd/bde4348b229243174c6bce96340d72e5 deleted file mode 100644 index c9f986a4..00000000 Binary files a/Library/Artifacts/bd/bde4348b229243174c6bce96340d72e5 and /dev/null differ diff --git a/Library/Artifacts/fe/fea833185dcdf1a0b4781ce6bdebbd3e b/Library/Artifacts/bf/bf3fbaa37422dbd3a2a1a3c6f75c3aa1 similarity index 96% rename from Library/Artifacts/fe/fea833185dcdf1a0b4781ce6bdebbd3e rename to Library/Artifacts/bf/bf3fbaa37422dbd3a2a1a3c6f75c3aa1 index 1cc49e44..686511b3 100644 Binary files a/Library/Artifacts/fe/fea833185dcdf1a0b4781ce6bdebbd3e and b/Library/Artifacts/bf/bf3fbaa37422dbd3a2a1a3c6f75c3aa1 differ diff --git a/Library/Artifacts/bf/bfdcc988f29ea86f1d7a06e0da364a95 b/Library/Artifacts/bf/bfdcc988f29ea86f1d7a06e0da364a95 new file mode 100644 index 00000000..6523732e Binary files /dev/null and b/Library/Artifacts/bf/bfdcc988f29ea86f1d7a06e0da364a95 differ diff --git a/Library/Artifacts/c1/c14beaf1680cdb65e690455d888df9ce b/Library/Artifacts/c1/c14beaf1680cdb65e690455d888df9ce deleted file mode 100644 index 8cdac7d2..00000000 Binary files a/Library/Artifacts/c1/c14beaf1680cdb65e690455d888df9ce and /dev/null differ diff --git a/Library/Artifacts/c8/c82f34917da6d7275ebabfa591a4b498 b/Library/Artifacts/c8/c82f34917da6d7275ebabfa591a4b498 new file mode 100644 index 00000000..e0442a7a Binary files /dev/null and b/Library/Artifacts/c8/c82f34917da6d7275ebabfa591a4b498 differ diff --git a/Library/Artifacts/c9/c93fbf96a645634f5be891cb5de71ab8 b/Library/Artifacts/c9/c93fbf96a645634f5be891cb5de71ab8 new file mode 100644 index 00000000..59d61363 Binary files /dev/null and b/Library/Artifacts/c9/c93fbf96a645634f5be891cb5de71ab8 differ diff --git a/Library/Artifacts/cd/cdda76a06b53ce32bb8fd12399b51a11 b/Library/Artifacts/cd/cdda76a06b53ce32bb8fd12399b51a11 deleted file mode 100644 index a83842b4..00000000 Binary files a/Library/Artifacts/cd/cdda76a06b53ce32bb8fd12399b51a11 and /dev/null differ diff --git a/Library/Artifacts/d0/d02fd8b9ec2d772f679a89ae6f7e503b b/Library/Artifacts/d0/d02fd8b9ec2d772f679a89ae6f7e503b new file mode 100644 index 00000000..764d5bfe Binary files /dev/null and b/Library/Artifacts/d0/d02fd8b9ec2d772f679a89ae6f7e503b differ diff --git a/Library/Artifacts/d7/d700ed56facf1faf43ab8725b891ed47 b/Library/Artifacts/d7/d700ed56facf1faf43ab8725b891ed47 deleted file mode 100644 index 077efb93..00000000 Binary files a/Library/Artifacts/d7/d700ed56facf1faf43ab8725b891ed47 and /dev/null differ diff --git a/Library/Artifacts/d7/d72aab511b7787059894b3034f70f480 b/Library/Artifacts/d7/d72aab511b7787059894b3034f70f480 new file mode 100644 index 00000000..b2da8596 Binary files /dev/null and b/Library/Artifacts/d7/d72aab511b7787059894b3034f70f480 differ diff --git a/Library/Artifacts/d7/d7cae56c69f1ca17b8445ab3e546dde1 b/Library/Artifacts/d7/d7cae56c69f1ca17b8445ab3e546dde1 new file mode 100644 index 00000000..1d54b03b Binary files /dev/null and b/Library/Artifacts/d7/d7cae56c69f1ca17b8445ab3e546dde1 differ diff --git a/Library/Artifacts/d9/d94b9167b1f84ebaad21b612fced7d33 b/Library/Artifacts/d9/d94b9167b1f84ebaad21b612fced7d33 deleted file mode 100644 index 18593c1e..00000000 Binary files a/Library/Artifacts/d9/d94b9167b1f84ebaad21b612fced7d33 and /dev/null differ diff --git a/Library/Artifacts/d9/d97cb90045265e262a43687b73274634 b/Library/Artifacts/d9/d97cb90045265e262a43687b73274634 new file mode 100644 index 00000000..275f19bd Binary files /dev/null and b/Library/Artifacts/d9/d97cb90045265e262a43687b73274634 differ diff --git a/Library/Artifacts/db/db00d420b6f65f8f933eff7d7c5c0177 b/Library/Artifacts/db/db00d420b6f65f8f933eff7d7c5c0177 new file mode 100644 index 00000000..224a0c94 Binary files /dev/null and b/Library/Artifacts/db/db00d420b6f65f8f933eff7d7c5c0177 differ diff --git a/Library/Artifacts/dd/dda39ed8e607d540fb3c6e6e2f1b61a6 b/Library/Artifacts/dd/dda39ed8e607d540fb3c6e6e2f1b61a6 new file mode 100644 index 00000000..e7e02d77 Binary files /dev/null and b/Library/Artifacts/dd/dda39ed8e607d540fb3c6e6e2f1b61a6 differ diff --git a/Library/Artifacts/dd/ddb1bc6ed1f2c35dda161ceea677473e b/Library/Artifacts/dd/ddb1bc6ed1f2c35dda161ceea677473e new file mode 100644 index 00000000..08e58d0b Binary files /dev/null and b/Library/Artifacts/dd/ddb1bc6ed1f2c35dda161ceea677473e differ diff --git a/Library/Artifacts/df/df3935d5962eb0cfb0e1b4a50685baec b/Library/Artifacts/df/df3935d5962eb0cfb0e1b4a50685baec deleted file mode 100644 index 68b96c9a..00000000 Binary files a/Library/Artifacts/df/df3935d5962eb0cfb0e1b4a50685baec and /dev/null differ diff --git a/Library/Artifacts/df/df3fcfe4980e8ea29a9eb0d7cb90fe3b b/Library/Artifacts/df/df3fcfe4980e8ea29a9eb0d7cb90fe3b new file mode 100644 index 00000000..3ee32b4c Binary files /dev/null and b/Library/Artifacts/df/df3fcfe4980e8ea29a9eb0d7cb90fe3b differ diff --git a/Library/Artifacts/df/df7877327f159a195ae942ceb19d84a4 b/Library/Artifacts/df/df7877327f159a195ae942ceb19d84a4 deleted file mode 100644 index d7d00d09..00000000 Binary files a/Library/Artifacts/df/df7877327f159a195ae942ceb19d84a4 and /dev/null differ diff --git a/Library/Artifacts/df/df9dcaaf0673a14e861b7234334c459d b/Library/Artifacts/df/df9dcaaf0673a14e861b7234334c459d new file mode 100644 index 00000000..2f34bf94 Binary files /dev/null and b/Library/Artifacts/df/df9dcaaf0673a14e861b7234334c459d differ diff --git a/Library/Artifacts/e1/e1d4e1b9dc9625eeabd47ad42fa3a791 b/Library/Artifacts/e1/e1d4e1b9dc9625eeabd47ad42fa3a791 new file mode 100644 index 00000000..767cfb37 Binary files /dev/null and b/Library/Artifacts/e1/e1d4e1b9dc9625eeabd47ad42fa3a791 differ diff --git a/Library/Artifacts/e3/e37287137267d9b534d61151da4b3d6b b/Library/Artifacts/e3/e37287137267d9b534d61151da4b3d6b new file mode 100644 index 00000000..e0f8fe01 Binary files /dev/null and b/Library/Artifacts/e3/e37287137267d9b534d61151da4b3d6b differ diff --git a/Library/Artifacts/e5/e5688387228c3a9296775f5ff8834450 b/Library/Artifacts/e5/e5688387228c3a9296775f5ff8834450 new file mode 100644 index 00000000..55d56478 Binary files /dev/null and b/Library/Artifacts/e5/e5688387228c3a9296775f5ff8834450 differ diff --git a/Library/Artifacts/e6/e633a12ff417532e45230d5c35333a20 b/Library/Artifacts/e6/e633a12ff417532e45230d5c35333a20 new file mode 100644 index 00000000..43a1e89b Binary files /dev/null and b/Library/Artifacts/e6/e633a12ff417532e45230d5c35333a20 differ diff --git a/Library/Artifacts/e6/e6373e2c44116eef4fefb40c1acb379b b/Library/Artifacts/e6/e6373e2c44116eef4fefb40c1acb379b deleted file mode 100644 index b9d1a7ff..00000000 Binary files a/Library/Artifacts/e6/e6373e2c44116eef4fefb40c1acb379b and /dev/null differ diff --git a/Library/Artifacts/e7/e79d5102857bd8ca1138fed92d2121e9 b/Library/Artifacts/e7/e79d5102857bd8ca1138fed92d2121e9 new file mode 100644 index 00000000..b331877d Binary files /dev/null and b/Library/Artifacts/e7/e79d5102857bd8ca1138fed92d2121e9 differ diff --git a/Library/Artifacts/e9/e9a6c1822c2981424ce73fbae9fce466 b/Library/Artifacts/e9/e9a6c1822c2981424ce73fbae9fce466 deleted file mode 100644 index dc99e3bc..00000000 Binary files a/Library/Artifacts/e9/e9a6c1822c2981424ce73fbae9fce466 and /dev/null differ diff --git a/Library/Artifacts/ea/ea2284230b4c6c399fa104ca9f256e98 b/Library/Artifacts/ea/ea2284230b4c6c399fa104ca9f256e98 new file mode 100644 index 00000000..01a355bf Binary files /dev/null and b/Library/Artifacts/ea/ea2284230b4c6c399fa104ca9f256e98 differ diff --git a/Library/Artifacts/ec/ecf78cc080b3c30c43321e760e6da82f b/Library/Artifacts/ec/ecf78cc080b3c30c43321e760e6da82f new file mode 100644 index 00000000..3ef0de71 Binary files /dev/null and b/Library/Artifacts/ec/ecf78cc080b3c30c43321e760e6da82f differ diff --git a/Library/Artifacts/ed/edcf699b43f8b112a6b54529945834f1 b/Library/Artifacts/ed/edcf699b43f8b112a6b54529945834f1 new file mode 100644 index 00000000..f9e31d54 Binary files /dev/null and b/Library/Artifacts/ed/edcf699b43f8b112a6b54529945834f1 differ diff --git a/Library/Artifacts/ee/ee344e781e2b78377830daa1ed164c4a b/Library/Artifacts/ee/ee344e781e2b78377830daa1ed164c4a deleted file mode 100644 index a5cfcae4..00000000 Binary files a/Library/Artifacts/ee/ee344e781e2b78377830daa1ed164c4a and /dev/null differ diff --git a/Library/Artifacts/f1/f1d589e7b4e015b00006884eb2669d42 b/Library/Artifacts/f1/f1d589e7b4e015b00006884eb2669d42 new file mode 100644 index 00000000..750382f7 Binary files /dev/null and b/Library/Artifacts/f1/f1d589e7b4e015b00006884eb2669d42 differ diff --git a/Library/Artifacts/f5/f519dd47ff51258ba9669996e7511d78 b/Library/Artifacts/f5/f519dd47ff51258ba9669996e7511d78 deleted file mode 100644 index e1a05b39..00000000 Binary files a/Library/Artifacts/f5/f519dd47ff51258ba9669996e7511d78 and /dev/null differ diff --git a/Library/Artifacts/f7/f798cd819383ef6866dd29cc3b53cb34 b/Library/Artifacts/f7/f798cd819383ef6866dd29cc3b53cb34 new file mode 100644 index 00000000..834a15cd Binary files /dev/null and b/Library/Artifacts/f7/f798cd819383ef6866dd29cc3b53cb34 differ diff --git a/Library/Artifacts/f9/f931554ad0dcfd6230ee8391395856dd b/Library/Artifacts/f9/f931554ad0dcfd6230ee8391395856dd deleted file mode 100644 index b2e7ca46..00000000 Binary files a/Library/Artifacts/f9/f931554ad0dcfd6230ee8391395856dd and /dev/null differ diff --git a/Library/Artifacts/fb/fb45f46c507a6424ca848cc6cb5ebe9f b/Library/Artifacts/fb/fb45f46c507a6424ca848cc6cb5ebe9f new file mode 100644 index 00000000..df37b97e Binary files /dev/null and b/Library/Artifacts/fb/fb45f46c507a6424ca848cc6cb5ebe9f differ diff --git a/Library/Artifacts/fc/fc25adc3d507ff3a2d82dfe460775cd9 b/Library/Artifacts/fc/fc25adc3d507ff3a2d82dfe460775cd9 new file mode 100644 index 00000000..b359b6ba Binary files /dev/null and b/Library/Artifacts/fc/fc25adc3d507ff3a2d82dfe460775cd9 differ diff --git a/Library/Artifacts/fc/fc6454ad5d068dc9aecceda5707b8fee b/Library/Artifacts/fc/fc6454ad5d068dc9aecceda5707b8fee new file mode 100644 index 00000000..fb34432f Binary files /dev/null and b/Library/Artifacts/fc/fc6454ad5d068dc9aecceda5707b8fee differ diff --git a/Library/Artifacts/fd/fd6444cb98e40b32f1280dc9f8797ba9 b/Library/Artifacts/fd/fd6444cb98e40b32f1280dc9f8797ba9 new file mode 100644 index 00000000..49515b2f Binary files /dev/null and b/Library/Artifacts/fd/fd6444cb98e40b32f1280dc9f8797ba9 differ diff --git a/Library/CurrentLayout-default.dwlt b/Library/CurrentLayout-default.dwlt index 586e12b5..ee81ca9d 100644 --- a/Library/CurrentLayout-default.dwlt +++ b/Library/CurrentLayout-default.dwlt @@ -112,10 +112,10 @@ MonoBehaviour: y: 30 width: 1920 height: 947 - m_MinSize: {x: 679, y: 492} - m_MaxSize: {x: 14002, y: 14042} + m_MinSize: {x: 678, y: 492} + m_MaxSize: {x: 14001, y: 14042} vertical: 0 - controlID: 25245 + controlID: 19449 --- !u!114 &6 MonoBehaviour: m_ObjectHideFlags: 52 @@ -140,7 +140,7 @@ MonoBehaviour: m_MinSize: {x: 403, y: 492} m_MaxSize: {x: 10001, y: 14042} vertical: 1 - controlID: 25246 + controlID: 19450 --- !u!114 &7 MonoBehaviour: m_ObjectHideFlags: 52 @@ -165,7 +165,7 @@ MonoBehaviour: m_MinSize: {x: 403, y: 221} m_MaxSize: {x: 8003, y: 4021} vertical: 0 - controlID: 25211 + controlID: 19451 --- !u!114 &8 MonoBehaviour: m_ObjectHideFlags: 52 @@ -396,9 +396,9 @@ MonoBehaviour: m_SceneHierarchy: m_TreeViewState: scrollPos: {x: 0, y: 0} - m_SelectedIDs: - m_LastClickedID: 0 - m_ExpandedIDs: ce2bfdffe22bfdff882cfdffb078feffd278feff1cf9ffff62fbffffbc3a0000de3a0000cc3b0000f83b0000d43c0000883d0000e83d0000b43f0000da40000022410000f2430000 + m_SelectedIDs: d43c0000 + m_LastClickedID: 15572 + m_ExpandedIDs: 3643ffff4043ffff6a43ffff62fbffffbc3a0000d43c0000f63c0000f03d0000c43f000032410000 m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -1114,10 +1114,10 @@ MonoBehaviour: m_LockTracker: m_IsLocked: 0 m_FolderTreeState: - scrollPos: {x: 0, y: 26} - m_SelectedIDs: ce490000 - m_LastClickedID: 18894 - m_ExpandedIDs: 00000000c2490000c4490000c6490000c8490000ca490000cc490000ce49000000ca9a3b + scrollPos: {x: 0, y: 37} + m_SelectedIDs: de490000 + m_LastClickedID: 18910 + m_ExpandedIDs: 00000000d2490000d4490000d6490000d8490000da490000dc490000de49000000ca9a3b m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -1145,7 +1145,7 @@ MonoBehaviour: scrollPos: {x: 0, y: 0} m_SelectedIDs: m_LastClickedID: 0 - m_ExpandedIDs: 00000000c2490000c4490000c6490000c8490000ca490000cc490000ce49000000ca9a3b + m_ExpandedIDs: 00000000d2490000d4490000d6490000d8490000da490000dc490000de49000000ca9a3b m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -1295,4 +1295,4 @@ MonoBehaviour: m_PrefName: Preview_InspectorPreview m_PreviewWindow: {fileID: 0} m_LastInspectedObjectInstanceID: -1 - m_LastVerticalScrollValue: 100 + m_LastVerticalScrollValue: 0 diff --git a/Library/CurrentMaximizeLayout.dwlt b/Library/CurrentMaximizeLayout.dwlt index 973ab1e8..a06ba033 100644 --- a/Library/CurrentMaximizeLayout.dwlt +++ b/Library/CurrentMaximizeLayout.dwlt @@ -21,10 +21,10 @@ MonoBehaviour: y: 30 width: 1920 height: 947 - m_MinSize: {x: 679, y: 492} - m_MaxSize: {x: 14002, y: 14042} + m_MinSize: {x: 678, y: 492} + m_MaxSize: {x: 14001, y: 14042} vertical: 0 - controlID: 24684 + controlID: 18992 --- !u!114 &2 MonoBehaviour: m_ObjectHideFlags: 52 @@ -141,7 +141,7 @@ MonoBehaviour: m_MinSize: {x: 403, y: 492} m_MaxSize: {x: 10001, y: 14042} vertical: 1 - controlID: 24685 + controlID: 18993 --- !u!114 &4 MonoBehaviour: m_ObjectHideFlags: 52 @@ -166,7 +166,7 @@ MonoBehaviour: m_MinSize: {x: 403, y: 221} m_MaxSize: {x: 8003, y: 4021} vertical: 0 - controlID: 24686 + controlID: 18994 --- !u!114 &5 MonoBehaviour: m_ObjectHideFlags: 52 @@ -224,7 +224,7 @@ MonoBehaviour: scrollPos: {x: 0, y: 0} m_SelectedIDs: m_LastClickedID: 0 - m_ExpandedIDs: b078feffd278feff1cf9ffff62fbffffbc3a0000de3a0000cc3b0000f83b0000d43c0000883d0000e83d0000b43f0000da40000022410000f2430000 + m_ExpandedIDs: 3643ffff4043ffff6a43ffff62fbffffbc3a0000d43c0000f63c0000f03d0000c43f000032410000 m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -939,8 +939,8 @@ MonoBehaviour: y: 671 width: 1414 height: 276 - m_MinSize: {x: 231, y: 271} - m_MaxSize: {x: 10001, y: 10021} + m_MinSize: {x: 230, y: 250} + m_MaxSize: {x: 10000, y: 10000} m_ActualView: {fileID: 12} m_Panes: - {fileID: 12} @@ -997,10 +997,10 @@ MonoBehaviour: m_LockTracker: m_IsLocked: 0 m_FolderTreeState: - scrollPos: {x: 0, y: 26} - m_SelectedIDs: ce490000 - m_LastClickedID: 18894 - m_ExpandedIDs: 00000000c2490000c4490000c6490000c8490000ca490000cc490000ce49000000ca9a3b + scrollPos: {x: 0, y: 37} + m_SelectedIDs: de490000 + m_LastClickedID: 18910 + m_ExpandedIDs: 00000000d2490000d4490000d6490000d8490000da490000dc490000de49000000ca9a3b m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -1028,7 +1028,7 @@ MonoBehaviour: scrollPos: {x: 0, y: 0} m_SelectedIDs: m_LastClickedID: 0 - m_ExpandedIDs: 00000000c2490000c4490000c6490000c8490000ca490000cc490000ce49000000ca9a3b + m_ExpandedIDs: 00000000d2490000d4490000d6490000d8490000da490000dc490000de49000000ca9a3b m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -1053,8 +1053,8 @@ MonoBehaviour: m_Icon: {fileID: 0} m_ResourceFile: m_ListAreaState: - m_SelectedInstanceIDs: ba3c0000 - m_LastClickedInstanceID: 15546 + m_SelectedInstanceIDs: d43c0000 + m_LastClickedInstanceID: 15572 m_HadKeyboardFocusLastEvent: 0 m_ExpandedInstanceIDs: c6230000303a0000063a0000a83d00005c66000000870000f8860000004a00004a4600000c430000004900007e980000024900008698000000000000 m_RenameOverlay: @@ -1160,8 +1160,8 @@ MonoBehaviour: y: 0 width: 506 height: 947 - m_MinSize: {x: 276, y: 71} - m_MaxSize: {x: 4001, y: 4021} + m_MinSize: {x: 275, y: 50} + m_MaxSize: {x: 4000, y: 4000} m_ActualView: {fileID: 16} m_Panes: - {fileID: 16} @@ -1203,5 +1203,5 @@ MonoBehaviour: m_ControlHash: -371814159 m_PrefName: Preview_InspectorPreview m_PreviewWindow: {fileID: 0} - m_LastInspectedObjectInstanceID: 15546 - m_LastVerticalScrollValue: 100 + m_LastInspectedObjectInstanceID: 15572 + m_LastVerticalScrollValue: 0 diff --git a/Library/ScriptAssemblies/Assembly-CSharp-Editor.dll b/Library/ScriptAssemblies/Assembly-CSharp-Editor.dll index 1ff3cda1..0068030f 100644 Binary files a/Library/ScriptAssemblies/Assembly-CSharp-Editor.dll and b/Library/ScriptAssemblies/Assembly-CSharp-Editor.dll differ diff --git a/Library/ScriptAssemblies/Assembly-CSharp.dll b/Library/ScriptAssemblies/Assembly-CSharp.dll index 15eb19b6..7e3be5fb 100644 Binary files a/Library/ScriptAssemblies/Assembly-CSharp.dll and b/Library/ScriptAssemblies/Assembly-CSharp.dll differ diff --git a/Library/ScriptAssemblies/Assembly-CSharp.pdb b/Library/ScriptAssemblies/Assembly-CSharp.pdb index 73428e9b..77666d87 100644 Binary files a/Library/ScriptAssemblies/Assembly-CSharp.pdb and b/Library/ScriptAssemblies/Assembly-CSharp.pdb differ diff --git a/Library/SourceAssetDB b/Library/SourceAssetDB index 701e90dc..64a8b5ca 100644 Binary files a/Library/SourceAssetDB and b/Library/SourceAssetDB differ diff --git a/Library/StateCache/Hierarchy/8cbfdc-eac2d5e7275f9064fa.json b/Library/StateCache/Hierarchy/8cbfdc-eac2d5e7275f9064fa.json index 8fbae3dd..e9b17bd2 100644 --- a/Library/StateCache/Hierarchy/8cbfdc-eac2d5e7275f9064fa.json +++ b/Library/StateCache/Hierarchy/8cbfdc-eac2d5e7275f9064fa.json @@ -1 +1 @@ -{"m_ExpandedPrefabGameObjectFileIDs":[3541467645058788217],"m_ExpandedSceneGameObjectInstanceIDs":[],"m_ScrollY":0.0,"m_LastClickedFileID":7651278788833778284,"m_LastClickedInstanceID":0} \ No newline at end of file +{"m_ExpandedPrefabGameObjectFileIDs":[3541467645058788217],"m_ExpandedSceneGameObjectInstanceIDs":[],"m_ScrollY":0.0,"m_LastClickedFileID":0,"m_LastClickedInstanceID":0} \ No newline at end of file