This commit is contained in:
SoulliesOfficial
2026-05-02 07:36:34 -04:00
parent e02c7f5e89
commit d47f5ac4ab
144 changed files with 1209351 additions and 63850 deletions

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -17188,7 +17188,7 @@ MonoBehaviour:
m_TargetGraphic: {fileID: 4337614255116277774}
m_HandleRect: {fileID: 4337614255116277775}
m_Direction: 2
m_Value: 1
m_Value: 0
m_Size: 1
m_NumberOfSteps: 0
m_OnValueChanged:

View File

@@ -41,6 +41,8 @@ namespace Ichni.RhythmGame
animation.propertyValueB = propertyValueB;
animation.propertyValueA = propertyValueA;
if (isFirstGenerated) animation.AfterInitialize();
return animation;
}

View File

@@ -37,6 +37,8 @@ namespace Ichni.RhythmGame
animation.propertyName = propertyName;
animation.propertyValue = propertyValue;
if (isFirstGenerated) animation.AfterInitialize();
return animation;
}

View File

@@ -40,6 +40,8 @@ namespace Ichni.RhythmGame
animation.propertyValueY = propertyValueY;
animation.propertyValueZ = propertyValueZ;
if (isFirstGenerated) animation.AfterInitialize();
return animation;
}

View File

@@ -31,6 +31,7 @@ namespace Ichni.RhythmGame
substantialObject.objectName = objectName;
substantialObject.FirstSetUpObject(isFirstGenerated);
substantialObject.SetEditorSubmodules();
if (isFirstGenerated) substantialObject.AfterInitialize();
return substantialObject;
}

View File

@@ -56,6 +56,7 @@ namespace Ichni.RhythmGame
particleEmitter.materialName = materialName;
particleEmitter.particlesContainer.SetParticleMaterial(themeBundleName, materialName);
particleEmitter.SetParticleSettings(prewarm, simulationSpace, density, lifeTime, speed, radius, isAutoOrient, particleRotation, false);
if (isFirstGenerated) particleEmitter.AfterInitialize();
return particleEmitter;
}

View File

@@ -24,6 +24,7 @@ namespace Ichni.RhythmGame
.AddComponent<TimeEffectsCollection>();
timeEffectsCollection.Initialize(name, guid, tags, isFirstGenerated, parentElement);
timeEffectsCollection.time = time;
if (isFirstGenerated) timeEffectsCollection.AfterInitialize();
return timeEffectsCollection;
}

View File

@@ -65,6 +65,8 @@ namespace Ichni.RhythmGame
}
pathNode.SetEditorSubmodules();
if (isFirstGenerated) pathNode.AfterInitialize();
return pathNode;
}

View File

@@ -25,6 +25,8 @@ namespace Ichni.RhythmGame
folder.trackList.Add(track);
}
if (isFirstGenerated) track.AfterInitialize();
return track;
}

View File

@@ -38,6 +38,8 @@ namespace Ichni.RhythmGame
point.trackPositioner.motion.rotationOffset = Vector3.zero;
point.trackPositioner.motion.applyRotation = false;
if (isFirstGenerated) point.AfterInitialize();
return point;
}

View File

@@ -36,6 +36,12 @@ namespace Ichni.RhythmGame
head.motionEulerAngles = motionEulerAngles;
head.trackPositioner.motion.rotationOffset = motionEulerAngles;
if (isFirstGenerated)
{
head.AfterInitialize();
Debug.Log($"生成 TrackHeadPoint{head.elementName}ID: {head.elementGuid}");
}
return head;
}

View File

@@ -38,6 +38,8 @@ namespace Ichni.RhythmGame
point.trackPositioner.motion.rotationOffset = Vector3.zero;
point.trackPositioner.motion.applyRotation = false;
if (isFirstGenerated) point.AfterInitialize();
return point;
}

View File

