untiy中操作obj

Posted 卡西莫

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了untiy中操作obj相关的知识,希望对你有一定的参考价值。

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

public class sh : MonoBehaviour {
    public GameObject cube1;
    public GameObject cube2;
    public GameObject cube3;

    // Use this for initialization
    void Start () {            
            Debug.Log ("hello world");        
        //第一种拖过来,第二种程序绑定
        cube1 = GameObject.Find("Cube1");  
        cube2 = GameObject.Find("Cube2");  
        cube3 = GameObject.Find("Cube3"); 

    }
    
    // Update is called once per frame
    void Update () {
        //旋转
        //this.transform.Rotate (Vector3.up*1,Space.Self);
        //this.transform.Translate (-Vector3.left * 0.2f, Space.World);
        /*this.transform.localScale = 
            new Vector3(1,
                        1 + Mathf.Sin(Time.time), 
                        1 + Mathf.Sin(Time.time));  */
        cube1.transform.Translate(Vector3.up*0.1f, Space.World);  
        cube2.transform.Rotate(Vector3.up*1,Space.Self);  
        cube3.transform.localScale = new Vector3(1 + Mathf.Sin(Time.time), 1 + Mathf.Sin(Time.time), 1 + Mathf.Sin(Time.time));
    }

}

 

以上是关于untiy中操作obj的主要内容,如果未能解决你的问题,请参考以下文章

如何获取untiy鼠标按下的时间

Unity中Shader的三种基本类型

小功能⭐️Untiy组合键检测

Untiy3D按方向键获取值

Unity绘制点云(untiy draw point cloud)

Untiy截图更新,及截取透明图片签字