点击预览位置,alt——上下挪动位置

Signed-off-by: TRAfoer <lhf190@outlook.com>
This commit is contained in:
2026-02-13 17:40:50 +08:00
parent c21dc74576
commit 96a2c60e16
34 changed files with 23940 additions and 211416 deletions

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

View File

@@ -306,9 +306,8 @@ MonoBehaviour:
m_Name:
m_EditorClassIdentifier:
title: {fileID: 4146383444293307128}
Parent: {fileID: 0}
canvasGroup: {fileID: 0}
parameterName:
isAlwaysUpdated: 0
button: {fileID: 9019888090477460756}
buttonText: {fileID: 1030818121051588483}
--- !u!1 &8586114211470471751

File diff suppressed because one or more lines are too long

View File

@@ -16,6 +16,7 @@ namespace Ichni.Editor
base.Initialize(baseElement, title, parameterName);
if (parameterName != string.Empty)
{
toggle.isOn = (bool)ReflectionHelper.GetDeepValue(connectedBaseElement, parameterName);
toggle.onValueChanged.AddListener(ApplyParameters);
}

View File

@@ -1,5 +1,6 @@
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using DG.Tweening;
using Ichni.RhythmGame;
@@ -160,6 +161,124 @@ namespace Ichni.Editor
EditorManager.instance.uiManager.inspector.SetInspector(connectedGameElement);
}
public void MoveTab(bool isUp)
{
// 1. 基础合法性检查:根节点或孤立节点无法移动
if (parentTab == null || connectedGameElement.parentElement == null)
return;
// 获取当前层级的列表
var tabList = parentTab.childTabList;
int tabIndex = tabList.IndexOf(this);
var elementList = connectedGameElement.parentElement.childElementList;
int elemIndex = elementList.IndexOf(connectedGameElement);
// 计算目标索引
int targetTabIndex = isUp ? tabIndex - 1 : tabIndex + 1;
int targetElemIndex = isUp ? elemIndex - 1 : elemIndex + 1;
// 2. 边界检查:如果是第一个往上或最后一个往下,则返回
if (targetTabIndex < 0 || targetTabIndex >= tabList.Count) return;
if (targetElemIndex < 0 || targetElemIndex >= elementList.Count) return;
// 获取目标对象
var targetTab = tabList[targetTabIndex];
var targetElem = elementList[targetElemIndex];
// 3. 交换逻辑数据顺序List 内部排序)
tabList[tabIndex] = targetTab;
tabList[targetTabIndex] = this;
elementList[elemIndex] = targetElem;
elementList[targetElemIndex] = connectedGameElement;
// 4. 处理 UI Tab 的 Sibling Index解决偏移问题的核心
List<Transform> thisSubTree = GetTabSubTreeTransforms(this);
List<Transform> targetSubTree = GetTabSubTreeTransforms(targetTab);
if (thisSubTree.Count > 0 && targetSubTree.Count > 0)
{
if (isUp)
{
// 向上移:正序,插到目标分支的最上方
int insertIndex = targetSubTree[0].GetSiblingIndex();
for (int i = 0; i < thisSubTree.Count; i++)
{
thisSubTree[i].SetSiblingIndex(insertIndex + i);
}
}
else
{
// 向下移:逆序,依次插到目标分支最末尾的索引位置
// 这样先移过去的会被后移过去的顶到后面,保持原有父子相对顺序
int targetLastIndex = targetSubTree[targetSubTree.Count - 1].GetSiblingIndex();
for (int i = thisSubTree.Count - 1; i >= 0; i--)
{
thisSubTree[i].SetSiblingIndex(targetLastIndex);
}
}
}
// 5. 处理场景 GameElement 的 Sibling Index同理
List<Transform> thisElemSubTree = GetElementSubTreeTransforms(connectedGameElement);
List<Transform> targetElemSubTree = GetElementSubTreeTransforms(targetElem);
if (thisElemSubTree.Count > 0 && targetElemSubTree.Count > 0)
{
if (isUp)
{
int insertIndex = targetElemSubTree[0].GetSiblingIndex();
for (int i = 0; i < thisElemSubTree.Count; i++)
{
thisElemSubTree[i].SetSiblingIndex(insertIndex + i);
}
}
else
{
int targetLastIndex = targetElemSubTree[targetElemSubTree.Count - 1].GetSiblingIndex();
for (int i = thisElemSubTree.Count - 1; i >= 0; i--)
{
thisElemSubTree[i].SetSiblingIndex(targetLastIndex);
}
}
}
//奇妙的特判阶段
foreach (var i in parentTab.childTabList)
{
i.connectedGameElement.Refresh();
}
parentTab.connectedGameElement.Refresh();
if (parentTab.connectedGameElement is Track track)
{
track.trackPathSubmodule.pathNodeList =
track.childElementList.OfType<PathNode>().ToList();
track.trackPathSubmodule.SetPathPoints();
}
}
// 获取tab及其所有子tab的transform前序遍历
private List<Transform> GetTabSubTreeTransforms(HierarchyTab tab)
{
List<Transform> list = new List<Transform>();
list.Add(tab.transform);
foreach (var child in tab.childTabList)
list.AddRange(GetTabSubTreeTransforms(child));
return list;
}
// 获取GameElement及其所有子元素的transform前序遍历
private List<Transform> GetElementSubTreeTransforms(GameElement element)
{
List<Transform> list = new List<Transform>();
if (element.transform != null)
list.Add(element.transform);
foreach (var child in element.childElementList)
list.AddRange(GetElementSubTreeTransforms(child));
return list;
}
public void ExpandOrFold()
{
ExpandOrFold(false);

View File

@@ -78,7 +78,7 @@ namespace Ichni.Editor
}
public DynamicUIToggle GenerateToggle(IBaseElement baseElement, DynamicUISubcontainer subcontainer, string title,
string parameterName)
string parameterName = "")
{
DynamicUIToggle toggle = Object.Instantiate(EditorManager.instance.basePrefabs.toggle, subcontainer.rect)
.GetComponent<DynamicUIToggle>();

View File

@@ -556,7 +556,8 @@ namespace ichni.RhythmGame // [修复] 修正命名空间首字母大写,符
}
public static FastNoteTracker GenerateElement(string elementName, Guid id, List<string> tags,
bool isFirstGenerated, GameElement parentElement)
bool isFirstGenerated, GameElement parentElement,
bool isEnabled = true, bool showNotePreview = false, float horizonWidth = 5f, int beatDiver = 1)
{
FastNoteTracker fastNoteTracker = Instantiate(EditorManager.instance.basePrefabs.emptyObject, parentElement.transform)
.AddComponent<FastNoteTracker>();
@@ -566,6 +567,10 @@ namespace ichni.RhythmGame // [修复] 修正命名空间首字母大写,符
return null;
}
fastNoteTracker.Initialize(elementName, id, tags, isFirstGenerated, parentElement);
fastNoteTracker.IsEnabled = isEnabled;
fastNoteTracker.showNotePreview = showNotePreview;
fastNoteTracker.horizonWidth = horizonWidth;
fastNoteTracker.BeatDiver = beatDiver;
return fastNoteTracker;
}
@@ -574,10 +579,23 @@ namespace ichni.RhythmGame // [修复] 修正命名空间首字母大写,符
base.Initialize(elementName, id, tags, isFirstGenerated, parentElement);
//parentElement.refreshAction += AdjustBeatLine;
}
public override void AfterInitialize()
{
Observable.NextFrame().Subscribe(_ => Refresh());
}
public override void SaveBM()
{
matchedBM = new FastNoteTracker_BM(elementName, elementGuid, tags, parentElement.elementGuid);
matchedBM = new FastNoteTracker_BM(
elementName,
elementGuid,
tags,
parentElement.elementGuid,
IsEnabled,
showNotePreview,
horizonWidth,
BeatDiver
);
}
}
}
@@ -586,12 +604,21 @@ namespace Ichni.RhythmGame.Beatmap
{
public class FastNoteTracker_BM : GameElement_BM
{
public FastNoteTracker_BM(string elementName, Guid id, List<string> tags, Guid attachedElementGuid)
public bool IsEnabled { get; set; }
public bool showNotePreview { get; set; }
public float horizonWidth { get; set; }
public int beatDiver { get; set; }
public FastNoteTracker_BM(string elementName, Guid id, List<string> tags, Guid attachedElementGuid, bool IsEnabled, bool showNotePreview, float horizonWidth, int beatDiver)
{
this.elementName = elementName;
this.elementGuid = id;
this.tags = tags;
this.attachedElementGuid = attachedElementGuid;
this.IsEnabled = IsEnabled;
this.showNotePreview = showNotePreview;
this.horizonWidth = horizonWidth;
this.beatDiver = beatDiver;
}
public override GameElement DuplicateBM(GameElement attached)

View File

@@ -95,15 +95,10 @@ public class PanelDrawer : MonoBehaviour //暂时支持xz
public Canvas DisplayCanvas;
private IEnumerator Pressing()
{
GameObject gobj = new GameObject("PanelDrawerPreview");
RawImage rawImage = gobj.AddComponent<RawImage>();
GameObject gobj2 = new GameObject("PanelDrawerText");
gobj2.transform.SetParent(gobj.transform, false);
gobj2.transform.SetParent(DisplayCanvas.transform, false);
TextMeshProUGUI Text = gobj2.AddComponent<TextMeshProUGUI>();
Text.rectTransform.position = new Vector3(50, 50, 0);
rawImage.texture = ingTexture;
rawImage.rectTransform.SetParent(DisplayCanvas.transform);
rawImage.rectTransform.sizeDelta = new Vector2(100, 100);
Vector3 hitPoint = new Vector3(0, 0, 0);
while (Mouse.current.leftButton.isPressed)
{
@@ -117,21 +112,23 @@ public class PanelDrawer : MonoBehaviour //暂时支持xz
if (Keyboard.current.leftAltKey.isPressed)
{
hitPoint = new Vector3(Mathf.Round(hitPoint.x / 0.5f) * 0.5f, hitPoint.y, Mathf.Round(hitPoint.z / 0.5f) * 0.5f);
rawImage.rectTransform.position =
new Vector3(Mathf.Round(Mouse.current.position.ReadValue().x / 10) * 10, Mathf.Round(Mouse.current.position.ReadValue().y / 10) * 10, 0);
}
else
{
rawImage.rectTransform.position = Mouse.current.position.ReadValue();
}
Text.text = $"X: {hitPoint.x:F2}\nY: {hitPoint.y:F2}\nZ: {hitPoint.z:F2}";
Text.rectTransform.position = Mouse.current.position.ReadValue() + new Vector2(20, -20);
Text.text = $"X: {hitPoint.x:F2}\nZ: {hitPoint.z:F2}\n\n";
Text.fontSize = 45;
Text.color = Color.yellow;
}
yield return null;
}
Destroy(rawImage.gameObject);
Destroy(Text.gameObject);
var i = PathNode.GenerateElement("new pathnode", Guid.NewGuid(), new List<string>(), true, (Track)connectedGameElement, true);
i.transformSubmodule.originalPosition = hitPoint;
i.transform.position = hitPoint;
i.transformSubmodule.originalPosition = i.transform.localPosition;
i.Refresh();
connectedGameElement.Refresh();
}

View File

@@ -61,6 +61,8 @@ namespace Ichni.Editor
if (isMoving) return;
transform.eulerAngles = targetGameElement.parentElement?.transform.eulerAngles ?? Vector3.zero;
transform.position = targetGameElement.transform.position;
transform.localScale = //相机距离的函数,保持在一定大小范围内
Vector3.one * Mathf.Clamp(Vector3.Distance(editorCamera.transform.position, transform.position) * 0.05f, 0.1f, 1000f);
if (Mouse.current.leftButton.wasPressedThisFrame)
{
Vector2 mousePosition = Mouse.current.position.ReadValue();

View File

@@ -105,12 +105,10 @@ namespace Ichni.RhythmGame
public abstract partial class GameElement //存档,删除,复制,粘贴
{
public Action refreshAction = new Action(() => { });
public virtual void Refresh()
{
if (connectedTab != null) connectedTab.tabButtonText.text = this.elementName;
gameObject.name = elementName;
refreshAction?.Invoke();
}
/// <summary>

View File

@@ -1,7 +1,10 @@
using System.Collections;
using System.Collections.Generic;
using DG.Tweening;
using Ichni;
using TMPro;
using UnityEngine;
using UnityEngine.InputSystem;
[RequireComponent(typeof(MeshFilter), typeof(MeshRenderer))]
public class SimpleGridController : MonoBehaviour
@@ -39,6 +42,84 @@ public class SimpleGridController : MonoBehaviour
}
public Color MainColor = new Color(0.8f, 0.8f, 0.8f, 0.5f);
public Color SubColor = new Color(0.5f, 0.5f, 0.5f, 0.5f);
void Update()
{
if (Mouse.current.middleButton.wasPressedThisFrame)
{
StartCoroutine(Pressing());
}
}
GameObject coordTextObj = null;
IEnumerator Pressing()
{
if (coordTextObj != null)
{
coordTextObj.transform.DOComplete();
}
TextMeshPro coordText = null;
float targetScale = 1f;
Tweener scaleTween = null;
while (Mouse.current.middleButton.isPressed)
{
Ray ray = targetCamera.ScreenPointToRay(Mouse.current.position.ReadValue());
Plane plane = new Plane(Vector3.up, Vector3.zero);
if (plane.Raycast(ray, out float enter))
{
Vector3 hitPoint = ray.GetPoint(enter);
Vector2 xz = new Vector2(hitPoint.x, hitPoint.z);
// 创建或复用文字对象
if (coordTextObj == null)
{
coordTextObj = Instantiate(textPrefab, textParent);
coordText = coordTextObj.GetComponent<TextMeshPro>();
coordTextObj.transform.localScale = Vector3.zero;
targetScale = Mathf.Clamp(Vector3.Distance(targetCamera.transform.position, hitPoint) * 0.05f, 0.1f, 1000f);
scaleTween = coordTextObj.transform.DOScale(Vector3.one * targetScale, 0.2f).SetEase(Ease.OutBack);
}
else
{
// 动态融合用DOTween的ChangeEndValue实时调整目标scale
targetScale = Mathf.Clamp(Vector3.Distance(targetCamera.transform.position, hitPoint) * 0.05f, 0.1f, 1000f);
if (scaleTween != null && scaleTween.IsActive())
{
scaleTween.ChangeEndValue(Vector3.one * targetScale, true);
}
else
{
coordTextObj.transform.localScale = Vector3.one * targetScale;
}
}
coordTextObj.transform.position = hitPoint + Vector3.up * targetScale;
coordTextObj.transform.rotation = Quaternion.LookRotation(coordTextObj.transform.position - targetCamera.transform.position, Vector3.up);
if (coordText == null) coordText = coordTextObj.GetComponent<TextMeshPro>();
coordText.text = $"({xz.x:F2}, {xz.y:F2})\n({Mathf.Round(xz.x):F2}, {Mathf.Round(xz.y):F2})";
coordText.fontSize = 8;
coordText.enableWordWrapping = false;
coordText.color = Color.yellow;
}
yield return null;
}
// 释放文字对象
if (coordTextObj != null)
{
coordTextObj.transform.DOScale(0, 0.3f).SetEase(Ease.OutExpo).OnComplete(() =>
{
Destroy(coordTextObj);
coordTextObj = null;
});
}
}
void LateUpdate()
{
if (!targetCamera) return;
@@ -49,28 +130,50 @@ public class SimpleGridController : MonoBehaviour
transform.position = new Vector3(camPos.x, 0, camPos.z);
// 2. 计算层级 (1m / 10m / 100m)
CalculateGridLevel(camPos.y);
float absH = Mathf.Abs(camPos.y);
float step = baseGridSize;
Color Mcolor = MainColor;
Color Scolor = SubColor;
// 简单的自适应逻辑:根据高度决定网格密度
if (absH > 150f)//>150
{
step *= 10f;
Scolor = Lerp(SubColor, Color.clear, (absH - 150f) / 150f);
}
else if (absH > 15f)//15-150
{
step *= 10f;
Mcolor = Lerp(MainColor, SubColor, (absH - 15f) / (150f - 15f));
Scolor = Lerp(SubColor, Color.clear, (absH - 15f) / (150f - 15f));
}
else//0-15
{
Mcolor = Lerp(MainColor, SubColor, absH / 15f);
Scolor = Lerp(SubColor, Color.clear, absH / 15f);
}
_currentSpacing = step;
// 3. 更新 Shader
if (_instancedMat)
{
_instancedMat.SetColor("_MainColor", Scolor);
_instancedMat.SetColor("_AxisColor", Mcolor);
_instancedMat.SetFloat("_GridSpacing", _currentSpacing);
_instancedMat.SetFloat("_FadeDist", drawDistance);
}
}
private void CalculateGridLevel(float camHeight)
private Color Lerp(Color a, Color b, float t)
{
float absH = Mathf.Abs(camHeight);
float step = baseGridSize;
// 简单的自适应逻辑:根据高度决定网格密度
if (absH > 15f) step *= 10f;
if (absH > 150f) step *= 10f;
_currentSpacing = step;
return new Color(
Mathf.Lerp(a.r, b.r, t),
Mathf.Lerp(a.g, b.g, t),
Mathf.Lerp(a.b, b.b, t),
Mathf.Lerp(a.a, b.a, t)
);
}

View File

@@ -193,7 +193,11 @@ namespace Ichni
cameraManager.SetUpInspector();
var oo = inspector.GenerateContainer("Grid");
var p = oo.GenerateSubcontainer(3);
var po = inspector.GenerateToggle(this, p, "Enable Grid", nameof(gridController) + "." + nameof(gridController.gameObject) + ".activeSelf");
var po = inspector.GenerateToggle(this, p, "Enable Grid");
po.AddListenerFunction(() =>
{
gridController.gameObject.SetActive(po.toggle.isOn);
});
var o = inspector.GenerateInputField(p, "Grid Size", (gridController.baseGridSize * 10).ToString());
o.AddListenerFunction(() =>
{

View File

@@ -3,6 +3,7 @@ using System.Collections;
using System.Collections.Generic;
using System.Linq;
using Ichni.RhythmGame;
using Sirenix.Utilities;
using TMPro;
using UnityEngine;
using UnityEngine.EventSystems;
@@ -257,6 +258,25 @@ namespace Ichni.Editor
EditorManager.instance.operationManager.CopyPasteDeleteModule.DeleteElement(EditorManager.instance.operationManager.currentSelectedElements[0]);
}
}
if (Keyboard.current.leftAltKey.isPressed)
{
if (Keyboard.current.upArrowKey.wasPressedThisFrame)
{
if (EditorManager.instance.operationManager.currentSelectedElements.Count == 1)
{
EditorManager.instance.operationManager.currentSelectedElements[0]?.connectedTab?.MoveTab(true);
}
}
else if (Keyboard.current.downArrowKey.wasPressedThisFrame)
{
if (EditorManager.instance.operationManager.currentSelectedElements.Count == 1)
{
EditorManager.instance.operationManager.currentSelectedElements[0]?.connectedTab?.MoveTab(false);
}
}
}
}
private void ResolutionHintsOperation()

View File

@@ -48,126 +48,6 @@
"elementName" : "Folder",
"tags" : [
],
"elementGuid" : {
"value" : "8a8ae7a2-fe90-416b-9f70-17b06984ad4e"
},
"attachedElementGuid" : {
"value" : "00000000-0000-0000-0000-000000000000"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp",
"originalPosition" : {
"x" : 5,
"y" : 0,
"z" : 0
},
"originalEulerAngles" : {
"x" : 0,
"y" : 0,
"z" : 0
},
"originalScale" : {
"x" : 1,
"y" : 1,
"z" : 1
},
"attachedElementGuid" : {
"value" : "8a8ae7a2-fe90-416b-9f70-17b06984ad4e"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp",
"isOverridingDuration" : false,
"startTime" : -32767,
"endTime" : 32767,
"attachedElementGuid" : {
"value" : "8a8ae7a2-fe90-416b-9f70-17b06984ad4e"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.ElementFolder_BM,Assembly-CSharp",
"elementName" : "Folder",
"tags" : [
],
"elementGuid" : {
"value" : "22346647-751b-412e-a32b-82c06a3870b3"
},
"attachedElementGuid" : {
"value" : "00000000-0000-0000-0000-000000000000"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp",
"originalPosition" : {
"x" : 0,
"y" : 0,
"z" : 0
},
"originalEulerAngles" : {
"x" : 0,
"y" : 0,
"z" : 0
},
"originalScale" : {
"x" : 1,
"y" : 1,
"z" : 1
},
"attachedElementGuid" : {
"value" : "22346647-751b-412e-a32b-82c06a3870b3"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp",
"isOverridingDuration" : false,
"startTime" : -32767,
"endTime" : 32767,
"attachedElementGuid" : {
"value" : "22346647-751b-412e-a32b-82c06a3870b3"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.ElementFolder_BM,Assembly-CSharp",
"elementName" : "Folder",
"tags" : [
],
"elementGuid" : {
"value" : "1b24aaca-5936-4781-b02c-98922a223903"
},
"attachedElementGuid" : {
"value" : "00000000-0000-0000-0000-000000000000"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp",
"originalPosition" : {
"x" : 0,
"y" : 0,
"z" : 0
},
"originalEulerAngles" : {
"x" : 0,
"y" : 0,
"z" : 0
},
"originalScale" : {
"x" : 1,
"y" : 1,
"z" : 1
},
"attachedElementGuid" : {
"value" : "1b24aaca-5936-4781-b02c-98922a223903"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp",
"isOverridingDuration" : false,
"startTime" : -32767,
"endTime" : 32767,
"attachedElementGuid" : {
"value" : "1b24aaca-5936-4781-b02c-98922a223903"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.ElementFolder_BM,Assembly-CSharp",
"elementName" : "Folder",
"tags" : [
],
"elementGuid" : {
"value" : "143fff37-0fa6-439a-9fbd-b136fb29b534"
@@ -283,322 +163,6 @@
"attachedElementGuid" : {
"value" : "5188b38e-9064-4aa1-8d4d-a719240a6281"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp",
"elementName" : "New Track",
"tags" : [
],
"elementGuid" : {
"value" : "69a0ca9a-cdca-42ea-ae57-6d3029d0a684"
},
"attachedElementGuid" : {
"value" : "8a8ae7a2-fe90-416b-9f70-17b06984ad4e"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp",
"originalPosition" : {
"x" : 0,
"y" : 0,
"z" : 0
},
"originalEulerAngles" : {
"x" : 0,
"y" : 0,
"z" : 0
},
"originalScale" : {
"x" : 1,
"y" : 1,
"z" : 1
},
"attachedElementGuid" : {
"value" : "69a0ca9a-cdca-42ea-ae57-6d3029d0a684"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp",
"isOverridingDuration" : false,
"startTime" : -32767,
"endTime" : 32767,
"attachedElementGuid" : {
"value" : "69a0ca9a-cdca-42ea-ae57-6d3029d0a684"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp",
"trackSpaceType" : 0,
"trackSamplingType" : 0,
"isClosed" : false,
"isShowingDisplay" : false,
"attachedElementGuid" : {
"value" : "69a0ca9a-cdca-42ea-ae57-6d3029d0a684"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp",
"trackStartTime" : 0,
"trackEndTime" : 5,
"visibleTrackTimeLength" : 2,
"animationCurveType" : 0,
"attachedElementGuid" : {
"value" : "69a0ca9a-cdca-42ea-ae57-6d3029d0a684"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TrackRendererSubmoduleAutoOrient_BM,Assembly-CSharp",
"materialThemeBundleName" : "basic",
"materialName" : "Basic_Track_Default",
"enableEmission" : true,
"emissionIntensity" : 0.5,
"zWrite" : true,
"uvScale" : {
"x" : 1,
"y" : 1
},
"uvOffset" : {
"x" : 0,
"y" : 0
},
"attachedElementGuid" : {
"value" : "69a0ca9a-cdca-42ea-ae57-6d3029d0a684"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp",
"isShowingSphere" : true,
"elementName" : "New Path Node",
"tags" : [
],
"elementGuid" : {
"value" : "894d611a-4736-4635-b4e5-6108b0675a36"
},
"attachedElementGuid" : {
"value" : "69a0ca9a-cdca-42ea-ae57-6d3029d0a684"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp",
"originalPosition" : {
"x" : 0,
"y" : 0,
"z" : 0
},
"originalEulerAngles" : {
"x" : 0,
"y" : 0,
"z" : 0
},
"originalScale" : {
"x" : 0.1,
"y" : 1,
"z" : 1
},
"attachedElementGuid" : {
"value" : "894d611a-4736-4635-b4e5-6108b0675a36"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp",
"isOverridingDuration" : false,
"startTime" : -32767,
"endTime" : 32767,
"attachedElementGuid" : {
"value" : "894d611a-4736-4635-b4e5-6108b0675a36"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp",
"originalBaseColor" : {
"r" : 1,
"g" : 1,
"b" : 1,
"a" : 1
},
"emissionEnabled" : false,
"originalEmissionColor" : {
"r" : 0,
"g" : 0,
"b" : 0,
"a" : 1
},
"originalEmissionIntensity" : 0,
"attachedElementGuid" : {
"value" : "894d611a-4736-4635-b4e5-6108b0675a36"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp",
"isShowingSphere" : true,
"elementName" : "New Path Node",
"tags" : [
],
"elementGuid" : {
"value" : "b7eea34d-abe0-42b0-b432-e2a682395ba3"
},
"attachedElementGuid" : {
"value" : "69a0ca9a-cdca-42ea-ae57-6d3029d0a684"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp",
"originalPosition" : {
"x" : 5,
"y" : 0,
"z" : 25
},
"originalEulerAngles" : {
"x" : 0,
"y" : 0,
"z" : 0
},
"originalScale" : {
"x" : 0.1,
"y" : 1,
"z" : 1
},
"attachedElementGuid" : {
"value" : "b7eea34d-abe0-42b0-b432-e2a682395ba3"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp",
"isOverridingDuration" : false,
"startTime" : -32767,
"endTime" : 32767,
"attachedElementGuid" : {
"value" : "b7eea34d-abe0-42b0-b432-e2a682395ba3"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp",
"originalBaseColor" : {
"r" : 0,
"g" : 1,
"b" : 0.724097967,
"a" : 1
},
"emissionEnabled" : false,
"originalEmissionColor" : {
"r" : 0,
"g" : 0,
"b" : 0,
"a" : 1
},
"originalEmissionIntensity" : 0,
"attachedElementGuid" : {
"value" : "b7eea34d-abe0-42b0-b432-e2a682395ba3"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp",
"isShowingSphere" : true,
"elementName" : "New Path Node",
"tags" : [
],
"elementGuid" : {
"value" : "002ef1b6-6f37-4397-bec5-a82e5bb40f5f"
},
"attachedElementGuid" : {
"value" : "69a0ca9a-cdca-42ea-ae57-6d3029d0a684"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp",
"originalPosition" : {
"x" : -8.12,
"y" : 0,
"z" : 51.26
},
"originalEulerAngles" : {
"x" : 0,
"y" : 0,
"z" : 0
},
"originalScale" : {
"x" : 0.1,
"y" : 1,
"z" : 1
},
"attachedElementGuid" : {
"value" : "002ef1b6-6f37-4397-bec5-a82e5bb40f5f"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp",
"isOverridingDuration" : false,
"startTime" : -32767,
"endTime" : 32767,
"attachedElementGuid" : {
"value" : "002ef1b6-6f37-4397-bec5-a82e5bb40f5f"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp",
"originalBaseColor" : {
"r" : 1,
"g" : 0.0563056469,
"b" : 0,
"a" : 1
},
"emissionEnabled" : false,
"originalEmissionColor" : {
"r" : 0,
"g" : 0,
"b" : 0,
"a" : 1
},
"originalEmissionIntensity" : 0,
"attachedElementGuid" : {
"value" : "002ef1b6-6f37-4397-bec5-a82e5bb40f5f"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp",
"isShowingSphere" : true,
"elementName" : "New Path Node",
"tags" : [
],
"elementGuid" : {
"value" : "bec3c705-f213-4fc3-bbb3-58b49648eb68"
},
"attachedElementGuid" : {
"value" : "69a0ca9a-cdca-42ea-ae57-6d3029d0a684"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp",
"originalPosition" : {
"x" : 0,
"y" : 0,
"z" : 65
},
"originalEulerAngles" : {
"x" : 0,
"y" : 0,
"z" : 0
},
"originalScale" : {
"x" : 1,
"y" : 1,
"z" : 1
},
"attachedElementGuid" : {
"value" : "bec3c705-f213-4fc3-bbb3-58b49648eb68"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp",
"isOverridingDuration" : false,
"startTime" : -32767,
"endTime" : 32767,
"attachedElementGuid" : {
"value" : "bec3c705-f213-4fc3-bbb3-58b49648eb68"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp",
"originalBaseColor" : {
"r" : 1,
"g" : 1,
"b" : 1,
"a" : 1
},
"emissionEnabled" : false,
"originalEmissionColor" : {
"r" : 0,
"g" : 0,
"b" : 0,
"a" : 1
},
"originalEmissionIntensity" : 0,
"attachedElementGuid" : {
"value" : "bec3c705-f213-4fc3-bbb3-58b49648eb68"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.GameCamera_BM,Assembly-CSharp",
"cameraViewType" : 0,
@@ -688,194 +252,16 @@
"value" : "91c12c84-411a-465c-9e5f-d1a3fd5a4df4"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.FastNoteTracker_BM,Assembly-CSharp",
"elementName" : "Fast Note Tracker",
"__type" : "Ichni.RhythmGame.Beatmap.ElementFolder_BM,Assembly-CSharp",
"elementName" : "New Folder",
"tags" : [
],
"elementGuid" : {
"value" : "3bae10cd-6e94-40dc-bdae-7e33e534cf92"
"value" : "fcc19f93-d838-4b19-aa74-04f8e0d9a07f"
},
"attachedElementGuid" : {
"value" : "69a0ca9a-cdca-42ea-ae57-6d3029d0a684"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.Displacement_BM,Assembly-CSharp",
"positionX" : {
"animatedFloatList" : [
{
"startValue" : 0,
"endValue" : 0,
"startTime" : 0,
"endTime" : 1,
"animationCurveType" : 0
},{
"startValue" : 0,
"endValue" : 2,
"startTime" : 1.2,
"endTime" : 1.8,
"animationCurveType" : 0
},{
"startValue" : 2,
"endValue" : 2,
"startTime" : 1.8,
"endTime" : 2.4,
"animationCurveType" : 0
},{
"startValue" : 2,
"endValue" : 0,
"startTime" : 2.4,
"endTime" : 3,
"animationCurveType" : 0
},{
"startValue" : 0,
"endValue" : -2,
"startTime" : 3,
"endTime" : 3.6,
"animationCurveType" : 0
},{
"startValue" : -2,
"endValue" : -2,
"startTime" : 3.6,
"endTime" : 4.2,
"animationCurveType" : 0
},{
"startValue" : -2,
"endValue" : 0,
"startTime" : 4.2,
"endTime" : 4.8,
"animationCurveType" : 0
},{
"startValue" : 0,
"endValue" : 2,
"startTime" : 4.8,
"endTime" : 5.4,
"animationCurveType" : 0
},{
"startValue" : 2,
"endValue" : 2,
"startTime" : 5.4,
"endTime" : 6,
"animationCurveType" : 0
},{
"startValue" : 2,
"endValue" : 0,
"startTime" : 6,
"endTime" : 6.60000038,
"animationCurveType" : 0
}
]
},
"positionY" : {
"animatedFloatList" : [
{
"startValue" : 0,
"endValue" : 0,
"startTime" : 0,
"endTime" : 1,
"animationCurveType" : 0
}
]
},
"positionZ" : {
"animatedFloatList" : [
{
"startValue" : 0,
"endValue" : 0,
"startTime" : 0,
"endTime" : 1,
"animationCurveType" : 0
}
]
},
"elementName" : "New Displacement",
"tags" : [
],
"elementGuid" : {
"value" : "346cc478-14b5-4712-b290-23025c82af22"
},
"attachedElementGuid" : {
"value" : "b7eea34d-abe0-42b0-b432-e2a682395ba3"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp",
"isOverridingDuration" : false,
"startTime" : -32767,
"endTime" : 32767,
"attachedElementGuid" : {
"value" : "346cc478-14b5-4712-b290-23025c82af22"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.Hold_BM,Assembly-CSharp",
"holdEndTime" : 2.4,
"exactJudgeTime" : 1.2,
"elementName" : "New Hold",
"tags" : [
],
"elementGuid" : {
"value" : "51e936f4-e160-40ad-ab42-79e97075cf0e"
},
"attachedElementGuid" : {
"value" : "69a0ca9a-cdca-42ea-ae57-6d3029d0a684"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp",
"isOverridingDuration" : false,
"startTime" : -32767,
"endTime" : 32767,
"attachedElementGuid" : {
"value" : "51e936f4-e160-40ad-ab42-79e97075cf0e"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp",
"judgeUnitList" : [
{
"__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp",
"areaRadius" : 600
}
],
"attachedElementGuid" : {
"value" : "51e936f4-e160-40ad-ab42-79e97075cf0e"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp",
"generalJudgeAudioList" : [
"DefaultEndHold"
],
"perfectAudioList" : [
],
"goodAudioList" : [
],
"badAudioList" : [
],
"missAudioList" : [
],
"holdStartAudioList" : [
"DefaultStartHold"
],
"attachedElementGuid" : {
"value" : "51e936f4-e160-40ad-ab42-79e97075cf0e"
}
},{
"__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisualHold_BM,Assembly-CSharp",
"isHighlighted" : false,
"themeBundleName" : "departure_to_multiverse",
"objectName" : "DTM_NoteVisualHold",
"elementName" : "New Note Visual",
"tags" : [
],
"elementGuid" : {
"value" : "ebe66488-af8e-44f6-aaad-b9ecf5304514"
},
"attachedElementGuid" : {
"value" : "51e936f4-e160-40ad-ab42-79e97075cf0e"
"value" : "1a185970-544f-411d-9b55-d04453f32069"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp",
@@ -895,7 +281,7 @@
"z" : 1
},
"attachedElementGuid" : {
"value" : "ebe66488-af8e-44f6-aaad-b9ecf5304514"
"value" : "fcc19f93-d838-4b19-aa74-04f8e0d9a07f"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp",
@@ -903,97 +289,7 @@
"startTime" : -32767,
"endTime" : 32767,
"attachedElementGuid" : {
"value" : "ebe66488-af8e-44f6-aaad-b9ecf5304514"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp",
"originalBaseColor" : {
"r" : 1,
"g" : 1,
"b" : 1,
"a" : 1
},
"emissionEnabled" : false,
"originalEmissionColor" : {
"r" : 0,
"g" : 0,
"b" : 0,
"a" : 1
},
"originalEmissionIntensity" : 0,
"attachedElementGuid" : {
"value" : "ebe66488-af8e-44f6-aaad-b9ecf5304514"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp",
"effectCollection" : {"Generate":[
{
"__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExtend_BM,Assembly-CSharp",
"generateTime" : 1,
"effectTime" : 0.5
}
],"GeneralJudge":[
],"StartHold":[
{
"__type" : "Ichni.RhythmGame.Beatmap.BloomEffect_BM,Assembly-CSharp",
"duration" : 1,
"peak" : 2,
"intensityCurve" : {
"keys" : [
{
"time" : 0,
"value" : 0,
"inTangent" : 0,
"outTangent" : 0
},{
"time" : 0.5,
"value" : 1,
"inTangent" : 0,
"outTangent" : 0
},{
"time" : 1,
"value" : 0,
"inTangent" : 0,
"outTangent" : 0
}
],
"preWrapMode" : 8,
"postWrapMode" : 8
},
"effectTime" : 0
}
],"Holding":[
{
"__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteHoldingBreath_BM,Assembly-CSharp",
"effectTime" : 1.2
}
],"Perfect":[
{
"__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp",
"effectTime" : 0
}
],"Good":[
{
"__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp",
"effectTime" : 0
}
],"Bad":[
{
"__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp",
"effectTime" : 0
}
],"Miss":[
{
"__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp",
"effectTime" : 0.2
}
],"AfterJudge":[
]
},
"attachedElementGuid" : {
"value" : "ebe66488-af8e-44f6-aaad-b9ecf5304514"
"value" : "fcc19f93-d838-4b19-aa74-04f8e0d9a07f"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp",
@@ -1002,10 +298,10 @@
],
"elementGuid" : {
"value" : "04cd3c42-5287-4a6c-b590-a683adb2a981"
"value" : "f39a7a5c-e725-4e5c-bc33-7da24abfe20b"
},
"attachedElementGuid" : {
"value" : "22346647-751b-412e-a32b-82c06a3870b3"
"value" : "1a185970-544f-411d-9b55-d04453f32069"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp",
@@ -1025,7 +321,7 @@
"z" : 1
},
"attachedElementGuid" : {
"value" : "04cd3c42-5287-4a6c-b590-a683adb2a981"
"value" : "f39a7a5c-e725-4e5c-bc33-7da24abfe20b"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp",
@@ -1033,7 +329,7 @@
"startTime" : -32767,
"endTime" : 32767,
"attachedElementGuid" : {
"value" : "04cd3c42-5287-4a6c-b590-a683adb2a981"
"value" : "f39a7a5c-e725-4e5c-bc33-7da24abfe20b"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp",
@@ -1042,46 +338,38 @@
"isClosed" : false,
"isShowingDisplay" : false,
"attachedElementGuid" : {
"value" : "04cd3c42-5287-4a6c-b590-a683adb2a981"
"value" : "f39a7a5c-e725-4e5c-bc33-7da24abfe20b"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TrackPercentPoint_BM,Assembly-CSharp",
"trackPercent" : {
"animatedFloatList" : [
]
"__type" : "Ichni.RhythmGame.Beatmap.TrackRendererSubmoduleAutoOrient_BM,Assembly-CSharp",
"materialThemeBundleName" : "",
"materialName" : "",
"enableEmission" : false,
"emissionIntensity" : 0,
"zWrite" : true,
"uvScale" : {
"x" : 1,
"y" : 1
},
"MotionAngles" : false,
"elementName" : "New Track Percent Point",
"tags" : [
],
"elementGuid" : {
"value" : "00aca86b-18e1-4336-865f-ec9dcd2e9ec0"
"uvOffset" : {
"x" : 0,
"y" : 0
},
"attachedElementGuid" : {
"value" : "04cd3c42-5287-4a6c-b590-a683adb2a981"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp",
"isOverridingDuration" : false,
"startTime" : -32767,
"endTime" : 32767,
"attachedElementGuid" : {
"value" : "00aca86b-18e1-4336-865f-ec9dcd2e9ec0"
"value" : "f39a7a5c-e725-4e5c-bc33-7da24abfe20b"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp",
"isShowingSphere" : true,
"elementName" : "New Path Node",
"elementName" : "1",
"tags" : [
],
"elementGuid" : {
"value" : "71791de1-4bf1-4c94-a76d-239b7527f90f"
"value" : "11bee78c-9ef2-4830-9df9-a5142c8ee070"
},
"attachedElementGuid" : {
"value" : "04cd3c42-5287-4a6c-b590-a683adb2a981"
"value" : "f39a7a5c-e725-4e5c-bc33-7da24abfe20b"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp",
@@ -1101,7 +389,7 @@
"z" : 1
},
"attachedElementGuid" : {
"value" : "71791de1-4bf1-4c94-a76d-239b7527f90f"
"value" : "11bee78c-9ef2-4830-9df9-a5142c8ee070"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp",
@@ -1109,14 +397,14 @@
"startTime" : -32767,
"endTime" : 32767,
"attachedElementGuid" : {
"value" : "71791de1-4bf1-4c94-a76d-239b7527f90f"
"value" : "11bee78c-9ef2-4830-9df9-a5142c8ee070"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp",
"originalBaseColor" : {
"r" : 1,
"g" : 1,
"b" : 1,
"g" : 0,
"b" : 0.396242142,
"a" : 1
},
"emissionEnabled" : false,
@@ -1128,27 +416,27 @@
},
"originalEmissionIntensity" : 0,
"attachedElementGuid" : {
"value" : "71791de1-4bf1-4c94-a76d-239b7527f90f"
"value" : "11bee78c-9ef2-4830-9df9-a5142c8ee070"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp",
"isShowingSphere" : true,
"elementName" : "New Path Node",
"elementName" : "3",
"tags" : [
],
"elementGuid" : {
"value" : "ffbe8bbf-17cd-447b-9b92-0ef41ec4a1b8"
"value" : "09737b4c-03c5-4744-8ef4-b66e0f9b3bb1"
},
"attachedElementGuid" : {
"value" : "04cd3c42-5287-4a6c-b590-a683adb2a981"
"value" : "f39a7a5c-e725-4e5c-bc33-7da24abfe20b"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp",
"originalPosition" : {
"x" : -5.16,
"y" : 4.376869,
"z" : 10.42
"x" : 0,
"y" : 0,
"z" : 15
},
"originalEulerAngles" : {
"x" : 0,
@@ -1161,7 +449,7 @@
"z" : 1
},
"attachedElementGuid" : {
"value" : "ffbe8bbf-17cd-447b-9b92-0ef41ec4a1b8"
"value" : "09737b4c-03c5-4744-8ef4-b66e0f9b3bb1"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp",
@@ -1169,14 +457,14 @@
"startTime" : -32767,
"endTime" : 32767,
"attachedElementGuid" : {
"value" : "ffbe8bbf-17cd-447b-9b92-0ef41ec4a1b8"
"value" : "09737b4c-03c5-4744-8ef4-b66e0f9b3bb1"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp",
"originalBaseColor" : {
"r" : 1,
"r" : 0,
"g" : 1,
"b" : 1,
"b" : 0.6983807,
"a" : 1
},
"emissionEnabled" : false,
@@ -1188,7 +476,67 @@
},
"originalEmissionIntensity" : 0,
"attachedElementGuid" : {
"value" : "ffbe8bbf-17cd-447b-9b92-0ef41ec4a1b8"
"value" : "09737b4c-03c5-4744-8ef4-b66e0f9b3bb1"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp",
"isShowingSphere" : true,
"elementName" : "2",
"tags" : [
],
"elementGuid" : {
"value" : "ab06c96d-6f2b-4173-9efa-495bee8471f3"
},
"attachedElementGuid" : {
"value" : "f39a7a5c-e725-4e5c-bc33-7da24abfe20b"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp",
"originalPosition" : {
"x" : 3,
"y" : 0,
"z" : 7
},
"originalEulerAngles" : {
"x" : 0,
"y" : 0,
"z" : 0
},
"originalScale" : {
"x" : 1,
"y" : 1,
"z" : 1
},
"attachedElementGuid" : {
"value" : "ab06c96d-6f2b-4173-9efa-495bee8471f3"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp",
"isOverridingDuration" : false,
"startTime" : -32767,
"endTime" : 32767,
"attachedElementGuid" : {
"value" : "ab06c96d-6f2b-4173-9efa-495bee8471f3"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp",
"originalBaseColor" : {
"r" : 1,
"g" : 0.06809214,
"b" : 0,
"a" : 1
},
"emissionEnabled" : false,
"originalEmissionColor" : {
"r" : 0,
"g" : 0,
"b" : 0,
"a" : 1
},
"originalEmissionIntensity" : 0,
"attachedElementGuid" : {
"value" : "ab06c96d-6f2b-4173-9efa-495bee8471f3"
}
}
],

View File

@@ -48,126 +48,6 @@
"elementName" : "Folder",
"tags" : [
],
"elementGuid" : {
"value" : "8a8ae7a2-fe90-416b-9f70-17b06984ad4e"
},
"attachedElementGuid" : {
"value" : "00000000-0000-0000-0000-000000000000"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp",
"originalPosition" : {
"x" : 5,
"y" : 0,
"z" : 0
},
"originalEulerAngles" : {
"x" : 0,
"y" : 0,
"z" : 0
},
"originalScale" : {
"x" : 1,
"y" : 1,
"z" : 1
},
"attachedElementGuid" : {
"value" : "8a8ae7a2-fe90-416b-9f70-17b06984ad4e"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp",
"isOverridingDuration" : false,
"startTime" : -32767,
"endTime" : 32767,
"attachedElementGuid" : {
"value" : "8a8ae7a2-fe90-416b-9f70-17b06984ad4e"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.ElementFolder_BM,Assembly-CSharp",
"elementName" : "Folder",
"tags" : [
],
"elementGuid" : {
"value" : "22346647-751b-412e-a32b-82c06a3870b3"
},
"attachedElementGuid" : {
"value" : "00000000-0000-0000-0000-000000000000"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp",
"originalPosition" : {
"x" : 0,
"y" : 0,
"z" : 0
},
"originalEulerAngles" : {
"x" : 0,
"y" : 0,
"z" : 0
},
"originalScale" : {
"x" : 1,
"y" : 1,
"z" : 1
},
"attachedElementGuid" : {
"value" : "22346647-751b-412e-a32b-82c06a3870b3"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp",
"isOverridingDuration" : false,
"startTime" : -32767,
"endTime" : 32767,
"attachedElementGuid" : {
"value" : "22346647-751b-412e-a32b-82c06a3870b3"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.ElementFolder_BM,Assembly-CSharp",
"elementName" : "Folder",
"tags" : [
],
"elementGuid" : {
"value" : "1b24aaca-5936-4781-b02c-98922a223903"
},
"attachedElementGuid" : {
"value" : "00000000-0000-0000-0000-000000000000"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp",
"originalPosition" : {
"x" : 0,
"y" : 0,
"z" : 0
},
"originalEulerAngles" : {
"x" : 0,
"y" : 0,
"z" : 0
},
"originalScale" : {
"x" : 1,
"y" : 1,
"z" : 1
},
"attachedElementGuid" : {
"value" : "1b24aaca-5936-4781-b02c-98922a223903"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp",
"isOverridingDuration" : false,
"startTime" : -32767,
"endTime" : 32767,
"attachedElementGuid" : {
"value" : "1b24aaca-5936-4781-b02c-98922a223903"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.ElementFolder_BM,Assembly-CSharp",
"elementName" : "Folder",
"tags" : [
],
"elementGuid" : {
"value" : "143fff37-0fa6-439a-9fbd-b136fb29b534"
@@ -283,322 +163,6 @@
"attachedElementGuid" : {
"value" : "5188b38e-9064-4aa1-8d4d-a719240a6281"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp",
"elementName" : "New Track",
"tags" : [
],
"elementGuid" : {
"value" : "69a0ca9a-cdca-42ea-ae57-6d3029d0a684"
},
"attachedElementGuid" : {
"value" : "8a8ae7a2-fe90-416b-9f70-17b06984ad4e"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp",
"originalPosition" : {
"x" : 0,
"y" : 0,
"z" : 0
},
"originalEulerAngles" : {
"x" : 0,
"y" : 0,
"z" : 0
},
"originalScale" : {
"x" : 1,
"y" : 1,
"z" : 1
},
"attachedElementGuid" : {
"value" : "69a0ca9a-cdca-42ea-ae57-6d3029d0a684"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp",
"isOverridingDuration" : false,
"startTime" : -32767,
"endTime" : 32767,
"attachedElementGuid" : {
"value" : "69a0ca9a-cdca-42ea-ae57-6d3029d0a684"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp",
"trackSpaceType" : 0,
"trackSamplingType" : 0,
"isClosed" : false,
"isShowingDisplay" : false,
"attachedElementGuid" : {
"value" : "69a0ca9a-cdca-42ea-ae57-6d3029d0a684"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp",
"trackStartTime" : 0,
"trackEndTime" : 5,
"visibleTrackTimeLength" : 2,
"animationCurveType" : 0,
"attachedElementGuid" : {
"value" : "69a0ca9a-cdca-42ea-ae57-6d3029d0a684"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TrackRendererSubmoduleAutoOrient_BM,Assembly-CSharp",
"materialThemeBundleName" : "basic",
"materialName" : "Basic_Track_Default",
"enableEmission" : true,
"emissionIntensity" : 0.5,
"zWrite" : true,
"uvScale" : {
"x" : 1,
"y" : 1
},
"uvOffset" : {
"x" : 0,
"y" : 0
},
"attachedElementGuid" : {
"value" : "69a0ca9a-cdca-42ea-ae57-6d3029d0a684"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp",
"isShowingSphere" : true,
"elementName" : "New Path Node",
"tags" : [
],
"elementGuid" : {
"value" : "894d611a-4736-4635-b4e5-6108b0675a36"
},
"attachedElementGuid" : {
"value" : "69a0ca9a-cdca-42ea-ae57-6d3029d0a684"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp",
"originalPosition" : {
"x" : 0,
"y" : 0,
"z" : 0
},
"originalEulerAngles" : {
"x" : 0,
"y" : 0,
"z" : 0
},
"originalScale" : {
"x" : 0.1,
"y" : 1,
"z" : 1
},
"attachedElementGuid" : {
"value" : "894d611a-4736-4635-b4e5-6108b0675a36"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp",
"isOverridingDuration" : false,
"startTime" : -32767,
"endTime" : 32767,
"attachedElementGuid" : {
"value" : "894d611a-4736-4635-b4e5-6108b0675a36"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp",
"originalBaseColor" : {
"r" : 1,
"g" : 1,
"b" : 1,
"a" : 1
},
"emissionEnabled" : false,
"originalEmissionColor" : {
"r" : 0,
"g" : 0,
"b" : 0,
"a" : 1
},
"originalEmissionIntensity" : 0,
"attachedElementGuid" : {
"value" : "894d611a-4736-4635-b4e5-6108b0675a36"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp",
"isShowingSphere" : true,
"elementName" : "New Path Node",
"tags" : [
],
"elementGuid" : {
"value" : "b7eea34d-abe0-42b0-b432-e2a682395ba3"
},
"attachedElementGuid" : {
"value" : "69a0ca9a-cdca-42ea-ae57-6d3029d0a684"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp",
"originalPosition" : {
"x" : 5,
"y" : 0,
"z" : 25
},
"originalEulerAngles" : {
"x" : 0,
"y" : 0,
"z" : 0
},
"originalScale" : {
"x" : 0.1,
"y" : 1,
"z" : 1
},
"attachedElementGuid" : {
"value" : "b7eea34d-abe0-42b0-b432-e2a682395ba3"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp",
"isOverridingDuration" : false,
"startTime" : -32767,
"endTime" : 32767,
"attachedElementGuid" : {
"value" : "b7eea34d-abe0-42b0-b432-e2a682395ba3"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp",
"originalBaseColor" : {
"r" : 0,
"g" : 1,
"b" : 0.724097967,
"a" : 1
},
"emissionEnabled" : false,
"originalEmissionColor" : {
"r" : 0,
"g" : 0,
"b" : 0,
"a" : 1
},
"originalEmissionIntensity" : 0,
"attachedElementGuid" : {
"value" : "b7eea34d-abe0-42b0-b432-e2a682395ba3"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp",
"isShowingSphere" : true,
"elementName" : "New Path Node",
"tags" : [
],
"elementGuid" : {
"value" : "002ef1b6-6f37-4397-bec5-a82e5bb40f5f"
},
"attachedElementGuid" : {
"value" : "69a0ca9a-cdca-42ea-ae57-6d3029d0a684"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp",
"originalPosition" : {
"x" : -8.12,
"y" : 0,
"z" : 51.26
},
"originalEulerAngles" : {
"x" : 0,
"y" : 0,
"z" : 0
},
"originalScale" : {
"x" : 0.1,
"y" : 1,
"z" : 1
},
"attachedElementGuid" : {
"value" : "002ef1b6-6f37-4397-bec5-a82e5bb40f5f"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp",
"isOverridingDuration" : false,
"startTime" : -32767,
"endTime" : 32767,
"attachedElementGuid" : {
"value" : "002ef1b6-6f37-4397-bec5-a82e5bb40f5f"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp",
"originalBaseColor" : {
"r" : 1,
"g" : 0.0563056469,
"b" : 0,
"a" : 1
},
"emissionEnabled" : false,
"originalEmissionColor" : {
"r" : 0,
"g" : 0,
"b" : 0,
"a" : 1
},
"originalEmissionIntensity" : 0,
"attachedElementGuid" : {
"value" : "002ef1b6-6f37-4397-bec5-a82e5bb40f5f"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp",
"isShowingSphere" : true,
"elementName" : "New Path Node",
"tags" : [
],
"elementGuid" : {
"value" : "bec3c705-f213-4fc3-bbb3-58b49648eb68"
},
"attachedElementGuid" : {
"value" : "69a0ca9a-cdca-42ea-ae57-6d3029d0a684"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp",
"originalPosition" : {
"x" : 0,
"y" : 0,
"z" : 65
},
"originalEulerAngles" : {
"x" : 0,
"y" : 0,
"z" : 0
},
"originalScale" : {
"x" : 1,
"y" : 1,
"z" : 1
},
"attachedElementGuid" : {
"value" : "bec3c705-f213-4fc3-bbb3-58b49648eb68"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp",
"isOverridingDuration" : false,
"startTime" : -32767,
"endTime" : 32767,
"attachedElementGuid" : {
"value" : "bec3c705-f213-4fc3-bbb3-58b49648eb68"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp",
"originalBaseColor" : {
"r" : 1,
"g" : 1,
"b" : 1,
"a" : 1
},
"emissionEnabled" : false,
"originalEmissionColor" : {
"r" : 0,
"g" : 0,
"b" : 0,
"a" : 1
},
"originalEmissionIntensity" : 0,
"attachedElementGuid" : {
"value" : "bec3c705-f213-4fc3-bbb3-58b49648eb68"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.GameCamera_BM,Assembly-CSharp",
"cameraViewType" : 0,
@@ -688,194 +252,16 @@
"value" : "91c12c84-411a-465c-9e5f-d1a3fd5a4df4"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.FastNoteTracker_BM,Assembly-CSharp",
"elementName" : "Fast Note Tracker",
"__type" : "Ichni.RhythmGame.Beatmap.ElementFolder_BM,Assembly-CSharp",
"elementName" : "New Folder",
"tags" : [
],
"elementGuid" : {
"value" : "3bae10cd-6e94-40dc-bdae-7e33e534cf92"
"value" : "fcc19f93-d838-4b19-aa74-04f8e0d9a07f"
},
"attachedElementGuid" : {
"value" : "69a0ca9a-cdca-42ea-ae57-6d3029d0a684"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.Displacement_BM,Assembly-CSharp",
"positionX" : {
"animatedFloatList" : [
{
"startValue" : 0,
"endValue" : 0,
"startTime" : 0,
"endTime" : 1,
"animationCurveType" : 0
},{
"startValue" : 0,
"endValue" : 2,
"startTime" : 1.2,
"endTime" : 1.8,
"animationCurveType" : 0
},{
"startValue" : 2,
"endValue" : 2,
"startTime" : 1.8,
"endTime" : 2.4,
"animationCurveType" : 0
},{
"startValue" : 2,
"endValue" : 0,
"startTime" : 2.4,
"endTime" : 3,
"animationCurveType" : 0
},{
"startValue" : 0,
"endValue" : -2,
"startTime" : 3,
"endTime" : 3.6,
"animationCurveType" : 0
},{
"startValue" : -2,
"endValue" : -2,
"startTime" : 3.6,
"endTime" : 4.2,
"animationCurveType" : 0
},{
"startValue" : -2,
"endValue" : 0,
"startTime" : 4.2,
"endTime" : 4.8,
"animationCurveType" : 0
},{
"startValue" : 0,
"endValue" : 2,
"startTime" : 4.8,
"endTime" : 5.4,
"animationCurveType" : 0
},{
"startValue" : 2,
"endValue" : 2,
"startTime" : 5.4,
"endTime" : 6,
"animationCurveType" : 0
},{
"startValue" : 2,
"endValue" : 0,
"startTime" : 6,
"endTime" : 6.60000038,
"animationCurveType" : 0
}
]
},
"positionY" : {
"animatedFloatList" : [
{
"startValue" : 0,
"endValue" : 0,
"startTime" : 0,
"endTime" : 1,
"animationCurveType" : 0
}
]
},
"positionZ" : {
"animatedFloatList" : [
{
"startValue" : 0,
"endValue" : 0,
"startTime" : 0,
"endTime" : 1,
"animationCurveType" : 0
}
]
},
"elementName" : "New Displacement",
"tags" : [
],
"elementGuid" : {
"value" : "346cc478-14b5-4712-b290-23025c82af22"
},
"attachedElementGuid" : {
"value" : "b7eea34d-abe0-42b0-b432-e2a682395ba3"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp",
"isOverridingDuration" : false,
"startTime" : -32767,
"endTime" : 32767,
"attachedElementGuid" : {
"value" : "346cc478-14b5-4712-b290-23025c82af22"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.Hold_BM,Assembly-CSharp",
"holdEndTime" : 2.4,
"exactJudgeTime" : 1.2,
"elementName" : "New Hold",
"tags" : [
],
"elementGuid" : {
"value" : "51e936f4-e160-40ad-ab42-79e97075cf0e"
},
"attachedElementGuid" : {
"value" : "69a0ca9a-cdca-42ea-ae57-6d3029d0a684"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp",
"isOverridingDuration" : false,
"startTime" : -32767,
"endTime" : 32767,
"attachedElementGuid" : {
"value" : "51e936f4-e160-40ad-ab42-79e97075cf0e"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp",
"judgeUnitList" : [
{
"__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp",
"areaRadius" : 600
}
],
"attachedElementGuid" : {
"value" : "51e936f4-e160-40ad-ab42-79e97075cf0e"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp",
"generalJudgeAudioList" : [
"DefaultEndHold"
],
"perfectAudioList" : [
],
"goodAudioList" : [
],
"badAudioList" : [
],
"missAudioList" : [
],
"holdStartAudioList" : [
"DefaultStartHold"
],
"attachedElementGuid" : {
"value" : "51e936f4-e160-40ad-ab42-79e97075cf0e"
}
},{
"__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisualHold_BM,Assembly-CSharp",
"isHighlighted" : false,
"themeBundleName" : "departure_to_multiverse",
"objectName" : "DTM_NoteVisualHold",
"elementName" : "New Note Visual",
"tags" : [
],
"elementGuid" : {
"value" : "ebe66488-af8e-44f6-aaad-b9ecf5304514"
},
"attachedElementGuid" : {
"value" : "51e936f4-e160-40ad-ab42-79e97075cf0e"
"value" : "1a185970-544f-411d-9b55-d04453f32069"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp",
@@ -895,7 +281,7 @@
"z" : 1
},
"attachedElementGuid" : {
"value" : "ebe66488-af8e-44f6-aaad-b9ecf5304514"
"value" : "fcc19f93-d838-4b19-aa74-04f8e0d9a07f"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp",
@@ -903,97 +289,7 @@
"startTime" : -32767,
"endTime" : 32767,
"attachedElementGuid" : {
"value" : "ebe66488-af8e-44f6-aaad-b9ecf5304514"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp",
"originalBaseColor" : {
"r" : 1,
"g" : 1,
"b" : 1,
"a" : 1
},
"emissionEnabled" : false,
"originalEmissionColor" : {
"r" : 0,
"g" : 0,
"b" : 0,
"a" : 1
},
"originalEmissionIntensity" : 0,
"attachedElementGuid" : {
"value" : "ebe66488-af8e-44f6-aaad-b9ecf5304514"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp",
"effectCollection" : {"Generate":[
{
"__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExtend_BM,Assembly-CSharp",
"generateTime" : 1,
"effectTime" : 0.5
}
],"GeneralJudge":[
],"StartHold":[
{
"__type" : "Ichni.RhythmGame.Beatmap.BloomEffect_BM,Assembly-CSharp",
"duration" : 1,
"peak" : 2,
"intensityCurve" : {
"keys" : [
{
"time" : 0,
"value" : 0,
"inTangent" : 0,
"outTangent" : 0
},{
"time" : 0.5,
"value" : 1,
"inTangent" : 0,
"outTangent" : 0
},{
"time" : 1,
"value" : 0,
"inTangent" : 0,
"outTangent" : 0
}
],
"preWrapMode" : 8,
"postWrapMode" : 8
},
"effectTime" : 0
}
],"Holding":[
{
"__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteHoldingBreath_BM,Assembly-CSharp",
"effectTime" : 1.2
}
],"Perfect":[
{
"__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNotePerfectBurst_BM,Assembly-CSharp",
"effectTime" : 0
}
],"Good":[
{
"__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGoodBurst_BM,Assembly-CSharp",
"effectTime" : 0
}
],"Bad":[
{
"__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteBadBurst_BM,Assembly-CSharp",
"effectTime" : 0
}
],"Miss":[
{
"__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteMissTransparent_BM,Assembly-CSharp",
"effectTime" : 0.2
}
],"AfterJudge":[
]
},
"attachedElementGuid" : {
"value" : "ebe66488-af8e-44f6-aaad-b9ecf5304514"
"value" : "fcc19f93-d838-4b19-aa74-04f8e0d9a07f"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp",
@@ -1002,15 +298,15 @@
],
"elementGuid" : {
"value" : "04cd3c42-5287-4a6c-b590-a683adb2a981"
"value" : "f39a7a5c-e725-4e5c-bc33-7da24abfe20b"
},
"attachedElementGuid" : {
"value" : "22346647-751b-412e-a32b-82c06a3870b3"
"value" : "1a185970-544f-411d-9b55-d04453f32069"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp",
"originalPosition" : {
"x" : 0,
"x" : -0.1,
"y" : 0,
"z" : 0
},
@@ -1025,7 +321,7 @@
"z" : 1
},
"attachedElementGuid" : {
"value" : "04cd3c42-5287-4a6c-b590-a683adb2a981"
"value" : "f39a7a5c-e725-4e5c-bc33-7da24abfe20b"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp",
@@ -1033,7 +329,7 @@
"startTime" : -32767,
"endTime" : 32767,
"attachedElementGuid" : {
"value" : "04cd3c42-5287-4a6c-b590-a683adb2a981"
"value" : "f39a7a5c-e725-4e5c-bc33-7da24abfe20b"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp",
@@ -1042,46 +338,38 @@
"isClosed" : false,
"isShowingDisplay" : false,
"attachedElementGuid" : {
"value" : "04cd3c42-5287-4a6c-b590-a683adb2a981"
"value" : "f39a7a5c-e725-4e5c-bc33-7da24abfe20b"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TrackPercentPoint_BM,Assembly-CSharp",
"trackPercent" : {
"animatedFloatList" : [
]
"__type" : "Ichni.RhythmGame.Beatmap.TrackRendererSubmoduleAutoOrient_BM,Assembly-CSharp",
"materialThemeBundleName" : "",
"materialName" : "",
"enableEmission" : false,
"emissionIntensity" : 0,
"zWrite" : true,
"uvScale" : {
"x" : 1,
"y" : 1
},
"MotionAngles" : false,
"elementName" : "New Track Percent Point",
"tags" : [
],
"elementGuid" : {
"value" : "00aca86b-18e1-4336-865f-ec9dcd2e9ec0"
"uvOffset" : {
"x" : 0,
"y" : 0
},
"attachedElementGuid" : {
"value" : "04cd3c42-5287-4a6c-b590-a683adb2a981"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp",
"isOverridingDuration" : false,
"startTime" : -32767,
"endTime" : 32767,
"attachedElementGuid" : {
"value" : "00aca86b-18e1-4336-865f-ec9dcd2e9ec0"
"value" : "f39a7a5c-e725-4e5c-bc33-7da24abfe20b"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp",
"isShowingSphere" : true,
"elementName" : "New Path Node",
"elementName" : "1",
"tags" : [
],
"elementGuid" : {
"value" : "71791de1-4bf1-4c94-a76d-239b7527f90f"
"value" : "11bee78c-9ef2-4830-9df9-a5142c8ee070"
},
"attachedElementGuid" : {
"value" : "04cd3c42-5287-4a6c-b590-a683adb2a981"
"value" : "f39a7a5c-e725-4e5c-bc33-7da24abfe20b"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp",
@@ -1101,7 +389,7 @@
"z" : 1
},
"attachedElementGuid" : {
"value" : "71791de1-4bf1-4c94-a76d-239b7527f90f"
"value" : "11bee78c-9ef2-4830-9df9-a5142c8ee070"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp",
@@ -1109,7 +397,7 @@
"startTime" : -32767,
"endTime" : 32767,
"attachedElementGuid" : {
"value" : "71791de1-4bf1-4c94-a76d-239b7527f90f"
"value" : "11bee78c-9ef2-4830-9df9-a5142c8ee070"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp",
@@ -1128,27 +416,27 @@
},
"originalEmissionIntensity" : 0,
"attachedElementGuid" : {
"value" : "71791de1-4bf1-4c94-a76d-239b7527f90f"
"value" : "11bee78c-9ef2-4830-9df9-a5142c8ee070"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp",
"isShowingSphere" : true,
"elementName" : "New Path Node",
"elementName" : "3",
"tags" : [
],
"elementGuid" : {
"value" : "ffbe8bbf-17cd-447b-9b92-0ef41ec4a1b8"
"value" : "09737b4c-03c5-4744-8ef4-b66e0f9b3bb1"
},
"attachedElementGuid" : {
"value" : "04cd3c42-5287-4a6c-b590-a683adb2a981"
"value" : "f39a7a5c-e725-4e5c-bc33-7da24abfe20b"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp",
"originalPosition" : {
"x" : -5.16,
"y" : 4.376869,
"z" : 10.42
"x" : 2.8,
"y" : 0,
"z" : 15
},
"originalEulerAngles" : {
"x" : 0,
@@ -1161,7 +449,7 @@
"z" : 1
},
"attachedElementGuid" : {
"value" : "ffbe8bbf-17cd-447b-9b92-0ef41ec4a1b8"
"value" : "09737b4c-03c5-4744-8ef4-b66e0f9b3bb1"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp",
@@ -1169,7 +457,7 @@
"startTime" : -32767,
"endTime" : 32767,
"attachedElementGuid" : {
"value" : "ffbe8bbf-17cd-447b-9b92-0ef41ec4a1b8"
"value" : "09737b4c-03c5-4744-8ef4-b66e0f9b3bb1"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp",
@@ -1188,7 +476,67 @@
},
"originalEmissionIntensity" : 0,
"attachedElementGuid" : {
"value" : "ffbe8bbf-17cd-447b-9b92-0ef41ec4a1b8"
"value" : "09737b4c-03c5-4744-8ef4-b66e0f9b3bb1"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp",
"isShowingSphere" : true,
"elementName" : "2",
"tags" : [
],
"elementGuid" : {
"value" : "ab06c96d-6f2b-4173-9efa-495bee8471f3"
},
"attachedElementGuid" : {
"value" : "f39a7a5c-e725-4e5c-bc33-7da24abfe20b"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp",
"originalPosition" : {
"x" : 3.9,
"y" : 0,
"z" : 7
},
"originalEulerAngles" : {
"x" : 0,
"y" : 0,
"z" : 0
},
"originalScale" : {
"x" : 1,
"y" : 1,
"z" : 1
},
"attachedElementGuid" : {
"value" : "ab06c96d-6f2b-4173-9efa-495bee8471f3"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp",
"isOverridingDuration" : false,
"startTime" : -32767,
"endTime" : 32767,
"attachedElementGuid" : {
"value" : "ab06c96d-6f2b-4173-9efa-495bee8471f3"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp",
"originalBaseColor" : {
"r" : 1,
"g" : 1,
"b" : 1,
"a" : 1
},
"emissionEnabled" : false,
"originalEmissionColor" : {
"r" : 0,
"g" : 0,
"b" : 0,
"a" : 1
},
"originalEmissionIntensity" : 0,
"attachedElementGuid" : {
"value" : "ab06c96d-6f2b-4173-9efa-495bee8471f3"
}
}
],

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -6,7 +6,7 @@
"creatorName" : "0",
"editorVersion" : "0.1.0",
"createTime" : "2025\/12\/13 19:09:03",
"lastSaveTime" : "2026\/2\/11 1:23:48",
"lastSaveTime" : "2026\/2\/13 17:20:30",
"selectedThemeBundleList" : [
"basic","departure_to_multiverse"
],

View File

@@ -1,8 +0,0 @@
fileFormatVersion: 2
guid: 0857e3f5f6a7e184db6193f91812fa1c
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

File diff suppressed because it is too large Load Diff

View File

@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: 6e93aa91fb3981e40b573b69e2e7508a
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,13 +0,0 @@
{
"CommandScripts" : {
"__type" : "Ichni.RhythmGame.Beatmap.CommandScripts_BM,Assembly-CSharp",
"value" : {
"commandList" : [
],
"attachedElementGuid" : {
"value" : "00000000-0000-0000-0000-000000000000"
}
}
}
}

View File

@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: 14ddde0c8aea3f742a0c1e7b3f4dbb23
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,23 +0,0 @@
{
"ProjectInformation" : {
"__type" : "Ichni.RhythmGame.Beatmap.ProjectInformation_BM,Assembly-CSharp",
"value" : {
"projectName" : "Solitudes SP",
"creatorName" : "TRADER",
"editorVersion" : "0.1.0",
"createTime" : "2025\/10\/18 20:34:07",
"lastSaveTime" : "2025\/12\/21 16:36:03",
"selectedThemeBundleList" : [
"basic","departure_to_multiverse"
],
"tagManager" : {
"tagMatchers" : [
]
},
"attachedElementGuid" : {
"value" : "00000000-0000-0000-0000-000000000000"
}
}
}
}

View File

@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: cc3e744f8553f1942a74d31eba8e9c8c
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: 6dfb957aa89929c459f5c99fa5075c5d
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: a64ac1bee425d7d48b3d3a387f2d7394
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,14 +0,0 @@
{
"SongInformation" : {
"__type" : "Ichni.RhythmGame.Beatmap.SongInformation_BM,Assembly-CSharp",
"value" : {
"songName" : "Solitudes.mp3",
"bpm" : 200,
"delay" : 0,
"offset" : 0,
"attachedElementGuid" : {
"value" : "00000000-0000-0000-0000-000000000000"
}
}
}
}

View File

@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: 1e903d78853d1674f802a25dc3efe537
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

File diff suppressed because one or more lines are too long

View File

@@ -21,7 +21,7 @@ namespace Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse
public override void Recover()
{
if (breathParticle != null)
LeanPool.Despawn(breathParticle.gameObject);
LeanPool.Despawn(breathParticle);
}
public override void UpdateEffect(float triggerTime)
{
@@ -76,7 +76,7 @@ namespace Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse
return;
}
if (breathParticle != null)
LeanPool.Despawn(breathParticle.gameObject);
LeanPool.Despawn(breathParticle);
breathParticle = LeanPool.Spawn(effectPrefab, noteVisual.judgeEffect.transform).GetComponent<ParticleSystem>();
breathParticle.Play();
}