@@ -78,9 +78,7 @@ namespace Ichni.RhythmGame
Material mat = ThemeBundleManager.instance.GetObject<Material>(materialThemeBundleName, materialName);
if (mat == null)
{
#if UNITY_EDITOR
mat = EditorManager.instance.basePrefabs.defaultTrackMaterial;
#endif
}
renderMaterial = mat;
meshRenderer.material = renderMaterial;
@@ -94,7 +92,7 @@ namespace Ichni.RhythmGame
if (!string.IsNullOrEmpty(customTextureName) && customTextureName != "None")
{
if (renderMaterial != null && (renderMaterial.name.Contains("DefaultTrackMaterial") || renderMaterial.shader.name == "Soullies/TrackShader" || renderMaterial.shader.name == "TrackShader"))
if (renderMaterial != null && (renderMaterial.name.Contains("DefaultTrackMaterial") || renderMaterial.shader.name == "Soullies/BlendUnlit" || renderMaterial.shader.name == "BlendUnlit"))
{
Texture2D tex = ThemeBundleManager.instance.GetObject<Texture2D>(customTextureThemeBundleName, customTextureName);
if (tex == null)
@@ -115,12 +113,12 @@ namespace Ichni.RhythmGame
// Emission
if (enableEmission)
{
meshRenderer.material.EnableKeyword("_EMISSION_ON");
meshRenderer.material.SetFloat("_EnableEmission", 1);
block.SetColor("_EmissionColor", Color.white * Mathf.Pow(2, emissionIntensity));
}
else
{
meshRenderer.material.DisableKeyword("_EMISSION_ON");
meshRenderer.material.SetFloat("_EnableEmission", 0);
block.SetColor("_EmissionColor", Color.black);
}

View File

@@ -21,11 +21,7 @@ namespace Ichni.RhythmGame
this.meshRenderer.enabled = true;
this.meshGenerator = splineRenderer;
#if UNITY_EDITOR
this.renderMaterial = material == null ? EditorManager.instance.basePrefabs.defaultTrackMaterial : material;
#else
this.renderMaterial = material;
#endif
this.splineRenderer.spline = track.trackPathSubmodule.path;
this.splineRenderer.doubleSided = true;

View File

@@ -19,11 +19,7 @@ namespace Ichni.RhythmGame
this.meshRenderer = pathGenerator.GetComponent<MeshRenderer>();
this.meshRenderer.enabled = true;
this.meshGenerator = pathGenerator;
#if UNITY_EDITOR
this.renderMaterial = material == null ? EditorManager.instance.basePrefabs.defaultTrackMaterial : material;
#else
this.renderMaterial = material;
#endif
this.pathGenerator.spline = track.trackPathSubmodule.path;
this.pathGenerator.doubleSided = true;
this.pathGenerator.clipFrom = 0;

View File

@@ -19,11 +19,7 @@ namespace Ichni.RhythmGame
this.meshRenderer = surface.GetComponent<MeshRenderer>();
this.meshRenderer.enabled = true;
this.meshGenerator = surface;
#if UNITY_EDITOR
this.renderMaterial = material == null ? EditorManager.instance.basePrefabs.defaultTrackMaterial : material;
#else
this.renderMaterial = material;
#endif
this.surface.spline = track.trackPathSubmodule.path;
this.surface.doubleSided = true;
this.surface.clipFrom = 0;

View File

@@ -22,11 +22,7 @@ namespace Ichni.RhythmGame
this.meshRenderer = tubeGenerator.GetComponent<MeshRenderer>();
this.meshRenderer.enabled = true;
this.meshGenerator = tubeGenerator;
#if UNITY_EDITOR
this.renderMaterial = material == null ? EditorManager.instance.basePrefabs.defaultTrackMaterial : material;
#else
this.renderMaterial = material;
#endif
this.tubeGenerator.spline = track.trackPathSubmodule.path;
this.tubeGenerator.doubleSided = true;
this.tubeGenerator.clipFrom = 0;

View File

@@ -64,6 +64,8 @@ namespace Ichni.RhythmGame
trail.trailRenderer.widthCurve = widthCurve;
trail.trailRenderer.colorGradient = gradient;
if (isFirstGenerated) trail.AfterInitialize();
return trail;
}

View File

@@ -6542,7 +6542,7 @@
],
"elementGuid" : {
"value" : "284f7454-6fb7-430a-8490-a42ecffbc6b9"
"value" : "e0826066-f704-49f3-8dae-188caba068d6"
},
"attachedElementGuid" : {
"value" : "16dd9f1a-d9fe-45c1-b194-040d687f2c75"
@@ -6565,7 +6565,7 @@
"z" : 1
},
"attachedElementGuid" : {
"value" : "284f7454-6fb7-430a-8490-a42ecffbc6b9"
"value" : "e0826066-f704-49f3-8dae-188caba068d6"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp",
@@ -6604,7 +6604,7 @@
]
},
"attachedElementGuid" : {
"value" : "284f7454-6fb7-430a-8490-a42ecffbc6b9"
"value" : "e0826066-f704-49f3-8dae-188caba068d6"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp",
@@ -17298,7 +17298,7 @@
],
"elementGuid" : {
"value" : "51af4e3a-c7d3-4ea5-a957-ba4cf15137bf"
"value" : "ad820b77-f7b1-497f-ae6a-35655b7b4733"
},
"attachedElementGuid" : {
"value" : "16dd9f1a-d9fe-45c1-b194-040d687f2c75"
@@ -17321,7 +17321,7 @@
"z" : 1
},
"attachedElementGuid" : {
"value" : "51af4e3a-c7d3-4ea5-a957-ba4cf15137bf"
"value" : "ad820b77-f7b1-497f-ae6a-35655b7b4733"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp",
@@ -17360,7 +17360,7 @@
]
},
"attachedElementGuid" : {
"value" : "51af4e3a-c7d3-4ea5-a957-ba4cf15137bf"
"value" : "ad820b77-f7b1-497f-ae6a-35655b7b4733"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.Flick_BM,Assembly-CSharp",
@@ -134836,21 +134836,24 @@
"effectTime" : 0.5
}
],"GeneralJudge":[
],"StartHold":[
{
"__type" : "Ichni.RhythmGame.Beatmap.HighPassFilterEffect_BM,Assembly-CSharp",
"peak" : 18000,
"peak" : 3500,
"useEQ" : true,
"intensityCurve" : {
"keys" : [
{
"time" : 0,
"value" : 1,
"value" : 0,
"inTangent" : 0,
"outTangent" : 0
},{
"time" : 0.5,
"time" : 0.4,
"value" : 1,
"inTangent" : 0,
"outTangent" : 0
"outTangent" : -3
},{
"time" : 1,
"value" : 0,
@@ -134861,10 +134864,8 @@
"preWrapMode" : 8,
"postWrapMode" : 8
},
"effectTime" : 1.2
"effectTime" : 1
}
],"StartHold":[
],"Holding":[
{
"__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteHoldingBreath_BM,Assembly-CSharp",
@@ -135939,7 +135940,7 @@
"seamRotation" : 90,
"seamFadeWidth" : 0.2,
"seamFadeSmoothness" : 2,
"fadeFar" : 200,
"fadeFar" : 1,
"fadeNear" : 0,
"tubeRadius" : 5,
"isStatic" : false,

View File

@@ -6542,7 +6542,7 @@
],
"elementGuid" : {
"value" : "92e8f94b-6155-4256-bef5-4906d647dffd"
"value" : "6e047986-932a-476a-816f-2ee7620d1f48"
},
"attachedElementGuid" : {
"value" : "16dd9f1a-d9fe-45c1-b194-040d687f2c75"
@@ -6565,7 +6565,7 @@
"z" : 1
},
"attachedElementGuid" : {
"value" : "92e8f94b-6155-4256-bef5-4906d647dffd"
"value" : "6e047986-932a-476a-816f-2ee7620d1f48"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp",
@@ -6604,7 +6604,7 @@
]
},
"attachedElementGuid" : {
"value" : "92e8f94b-6155-4256-bef5-4906d647dffd"
"value" : "6e047986-932a-476a-816f-2ee7620d1f48"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp",
@@ -15272,7 +15272,7 @@
"value" : "d8bc3f7f-c4d2-40f3-969b-42aa022ce724"
}
},{
"__type" : "Beatmap.BasicEnvironmentObject_BM,Assembly-CSharp",
"__type" : "Ichni.RhythmGame.Beatmap.BasicEnvironmentObject_BM,Assembly-CSharp",
"shadowThreshold" : 0,
"shadowSmoothness" : 0.1,
"useWorldLight" : false,
@@ -15898,7 +15898,7 @@
"value" : "3bccd653-51c4-4cc1-89e6-7f3fb9b914a3"
}
},{
"__type" : "Beatmap.BasicEnvironmentObject_BM,Assembly-CSharp",
"__type" : "Ichni.RhythmGame.Beatmap.BasicEnvironmentObject_BM,Assembly-CSharp",
"shadowThreshold" : 0,
"shadowSmoothness" : 0.1,
"useWorldLight" : false,
@@ -17298,7 +17298,7 @@
],
"elementGuid" : {
"value" : "2d20f889-bf7e-47d5-91fa-d08009743e6a"
"value" : "36efdccf-d930-4370-b839-169c62cab445"
},
"attachedElementGuid" : {
"value" : "16dd9f1a-d9fe-45c1-b194-040d687f2c75"
@@ -17321,7 +17321,7 @@
"z" : 1
},
"attachedElementGuid" : {
"value" : "2d20f889-bf7e-47d5-91fa-d08009743e6a"
"value" : "36efdccf-d930-4370-b839-169c62cab445"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp",
@@ -17360,7 +17360,7 @@
]
},
"attachedElementGuid" : {
"value" : "2d20f889-bf7e-47d5-91fa-d08009743e6a"
"value" : "36efdccf-d930-4370-b839-169c62cab445"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.Flick_BM,Assembly-CSharp",
@@ -96913,12 +96913,12 @@
"keys" : [
{
"time" : 0,
"value" : 0.5,
"value" : 1,
"inTangent" : 0,
"outTangent" : 0
},{
"time" : 1,
"value" : 0.5,
"value" : 1,
"inTangent" : 0,
"outTangent" : 0
}
@@ -97061,12 +97061,12 @@
"keys" : [
{
"time" : 0,
"value" : 0.5,
"value" : 1,
"inTangent" : 0,
"outTangent" : 0
},{
"time" : 1,
"value" : 0.5,
"value" : 1,
"inTangent" : 0,
"outTangent" : 0
}
@@ -107971,9 +107971,9 @@
},{
"__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp",
"originalBaseColor" : {
"r" : 1,
"r" : 0.15089035,
"g" : 1,
"b" : 1,
"b" : 0,
"a" : 1
},
"emissionEnabled" : false,
@@ -107994,7 +107994,7 @@
"materialThemeBundleName" : "departure_to_multiverse",
"materialName" : "DTM_Particle_SquareFrame",
"isAutoOrient" : true,
"widthMultiplier" : 1,
"widthMultiplier" : 2,
"widthCurve" : {
"keys" : [
{
@@ -108083,7 +108083,7 @@
"materialThemeBundleName" : "departure_to_multiverse",
"materialName" : "DTM_Particle_SquareFrame",
"isAutoOrient" : true,
"widthMultiplier" : 1,
"widthMultiplier" : 2,
"widthCurve" : {
"keys" : [
{
@@ -108480,12 +108480,12 @@
"keys" : [
{
"time" : 0,
"value" : 0.5,
"value" : 2,
"inTangent" : 0,
"outTangent" : 0
},{
"time" : 1,
"value" : 0.5,
"value" : 2,
"inTangent" : 0,
"outTangent" : 0
}
@@ -108610,12 +108610,12 @@
"keys" : [
{
"time" : 0,
"value" : 0.5,
"value" : 2,
"inTangent" : 0,
"outTangent" : 0
},{
"time" : 1,
"value" : 0.5,
"value" : 2,
"inTangent" : 0,
"outTangent" : 0
}
@@ -108740,12 +108740,12 @@
"keys" : [
{
"time" : 0,
"value" : 0.5,
"value" : 2,
"inTangent" : 0,
"outTangent" : 0
},{
"time" : 1,
"value" : 0.5,
"value" : 2,
"inTangent" : 0,
"outTangent" : 0
}
@@ -108870,12 +108870,12 @@
"keys" : [
{
"time" : 0,
"value" : 0.5,
"value" : 2,
"inTangent" : 0,
"outTangent" : 0
},{
"time" : 1,
"value" : 0.5,
"value" : 2,
"inTangent" : 0,
"outTangent" : 0
}
@@ -109497,7 +109497,7 @@
"__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp",
"originalPosition" : {
"x" : 0,
"y" : 0,
"y" : 100,
"z" : 55
},
"originalEulerAngles" : {
@@ -109661,12 +109661,12 @@
},
"emissionEnabled" : true,
"originalEmissionColor" : {
"r" : 1,
"g" : 1,
"b" : 1,
"r" : 0.04177568,
"g" : 0.1016885,
"b" : 0.5374188,
"a" : 1
},
"originalEmissionIntensity" : 2,
"originalEmissionIntensity" : 0,
"attachedElementGuid" : {
"value" : "dd9d3ce7-896e-4006-bf6d-31d257e6f29e"
}
@@ -110865,12 +110865,12 @@
"keys" : [
{
"time" : 0,
"value" : 0.5,
"value" : 1,
"inTangent" : 0,
"outTangent" : 0
},{
"time" : 1,
"value" : 0.5,
"value" : 1,
"inTangent" : 0,
"outTangent" : 0
}
@@ -110995,12 +110995,12 @@
"keys" : [
{
"time" : 0,
"value" : 0.5,
"value" : 1,
"inTangent" : 0,
"outTangent" : 0
},{
"time" : 1,
"value" : 0.5,
"value" : 1,
"inTangent" : 0,
"outTangent" : 0
}
@@ -111125,12 +111125,12 @@
"keys" : [
{
"time" : 0,
"value" : 0.5,
"value" : 1,
"inTangent" : 0,
"outTangent" : 0
},{
"time" : 1,
"value" : 0.5,
"value" : 1,
"inTangent" : 0,
"outTangent" : 0
}
@@ -111255,12 +111255,12 @@
"keys" : [
{
"time" : 0,
"value" : 0.5,
"value" : 1,
"inTangent" : 0,
"outTangent" : 0
},{
"time" : 1,
"value" : 0.5,
"value" : 1,
"inTangent" : 0,
"outTangent" : 0
}
@@ -112532,12 +112532,12 @@
"keys" : [
{
"time" : 0,
"value" : 0.5,
"value" : 1,
"inTangent" : 0,
"outTangent" : 0
},{
"time" : 1,
"value" : 0.5,
"value" : 1,
"inTangent" : 0,
"outTangent" : 0
}
@@ -112632,7 +112632,7 @@
"b" : 1,
"a" : 1
},
"originalEmissionIntensity" : 2,
"originalEmissionIntensity" : 1,
"attachedElementGuid" : {
"value" : "9a8710f6-797a-4438-9f77-6e27ef23453e"
}
@@ -112662,12 +112662,12 @@
"keys" : [
{
"time" : 0,
"value" : 0.5,
"value" : 1,
"inTangent" : 0,
"outTangent" : 0
},{
"time" : 1,
"value" : 0.5,
"value" : 1,
"inTangent" : 0,
"outTangent" : 0
}
@@ -112792,12 +112792,12 @@
"keys" : [
{
"time" : 0,
"value" : 0.5,
"value" : 1,
"inTangent" : 0,
"outTangent" : 0
},{
"time" : 1,
"value" : 0.5,
"value" : 1,
"inTangent" : 0,
"outTangent" : 0
}
@@ -112892,7 +112892,7 @@
"b" : 1,
"a" : 1
},
"originalEmissionIntensity" : 1,
"originalEmissionIntensity" : 2,
"attachedElementGuid" : {
"value" : "bfb86021-cb0b-42c0-a1d7-fac92b50d3c4"
}
@@ -112922,12 +112922,12 @@
"keys" : [
{
"time" : 0,
"value" : 0.5,
"value" : 1,
"inTangent" : 0,
"outTangent" : 0
},{
"time" : 1,
"value" : 0.5,
"value" : 1,
"inTangent" : 0,
"outTangent" : 0
}
@@ -114335,12 +114335,12 @@
"keys" : [
{
"time" : 0,
"value" : 0.5,
"value" : 1,
"inTangent" : 0,
"outTangent" : 0
},{
"time" : 1,
"value" : 0.5,
"time" : 0.9200001,
"value" : 1,
"inTangent" : 0,
"outTangent" : 0
}
@@ -114477,12 +114477,12 @@
"keys" : [
{
"time" : 0,
"value" : 0.5,
"value" : 1,
"inTangent" : 0,
"outTangent" : 0
},{
"time" : 1,
"value" : 0.5,
"value" : 1,
"inTangent" : 0,
"outTangent" : 0
}
@@ -114619,12 +114619,12 @@
"keys" : [
{
"time" : 0,
"value" : 0.5,
"value" : 1,
"inTangent" : 0,
"outTangent" : 0
},{
"time" : 1,
"value" : 0.5,
"value" : 1,
"inTangent" : 0,
"outTangent" : 0
}
@@ -114761,12 +114761,12 @@
"keys" : [
{
"time" : 0,
"value" : 0.5,
"value" : 1,
"inTangent" : 0,
"outTangent" : 0
},{
"time" : 1,
"value" : 0.5,
"value" : 1,
"inTangent" : 0,
"outTangent" : 0
}
@@ -134838,7 +134838,34 @@
],"GeneralJudge":[
],"StartHold":[
{
"__type" : "Ichni.RhythmGame.Beatmap.HighPassFilterEffect_BM,Assembly-CSharp",
"peak" : 3500,
"useEQ" : true,
"intensityCurve" : {
"keys" : [
{
"time" : 0,
"value" : 0,
"inTangent" : 0,
"outTangent" : 0
},{
"time" : 0.4,
"value" : 1,
"inTangent" : 0,
"outTangent" : -3
},{
"time" : 1,
"value" : 0,
"inTangent" : 0,
"outTangent" : 0
}
],
"preWrapMode" : 8,
"postWrapMode" : 8
},
"effectTime" : 1
}
],"Holding":[
{
"__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteHoldingBreath_BM,Assembly-CSharp",
@@ -135685,6 +135712,446 @@
"attachedElementGuid" : {
"value" : "93f88bc9-8ceb-40d6-b11a-5a91fbfabf50"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.ElementFolder_BM,Assembly-CSharp",
"elementName" : "Folder",
"tags" : [
],
"elementGuid" : {
"value" : "709c283e-2388-4522-8f18-c1588eb11670"
},
"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" : "709c283e-2388-4522-8f18-c1588eb11670"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp",
"isOverridingDuration" : false,
"startTime" : -32767,
"endTime" : 32767,
"attachedElementGuid" : {
"value" : "709c283e-2388-4522-8f18-c1588eb11670"
}
},{
"__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMStarrySkybox_BM,Assembly-CSharp",
"skyColorR" : 0,
"skyColorG" : 0,
"skyColorB" : 0.3304467,
"skyColorA" : 1,
"horizonR" : 0,
"horizonG" : 0,
"horizonB" : 0,
"horizonA" : 1,
"horizonStrength" : 2,
"horizonSkyHeight" : 0.7,
"useStarMap" : false,
"starDensity" : 30,
"starSize" : 75,
"starColorR" : 1,
"starColorG" : 1,
"starColorB" : 1,
"starColorA" : 1,
"preventStarsInFrontOfSun" : true,
"starMapTextureName" : "None",
"haveSun" : false,
"sunMaskTextureName" : "None",
"sunMaskSize" : 0.02,
"sunMaskSpherize" : 13.2,
"sunDiscSize" : 1,
"sunColorOneR" : 1,
"sunColorOneG" : 1,
"sunColorOneB" : 1,
"sunColorOneA" : 1,
"sunColorTwoR" : 1,
"sunColorTwoG" : 1,
"sunColorTwoB" : 1,
"sunColorTwoA" : 1,
"sunGradientStrength" : 3.7,
"sunGradientHeight" : 1.23,
"fogHeight" : 1,
"fogPower" : 0.5,
"fogContrast" : 40,
"isStatic" : false,
"themeBundleName" : "departure_to_multiverse",
"objectName" : "DTM_StarrySkybox",
"elementName" : "New Environment Object",
"tags" : [
],
"elementGuid" : {
"value" : "5ef6bb3b-b236-4fe2-b740-d81fa20fd843"
},
"attachedElementGuid" : {
"value" : "709c283e-2388-4522-8f18-c1588eb11670"
}
},{
"__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" : "5ef6bb3b-b236-4fe2-b740-d81fa20fd843"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp",
"isOverridingDuration" : false,
"startTime" : -32767,
"endTime" : 32767,
"attachedElementGuid" : {
"value" : "5ef6bb3b-b236-4fe2-b740-d81fa20fd843"
}
},{
"__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" : "5ef6bb3b-b236-4fe2-b740-d81fa20fd843"
}
},{
"__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMRandomGridFloor_BM,Assembly-CSharp",
"patternSizeX" : 25,
"patternSizeY" : 25,
"gridDensity" : 1,
"timeAngle" : 0.2,
"stepA" : 0.25,
"stepB" : 0.245,
"baseSpeed" : 0.2,
"enableOuterBorder" : false,
"outerBorderColorR" : 0.4139432,
"outerBorderColorG" : 0.662146,
"outerBorderColorB" : 1,
"outerBorderColorA" : 1,
"outerBorderWidth" : 0.002,
"fadeFar" : 500,
"fadeNear" : 20,
"isStatic" : false,
"themeBundleName" : "departure_to_multiverse",
"objectName" : "DTM_RandomGridFloor",
"elementName" : "New Environment Object",
"tags" : [
],
"elementGuid" : {
"value" : "60050658-801d-4fdd-8449-e8852d57d284"
},
"attachedElementGuid" : {
"value" : "709c283e-2388-4522-8f18-c1588eb11670"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp",
"originalPosition" : {
"x" : 0,
"y" : -50,
"z" : 0
},
"originalEulerAngles" : {
"x" : 0,
"y" : 0,
"z" : 0
},
"originalScale" : {
"x" : 0,
"y" : 999,
"z" : 0
},
"attachedElementGuid" : {
"value" : "60050658-801d-4fdd-8449-e8852d57d284"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp",
"isOverridingDuration" : false,
"startTime" : -32767,
"endTime" : 32767,
"attachedElementGuid" : {
"value" : "60050658-801d-4fdd-8449-e8852d57d284"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp",
"originalBaseColor" : {
"r" : 0.4626925,
"g" : 0.8805984,
"b" : 1,
"a" : 1
},
"emissionEnabled" : false,
"originalEmissionColor" : {
"r" : 0,
"g" : 0,
"b" : 0,
"a" : 1
},
"originalEmissionIntensity" : 0,
"attachedElementGuid" : {
"value" : "60050658-801d-4fdd-8449-e8852d57d284"
}
},{
"__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMRandomGridTube_BM,Assembly-CSharp",
"patternSizeX" : 0.5,
"patternSizeY" : 2,
"gridDensity" : 0.2,
"timeAngle" : 0.5746485,
"stepA" : 0.21,
"stepB" : 0.19,
"baseSpeed" : 0.2,
"seamRotation" : 90,
"seamFadeWidth" : 0.2,
"seamFadeSmoothness" : 2,
"fadeFar" : 1,
"fadeNear" : 0,
"tubeRadius" : 5,
"isStatic" : false,
"themeBundleName" : "departure_to_multiverse",
"objectName" : "DTM_RandomGridTube",
"elementName" : "New Environment Object",
"tags" : [
],
"elementGuid" : {
"value" : "fb1a7137-8bfd-48b7-ae04-103329ba7471"
},
"attachedElementGuid" : {
"value" : "709c283e-2388-4522-8f18-c1588eb11670"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp",
"originalPosition" : {
"x" : 0,
"y" : 0,
"z" : 2480
},
"originalEulerAngles" : {
"x" : 0,
"y" : 0,
"z" : 0
},
"originalScale" : {
"x" : 2400,
"y" : 2400,
"z" : 51997.3
},
"attachedElementGuid" : {
"value" : "fb1a7137-8bfd-48b7-ae04-103329ba7471"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp",
"isOverridingDuration" : false,
"startTime" : -32767,
"endTime" : 32767,
"attachedElementGuid" : {
"value" : "fb1a7137-8bfd-48b7-ae04-103329ba7471"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp",
"originalBaseColor" : {
"r" : 1,
"g" : 1,
"b" : 1,
"a" : 1
},
"emissionEnabled" : false,
"originalEmissionColor" : {
"r" : 0.1724947,
"g" : 0.4012528,
"b" : 0.6735845,
"a" : 1
},
"originalEmissionIntensity" : 0.5,
"attachedElementGuid" : {
"value" : "fb1a7137-8bfd-48b7-ae04-103329ba7471"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.PropertyAnimationFloat_BM,Assembly-CSharp",
"componentName" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.DTMRandomGridTube",
"propertyName" : "fadeFar",
"propertyValue" : {
"animatedFloatList" : [
{
"startValue" : 1,
"endValue" : 1,
"startTime" : 0,
"endTime" : 1.5,
"animationCurveType" : 0
},{
"startValue" : 1,
"endValue" : 200,
"startTime" : 88.8,
"endTime" : 90,
"animationCurveType" : 5
},{
"startValue" : 200,
"endValue" : 1,
"startTime" : 120.6,
"endTime" : 120.9,
"animationCurveType" : 5
}
]
},
"elementName" : "New Property Animation Float",
"tags" : [
],
"elementGuid" : {
"value" : "a3d82144-16a7-452c-9042-c68bd14ab1c1"
},
"attachedElementGuid" : {
"value" : "fb1a7137-8bfd-48b7-ae04-103329ba7471"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp",
"isOverridingDuration" : false,
"startTime" : -32767,
"endTime" : 32767,
"attachedElementGuid" : {
"value" : "a3d82144-16a7-452c-9042-c68bd14ab1c1"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.Scale_BM,Assembly-CSharp",
"scaleX" : {
"animatedFloatList" : [
{
"startValue" : 99999,
"endValue" : 99999,
"startTime" : 0,
"endTime" : 1,
"animationCurveType" : 0
},{
"startValue" : 25,
"endValue" : 0,
"startTime" : 88.5,
"endTime" : 89.7000046,
"animationCurveType" : 0
}
]
},
"scaleY" : {
"animatedFloatList" : [
{
"startValue" : 1,
"endValue" : 1,
"startTime" : 0,
"endTime" : 1,
"animationCurveType" : 0
}
]
},
"scaleZ" : {
"animatedFloatList" : [
{
"startValue" : 99999,
"endValue" : 99999,
"startTime" : 0,
"endTime" : 1,
"animationCurveType" : 0
}
]
},
"elementName" : "New Scale",
"tags" : [
],
"elementGuid" : {
"value" : "22dd1734-ec30-4405-8cc1-009e138b4e6e"
},
"attachedElementGuid" : {
"value" : "60050658-801d-4fdd-8449-e8852d57d284"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp",
"isOverridingDuration" : false,
"startTime" : -32767,
"endTime" : 32767,
"attachedElementGuid" : {
"value" : "22dd1734-ec30-4405-8cc1-009e138b4e6e"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.PropertyAnimationFloat_BM,Assembly-CSharp",
"componentName" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.DTMRandomGridTube",
"propertyName" : "timeAngle",
"propertyValue" : {
"animatedFloatList" : [
{
"startValue" : 0,
"endValue" : 1,
"startTime" : 0,
"endTime" : 1,
"animationCurveType" : 0
},{
"startValue" : 1,
"endValue" : 0,
"startTime" : 88.2,
"endTime" : 88.50001,
"animationCurveType" : 0
},{
"startValue" : 1.0111,
"endValue" : 1,
"startTime" : 88.8,
"endTime" : 90,
"animationCurveType" : 0
}
]
},
"elementName" : "New Property Animation Float",
"tags" : [
],
"elementGuid" : {
"value" : "a646d4b0-b5c4-423f-a8e8-3ba9757ed0fd"
},
"attachedElementGuid" : {
"value" : "fb1a7137-8bfd-48b7-ae04-103329ba7471"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp",
"isOverridingDuration" : false,
"startTime" : -32767,
"endTime" : 32767,
"attachedElementGuid" : {
"value" : "a646d4b0-b5c4-423f-a8e8-3ba9757ed0fd"
}
}
],
"attachedElementGuid" : {

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -631,7 +631,7 @@
},{
"__type" : "Ichni.RhythmGame.Beatmap.CrossTrackPoint_BM,Assembly-CSharp",
"trackSwitch" : {
"value" : 9,
"value" : 6,
"animations" : [
{
"value" : 0,
@@ -670,8 +670,8 @@
]
},
"trackPercent" : {
"value" : 0.7624915,
"currentAnimationIndex" : 9,
"value" : 0.01838167,
"currentAnimationIndex" : 6,
"animations" : [
{
"startValue" : 0,
@@ -12660,7 +12660,7 @@
],
"elementGuid" : {
"value" : "167f71a4-87d9-4104-b588-4e8a324a40ae"
"value" : "be8c1e84-8bc5-4a33-8194-daf583249e5a"
},
"attachedElementGuid" : {
"value" : "bf6ef3b7-5d0f-49a0-b565-be93321a36f2"
@@ -12683,7 +12683,7 @@
"z" : 1
},
"attachedElementGuid" : {
"value" : "167f71a4-87d9-4104-b588-4e8a324a40ae"
"value" : "be8c1e84-8bc5-4a33-8194-daf583249e5a"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp",
@@ -12730,7 +12730,7 @@
]
},
"attachedElementGuid" : {
"value" : "167f71a4-87d9-4104-b588-4e8a324a40ae"
"value" : "be8c1e84-8bc5-4a33-8194-daf583249e5a"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.BackgroundSetter_BM,Assembly-CSharp",
@@ -17616,7 +17616,7 @@
],
"elementGuid" : {
"value" : "da05b327-81ed-4871-ad3d-bd5f237f2bfd"
"value" : "5e42cf4c-b61c-45cb-b8e4-3b971e43d759"
},
"attachedElementGuid" : {
"value" : "bf6ef3b7-5d0f-49a0-b565-be93321a36f2"
@@ -17639,7 +17639,7 @@
"z" : 1
},
"attachedElementGuid" : {
"value" : "da05b327-81ed-4871-ad3d-bd5f237f2bfd"
"value" : "5e42cf4c-b61c-45cb-b8e4-3b971e43d759"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp",
@@ -17679,7 +17679,7 @@
]
},
"attachedElementGuid" : {
"value" : "da05b327-81ed-4871-ad3d-bd5f237f2bfd"
"value" : "5e42cf4c-b61c-45cb-b8e4-3b971e43d759"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.Displacement_BM,Assembly-CSharp",
@@ -23941,7 +23941,7 @@
],
"elementGuid" : {
"value" : "8b05ef04-5193-4f1e-ad87-039f3eafb26e"
"value" : "7354f973-2171-4623-a532-d2c7b037fac2"
},
"attachedElementGuid" : {
"value" : "bf6ef3b7-5d0f-49a0-b565-be93321a36f2"
@@ -23964,7 +23964,7 @@
"z" : 1
},
"attachedElementGuid" : {
"value" : "8b05ef04-5193-4f1e-ad87-039f3eafb26e"
"value" : "7354f973-2171-4623-a532-d2c7b037fac2"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp",
@@ -24004,7 +24004,7 @@
]
},
"attachedElementGuid" : {
"value" : "8b05ef04-5193-4f1e-ad87-039f3eafb26e"
"value" : "7354f973-2171-4623-a532-d2c7b037fac2"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.ElementFolder_BM,Assembly-CSharp",
@@ -96676,7 +96676,7 @@
"__type" : "Ichni.RhythmGame.Beatmap.Hold_BM,Assembly-CSharp",
"holdEndTime" : 61.35,
"exactJudgeTime" : 61.2,
"elementName" : "Hold (61.2-61.35)",
"elementName" : "123",
"tags" : [
],
@@ -96746,7 +96746,7 @@
},{
"__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp",
"originalPosition" : {
"x" : 2.0171876,
"x" : 2.017188,
"y" : 0,
"z" : 0
},
@@ -178303,7 +178303,7 @@
],
"elementGuid" : {
"value" : "638434e0-2172-4c3e-8a98-28f540a1451c"
"value" : "844a76f5-ffe2-4742-880f-99155bdc4633"
},
"attachedElementGuid" : {
"value" : "bf6ef3b7-5d0f-49a0-b565-be93321a36f2"
@@ -178326,7 +178326,7 @@
"z" : 1
},
"attachedElementGuid" : {
"value" : "638434e0-2172-4c3e-8a98-28f540a1451c"
"value" : "844a76f5-ffe2-4742-880f-99155bdc4633"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp",
@@ -178366,7 +178366,7 @@
]
},
"attachedElementGuid" : {
"value" : "638434e0-2172-4c3e-8a98-28f540a1451c"
"value" : "844a76f5-ffe2-4742-880f-99155bdc4633"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.Stay_BM,Assembly-CSharp",
@@ -245041,7 +245041,7 @@
],
"elementGuid" : {
"value" : "c30e15f6-083e-44f8-86fd-bd00a2f5fced"
"value" : "bff0838c-cdcf-4554-8577-362b0253c8f8"
},
"attachedElementGuid" : {
"value" : "bf6ef3b7-5d0f-49a0-b565-be93321a36f2"
@@ -245064,7 +245064,7 @@
"z" : 1
},
"attachedElementGuid" : {
"value" : "c30e15f6-083e-44f8-86fd-bd00a2f5fced"
"value" : "bff0838c-cdcf-4554-8577-362b0253c8f8"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp",
@@ -245104,7 +245104,7 @@
]
},
"attachedElementGuid" : {
"value" : "c30e15f6-083e-44f8-86fd-bd00a2f5fced"
"value" : "bff0838c-cdcf-4554-8577-362b0253c8f8"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.ElementFolder_BM,Assembly-CSharp",

View File

@@ -631,7 +631,7 @@
},{
"__type" : "Ichni.RhythmGame.Beatmap.CrossTrackPoint_BM,Assembly-CSharp",
"trackSwitch" : {
"value" : 7,
"value" : 9,
"animations" : [
{
"value" : 0,
@@ -670,8 +670,8 @@
]
},
"trackPercent" : {
"value" : 1,
"currentAnimationIndex" : 7,
"value" : 0.7624915,
"currentAnimationIndex" : 9,
"animations" : [
{
"startValue" : 0,
@@ -742,8 +742,8 @@
}
],
"isSwitchingReturnType" : false,
"lastReturnType" : 2,
"returnType" : 2
"lastReturnType" : 1,
"returnType" : 1
},
"MotionAngles" : false,
"elementName" : "New Cross Track Point",

View File

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

File diff suppressed because it is too large Load Diff

View File

@@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 28802a2f6f0ff2942bd2a248b9b68960
guid: b7308d7709a24b444b3c012d96ceeb96
DefaultImporter:
externalObjects: {}
userData:

File diff suppressed because it is too large Load Diff

View File

@@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 88f0993afef43b34eb23a79fbdd94e9b
guid: 55b59005556d5944fa18d26385f533fa
DefaultImporter:
externalObjects: {}
userData:

View File

@@ -0,0 +1,841 @@
{
"Beatmap" : {
"__type" : "Ichni.RhythmGame.Beatmap.BeatmapContainer_BM,Assembly-CSharp",
"value" : {
"elementList" : [
{
"__type" : "Ichni.RhythmGame.Beatmap.ElementFolder_BM,Assembly-CSharp",
"elementName" : "camera",
"tags" : [
],
"elementGuid" : {
"value" : "32a12f82-cb6a-4f83-b846-f91d2c634ff3"
},
"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" : "32a12f82-cb6a-4f83-b846-f91d2c634ff3"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp",
"isOverridingDuration" : false,
"startTime" : -32767,
"endTime" : 32767,
"attachedElementGuid" : {
"value" : "32a12f82-cb6a-4f83-b846-f91d2c634ff3"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.GameCamera_BM,Assembly-CSharp",
"cameraViewType" : 0,
"perspectiveAngle" : 60,
"orthographicSize" : 10,
"elementName" : "New Camera",
"tags" : [
],
"elementGuid" : {
"value" : "10628b53-ff09-418b-80cc-df7a8d2b8269"
},
"attachedElementGuid" : {
"value" : "32a12f82-cb6a-4f83-b846-f91d2c634ff3"
}
},{
"__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" : "10628b53-ff09-418b-80cc-df7a8d2b8269"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.Swirl_BM,Assembly-CSharp",
"eulerAngleX" : {
"animatedFloatList" : [
{
"startValue" : 20,
"endValue" : 20,
"startTime" : 0,
"endTime" : 1,
"animationCurveType" : 0
}
]
},
"eulerAngleY" : {
"animatedFloatList" : [
{
"startValue" : 0,
"endValue" : 0,
"startTime" : 0,
"endTime" : 1,
"animationCurveType" : 0
}
]
},
"eulerAngleZ" : {
"animatedFloatList" : [
{
"startValue" : 0,
"endValue" : 0,
"startTime" : 0,
"endTime" : 1,
"animationCurveType" : 0
}
]
},
"elementName" : "New Swirl",
"tags" : [
],
"elementGuid" : {
"value" : "bc5b69b9-7b78-479e-a2e1-ce81646b1f74"
},
"attachedElementGuid" : {
"value" : "10628b53-ff09-418b-80cc-df7a8d2b8269"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp",
"isOverridingDuration" : false,
"startTime" : -32767,
"endTime" : 32767,
"attachedElementGuid" : {
"value" : "bc5b69b9-7b78-479e-a2e1-ce81646b1f74"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.Displacement_BM,Assembly-CSharp",
"positionX" : {
"animatedFloatList" : [
{
"startValue" : 0,
"endValue" : 0,
"startTime" : 0,
"endTime" : 1,
"animationCurveType" : 0
}
]
},
"positionY" : {
"animatedFloatList" : [
{
"startValue" : 0,
"endValue" : 0,
"startTime" : 0,
"endTime" : 1,
"animationCurveType" : 0
}
]
},
"positionZ" : {
"animatedFloatList" : [
{
"startValue" : 0,
"endValue" : 1640,
"startTime" : 0,
"endTime" : 80,
"animationCurveType" : 0
}
]
},
"elementName" : "New Displacement",
"tags" : [
],
"elementGuid" : {
"value" : "6be85d08-2347-4ca7-b06f-bad6faf80d5f"
},
"attachedElementGuid" : {
"value" : "10628b53-ff09-418b-80cc-df7a8d2b8269"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp",
"isOverridingDuration" : false,
"startTime" : -32767,
"endTime" : 32767,
"attachedElementGuid" : {
"value" : "6be85d08-2347-4ca7-b06f-bad6faf80d5f"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.ElementFolder_BM,Assembly-CSharp",
"elementName" : "0-41",
"tags" : [
],
"elementGuid" : {
"value" : "5885fa37-8a6c-442e-aed4-1ce703cb4ae5"
},
"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" : "5885fa37-8a6c-442e-aed4-1ce703cb4ae5"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp",
"isOverridingDuration" : false,
"startTime" : -32767,
"endTime" : 32767,
"attachedElementGuid" : {
"value" : "5885fa37-8a6c-442e-aed4-1ce703cb4ae5"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.Track_BM,Assembly-CSharp",
"elementName" : "New Track",
"tags" : [
],
"elementGuid" : {
"value" : "84146f32-0d18-4633-aef2-26c36079f0bf"
},
"attachedElementGuid" : {
"value" : "5885fa37-8a6c-442e-aed4-1ce703cb4ae5"
}
},{
"__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" : "84146f32-0d18-4633-aef2-26c36079f0bf"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp",
"isOverridingDuration" : false,
"startTime" : -32767,
"endTime" : 32767,
"attachedElementGuid" : {
"value" : "84146f32-0d18-4633-aef2-26c36079f0bf"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TrackPathSubmodule_BM,Assembly-CSharp",
"trackSpaceType" : 0,
"trackSamplingType" : 0,
"isClosed" : false,
"isShowingDisplay" : false,
"sampleRate" : 8,
"attachedElementGuid" : {
"value" : "84146f32-0d18-4633-aef2-26c36079f0bf"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TrackTimeSubmoduleMovable_BM,Assembly-CSharp",
"trackStartTime" : 0,
"trackEndTime" : 88,
"visibleTrackTimeLength" : 10,
"animationCurveType" : 0,
"attachedElementGuid" : {
"value" : "84146f32-0d18-4633-aef2-26c36079f0bf"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TrackRendererSubmoduleAutoOrient_BM,Assembly-CSharp",
"materialThemeBundleName" : "",
"materialName" : "",
"enableEmission" : false,
"emissionIntensity" : 0,
"zWrite" : true,
"uvScale" : {
"x" : 1,
"y" : 1
},
"uvOffset" : {
"x" : 0,
"y" : 0
},
"customTextureThemeBundleName" : "None",
"customTextureName" : "None",
"uvMode" : 1,
"uvRotation" : 0,
"size" : 1,
"attachedElementGuid" : {
"value" : "84146f32-0d18-4633-aef2-26c36079f0bf"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp",
"isShowingSphere" : true,
"elementName" : "New Path Node",
"tags" : [
],
"elementGuid" : {
"value" : "60e33d32-8c68-440e-bbd3-14bbc8858745"
},
"attachedElementGuid" : {
"value" : "84146f32-0d18-4633-aef2-26c36079f0bf"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp",
"originalPosition" : {
"x" : 0,
"y" : -3,
"z" : 10
},
"originalEulerAngles" : {
"x" : 0,
"y" : 0,
"z" : 0
},
"originalScale" : {
"x" : 1,
"y" : 1,
"z" : 1
},
"attachedElementGuid" : {
"value" : "60e33d32-8c68-440e-bbd3-14bbc8858745"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp",
"isOverridingDuration" : false,
"startTime" : -32767,
"endTime" : 32767,
"attachedElementGuid" : {
"value" : "60e33d32-8c68-440e-bbd3-14bbc8858745"
}
},{
"__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" : "60e33d32-8c68-440e-bbd3-14bbc8858745"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.PathNode_BM,Assembly-CSharp",
"isShowingSphere" : true,
"elementName" : "New Path Node",
"tags" : [
],
"elementGuid" : {
"value" : "8656c34f-7907-4708-be56-08315aaad7f3"
},
"attachedElementGuid" : {
"value" : "84146f32-0d18-4633-aef2-26c36079f0bf"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp",
"originalPosition" : {
"x" : 0,
"y" : -3,
"z" : 1650
},
"originalEulerAngles" : {
"x" : 0,
"y" : 0,
"z" : 0
},
"originalScale" : {
"x" : 1,
"y" : 1,
"z" : 1
},
"attachedElementGuid" : {
"value" : "8656c34f-7907-4708-be56-08315aaad7f3"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp",
"isOverridingDuration" : false,
"startTime" : -32767,
"endTime" : 32767,
"attachedElementGuid" : {
"value" : "8656c34f-7907-4708-be56-08315aaad7f3"
}
},{
"__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" : "8656c34f-7907-4708-be56-08315aaad7f3"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.BackgroundSetter_BM,Assembly-CSharp",
"useSkybox" : true,
"skyboxThemeBundleName" : "basic",
"skyboxMaterialName" : "Skybox",
"backgroundSpriteName" : "Background",
"elementName" : "Background Setter",
"tags" : [
],
"elementGuid" : {
"value" : "e5141066-f6fb-4379-8257-0c16a35d4583"
},
"attachedElementGuid" : {
"value" : "00000000-0000-0000-0000-000000000000"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp",
"exactJudgeTime" : 2.7,
"elementName" : "New Tap",
"tags" : [
],
"elementGuid" : {
"value" : "0cbbed9d-574a-4abd-b683-99effce0b1aa"
},
"attachedElementGuid" : {
"value" : "84146f32-0d18-4633-aef2-26c36079f0bf"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp",
"isOverridingDuration" : false,
"startTime" : -32767,
"endTime" : 32767,
"attachedElementGuid" : {
"value" : "0cbbed9d-574a-4abd-b683-99effce0b1aa"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.NoteJudgeSubmodule_BM,Assembly-CSharp",
"judgeUnitList" : [
{
"__type" : "Ichni.RhythmGame.Beatmap.TouchAreaJudgeUnit_BM,Assembly-CSharp",
"areaRadius" : 600
}
],
"attachedElementGuid" : {
"value" : "0cbbed9d-574a-4abd-b683-99effce0b1aa"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.NoteAudioSubmodule_BM,Assembly-CSharp",
"generalJudgeAudioList" : [
"DefaultTap"
],
"perfectAudioList" : [
],
"goodAudioList" : [
],
"badAudioList" : [
],
"missAudioList" : [
],
"holdStartAudioList" : [
],
"attachedElementGuid" : {
"value" : "0cbbed9d-574a-4abd-b683-99effce0b1aa"
}
},{
"__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteVisual_BM,Assembly-CSharp",
"isHighlighted" : false,
"themeBundleName" : "departure_to_multiverse",
"objectName" : "DTM_NoteVisualTap",
"elementName" : "New Note Visual",
"tags" : [
],
"elementGuid" : {
"value" : "452c9ddc-7389-4099-b974-eb36f7471b08"
},
"attachedElementGuid" : {
"value" : "0cbbed9d-574a-4abd-b683-99effce0b1aa"
}
},{
"__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" : "452c9ddc-7389-4099-b974-eb36f7471b08"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp",
"isOverridingDuration" : false,
"startTime" : -32767,
"endTime" : 32767,
"attachedElementGuid" : {
"value" : "452c9ddc-7389-4099-b974-eb36f7471b08"
}
},{
"__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" : "452c9ddc-7389-4099-b974-eb36f7471b08"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp",
"effectCollection" : {"Generate":[
{
"__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMNoteGenerateExpand_BM,Assembly-CSharp",
"generateTime" : 1,
"effectTime" : 0.2
}
],"GeneralJudge":[
],"StartHold":[
],"Holding":[
],"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" : "452c9ddc-7389-4099-b974-eb36f7471b08"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.ElementFolder_BM,Assembly-CSharp",
"elementName" : "Environment",
"tags" : [
],
"elementGuid" : {
"value" : "4f9da5f3-23b0-48b0-b870-cd4bb818086d"
},
"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" : "4f9da5f3-23b0-48b0-b870-cd4bb818086d"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp",
"isOverridingDuration" : false,
"startTime" : -32767,
"endTime" : 32767,
"attachedElementGuid" : {
"value" : "4f9da5f3-23b0-48b0-b870-cd4bb818086d"
}
},{
"__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMStarrySkybox_BM,Assembly-CSharp",
"skyColorR" : 0.5790446,
"skyColorG" : 0.3308831,
"skyColorB" : 0.6856619,
"skyColorA" : 1,
"horizonR" : 0.1985292,
"horizonG" : 0.4761025,
"horizonB" : 0.7794139,
"horizonA" : 1,
"horizonStrength" : 2,
"horizonSkyHeight" : 0.7,
"useStarMap" : true,
"starDensity" : 30,
"starSize" : 75,
"starColorR" : 1,
"starColorG" : 1,
"starColorB" : 1,
"starColorA" : 1,
"preventStarsInFrontOfSun" : true,
"starMapTextureName" : "None",
"haveSun" : false,
"sunMaskTextureName" : "None",
"sunMaskSize" : 0.02,
"sunMaskSpherize" : 13.2,
"sunDiscSize" : 1,
"sunColorOneR" : 1,
"sunColorOneG" : 1,
"sunColorOneB" : 1,
"sunColorOneA" : 1,
"sunColorTwoR" : 1,
"sunColorTwoG" : 1,
"sunColorTwoB" : 1,
"sunColorTwoA" : 1,
"sunGradientStrength" : 3.7,
"sunGradientHeight" : 1.23,
"fogHeight" : 1,
"fogPower" : 0.5,
"fogContrast" : 10,
"isStatic" : false,
"themeBundleName" : "departure_to_multiverse",
"objectName" : "DTM_StarrySkybox",
"elementName" : "Skybox",
"tags" : [
],
"elementGuid" : {
"value" : "86e1b99b-918a-4824-90bb-d2d0907b2a48"
},
"attachedElementGuid" : {
"value" : "4f9da5f3-23b0-48b0-b870-cd4bb818086d"
}
},{
"__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" : "86e1b99b-918a-4824-90bb-d2d0907b2a48"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp",
"isOverridingDuration" : false,
"startTime" : -32767,
"endTime" : 32767,
"attachedElementGuid" : {
"value" : "86e1b99b-918a-4824-90bb-d2d0907b2a48"
}
},{
"__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" : "86e1b99b-918a-4824-90bb-d2d0907b2a48"
}
},{
"__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMGlobalFog_BM,Assembly-CSharp",
"fogIntensity" : 0,
"fogColorStart" : {
"r" : 0.4834563,
"g" : 0.3970591,
"b" : 0.9283084,
"a" : 1
},
"fogColorEnd" : {
"r" : 0.75,
"g" : 1,
"b" : 1,
"a" : 1
},
"fogColorStartIntensity" : 0,
"fogColorEndIntensity" : 0,
"fogColorStartR" : -1,
"fogColorStartG" : -1,
"fogColorStartB" : -1,
"fogColorStartA" : -1,
"fogColorEndR" : -1,
"fogColorEndG" : -1,
"fogColorEndB" : -1,
"fogColorEndA" : -1,
"fogColorDuo" : 0,
"skyboxFogIntensity" : 0.9,
"skyboxFogHeight" : 1,
"skyboxFogFalloff" : 6,
"skyboxFogOffset" : 0,
"skyboxFogBottom" : 1,
"skyboxFogFill" : 0,
"isStatic" : false,
"themeBundleName" : "departure_to_multiverse",
"objectName" : "DTM_GlobalFog",
"elementName" : "Fog",
"tags" : [
],
"elementGuid" : {
"value" : "8678f7a3-f22a-4120-af89-da21c156a1d1"
},
"attachedElementGuid" : {
"value" : "4f9da5f3-23b0-48b0-b870-cd4bb818086d"
}
},{
"__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" : "8678f7a3-f22a-4120-af89-da21c156a1d1"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp",
"isOverridingDuration" : false,
"startTime" : -32767,
"endTime" : 32767,
"attachedElementGuid" : {
"value" : "8678f7a3-f22a-4120-af89-da21c156a1d1"
}
},{
"__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" : "8678f7a3-f22a-4120-af89-da21c156a1d1"
}
}
],
"attachedElementGuid" : {
"value" : "00000000-0000-0000-0000-000000000000"
}
}
}
}

View File

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

View File

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

Binary file not shown.

View File

@@ -0,0 +1,7 @@
fileFormatVersion: 2
guid: 09d05ed5e75bf914eb20b01291dd46f7
TextScriptImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

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

View File

@@ -0,0 +1,2 @@
ò<EFBFBD>¿b
XWÏ8t.¤ðs¦Œî”úª®ÖJÁ ´' _b´,ߪ‡ePÆ|<16>(àÚÛÒN<C392>g~u„Õ^¬]yHŒ²õ,a&c°^z+uìbl­c®£æ¥!úŸ°wÖ†í§W1²á”ïÀ°“_<1B>]ù,ê» 7:J±ã<7F>­Ç·¢"

View File

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

View File

@@ -0,0 +1,7 @@
fileFormatVersion: 2
guid: 4e51a90ecca437645bab8cd9079cacc5
TextScriptImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@@ -6542,7 +6542,7 @@
],
"elementGuid" : {
"value" : "a40925ef-ef15-4186-81c6-72832c673a30"
"value" : "c774e764-b1cf-41a1-983c-18b7d3d718fd"
},
"attachedElementGuid" : {
"value" : "16dd9f1a-d9fe-45c1-b194-040d687f2c75"
@@ -6565,7 +6565,7 @@
"z" : 1
},
"attachedElementGuid" : {
"value" : "a40925ef-ef15-4186-81c6-72832c673a30"
"value" : "c774e764-b1cf-41a1-983c-18b7d3d718fd"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp",
@@ -6604,7 +6604,7 @@
]
},
"attachedElementGuid" : {
"value" : "a40925ef-ef15-4186-81c6-72832c673a30"
"value" : "c774e764-b1cf-41a1-983c-18b7d3d718fd"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.Tap_BM,Assembly-CSharp",
@@ -17298,7 +17298,7 @@
],
"elementGuid" : {
"value" : "1a33ebb9-b866-4870-bca4-5dc2c95caf4d"
"value" : "ba52c2aa-5d65-4569-ba47-e0f3bcd6ae6d"
},
"attachedElementGuid" : {
"value" : "16dd9f1a-d9fe-45c1-b194-040d687f2c75"
@@ -17321,7 +17321,7 @@
"z" : 1
},
"attachedElementGuid" : {
"value" : "1a33ebb9-b866-4870-bca4-5dc2c95caf4d"
"value" : "ba52c2aa-5d65-4569-ba47-e0f3bcd6ae6d"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.EffectSubmodule_BM,Assembly-CSharp",
@@ -17360,7 +17360,7 @@
]
},
"attachedElementGuid" : {
"value" : "1a33ebb9-b866-4870-bca4-5dc2c95caf4d"
"value" : "ba52c2aa-5d65-4569-ba47-e0f3bcd6ae6d"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.Flick_BM,Assembly-CSharp",
@@ -135933,14 +135933,14 @@
"patternSizeX" : 0.5,
"patternSizeY" : 2,
"gridDensity" : 0.2,
"timeAngle" : 1,
"timeAngle" : 0.02,
"stepA" : 0.21,
"stepB" : 0.19,
"baseSpeed" : 0.2,
"seamRotation" : 90,
"seamFadeWidth" : 0.2,
"seamFadeSmoothness" : 2,
"fadeFar" : 200,
"fadeFar" : 1,
"fadeNear" : 0,
"tubeRadius" : 5,
"isStatic" : false,
@@ -136152,6 +136152,125 @@
"attachedElementGuid" : {
"value" : "a646d4b0-b5c4-423f-a8e8-3ba9757ed0fd"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.ElementFolder_BM,Assembly-CSharp",
"elementName" : "Folder",
"tags" : [
],
"elementGuid" : {
"value" : "80fbc906-a82c-4f44-81de-17a80b0a04d8"
},
"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" : "80fbc906-a82c-4f44-81de-17a80b0a04d8"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp",
"isOverridingDuration" : false,
"startTime" : -32767,
"endTime" : 32767,
"attachedElementGuid" : {
"value" : "80fbc906-a82c-4f44-81de-17a80b0a04d8"
}
},{
"__type" : "Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse.Beatmap.DTMConstellation_BM,Assembly-CSharp",
"maxParticles" : 10,
"maxLineCount" : 12,
"spreadSize" : {
"x" : 20,
"y" : 20,
"z" : 20
},
"maxConnectionsPerStar" : 3,
"maxConnectionDistance" : 20,
"activeStarSize" : 1,
"lineWidth" : 0.1,
"orbitalVelocity" : {
"x" : 0,
"y" : 0,
"z" : 0.1
},
"angularVelocity" : 60,
"isStatic" : false,
"themeBundleName" : "departure_to_multiverse",
"objectName" : "DTM_ConstellationCube",
"elementName" : "New Environment Object",
"tags" : [
],
"elementGuid" : {
"value" : "c6a0218a-423f-4dbe-9cbb-07e7281b482b"
},
"attachedElementGuid" : {
"value" : "80fbc906-a82c-4f44-81de-17a80b0a04d8"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TransformSubmodule_BM,Assembly-CSharp",
"originalPosition" : {
"x" : 0,
"y" : 0,
"z" : 50
},
"originalEulerAngles" : {
"x" : 0,
"y" : 0,
"z" : 0
},
"originalScale" : {
"x" : 1,
"y" : 1,
"z" : 1
},
"attachedElementGuid" : {
"value" : "c6a0218a-423f-4dbe-9cbb-07e7281b482b"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.TimeDurationSubmodule_BM,Assembly-CSharp",
"isOverridingDuration" : false,
"startTime" : -32767,
"endTime" : 32767,
"attachedElementGuid" : {
"value" : "c6a0218a-423f-4dbe-9cbb-07e7281b482b"
}
},{
"__type" : "Ichni.RhythmGame.Beatmap.ColorSubmodule_BM,Assembly-CSharp",
"originalBaseColor" : {
"r" : 1,
"g" : 1,
"b" : 1,
"a" : 1
},
"emissionEnabled" : true,
"originalEmissionColor" : {
"r" : 1,
"g" : 1,
"b" : 1,
"a" : 1
},
"originalEmissionIntensity" : 2,
"attachedElementGuid" : {
"value" : "c6a0218a-423f-4dbe-9cbb-07e7281b482b"
}
}
],
"attachedElementGuid" : {

View File

@@ -6,7 +6,7 @@
"creatorName" : "TRADER",
"editorVersion" : "0.1.0",
"createTime" : "2026\/2\/15 10:43:24",
"lastSaveTime" : "4\/11\/2026 5:44:07 AM",
"lastSaveTime" : "4\/14\/2026 1:15:27 PM",
"selectedThemeBundleList" : [
"basic","departure_to_multiverse"
],

View File

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

File diff suppressed because it is too large Load Diff

View File

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

View File

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

View File

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

View File

@@ -0,0 +1,23 @@
{
"ProjectInformation" : {
"__type" : "Ichni.RhythmGame.Beatmap.ProjectInformation_BM,Assembly-CSharp",
"value" : {
"projectName" : "Space Rain",
"creatorName" : "mora",
"editorVersion" : "0.1.0",
"createTime" : "2025\/6\/21 20:53:45",
"lastSaveTime" : "4\/1\/2026 2:00:16 PM",
"selectedThemeBundleList" : [
"basic","departure_to_multiverse","shapes"
],
"tagManager" : {
"tagMatchers" : [
]
},
"attachedElementGuid" : {
"value" : "00000000-0000-0000-0000-000000000000"
}
}
}
}

View File

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

View File

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

View File

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

View File

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

View File

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

File diff suppressed because it is too large Load Diff

View File

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

View File

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

View File

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

View File

@@ -0,0 +1,23 @@
{
"ProjectInformation" : {
"__type" : "Ichni.RhythmGame.Beatmap.ProjectInformation_BM,Assembly-CSharp",
"value" : {
"projectName" : "alunite cas",
"creatorName" : "小优",
"editorVersion" : "0.1.0",
"createTime" : "2025\/6\/30 23:52:24",
"lastSaveTime" : "5\/1\/2026 4:29:18 AM",
"selectedThemeBundleList" : [
"basic","departure_to_multiverse"
],
"tagManager" : {
"tagMatchers" : [
]
},
"attachedElementGuid" : {
"value" : "00000000-0000-0000-0000-000000000000"
}
}
}
}

View File

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

View File

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

View File

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

View File

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

View File

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

File diff suppressed because it is too large Load Diff

View File

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

View File

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

View File

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

View File

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

View File

@@ -0,0 +1,23 @@
{
"ProjectInformation" : {
"__type" : "Ichni.RhythmGame.Beatmap.ProjectInformation_BM,Assembly-CSharp",
"value" : {
"projectName" : "register@fantobia",
"creatorName" : "小优",
"editorVersion" : "0.1.0",
"createTime" : "2026\/2\/20 19:56:02",
"lastSaveTime" : "4\/17\/2026 1:58:16 PM",
"selectedThemeBundleList" : [
"basic","departure_to_multiverse"
],
"tagManager" : {
"tagMatchers" : [
]
},
"attachedElementGuid" : {
"value" : "00000000-0000-0000-0000-000000000000"
}
}
}
}

View File

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

View File

@@ -0,0 +1,14 @@
{
"SongInformation" : {
"__type" : "Ichni.RhythmGame.Beatmap.SongInformation_BM,Assembly-CSharp",
"value" : {
"songName" : "OERA - register@fantobia.wav",
"bpm" : 140,
"delay" : 0,
"offset" : 0,
"attachedElementGuid" : {
"value" : "00000000-0000-0000-0000-000000000000"
}
}
}
}

View File

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

View File

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

File diff suppressed because it is too large Load Diff

View File

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

View File

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

Some files were not shown because too many files have changed in this diff Show More