Attention

You are reading the latest (unstable) version of this documentation, which may document features not available or compatible with Godot 3.x.

Work in progress

Godot documentation is being updated to reflect the latest changes in version 4.0. Some documentation pages may still state outdated information. This banner will tell you if you're reading one of such pages.

The contents of this page are up to date. If you can still find outdated information, please open an issue.

ViewportTexture

Inherits: Texture2D < Texture < Resource < RefCounted < Object

Texture which displays the content of a Viewport.

Description

Displays the content of a Viewport node as a dynamic Texture2D. This can be used to mix controls, 2D, and 3D elements in the same scene.

To create a ViewportTexture in code, use the Viewport.get_texture method on the target viewport.

Note: When local to scene, this texture uses Resource.setup_local_to_scene to set the proxy texture and flags in the local viewport.

Tutorials

Properties

NodePath

viewport_path

NodePath("")


Property Descriptions

NodePath viewport_path = NodePath("")

  • void set_viewport_path_in_scene ( NodePath value )

  • NodePath get_viewport_path_in_scene ( )

The path to the Viewport node to display. This is relative to the scene root, not to the node which uses the texture.