diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-01-26 10:08:55 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-26 10:08:55 +0100 |
commit | 6a5c8c867281fb3ed13cce1e7d9acf287161bc03 (patch) | |
tree | f89afe043a4f965f401d12cfab94f3a2340f7012 /doc/classes/VisualServer.xml | |
parent | 1b3eb416229567596a7db53bf927e9daf61bac4a (diff) | |
parent | c5700f74648d8b04229f4d4c77937c1af3a798a7 (diff) |
Merge pull request #35574 from clayjohn/DOCS-odds-n-ends
Complete various class references
Diffstat (limited to 'doc/classes/VisualServer.xml')
-rw-r--r-- | doc/classes/VisualServer.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/classes/VisualServer.xml b/doc/classes/VisualServer.xml index dd87c53c3c..db0eb79813 100644 --- a/doc/classes/VisualServer.xml +++ b/doc/classes/VisualServer.xml @@ -3897,7 +3897,7 @@ <argument index="2" name="screen" type="int" default="0"> </argument> <description> - Copies viewport to a region of the screen specified by [code]rect[/code]. If Viewport.[member Viewport.render_direct_to_screen] is [code]true[/code], then viewport does not use a framebuffer and the contents of the viewport are rendered directly to screen. However, note that the root viewport is drawn last, therefore it will draw over the screen. Accordingly, you must set the root viewport to an area that does not cover the area that you have attached this viewport to. + Copies viewport to a region of the screen specified by [code]rect[/code]. If [member Viewport.render_direct_to_screen] is [code]true[/code], then viewport does not use a framebuffer and the contents of the viewport are rendered directly to screen. However, note that the root viewport is drawn last, therefore it will draw over the screen. Accordingly, you must set the root viewport to an area that does not cover the area that you have attached this viewport to. For example, you can set the root viewport to not render at all with the following code: [codeblock] func _ready(): |