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
ea3eab31
Commit
ea3eab31
authored
Nov 24, 2019
by
15박보승
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
EdgeNote NoteHit 구현, EdgeNote HitEffect 추가
parent
a8ffea3f
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
4921 additions
and
5 deletions
+4921
-5
EdgeEffect_Left.prefab
RhythmKata/Assets/Prefabs/HitEffects/EdgeEffect_Left.prefab
+4862
-0
EdgeEffect_Left.prefab.meta
...ata/Assets/Prefabs/HitEffects/EdgeEffect_Left.prefab.meta
+2
-3
BlinkLight.cs
RhythmKata/Assets/Scripts/BlinkLight.cs
+40
-0
BlinkLight.cs.meta
RhythmKata/Assets/Scripts/BlinkLight.cs.meta
+11
-0
EdgeNoteObject.cs
RhythmKata/Assets/Scripts/EdgeNoteObject.cs
+5
-2
PlayEngine.cs
RhythmKata/Assets/Scripts/PlayEngine.cs
+1
-0
No files found.
RhythmKata/Assets/Prefabs/HitEffects/EdgeEffect_Left.prefab
0 → 100644
View file @
ea3eab31
This source diff could not be displayed because it is too large. You can
view the blob
instead.
RhythmKata/Assets/
Resources/SFX/SFX Project/sfx Project/Samples/Recorded
.meta
→
RhythmKata/Assets/
Prefabs/HitEffects/EdgeEffect_Left.prefab
.meta
View file @
ea3eab31
fileFormatVersion: 2
guid: d9a533cec04e2124e9c31541b4f63e72
folderAsset: yes
DefaultImporter:
guid: 5fea3dd5a73f8574aa47be477618f7ff
PrefabImporter:
externalObjects: {}
userData:
assetBundleName:
...
...
RhythmKata/Assets/Scripts/BlinkLight.cs
0 → 100644
View file @
ea3eab31
using
System.Collections
;
using
System.Collections.Generic
;
using
UnityEngine
;
[
RequireComponent
(
typeof
(
Light
),
typeof
(
ParticleSystem
))]
public
class
BlinkLight
:
MonoBehaviour
{
public
AnimationCurve
curve
;
private
float
t
=
0
;
private
Light
light
;
private
ParticleSystem
effect
;
public
void
Init
(
JudgeType
type
)
{
light
=
GetComponent
<
Light
>();
effect
=
GetComponent
<
ParticleSystem
>();
Color
color
=
Color
.
white
;
switch
(
type
)
{
case
JudgeType
.
Perfect
:
color
=
Color
.
blue
;
break
;
case
JudgeType
.
Hit
:
color
=
Color
.
green
;
break
;
case
JudgeType
.
Miss
:
color
=
Color
.
red
;
break
;
}
light
.
color
=
color
;
ParticleSystem
.
MainModule
main
=
effect
.
main
;
main
.
startColor
=
color
;
}
private
void
Update
()
{
light
.
intensity
=
20
*
curve
.
Evaluate
(
Mathf
.
PingPong
((
t
+=
5
*
Time
.
deltaTime
),
1
));
}
}
RhythmKata/Assets/Scripts/BlinkLight.cs.meta
0 → 100644
View file @
ea3eab31
fileFormatVersion: 2
guid: f34e15e0130ebaf469ab4474bb4914e4
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:
RhythmKata/Assets/Scripts/EdgeNoteObject.cs
View file @
ea3eab31
...
...
@@ -26,8 +26,11 @@ public class EdgeNoteObject : NoteObject
public
override
void
NoteHit
(
JudgeResult
type
)
{
base
.
NoteHit
(
type
);
PlayEngine
.
inst
.
HandleNoteJudge
(
type
.
type
);
BlinkLight
light
=
Instantiate
(
PlayEngine
.
inst
.
edgeHitEffectPrefab
,
-
5
*
direction
,
Quaternion
.
identity
);
light
.
transform
.
LookAt
(
Vector3
.
zero
);
light
.
Init
(
type
.
type
);
Destroy
(
light
.
gameObject
,
0.4f
);
}
public
override
void
SetPosition
(
float
remainedTime
)
...
...
RhythmKata/Assets/Scripts/PlayEngine.cs
View file @
ea3eab31
...
...
@@ -23,6 +23,7 @@ public class PlayEngine : SingletonBehaviour<PlayEngine>
public
int
test
;
public
List
<
GameObject
>
hitEffectPrefabs
=
new
List
<
GameObject
>();
public
BlinkLight
edgeHitEffectPrefab
;
public
AudioClip
gunSfx
;
...
...
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