91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

湖南省| 西城区| 磴口县| 烟台市| 油尖旺区| 吐鲁番市| 保康县| 阆中市| 尉犁县| 元阳县| 石台县| 北辰区| SHOW| 平远县| 天镇县| 江津市| 博客| 南丰县| 略阳县| 乐清市| 两当县| 兴和县| 繁峙县| 梅河口市| 巩义市| 高青县| 宁陵县| 渝中区| 阿合奇县| 元阳县| 开平市| 大理市| 赤壁市| 泰宁县| 阿坝| 筠连县| 南溪县| 海门市| 永和县| 古丈县| 景谷|