Commit 3d2ba477 authored by 16이상민's avatar 16이상민

erase wrong condition

parent 7a6ee5f5
...@@ -34,11 +34,11 @@ namespace JudgeModule ...@@ -34,11 +34,11 @@ namespace JudgeModule
note.Component.transform.position.x > appear.transform.position.x) note.Component.transform.position.x > appear.transform.position.x)
return; return;
if (condition.IsWrongInput(note)) /*if (condition.IsWrongInput(note))
{ {
judger.WrongNoteProc(note); judger.WrongNoteProc(note);
return; return;
} }*/
if (Judge.IsNoteStart(note, timing)) if (Judge.IsNoteStart(note, timing))
PlaySampleMotion(note as MotionNote, timing); PlaySampleMotion(note as MotionNote, timing);
......
...@@ -16,7 +16,7 @@ public class GameManager : MonoBehaviour { ...@@ -16,7 +16,7 @@ public class GameManager : MonoBehaviour {
instance = new GameObject().AddComponent<GameManager>(); instance = new GameObject().AddComponent<GameManager>();
instance.CurrentTrack instance.CurrentTrack
= new TrackInfo("Assets/Tracks/Tutorial/tmp2.bpe"); = new TrackInfo("Assets/Tracks/Tutorial/tmp.bpe");
} }
return instance; return instance;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment