Commit f3d474e2 authored by 13정준영's avatar 13정준영

Merge branch 'notemovement'

parents 06c6f092 40d4a5c2
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -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 + 200 * y, perfectZ);
endPoint = new Vector3(-100f + 200 * x, 100 * y, perfectZ);
Ray ray = new Ray(Vector3.zero, endPoint.normalized);
endPoint = ray.GetPoint(perfectZ);
......
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));
}
}
fileFormatVersion: 2
guid: d9a533cec04e2124e9c31541b4f63e72
folderAsset: yes
DefaultImporter:
guid: 51d9d83ca75262f418f77c42bbce6e44
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:
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