Version: 5.3 (switch to 5.4b)
言語English
  • C#
  • JS

スクリプト言語

好きな言語を選択してください。選択した言語でスクリプトコードが表示されます。

EditorWindow.autoRepaintOnSceneChange

フィードバック

ありがとうございます

この度はドキュメントの品質向上のためにご意見・ご要望をお寄せいただき、誠にありがとうございます。頂いた内容をドキュメントチームで確認し、必要に応じて修正を致します。

閉じる

送信に失敗しました

なんらかのエラーが発生したため送信が出来ませんでした。しばらく経ってから<a>もう一度送信</a>してください。ドキュメントの品質向上のために時間を割いて頂き誠にありがとうございます。

閉じる

キャンセル

マニュアルに切り替える
public var autoRepaintOnSceneChange: bool;
public bool autoRepaintOnSceneChange;

説明

シーンが変わるたびに自動的にウィンドウを再描画するかどうか


"メインのカメラが何を"見て"いるかを表示するエディターウィンドウです。"

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 ); } }