中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C# Unity Gizmos可視化輔助工具

發布時間:2020-07-05 00:32:20 來源:網絡 閱讀:1872 作者:海灬未眠 欄目:開發技術

  

  所有gizmo繪制需要在腳本的OnDrawGizmos或OnDrawGizmosSelected里函數完成。

  OnDrawGizmos在每幀調用。所有在OnDrawGizmos中渲染的gizmos都是可見的。

  OnDrawGizmosSelected僅在腳本附加的物體被選擇時被調用。  


  1. Gizmos.DrawLine

  從obj1到obj2之間畫一條綠色的線。

using UnityEngine;
using System.Collections;
public class DrawLineText : MonoBehaviour {

    public GameObject obj1;
    public GameObject obj2;
    
    void OnDrawGizmos()
    {
        Gizmos.color = Color.green;
        Gizmos.DrawLine( obj1.transform.position , obj2.transform.position );
    }
}


2.Gizmos.DrawRay

 從obj向上畫一條長度為10的射線

using UnityEngine;
using System.Collections;
public class DrawRayText : MonoBehaviour {

    public GameObject obj;
    void OnDrawGizmos()
    {
        Gizmos.color = Color.gray;
        Gizmos.DrawRay(obj.transform.position, Vector3.up * 10);  //10 是長度
    }
}


3.Gizmos.DrawCube

 在(0,1,0)處畫一個(1,1,1)大小的立方體

using UnityEngine;
using System.Collections;
public class DrawCubeText : MonoBehaviour {

      void OnDrawGizmos()
    {
        Gizmos.color = Color.red;
        Gizmos.DrawCube(Vector3.up , Vector3.one);
    }
}


4.Gizmos.DrawIcon

 在(0,0,0)處生成一個名字為002IMgZLzy6Mro7r94Ka2&690.jpg的Icon ,此圖片要放到Assets下的  Gizmos文件夾里才行。

using UnityEngine;
using System.Collections;
public class DrawIconText : MonoBehaviour {

      void OnDrawGizmos()
    {
        Gizmos.DrawIcon(Vector3.zero , "002IMgZLzy6Mro7r94Ka2&690.jpg");
    }
}


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

孝义市| 衡山县| 万盛区| 上饶县| 黎川县| 阜平县| 天全县| 崇阳县| 永兴县| 内丘县| 来凤县| 邛崃市| 武宣县| 长春市| 体育| 永善县| 上犹县| 临沧市| 额济纳旗| 云龙县| 平潭县| 淄博市| 海南省| 霞浦县| 临沧市| 阳江市| 台山市| 玉林市| 固镇县| 新绛县| 临汾市| 东宁县| 克拉玛依市| 若尔盖县| 延津县| 法库县| 安多县| 乾安县| 夹江县| 崇礼县| 五莲县|