Unity相机平滑/缓动拖动

时间:2016-10-30 19:11:29

标签: unity3d camera drag-and-drop smooth-scrolling easing

我在拖动相机时试图进行缓和或惯性,所以当我放下相机时它会轻松到位。我想基于我投掷/拖动它的力来移动相机。

这是我用来拖动相机的实际代码,但没有平滑的缓和。

CoreLayout

谢谢!

1 个答案:

答案 0 :(得分:2)

缓和意味着随着时间的推移逐渐移动。

因此,此类行为通常使用Vector.MoveTowards或其他lerp函数以及Update方法中的Time.deltaTime来实现。

using UnityEngine;
using System.Collections;

public class swipeCamera: MonoBehaviour
{
    public float speed = 2.0f;//easing speed

    Vector3 hit_position = Vector3.zero;
    Vector3 current_position = Vector3.zero;
    Vector3 camera_position = Vector3.zero;
    float z = 0.0f;

    bool flag = false;
    Vector3 target_position;

    void Start()
    {
    }

    void Update()
    {
        if (Input.GetMouseButtonDown(0))
        {
            hit_position = Input.mousePosition;
            camera_position = transform.position;
        }

        if (Input.GetMouseButton(0))
        {
            current_position = Input.mousePosition;
            LeftMouseDrag();
            flag = true;
        }

        if(flag)
        {
            transform.position = Vector3.MoveTowards(transform.position, target_position, Time.deltaTime*speed);
            if(transform.position == target_position)//reached?
            {
                flag = false;// stop moving
            }
        }
    }

    void LeftMouseDrag()
    {
        // From the Unity3D docs: "The z position is in world units from the camera."  In my case I'm using the y-axis as height
        // with my camera facing back down the y-axis.  You can ignore this when the camera is orthograhic.
        current_position.z = hit_position.z = camera_position.y;

        // Get direction of movement.  (Note: Don't normalize, the magnitude of change is going to be Vector3.Distance(current_position-hit_position)
        // anyways.  
        Vector3 direction = Camera.main.ScreenToWorldPoint(current_position) - Camera.main.ScreenToWorldPoint(hit_position);

        // Invert direction to that terrain appears to move with the mouse.
        direction = direction * -1;

        target_position = camera_position + direction;
    }
}
相关问题