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
f3d474e2
Commit
f3d474e2
authored
Nov 24, 2019
by
13정준영
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'notemovement'
parents
06c6f092
40d4a5c2
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
2317 additions
and
988 deletions
+2317
-988
mergescene.unity
RhythmKata/Assets/Scenes/mergescene.unity
+2282
-987
ForwardNoteObject.cs
RhythmKata/Assets/Scripts/ForwardNoteObject.cs
+1
-1
Pillar.cs
RhythmKata/Assets/Scripts/Pillar.cs
+23
-0
Pillar.cs.meta
RhythmKata/Assets/Scripts/Pillar.cs.meta
+11
-0
No files found.
RhythmKata/Assets/Scenes/mergescene.unity
View file @
f3d474e2
This source diff could not be displayed because it is too large. You can
view the blob
instead.
RhythmKata/Assets/Scripts/ForwardNoteObject.cs
View file @
f3d474e2
...
...
@@ -19,7 +19,7 @@ public class ForwardNoteObject : NoteObject
//Ray ray = Camera.main.ScreenPointToRay(new Vector3(Screen.width * x, Screen.height * y, 0));
//endPoint = ray.GetPoint(perfectZ);
endPoint
=
new
Vector3
(-
100f
+
200
*
x
,
-
100.0f
+
2
00
*
y
,
perfectZ
);
endPoint
=
new
Vector3
(-
100f
+
200
*
x
,
1
00
*
y
,
perfectZ
);
Ray
ray
=
new
Ray
(
Vector3
.
zero
,
endPoint
.
normalized
);
endPoint
=
ray
.
GetPoint
(
perfectZ
);
...
...
RhythmKata/Assets/Scripts/Pillar.cs
0 → 100644
View file @
f3d474e2
using
System.Collections
;
using
System.Collections.Generic
;
using
UnityEngine
;
public
class
Pillar
:
MonoBehaviour
{
const
float
interval
=
10.0f
;
private
Vector3
origin
;
private
float
offsetTime
;
[
SerializeField
]
private
AnimationCurve
curve
;
private
void
Start
()
{
origin
=
transform
.
position
;
offsetTime
=
Random
.
Range
(
0
,
interval
);
}
// Update is called once per frame
private
void
Update
()
{
transform
.
position
=
origin
+
new
Vector3
(
0
,
50
*
curve
.
Evaluate
(
Mathf
.
PingPong
(
Time
.
time
+
offsetTime
,
interval
)
/
interval
));
}
}
RhythmKata/Assets/
Resources/SFX/SFX Project/sfx Project/Samples/Recorded
.meta
→
RhythmKata/Assets/
Scripts/Pillar.cs
.meta
View file @
f3d474e2
fileFormatVersion: 2
guid: d9a533cec04e2124e9c31541b4f63e72
folderAsset: yes
DefaultImporter:
guid: 51d9d83ca75262f418f77c42bbce6e44
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:
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