zoukankan      html  css  js  c++  java
  • 桁架系统控制

    桁架系统模拟

    //键盘控制
    void ControllerObjectByKeyBoard()
    {
        if (Input.GetKey(KeyCode.LeftShift) && Input.GetKey(KeyCode.W))
        {
            // 获取Player变量指定的对象的三围坐标
            Vector3 arm_postion = armRootTransform.position;
            // 获取X,Y,Z值
            float x = arm_postion.x;
            float y = arm_postion.y;
            float z = arm_postion.z;
    
            //armObject.transform.Translate();
            armRootTransform.position = arm_postion + new Vector3(0, 0, 0.01f);
        }
    
        if (Input.GetKey(KeyCode.LeftShift) && Input.GetKey(KeyCode.S))
        {
            // 获取Player变量指定的对象的三围坐标
            Vector3 arm_postion = armRootTransform.position;
            // 获取X,Y,Z值
            float x = arm_postion.x;
            float y = arm_postion.y;
            float z = arm_postion.z;
    
            //armObject.transform.Translate();
            armRootTransform.position = arm_postion + new Vector3(0, 0, -0.01f);
        }
    
    
        if (Input.GetKey(KeyCode.LeftShift) && Input.GetKey(KeyCode.A))
        {
            // 获取Player变量指定的对象的三围坐标
            Vector3 arm_postion = hookRootTransform.position;
            // 获取X,Y,Z值
            float x = arm_postion.x;
            float y = arm_postion.y;
            float z = arm_postion.z;
    
            //armObject.transform.Translate();
            hookRootTransform.position = arm_postion + new Vector3(0.01f,0, 0);
        }
    
        if (Input.GetKey(KeyCode.LeftShift) && Input.GetKey(KeyCode.F))
        {
            // 获取Player变量指定的对象的三围坐标
            Vector3 arm_postion = hookRootTransform.position;
            // 获取X,Y,Z值
            float x = arm_postion.x;
            float y = arm_postion.y;
            float z = arm_postion.z;
    
            //armObject.transform.Translate();
            hookRootTransform.position = arm_postion + new Vector3(-0.01f,0, 0);
        }
    
        if (Input.GetKey(KeyCode.LeftShift) && Input.GetKey(KeyCode.G))
        {
            // 获取Player变量指定的对象的三围坐标
            Vector3 arm_postion = hookRootTransform.position;
            // 获取X,Y,Z值
            float x = arm_postion.x;
            float y = arm_postion.y;
            float z = arm_postion.z;
    
            //armObject.transform.Translate();
            hookRootTransform.position = arm_postion + new Vector3(0, 0.01f, 0);
        }
    
        if (Input.GetKey(KeyCode.LeftShift) && Input.GetKey(KeyCode.H))
        {
            // 获取Player变量指定的对象的三围坐标
            Vector3 arm_postion = hookRootTransform.position;
            // 获取X,Y,Z值
            float x = arm_postion.x;
            float y = arm_postion.y;
            float z = arm_postion.z;
    
            //armObject.transform.Translate();
            hookRootTransform.position = arm_postion + new Vector3(0, -0.01f, 0);
        }
    
    
        if (Input.GetKey(KeyCode.LeftShift) && Input.GetKey(KeyCode.R))
        {
            // 获取Player变量指定的对象的三围坐标
            Quaternion arm_rotation = hookHeaderTransform.rotation;
            float y = arm_rotation.y;
            ////Debug.Log(y);
            float y_f = y + 0.0f;
            hookHeaderTransform.Rotate(new Vector3(0, y_f, 0));
    
        }
    
    
        if (Input.GetKey(KeyCode.LeftShift) && Input.GetKey(KeyCode.T))
        {
            // 获取Player变量指定的对象的三围坐标
            Quaternion arm_rotation = hookHeaderTransform.rotation;
            float y = arm_rotation.y;
            ////Debug.Log(y);
            float y_f = (y + 0.0f)*(-1.0f);
            hookHeaderTransform.Rotate(new Vector3(0, y_f, 0));
    
        }
    
    
    
    }

     

    ######################

    QQ 3087438119
  • 相关阅读:
    jvisualvm工具使用
    Java四种引用包括强引用,软引用,弱引用,虚引用。
    <实战> 通过分析Heap Dump 来了解 Memory Leak ,Retained Heap,Shallow Heap
    什么是GC Roots
    Memory Analyzer tool(MAT)分析内存泄漏---理解Retained Heap、Shallow Heap、GC Root
    JDK自带工具之问题排查场景示例
    websocket协议握手详解
    ssh 登陆服务器原理
    新版本macos无法安装mysql-python包
    如何将多个小值存储进一个值中
  • 原文地址:https://www.cnblogs.com/herd/p/15325292.html
Copyright © 2011-2022 走看看