查看: 1363|回复: 2
打印 上一主题 下一主题

镜头旋转问题

[复制链接]

2508

主题

2

听众

3万

积分

资深设计师

Rank: 7Rank: 7Rank: 7

纳金币
32806
精华
12

最佳新人 活跃会员 热心会员 灌水之王 突出贡献

跳转到指定楼层
楼主
发表于 2012-8-7 10:38:01 |只看该作者 |倒序浏览
按右键镜头旋转完之后会停在一个地方
怎么解决第二次按右键画面在上一个角度的问题?

// The target we are following

var target : Transform;

// The distance in the x-z plane to the target

var distance = 10.0;

// the height we want the camera to be above the target

var height = 5.0;

// How much we

var heightDamping = 2.0;

var rotationDamping = 3.0;

var sensitivityX : float = 15;

var sensitivityY : float = 15;

var minimumX : float= -360;

var  maximumX : float = 360;

var  minimumY : float = -60;

var  maximumY : float = 60;

var rotationX : float = 0;

var  rotationY : float = 0;

var originalRotation : Quaternion ;

function Start ()

    {

        // Make the rigid body not change rotation

        if (rigidbody)

            rigidbody.freezeRotation = ***e;

        originalRotation = transform.localRotation;

    }

   

function ClampAngle (angle : float, min : float , max : float)

    {

        if (angle < -360)

            angle += 360;

        if (angle > 360)

            angle -= 360;

        return Mathf.Clamp (angle, min, max);

    }

// Place the script in the Camera-Control group in the component menu

@script AddComponentMenu("Camera-Control/Smooth Follow")

function FixedUpdate () {

            //transform.Translate(Vector3.right * Time.deltaTime, Camera.main.transform);

            if (Input.GetButton("Fire2")&&(Mathf.Abs(Input.GetAxis("Horizontal")) == 0 ) ){

               

                rotationX += Input.GetAxis("Mouse X") * sensitivityX;

                rotationX =     ClampAngle (rotationX, minimumX, maximumX);

                var xQuaternion : Quaternion ;

                 xQuaternion = Quaternion.AngleAxis (rotationX, Vector3.up);

                transform.localRotation = originalRotation * xQuaternion;

               

                }

            

        }

function LateUpdate () {

    // Early out if we don't have a target

    if (!target)

        return;

   

    // Calculate the current rotation angles

    wantedRotationAngle = target.eulerAngles.y;

    wantedHeight = target.position.y + height;

        

    currentRotationAngle = transform.eulerAngles.y;

    currentHeight = transform.position.y;

   

    // Damp the rotation around the y-axis

    currentRotationAngle = Mathf.LerpAngle (currentRotationAngle, wantedRotationAngle, rotationDamping * Time.deltaTime);

    // Damp the height

    currentHeight = Mathf.Lerp (currentHeight, wantedHeight, heightDamping * Time.deltaTime);

    // Convert the angle into a rotation

    currentRotation = Quaternion.Euler (0, currentRotationAngle, 0);

   

    // Set the position of the camera on the x-z plane to:

    // distance meters behind the target

    transform.position = target.position;

    transform.position -= currentRotation * Vector3.forward * distance;

    // Set the height of the camera

    transform.position.y = currentHeight;

   

    // Always look at the target

    transform.LookAt (target);

}
分享到: QQ好友和群QQ好友和群 腾讯微博腾讯微博 腾讯朋友腾讯朋友 微信微信
转播转播0 分享淘帖0 收藏收藏0 支持支持0 反对反对0
回复

使用道具 举报

2508

主题

2

听众

3万

积分

资深设计师

Rank: 7Rank: 7Rank: 7

纳金币
32806
精华
12

最佳新人 活跃会员 热心会员 灌水之王 突出贡献

沙发
发表于 2012-8-7 10:48:41 |只看该作者
哎呀~各位别光看不回帖啊~  支持下啊!
回复

使用道具 举报

700

主题

1

听众

1万

积分

资深设计师

Rank: 7Rank: 7Rank: 7

纳金币
16564
精华
0

最佳新人 活跃会员 热心会员 灌水之王 突出贡献

板凳
发表于 2012-8-7 16:41:11 |只看该作者
   
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

手机版|纳金网 ( 闽ICP备2021016425号-2/3

GMT+8, 2025-1-15 17:33 , Processed in 0.073919 second(s), 29 queries .

Powered by Discuz!-创意设计 X2.5

© 2008-2019 Narkii Inc.

回顶部