Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
R
RhythmKata
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
13정준영
RhythmKata
Commits
0b60d17a
Commit
0b60d17a
authored
Nov 25, 2019
by
15박보승
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
곡이 끝난 후 Result가 나오도록 구현, 점수 계산법 추가
parent
a8ed1d1d
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
35 additions
and
20 deletions
+35
-20
Recorded.meta
...sources/SFX/SFX Project/sfx Project/Samples/Recorded.meta
+0
-8
CameraController.cs
RhythmKata/Assets/Scripts/CameraController.cs
+1
-4
EdgeNoteObject.cs
RhythmKata/Assets/Scripts/EdgeNoteObject.cs
+1
-1
NoteObject.cs
RhythmKata/Assets/Scripts/NoteObject.cs
+1
-1
PlayEngine.cs
RhythmKata/Assets/Scripts/PlayEngine.cs
+31
-5
ReloadNoteObject.cs
RhythmKata/Assets/Scripts/ReloadNoteObject.cs
+1
-1
No files found.
RhythmKata/Assets/Resources/SFX/SFX Project/sfx Project/Samples/Recorded.meta
deleted
100644 → 0
View file @
a8ed1d1d
fileFormatVersion: 2
guid: d9a533cec04e2124e9c31541b4f63e72
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
RhythmKata/Assets/Scripts/CameraController.cs
View file @
0b60d17a
...
...
@@ -13,10 +13,7 @@ public class CameraController : MonoBehaviour
// Update is called once per frame
void
Update
()
{
if
(
Input
.
GetMouseButtonDown
(
0
))
{
CameraShake
(
0.2f
,
0.1f
);
}
}
private
void
OnDrawGizmos
()
...
...
RhythmKata/Assets/Scripts/EdgeNoteObject.cs
View file @
0b60d17a
...
...
@@ -28,7 +28,7 @@ public class EdgeNoteObject : NoteObject
{
PlayJudgeSfx
(
type
);
PlayEngine
.
inst
.
HandleNoteJudge
(
type
.
type
);
PlayEngine
.
inst
.
HandleNoteJudge
(
type
);
BlinkLight
light
=
Instantiate
(
PlayEngine
.
inst
.
edgeHitEffectPrefab
,
-
5
*
direction
,
Quaternion
.
identity
);
light
.
transform
.
LookAt
(
Vector3
.
zero
);
light
.
Init
(
type
.
type
);
...
...
RhythmKata/Assets/Scripts/NoteObject.cs
View file @
0b60d17a
...
...
@@ -77,7 +77,7 @@ public abstract class NoteObject : MonoBehaviour
if
(
trailRenderer
)
trailRenderer
.
enabled
=
false
;
PlayEngine
.
inst
.
HandleNoteJudge
(
judge
.
type
);
PlayEngine
.
inst
.
HandleNoteJudge
(
judge
);
}
}
...
...
RhythmKata/Assets/Scripts/PlayEngine.cs
View file @
0b60d17a
...
...
@@ -41,8 +41,10 @@ public class PlayEngine : SingletonBehaviour<PlayEngine>
private
MotionTracker
leftHandTracker
=
new
MotionTracker
();
private
MotionTracker
rightHandTracker
=
new
MotionTracker
();
private
int
combo
;
private
int
score
;
public
int
maxCombo
;
public
int
combo
;
public
int
score
;
public
int
perfect
,
hit
,
miss
;
[
SerializeField
]
private
Transform
HitEffectObjects
;
...
...
@@ -74,6 +76,8 @@ public class PlayEngine : SingletonBehaviour<PlayEngine>
audioSource
.
clip
=
audioFile
;
audioSource
.
PlayScheduled
(
playOffset
+
dspTime
);
Debug
.
Log
(
playOffset
);
combo
=
maxCombo
=
score
=
miss
=
perfect
=
hit
=
0
;
}
void
OnEnable
()
...
...
@@ -157,6 +161,13 @@ public class PlayEngine : SingletonBehaviour<PlayEngine>
throw
e
;
}
}
if
(!
audioSource
.
isPlaying
)
{
level
=
null
;
IngameUIManager
.
inst
.
UpdateResultUIs
(
perfect
,
hit
,
miss
,
score
,
combo
);
IngameUIManager
.
inst
.
ChangeUISet
(
UISetType
.
RESULT
);
}
}
if
(
Input
.
GetKeyDown
(
KeyCode
.
LeftArrow
))
...
...
@@ -186,17 +197,32 @@ public class PlayEngine : SingletonBehaviour<PlayEngine>
// Simple implementations of Combo, Score UIs
// It needs to be changed if PlayEngine don't have any responsibilities of score & combo
public
void
HandleNoteJudge
(
Judge
Type
type
)
public
void
HandleNoteJudge
(
Judge
Result
result
)
{
JudgeType
type
=
result
.
type
;
if
(
type
==
JudgeType
.
Ignore
)
return
;
combo
=
type
!=
JudgeType
.
Miss
?
combo
+
1
:
0
;
score
+=
(
int
)
type
;
maxCombo
=
Mathf
.
Max
(
maxCombo
,
combo
);
score
+=
(
int
)
type
*
(
result
.
correctHand
?
2
:
1
)
+
combo
;
IngameUIManager
.
inst
.
UpdateComboUI
(
combo
);
IngameUIManager
.
inst
.
UpdateScoreUI
(
score
);
foreach
(
var
renderer
in
HitEffectObjects
.
GetComponentsInChildren
<
MeshRenderer
>())
switch
(
type
)
{
case
JudgeType
.
Miss
:
miss
++;
break
;
case
JudgeType
.
Hit
:
hit
++;
break
;
case
JudgeType
.
Perfect
:
perfect
++;
break
;
}
foreach
(
var
renderer
in
HitEffectObjects
.
GetComponentsInChildren
<
MeshRenderer
>())
{
Color
col
=
Color
.
white
;
switch
(
type
)
...
...
RhythmKata/Assets/Scripts/ReloadNoteObject.cs
View file @
0b60d17a
...
...
@@ -34,7 +34,7 @@ public class ReloadNoteObject : NoteObject
Instantiate
(
hitEffect
,
transform
.
position
,
Quaternion
.
identity
);
StartCoroutine
(
DissolveRoutine
());
PlayEngine
.
inst
.
HandleNoteJudge
(
judge
.
type
);
PlayEngine
.
inst
.
HandleNoteJudge
(
judge
);
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment