栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > C/C++/C# > C#教程

unity实现车方向盘转动效果

C#教程 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

unity实现车方向盘转动效果

本文实例为大家分享了unity实现车方向盘转动效果的具体代码,供大家参考,具体内容如下

效果:

C#脚本如下:

using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.EventSystems;

public class NewBehaviourscript : MonoBehaviour, IDragHandler,IBeginDragHandler,IEndDragHandler
{
  /// 
  /// 需要旋转的模型
  /// 
  public Transform model;
  /// 
  /// 父物体的recttransform
  /// 
  public RectTransform parentRect;
  /// 
  /// 旋转的UI
  /// 
  public RectTransform img;
  /// 
  /// 摄像机
  /// 
  public Camera cam;
  /// 
  /// 是否在拖拽
  /// 
  private bool drag = false;
  /// 
  /// 初始角度
  /// 
  private float originAngle = 0;
  /// 
  /// 自身角度
  /// 
  private float selfAngle1 = 0;
  /// 
  /// 上一次和当前的角度
  /// 
  private float lastAngle = 0f;
  private float currentAngle = 0f;
  /// 
  /// 上一次和当前的位置
  /// 
  private Vector2 currentPos;
  private Vector2 lastPos;

  public void onBeginDrag(PointerEventData eventData)
  {
    drag = true;

    originAngle = GetAngle(eventData.position);

    selfAngle1 = (img.transform as RectTransform).eulerAngles.z;
  }

  public void onDrag(PointerEventData eventData)
  {
    if (drag)
    {
      lastAngle = currentAngle;
      currentAngle = GetAngle(eventData.position);

      float val = TouchJudge(currentPos, ref lastPos, Vector2.zero);
      if (val > 0f && val <180f)
      {
 img.eulerAngles = new Vector3(0f,0f, -currentAngle + originAngle + selfAngle1);
 model.eulerAngles = new Vector3(0f, 0f, -currentAngle + originAngle + selfAngle1);
      }
    }
  }

  public void onEndDrag(PointerEventData eventData)
  {
    drag = false;
  }
  /// 
  /// 将屏幕坐标转成UI坐标
  /// 
  /// 
  /// 
  float GetAngle(Vector2 pos1) {
    Vector2 pos;
    RectTransformUtility.ScreenPointToLocalPointInRectangle(parentRect, pos1, cam, out pos);
    currentPos = pos;
    return Mathf.Atan2(pos.x, pos.y) * Mathf.Rad2Deg;
  }
  /// 
  /// 判断顺时针还是逆时针旋转
  /// 
  /// 
  /// 
  /// 
  /// 
  private float TouchJudge(Vector2 current, ref Vector2 last, Vector2 anchor)
  {
    Vector2 lastDir = (last - anchor).normalized; 
    Vector2 currentDir = (current - anchor).normalized;

    float lastDot = Vector2.Dot(Vector2.right, lastDir);
    float currentDot = Vector2.Dot(Vector2.right, currentDir);

    float lastAngle = last.y < anchor.y
? Mathf.Acos(lastDot) * Mathf.Rad2Deg
: -Mathf.Acos(lastDot) * Mathf.Rad2Deg;

    float currentAngle = current.y < anchor.y
      ? Mathf.Acos(currentDot) * Mathf.Rad2Deg
      : -Mathf.Acos(currentDot) * Mathf.Rad2Deg;

    last = current;
    return currentAngle - lastAngle;
  }
}

canvas设置如下:

脚本赋值如下:

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持考高分网。

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/122165.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号