码迷,mamicode.com
首页 > 其他好文 > 详细

UnityEditor扩展编辑器实现从场景中渲染得到Cubemap

时间:2014-09-09 23:08:19      阅读:603      评论:0      收藏:0      [点我收藏+]

标签:unity3d   unity   cubemap   cube   map   

(学习笔记,希望能帮助到有需要的人。)



在自定义的EditorWindow中定义2个变量,分别代表需要渲染的Cubemap 和 视点对象(通常是Camera对象)

private Cubemap cubemap;

private GameObject obj;


在OnGUI 函数中

<span style="white-space:pre">		</span>this.cubemap = (Cubemap) EditorGUILayout.ObjectField (this.cubemap, typeof(Cubemap), false);

		EditorGUILayout.Space ();

		if ( GUILayout.Button ("Select Camera Object in Scene")) {

			if (Selection.activeGameObject) {
				this.obj = Selection.activeGameObject;
			}
            
		}

		if (this.obj != null) {
			EditorGUILayout.HelpBox ("obj name : " + this.obj.name, MessageType.None);
		}

		EditorGUILayout.Space ();

		if (this.obj != null) {
			if (GUILayout.Button ("Render to Cubemap")) {

				this.renderToCubeMap();
			}
		}
从编辑窗口中得到 资源文件 Cubemap 和  Camera对象。  


在renderToCubeMap函数中

<span style="white-space:pre">		</span>if (this.cubemap != null && this.obj.camera != null) {

			this.obj.camera.RenderToCubemap(this.cubemap);
		}

这样就从camera所处的位置,渲染生成了6张纹理图,并生成立方体贴图Cubemap。


至此,就得到了从场景中定制得到的Cubemap。




下面是整体代码


using UnityEngine;
using UnityEditor;
using System.Collections;

public class GenerateCubeMapTool : EditorWindow {

	private Cubemap cubemap;

	private GameObject obj;

//	// Use this for initialization
//	void Start () {
//	}
	
	// Update is called once per frame
	void Update () {
	
	}

	[MenuItem("Tools/GenerateCubeMapTool")]
	static void Init () {
//		GenerateCubeMapTool window = (GenerateCubeMapTool) EditorWindow.GetWindow(typeof(GenerateCubeMapTool));
		EditorWindow.GetWindow (typeof(GenerateCubeMapTool));
	}

	void OnGUI () {

		EditorGUILayout.Space ();

		this.cubemap = (Cubemap) EditorGUILayout.ObjectField (this.cubemap, typeof(Cubemap), false);

		EditorGUILayout.Space ();

		if ( GUILayout.Button ("Select Camera Object in Scene")) {

			if (Selection.activeGameObject) {
				this.obj = Selection.activeGameObject;
			}
            
		}

		if (this.obj != null) {
			EditorGUILayout.HelpBox ("obj name : " + this.obj.name, MessageType.None);
		}

		EditorGUILayout.Space ();

		if (this.obj != null) {
			if (GUILayout.Button ("Render to Cubemap")) {

				this.renderToCubeMap();
			}
		}
	}


	void renderToCubeMap() {

		if (this.cubemap != null && this.obj.camera != null) {

			this.obj.camera.RenderToCubemap(this.cubemap);
		}
		else if (this.obj.camera == null) {
			Debug.Log("Please make sure the gameObject has the camera component");
		}
		else if (this.cubemap == null) {
			Debug.Log("Please select the cubemap, and try again.");
		}
	}
}



UnityEditor扩展编辑器实现从场景中渲染得到Cubemap

标签:unity3d   unity   cubemap   cube   map   

原文地址:http://blog.csdn.net/hunter_hb/article/details/39161729

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!