Unity 惯性滑动(思想可以用于类似摄像机,Scroll)

using UnityEngine;
using System.Collections;

 public class Drag : MonoBehaviour
 {
 private Vector3 _screenPoint;
 private Vector3 _offset;
 private Vector3 _curScreenPoint;
 private Vector3 _curPosition;
 private Vector3 _velocity;
 private bool _underInertia;
 private float _time = 0.0f;
 public float SmoothTime;

 void Update()
 {
     if(_underInertia && _time <= SmoothTime)
     {
         transform.position += _velocity;
         _velocity = Vector3.Lerp(_velocity, Vector3.zero, _time);
         _time += Time.smoothDeltaTime;
     }
     else
     {
         _underInertia = false;
         _time = 0.0f;
     }
 }
 void OnMouseDown()
 {
     _screenPoint = Camera.main.WorldToScreenPoint(gameObject.transform.position);
     _offset = gameObject.transform.position - Camera.main.ScreenToWorldPoint(new Vector3(Input.mousePosition.x, Input.mousePosition.y, _screenPoint.z));
     //Screen.showCursor = false;
     _underInertia = false;
 }
 void OnMouseDrag()
 {
     Vector3 _prevPosition = _curPosition;
     _curScreenPoint = new Vector3(Input.mousePosition.x, Input.mousePosition.y, _screenPoint.z);
     _curPosition = Camera.main.ScreenToWorldPoint(_curScreenPoint) + _offset;
     _velocity = _curPosition - _prevPosition;
     transform.position = _curPosition;
 }
 void OnMouseUp()
 {
     _underInertia = true;
     //Screen.showCursor = true;
 }
 }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值