Skip to content

Commit

Permalink
Fix newly created arc effect in runtime+0.4.6
Browse files Browse the repository at this point in the history
  • Loading branch information
yojohanshinwataikei committed Jun 30, 2023
1 parent 2d70191 commit 880387b
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Assets/Materials/Player/TrackBorderLeft.mat
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ Material:
- _Mode: 0
- _OcclusionStrength: 1
- _Parallax: 0.02
- _Phase: 0.12737204
- _Phase: 0
- _SmoothnessTextureChannel: 0
- _SpecularHighlights: 1
- _SrcBlend: 1
Expand Down
2 changes: 1 addition & 1 deletion Assets/Materials/Player/TrackBorderRight.mat
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ Material:
- _Mode: 0
- _OcclusionStrength: 1
- _Parallax: 0.02
- _Phase: 0.12737204
- _Phase: 0
- _SmoothnessTextureChannel: 0
- _SpecularHighlights: 1
- _SrcBlend: 1
Expand Down
2 changes: 1 addition & 1 deletion Assets/Materials/Player/TrackMain.mat
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ Material:
- _Mode: 0
- _OcclusionStrength: 1
- _Parallax: 0.02
- _Phase: 0.12737204
- _Phase: 0
- _SmoothnessTextureChannel: 0
- _SpecularHighlights: 1
- _SrcBlend: 1
Expand Down
2 changes: 1 addition & 1 deletion Assets/Misc/BuildTimestamp.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
638237422224889231
638237564818773276
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ private void AddNoteHandler()
note = new ArcHold() { Timing = timing, Track = PositionToTrack(pos.x), EndTiming = timing, TimingGroup = timingGroup };
break;
case ClickToCreateMode.Arc:
note = new ArcArc() { Timing = timing, EndTiming = timing, Color = currentArcColor, IsVoid = currentArcIsVoid, LineType = currentArcType, TimingGroup = timingGroup };
note = new ArcArc() { Timing = timing, EndTiming = timing, Color = currentArcColor, Effect = "none", IsVoid = currentArcIsVoid, LineType = currentArcType, TimingGroup = timingGroup };
break;
case ClickToCreateMode.ArcTap:
note = new ArcArcTap() { Timing = timing };
Expand Down
2 changes: 1 addition & 1 deletion Assets/Scripts/Gameplay/Chart/ArcChart.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1062,7 +1062,7 @@ public class ArcArc : ArcLongNote, IIntoRawItem, IHasTimingGroup, ISetableTiming
public float YStart;
public float YEnd;
public int Color;
public string Effect;
public string Effect = "none";
public bool IsVoid;
public List<ArcArcTap> ArcTaps = new List<ArcArcTap>();

Expand Down
3 changes: 2 additions & 1 deletion ProjectSettings/ProjectSettings.asset
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ PlayerSettings:
16:10: 0
16:9: 1
Others: 0
bundleVersion: 0.4.5
bundleVersion: 0.4.6
preloadedAssets:
- {fileID: 4800000, guid: bb26ede1beb997943a7d6295fbf075d4, type: 3}
- {fileID: 4800000, guid: 1e340182228616b4ca7dad1e80f4d319, type: 3}
Expand All @@ -162,6 +162,7 @@ PlayerSettings:
- {fileID: 0}
- {fileID: 0}
- {fileID: 0}
- {fileID: 0}
metroInputSource: 0
wsaTransparentSwapchain: 0
m_HolographicPauseOnTrackingLoss: 1
Expand Down

0 comments on commit 880387b

Please sign in to comment.