Version: 5.3 (switch to 5.4b)
IdiomaEnglish
  • C#
  • JS

Idioma de script

Selecciona tu lenguaje de programación favorito. Todos los fragmentos de código serán mostrados en este lenguaje.

EditorWindow.autoRepaintOnSceneChange

Sugiere un cambio

¡Éxito!

Gracias por ayudarnos a mejorar la calidad de la documentación de Unity. A pesar de que no podemos aceptar todas las sugerencias, leemos cada cambio propuesto por nuestros usuarios y actualizaremos los que sean aplicables.

Cerrar

No se puedo enviar

Por alguna razón su cambio sugerido no pudo ser enviado. Por favor <a>intente nuevamente</a> en unos minutos. Gracias por tomarse un tiempo para ayudarnos a mejorar la calidad de la documentación de Unity.

Cerrar

Cancelar

Cambiar al Manual
public var autoRepaintOnSceneChange: bool;
public bool autoRepaintOnSceneChange;

Descripción

Does the window automatically repaint whenever the scene has changed?


Editor Window that renders what the main camera is "seeing".

no example available in JavaScript
// Simple script that lets you render the main camera in an editor Window.
	
using UnityEngine;
using UnityEditor;
	
public class CameraViewer : EditorWindow {
	Camera camera = Camera.main;
	RenderTexture renderTexture;

[MenuItem("Example/Camera viewer")] static void Init() { EditorWindow editorWindow = GetWindow(typeof(CameraViewer)); editorWindow.autoRepaintOnSceneChange = true; editorWindow.Show(); } public void Awake () { renderTexture = new RenderTexture((int)position.width, (int)position.height, (int)RenderTextureFormat.ARGB32 ); } public void Update() { if(camera != null) { camera.targetTexture = renderTexture; camera.Render(); camera.targetTexture = null; } if(renderTexture.width != position.width || renderTexture.height != position.height) renderTexture = new RenderTexture((int)position.width, (int)position.height, (int)RenderTextureFormat.ARGB32 ); } void OnGUI() { GUI.DrawTexture( new Rect( 0.0f, 0.0f, position.width, position.height), renderTexture ); } }