Version: 2017.1
public Rect position ;

説明

スクリーン空間でのウィンドウの位置

この値を設定するとドッキングされていた場合、ウィンドウをドッキング解除します。


Create an empty editor window of 200x200px.

// Create an empty editor window of 200x200 pixels size
// located at the top left corner

class EditorWindowPosition extends EditorWindow { @MenuItem ("Example/Window position usage") static function Init () { var window = EditorWindow.GetWindow(EditorWindowPosition); window.position = Rect(0,0, 200,200); } }