Class reference

Viewport

Inherits Node

Abstract base class for viewports. Encapsulates drawing and interaction with a game world.

Description

A Viewport creates a different view into the screen, or a sub-view inside another viewport. Child 2D nodes will display on it, and child Camera3D 3D nodes will render on it too. Optionally, a viewport can have its own 2D or 3D world, so it doesn't share what it draws with other viewports. Viewports can also choose to be audio listeners, so they generate positional audio depending on a 2D or 3D camera child of it. Also, viewports can be assigned to different screens in case the devices have multiple screens. Finally, viewports can also behave as render targets, in which case they will not be visible unless the associated texture is used to draw.

Properties

int anisotropic_filtering_level = 2

Sets the maximum number of samples to take when using anisotropic filtering on textures (as a power of two). A higher sample count will result in sharper textures at oblique angles, but is more expensive to compute. A value of 0 forcibly disables anisotropic filtering, even on materials where it is enabled. The anisotropic filtering level also affects decals and light projectors if they are configured to use anisotropic filtering. See ProjectSettings.rendering/textures/decals/filter and ProjectSettings.rendering/textures/light_projectors/filter. Note: In 3D, for this setting to have an effect, set BaseMaterial3D.texture_filter to BaseMaterial3D.TEXTURE_FILTER_LINEAR_WITH_MIPMAPS_ANISOTROPIC or BaseMaterial3D.TEXTURE_FILTER_NEAREST_WITH_MIPMAPS_ANISOTROPIC on materials. Note: In 2D, for this setting to have an effect, set CanvasItem.texture_filter to CanvasItem.TEXTURE_FILTER_LINEAR_WITH_MIPMAPS_ANISOTROPIC or CanvasItem.TEXTURE_FILTER_NEAREST_WITH_MIPMAPS_ANISOTROPIC on the CanvasItem node displaying the texture (or in CanvasTexture). However, anisotropic filtering is rarely useful in 2D, so only enable it for textures in 2D if it makes a meaningful visual difference.

bool audio_listener_enable_2d = false

If true, the viewport will process 2D audio streams.

bool audio_listener_enable_3d = false

If true, the viewport will process 3D audio streams.

int canvas_item_default_texture_filter = 1

Sets the default filter mode used by CanvasItems in this Viewport.

int canvas_item_default_texture_repeat = 0

Sets the default repeat mode used by CanvasItems in this Viewport.

Transform2D canvas_transform

The canvas transform of the viewport, useful for changing the on-screen positions of all child CanvasItems. This is relative to the global canvas transform of the viewport.

int debug_draw = 0

The overlay mode for test rendered geometry in debug purposes.

bool disable_3d = false

Disable 3D rendering (but keep 2D rendering).

float fsr_sharpness = 0.2

Determines how sharp the upscaled image will be when using the FSR upscaling mode. Sharpness halves with every whole number. Values go from 0.0 (sharpest) to 2.0. Values above 2.0 won't make a visible difference. To control this property on the root viewport, set the ProjectSettings.rendering/scaling_3d/fsr_sharpness project setting.

Transform2D global_canvas_transform

The global canvas transform of the viewport. The canvas transform is relative to this.

bool gui_disable_input = false

If true, the viewport will not receive input events.

bool gui_embed_subwindows = false

If true, sub-windows (popups and dialogs) will be embedded inside application window as control-like nodes. If false, they will appear as separate windows handled by the operating system.

bool gui_snap_controls_to_pixels = true

If true, the GUI controls on the viewport will lay pixel perfectly.

bool handle_input_locally = true

If true, this viewport will mark incoming input events as handled by itself. If false, this is instead done by the first parent viewport that is set to handle input locally. A SubViewportContainer will automatically set this property to false for the Viewport contained inside of it. See also set_input_as_handled() and is_input_handled().

float mesh_lod_threshold = 1.0

The automatic LOD bias to use for meshes rendered within the Viewport (this is analogous to ReflectionProbe.mesh_lod_threshold). Higher values will use less detailed versions of meshes that have LOD variations generated. If set to 0.0, automatic LOD is disabled. Increase mesh_lod_threshold to improve performance at the cost of geometry detail. To control this property on the root viewport, set the ProjectSettings.rendering/mesh_lod/lod_change/threshold_pixels project setting. Note: mesh_lod_threshold does not affect GeometryInstance3D visibility ranges (also known as "manual" LOD or hierarchical LOD).

int msaa_3d = 0

The multisample antialiasing mode for 3D rendering. A higher number results in smoother edges at the cost of significantly worse performance. A value of Viewport.MSAA_2X or Viewport.MSAA_4X is best unless targeting very high-end systems. See also bilinear scaling 3D scaling_3d_mode for supersampling, which provides higher quality but is much more expensive. This has no effect on shader-induced aliasing or texture aliasing. See also ProjectSettings.rendering/anti_aliasing/quality/msaa_3d and RenderingServer.viewport_set_msaa_3d().

float oversampling_override = 0.0

If greater than zero, this value is used as the font oversampling factor, otherwise oversampling is equal to viewport scale.

bool own_world_3d = false

If true, the viewport will use a unique copy of the World3D defined in world_3d.

int physics_interpolation_mode = 1

bool physics_object_picking = false

If true, the objects rendered by viewport become subjects of mouse picking process. Note: The number of simultaneously pickable objects is limited to 64 and they are selected in a non-deterministic order, which can be different in each picking process.

bool physics_object_picking_first_only = false

If true, the input_event signal will only be sent to one physics object in the mouse picking process. If you want to get the top object only, you must also enable physics_object_picking_sort. If false, an input_event signal will be sent to all physics objects in the mouse picking process. This applies to 2D CanvasItem object picking only.

bool physics_object_picking_sort = false

If true, objects receive mouse picking events sorted primarily by their CanvasItem.z_index and secondarily by their position in the scene tree. If false, the order is undetermined. Note: This setting is disabled by default because of its potential expensive computational cost. Note: Sorting happens after selecting the pickable objects. Because of the limitation of 64 simultaneously pickable objects, it is not guaranteed that the object with the highest CanvasItem.z_index receives the picking event.

bool positional_shadow_atlas_16_bits = true

Use 16 bits for the omni/spot shadow depth map. Enabling this results in shadows having less precision and may result in shadow acne, but can lead to performance improvements on some devices.

int positional_shadow_atlas_quad_0 = 2

The subdivision amount of the first quadrant on the shadow atlas.

int positional_shadow_atlas_quad_1 = 2

The subdivision amount of the second quadrant on the shadow atlas.

int positional_shadow_atlas_quad_2 = 3

The subdivision amount of the third quadrant on the shadow atlas.

int positional_shadow_atlas_quad_3 = 4

The subdivision amount of the fourth quadrant on the shadow atlas.

int positional_shadow_atlas_size = 2048

The shadow atlas' resolution (used for omni and spot lights). The value is rounded up to the nearest power of 2. Note: If this is set to 0, no positional shadows will be visible at all. This can improve performance significantly on low-end systems by reducing both the CPU and GPU load (as fewer draw calls are needed to draw the scene without shadows).

int scaling_3d_mode = 0

Sets scaling 3D mode. Bilinear scaling renders at different resolution to either undersample or supersample the viewport. FidelityFX Super Resolution 1.0, abbreviated to FSR, is an upscaling technology that produces high quality images at fast framerates by using a spatially aware upscaling algorithm. FSR is slightly more expensive than bilinear, but it produces significantly higher image quality. FSR should be used where possible. To control this property on the root viewport, set the ProjectSettings.rendering/scaling_3d/mode project setting.

float scaling_3d_scale = 1.0

Scales the 3D render buffer based on the viewport size uses an image filter specified in ProjectSettings.rendering/scaling_3d/mode to scale the output image to the full viewport size. Values lower than 1.0 can be used to speed up 3D rendering at the cost of quality (undersampling). Values greater than 1.0 are only valid for bilinear mode and can be used to improve 3D rendering quality at a high performance cost (supersampling). See also ProjectSettings.rendering/anti_aliasing/quality/msaa_3d for multi-sample antialiasing, which is significantly cheaper but only smooths the edges of polygons. When using FSR upscaling, AMD recommends exposing the following values as preset options to users "Ultra Quality: 0.77", "Quality: 0.67", "Balanced: 0.59", "Performance: 0.5" instead of exposing the entire scale. To control this property on the root viewport, set the ProjectSettings.rendering/scaling_3d/scale project setting.

int sdf_oversize = 1

Controls how much of the original viewport's size should be covered by the 2D signed distance field. This SDF can be sampled in CanvasItem shaders and is also used for GPUParticles2D collision. Higher values allow portions of occluders located outside the viewport to still be taken into account in the generated signed distance field, at the cost of performance. If you notice particles falling through LightOccluder2Ds as the occluders leave the viewport, increase this setting. The percentage is added on each axis and on both sides. For example, with the default SDF_OVERSIZE_120_PERCENT, the signed distance field will cover 20% of the viewport's size outside the viewport on each side (top, right, bottom, left).

int sdf_scale = 1

The resolution scale to use for the 2D signed distance field. Higher values lead to a more precise and more stable signed distance field as the camera moves, at the cost of performance.

bool snap_2d_transforms_to_pixel = false

If true, CanvasItem nodes will internally snap to full pixels. Their position can still be sub-pixel, but the decimals will not have effect. This can lead to a crisper appearance at the cost of less smooth movement, especially when Camera2D smoothing is enabled.

bool snap_2d_vertices_to_pixel = false

If true, vertices of CanvasItem nodes will snap to full pixels. Only affects the final vertex positions, not the transforms. This can lead to a crisper appearance at the cost of less smooth movement, especially when Camera2D smoothing is enabled.

float texture_mipmap_bias = 0.0

Affects the final texture sharpness by reading from a lower or higher mipmap (also called "texture LOD bias"). Negative values make mipmapped textures sharper but grainier when viewed at a distance, while positive values make mipmapped textures blurrier (even when up close). Enabling temporal antialiasing (use_taa) will automatically apply a -0.5 offset to this value, while enabling FXAA (screen_space_aa) will automatically apply a -0.25 offset to this value. If both TAA and FXAA are enabled at the same time, an offset of -0.75 is applied to this value. Note: If scaling_3d_scale is lower than 1.0 (exclusive), texture_mipmap_bias is used to adjust the automatic mipmap bias which is calculated internally based on the scale factor. The formula for this is log2(scaling_3d_scale) + mipmap_bias. To control this property on the root viewport, set the ProjectSettings.rendering/textures/default_filters/texture_mipmap_bias project setting.

bool transparent_bg = false

If true, the viewport should render its background as transparent. Note: Due to technical limitations, certain rendering features are disabled when a viewport has a transparent background. This currently applies to screen-space reflections, subsurface scattering, and depth of field.

bool use_debanding = false

If true, uses a fast post-processing filter to make banding significantly less visible. If use_hdr_2d is false, 2D rendering is not affected by debanding unless the Environment.background_mode is Environment.BG_CANVAS. If use_hdr_2d is true, debanding will only be applied if this is the root Viewport and will affect all 2D and 3D rendering, including canvas items. In some cases, debanding may introduce a slightly noticeable dithering pattern. It's recommended to enable debanding only when actually needed since the dithering pattern will make lossless-compressed screenshots larger. See also ProjectSettings.rendering/anti_aliasing/quality/use_debanding and RenderingServer.viewport_set_use_debanding().

bool use_hdr_2d = false

If true, 2D rendering will use a high dynamic range (HDR) format framebuffer matching the bit depth of the 3D framebuffer. When using the Forward+ or Compatibility renderer, this will be an RGBA16 framebuffer. When using the Mobile renderer, it will be an RGB10_A2 framebuffer. Additionally, 2D rendering will take place in linear color space and will be converted to sRGB space immediately before blitting to the screen (if the Viewport is attached to the screen). Practically speaking, this means that the end result of the Viewport will not be clamped to the 0-1 range and can be used in 3D rendering without color space adjustments. This allows 2D rendering to take advantage of effects requiring high dynamic range (e.g. 2D glow) as well as substantially improves the appearance of effects requiring highly detailed gradients.

bool use_occlusion_culling = false

If true, OccluderInstance3D nodes will be usable for occlusion culling in 3D for this viewport. For the root viewport, ProjectSettings.rendering/occlusion_culling/use_occlusion_culling must be set to true instead. Note: Enabling occlusion culling has a cost on the CPU. Only enable occlusion culling if you actually plan to use it, and think whether your scene can actually benefit from occlusion culling. Large, open scenes with few or no objects blocking the view will generally not benefit much from occlusion culling. Large open scenes generally benefit more from mesh LOD and visibility ranges (GeometryInstance3D.visibility_range_begin and GeometryInstance3D.visibility_range_end) compared to occlusion culling. Note: Due to memory constraints, occlusion culling is not supported by default in Web export templates. It can be enabled by compiling custom Web export templates with module_raycast_enabled=yes.

bool use_xr = false

If true, the viewport will use the primary XR interface to render XR output. When applicable this can result in a stereoscopic image and the resulting render being output to a headset.

int vrs_mode = 0

The Variable Rate Shading (VRS) mode that is used for this viewport. Note, if hardware does not support VRS this property is ignored.

Texture2D vrs_texture

Texture to use when vrs_mode is set to Viewport.VRS_TEXTURE. The texture must use a lossless compression format so that colors can be matched precisely. The following VRS densities are mapped to various colors, with brighter colors representing a lower level of shading precision:

			- 1×1 = rgb(0, 0, 0)     - #000000
			- 1×2 = rgb(0, 85, 0)    - #005500
			- 2×1 = rgb(85, 0, 0)    - #550000
			- 2×2 = rgb(85, 85, 0)   - #555500
			- 2×4 = rgb(85, 170, 0)  - #55aa00
			- 4×2 = rgb(170, 85, 0)  - #aa5500
			- 4×4 = rgb(170, 170, 0) - #aaaa00
			- 4×8 = rgb(170, 255, 0) - #aaff00 - Not supported on most hardware
			- 8×4 = rgb(255, 170, 0) - #ffaa00 - Not supported on most hardware
			- 8×8 = rgb(255, 255, 0) - #ffff00 - Not supported on most hardware
			

int vrs_update_mode = 1

Sets the update mode for Variable Rate Shading (VRS) for the viewport. VRS requires the input texture to be converted to the format usable by the VRS method supported by the hardware. The update mode defines how often this happens. If the GPU does not support VRS, or VRS is not enabled, this property is ignored.

World2D world_2d

The custom World2D which can be used as 2D environment source.

World3D world_3d

The custom World3D which can be used as 3D environment source.

Methods

World2D find_world_2d() const

Returns the first valid World2D for this viewport, searching the world_2d property of itself and any Viewport ancestor.

World3D find_world_3d() const

Returns the first valid World3D for this viewport, searching the world_3d property of itself and any Viewport ancestor.

AudioListener2D get_audio_listener_2d() const

Returns the currently active 2D audio listener. Returns null if there are no active 2D audio listeners, in which case the active 2D camera will be treated as listener.

AudioListener3D get_audio_listener_3d() const

Returns the currently active 3D audio listener. Returns null if there are no active 3D audio listeners, in which case the active 3D camera will be treated as listener.

Camera2D get_camera_2d() const

Returns the currently active 2D camera. Returns null if there are no active cameras.

Camera3D get_camera_3d() const

Returns the currently active 3D camera.

bool get_canvas_cull_mask_bit(int layer) const

Returns an individual bit on the rendering layer mask.

Window[] get_embedded_subwindows() const

Returns a list of the visible embedded Windows inside the viewport. Note: Windows inside other viewports will not be listed.

Transform2D get_final_transform() const

Returns the transform from the viewport's coordinate system to the embedder's coordinate system.

Vector2 get_mouse_position() const

Returns the mouse's position in this Viewport using the coordinate system of this Viewport.

float get_oversampling() const

Returns viewport oversampling factor.

int get_positional_shadow_atlas_quadrant_subdiv(int quadrant) const

Returns the positional shadow atlas quadrant subdivision of the specified quadrant.

int get_render_info(int type, int info)

Returns rendering statistics of the given type.

Transform2D get_screen_transform() const

Returns the transform from the Viewport's coordinates to the screen coordinates of the containing window manager window.

Transform2D get_stretch_transform() const

Returns the automatically computed 2D stretch transform, taking the Viewport's stretch settings into account. The final value is multiplied by Window.content_scale_factor, but only for the root viewport. If this method is called on a SubViewport (e.g., in a scene tree with SubViewportContainer and SubViewport), the scale factor of the root window will not be applied. Using Transform2D.get_scale() on the returned value, this can be used to compensate for scaling when zooming a Camera2D node, or to scale down a TextureRect to be pixel-perfect regardless of the automatically computed scale factor. Note: Due to how pixel scaling works, the returned transform's X and Y scale may differ slightly, even when Window.content_scale_aspect is set to a mode that preserves the pixels' aspect ratio. If Window.content_scale_aspect is Window.CONTENT_SCALE_ASPECT_IGNORE, the X and Y scale may differ significantly.

ViewportTexture get_texture() const

Returns the viewport's texture. Note: When trying to store the current texture (e.g. in a file), it might be completely black or outdated if used too early, especially when used in e.g. Node._ready(). To make sure the texture you get is correct, you can await RenderingServer.frame_post_draw signal.

				func _ready():
				    await RenderingServer.frame_post_draw
				    $Viewport.get_texture().get_image().save_png("user://Screenshot.png")
				
				public async override void _Ready()
				{
				    await ToSignal(RenderingServer.Singleton, RenderingServer.SignalName.FramePostDraw);
				    var viewport = GetNode<Viewport>("Viewport");
				    viewport.GetTexture().GetImage().SavePng("user://Screenshot.png");
				}
				

Note: When use_hdr_2d is true the returned texture will be an HDR image encoded in linear space.

Rect2 get_visible_rect() const

Returns the visible rectangle in global screen coordinates.

String gui_get_drag_description() const

Returns the drag data human-readable description.

Control gui_get_focus_owner() const

Returns the currently focused Control within this viewport. If no Control is focused, returns null.

Control gui_get_hovered_control() const

Returns the Control that the mouse is currently hovering over in this viewport. If no Control has the cursor, returns null. Typically the leaf Control node or deepest level of the subtree which claims hover. This is very useful when used together with Node.is_ancestor_of() to find if the mouse is within a control tree.

bool gui_is_drag_successful() const

Returns true if the drag operation is successful.

void gui_release_focus()

Removes the focus from the currently focused Control within this viewport. If no Control has the focus, does nothing.

void gui_set_drag_description(String description)

Sets the drag data human-readable description.

bool is_input_handled() const

Returns whether the current InputEvent has been handled. Input events are not handled until set_input_as_handled() has been called during the lifetime of an InputEvent. This is usually done as part of input handling methods like Node._input(), Control._gui_input() or others, as well as in corresponding signal handlers. If handle_input_locally is set to false, this method will try finding the first parent viewport that is set to handle input locally, and return its value for is_input_handled() instead.

void notify_mouse_entered()

Inform the Viewport that the mouse has entered its area. Use this function before sending an InputEventMouseButton or InputEventMouseMotion to the Viewport with Viewport.push_input(). See also notify_mouse_exited(). Note: In most cases, it is not necessary to call this function because SubViewport nodes that are children of SubViewportContainer are notified automatically. This is only necessary when interacting with viewports in non-default ways, for example as textures in TextureRect or with an Area3D that forwards input events.

void notify_mouse_exited()

Inform the Viewport that the mouse has left its area. Use this function when the node that displays the viewport notices the mouse has left the area of the displayed viewport. See also notify_mouse_entered(). Note: In most cases, it is not necessary to call this function because SubViewport nodes that are children of SubViewportContainer are notified automatically. This is only necessary when interacting with viewports in non-default ways, for example as textures in TextureRect or with an Area3D that forwards input events.

void push_input(InputEvent event, bool in_local_coords = false)

Triggers the given event in this Viewport. This can be used to pass an InputEvent between viewports, or to locally apply inputs that were sent over the network or saved to a file. If in_local_coords is false, the event's position is in the embedder's coordinates and will be converted to viewport coordinates. If in_local_coords is true, the event's position is in viewport coordinates. While this method serves a similar purpose as Input.parse_input_event(), it does not remap the specified event based on project settings like ProjectSettings.input_devices/pointing/emulate_touch_from_mouse. Calling this method will propagate calls to child nodes for following methods in the given order: - Node._input() - Control._gui_input() for Control nodes - Node._shortcut_input() - Node._unhandled_key_input() - Node._unhandled_input() If an earlier method marks the input as handled via set_input_as_handled(), any later method in this list will not be called. If none of the methods handle the event and physics_object_picking is true, the event is used for physics object picking.

void push_text_input(String text)

Helper method which calls the set_text() method on the currently focused Control, provided that it is defined (e.g. if the focused Control is Button or LineEdit).

void push_unhandled_input(InputEvent event, bool in_local_coords = false)

Deprecated.

Use push_input() instead.

Triggers the given event in this Viewport. This can be used to pass an InputEvent between viewports, or to locally apply inputs that were sent over the network or saved to a file. If in_local_coords is false, the event's position is in the embedder's coordinates and will be converted to viewport coordinates. If in_local_coords is true, the event's position is in viewport coordinates. Calling this method will propagate calls to child nodes for following methods in the given order: - Node._shortcut_input() - Node._unhandled_key_input() - Node._unhandled_input() If an earlier method marks the input as handled via set_input_as_handled(), any later method in this list will not be called. If none of the methods handle the event and physics_object_picking is true, the event is used for physics object picking. Note: This method doesn't propagate input events to embedded Windows or SubViewports.

void set_canvas_cull_mask_bit(int layer, bool enable)

Set/clear individual bits on the rendering layer mask. This simplifies editing this Viewport's layers.

void set_input_as_handled()

Stops the input from propagating further down the SceneTree. Note: This does not affect the methods in Input, only the way events are propagated.

void set_positional_shadow_atlas_quadrant_subdiv(int quadrant, int subdiv)

Sets the number of subdivisions to use in the specified quadrant. A higher number of subdivisions allows you to have more shadows in the scene at once, but reduces the quality of the shadows. A good practice is to have quadrants with a varying number of subdivisions and to have as few subdivisions as possible.

void warp_mouse(Vector2 position)

Moves the mouse pointer to the specified position in this Viewport using the coordinate system of this Viewport. Note: warp_mouse() is only supported on Windows, macOS and Linux. It has no effect on Android, iOS and Web.

Signals

gui_focus_changed(Control node)

Emitted when a Control node grabs keyboard focus. Note: A Control node losing focus doesn't cause this signal to be emitted.

size_changed()

Emitted when the size of the viewport is changed, whether by resizing of window, or some other means.

Constants

SHADOW_ATLAS_QUADRANT_SUBDIV_DISABLED = 0

Enum: PositionalShadowAtlasQuadrantSubdiv

This quadrant will not be used.

SHADOW_ATLAS_QUADRANT_SUBDIV_1 = 1

Enum: PositionalShadowAtlasQuadrantSubdiv

This quadrant will only be used by one shadow map.

SHADOW_ATLAS_QUADRANT_SUBDIV_4 = 2

Enum: PositionalShadowAtlasQuadrantSubdiv

This quadrant will be split in 4 and used by up to 4 shadow maps.

SHADOW_ATLAS_QUADRANT_SUBDIV_16 = 3

Enum: PositionalShadowAtlasQuadrantSubdiv

This quadrant will be split 16 ways and used by up to 16 shadow maps.

SHADOW_ATLAS_QUADRANT_SUBDIV_64 = 4

Enum: PositionalShadowAtlasQuadrantSubdiv

This quadrant will be split 64 ways and used by up to 64 shadow maps.

SHADOW_ATLAS_QUADRANT_SUBDIV_256 = 5

Enum: PositionalShadowAtlasQuadrantSubdiv

This quadrant will be split 256 ways and used by up to 256 shadow maps. Unless the positional_shadow_atlas_size is very high, the shadows in this quadrant will be very low resolution.

SHADOW_ATLAS_QUADRANT_SUBDIV_1024 = 6

Enum: PositionalShadowAtlasQuadrantSubdiv

This quadrant will be split 1024 ways and used by up to 1024 shadow maps. Unless the positional_shadow_atlas_size is very high, the shadows in this quadrant will be very low resolution.

SCALING_3D_MODE_BILINEAR = 0

Enum: Scaling3DMode

Use bilinear scaling for the viewport's 3D buffer. The amount of scaling can be set using scaling_3d_scale. Values less than 1.0 will result in undersampling while values greater than 1.0 will result in supersampling. A value of 1.0 disables scaling.

SCALING_3D_MODE_FSR = 1

Enum: Scaling3DMode

Use AMD FidelityFX Super Resolution 1.0 upscaling for the viewport's 3D buffer. The amount of scaling can be set using scaling_3d_scale. Values less than 1.0 will result in the viewport being upscaled using FSR. Values greater than 1.0 are not supported and bilinear downsampling will be used instead. A value of 1.0 disables scaling.

SCALING_3D_MODE_FSR2 = 2

Enum: Scaling3DMode

Use AMD FidelityFX Super Resolution 2.2 upscaling for the viewport's 3D buffer. The amount of scaling can be set using Viewport.scaling_3d_scale. Values less than 1.0 will result in the viewport being upscaled using FSR2. Values greater than 1.0 are not supported and bilinear downsampling will be used instead. A value of 1.0 will use FSR2 at native resolution as a TAA solution.

SCALING_3D_MODE_METALFX_SPATIAL = 3

Enum: Scaling3DMode

Use the MetalFX spatial upscaler for the viewport's 3D buffer. The amount of scaling can be set using scaling_3d_scale. Values less than 1.0 will result in the viewport being upscaled using MetalFX. Values greater than 1.0 are not supported and bilinear downsampling will be used instead. A value of 1.0 disables scaling. More information: MetalFX. Note: Only supported when the Metal rendering driver is in use, which limits this scaling mode to macOS and iOS.

SCALING_3D_MODE_METALFX_TEMPORAL = 4

Enum: Scaling3DMode

Use the MetalFX temporal upscaler for the viewport's 3D buffer. The amount of scaling can be set using scaling_3d_scale. To determine the minimum input scale, use the RenderingDevice.limit_get() method with RenderingDevice.LIMIT_METALFX_TEMPORAL_SCALER_MIN_SCALE. Values less than 1.0 will result in the viewport being upscaled using MetalFX. Values greater than 1.0 are not supported and bilinear downsampling will be used instead. A value of 1.0 will use MetalFX at native resolution as a TAA solution. More information: MetalFX. Note: Only supported when the Metal rendering driver is in use, which limits this scaling mode to macOS and iOS.

SCALING_3D_MODE_MAX = 5

Enum: Scaling3DMode

Represents the size of the Scaling3DMode enum.

MSAA_DISABLED = 0

Enum: MSAA

Multisample antialiasing mode disabled. This is the default value, and is also the fastest setting.

MSAA_2X = 1

Enum: MSAA

Use 2× Multisample Antialiasing. This has a moderate performance cost. It helps reduce aliasing noticeably, but 4× MSAA still looks substantially better.

MSAA_4X = 2

Enum: MSAA

Use 4× Multisample Antialiasing. This has a significant performance cost, and is generally a good compromise between performance and quality.

MSAA_8X = 3

Enum: MSAA

Use 8× Multisample Antialiasing. This has a very high performance cost. The difference between 4× and 8× MSAA may not always be visible in real gameplay conditions. Likely unsupported on low-end and older hardware.

MSAA_MAX = 4

Enum: MSAA

Represents the size of the MSAA enum.

ANISOTROPY_DISABLED = 0

Enum: AnisotropicFiltering

Anisotropic filtering is disabled.

ANISOTROPY_2X = 1

Enum: AnisotropicFiltering

Use 2× anisotropic filtering.

ANISOTROPY_4X = 2

Enum: AnisotropicFiltering

Use 4× anisotropic filtering. This is the default value.

ANISOTROPY_8X = 3

Enum: AnisotropicFiltering

Use 8× anisotropic filtering.

ANISOTROPY_16X = 4

Enum: AnisotropicFiltering

Use 16× anisotropic filtering.

SCREEN_SPACE_AA_DISABLED = 0

Enum: ScreenSpaceAA

Do not perform any antialiasing in the full screen post-process.

SCREEN_SPACE_AA_FXAA = 1

Enum: ScreenSpaceAA

Use fast approximate antialiasing. FXAA is a popular screen-space antialiasing method, which is fast but will make the image look blurry, especially at lower resolutions. It can still work relatively well at large resolutions such as 1440p and 4K.

SCREEN_SPACE_AA_SMAA = 2

Enum: ScreenSpaceAA

Use subpixel morphological antialiasing. SMAA may produce clearer results than FXAA, but at a slightly higher performance cost.

SCREEN_SPACE_AA_MAX = 3

Enum: ScreenSpaceAA

Represents the size of the ScreenSpaceAA enum.

RENDER_INFO_OBJECTS_IN_FRAME = 0

Enum: RenderInfo

Amount of objects in frame.

RENDER_INFO_PRIMITIVES_IN_FRAME = 1

Enum: RenderInfo

Amount of vertices in frame.

RENDER_INFO_DRAW_CALLS_IN_FRAME = 2

Enum: RenderInfo

Amount of draw calls in frame.

RENDER_INFO_MAX = 3

Enum: RenderInfo

Represents the size of the RenderInfo enum.

RENDER_INFO_TYPE_VISIBLE = 0

Enum: RenderInfoType

Visible render pass (excluding shadows).

RENDER_INFO_TYPE_SHADOW = 1

Enum: RenderInfoType

Shadow render pass. Objects will be rendered several times depending on the number of amounts of lights with shadows and the number of directional shadow splits.

RENDER_INFO_TYPE_CANVAS = 2

Enum: RenderInfoType

Canvas item rendering. This includes all 2D rendering.

RENDER_INFO_TYPE_MAX = 3

Enum: RenderInfoType

Represents the size of the RenderInfoType enum.

DEBUG_DRAW_DISABLED = 0

Enum: DebugDraw

Objects are displayed normally.

DEBUG_DRAW_UNSHADED = 1

Enum: DebugDraw

Objects are displayed without light information.

DEBUG_DRAW_LIGHTING = 2

Enum: DebugDraw

Objects are displayed without textures and only with lighting information. Note: When using this debug draw mode, custom shaders are ignored since all materials in the scene temporarily use a debug material. This means the result from custom shader functions (such as vertex displacement) won't be visible anymore when using this debug draw mode.

DEBUG_DRAW_OVERDRAW = 3

Enum: DebugDraw

Objects are displayed semi-transparent with additive blending so you can see where they are drawing over top of one another. A higher overdraw means you are wasting performance on drawing pixels that are being hidden behind others. Note: When using this debug draw mode, custom shaders are ignored since all materials in the scene temporarily use a debug material. This means the result from custom shader functions (such as vertex displacement) won't be visible anymore when using this debug draw mode.

DEBUG_DRAW_WIREFRAME = 4

Enum: DebugDraw

Objects are displayed as wireframe models. Note: RenderingServer.set_debug_generate_wireframes() must be called before loading any meshes for wireframes to be visible when using the Compatibility renderer.

DEBUG_DRAW_NORMAL_BUFFER = 5

Enum: DebugDraw

Objects are displayed without lighting information and their textures replaced by normal mapping. Note: Only supported when using the Forward+ rendering method.

DEBUG_DRAW_VOXEL_GI_ALBEDO = 6

Enum: DebugDraw

Objects are displayed with only the albedo value from VoxelGIs. Requires at least one visible VoxelGI node that has been baked to have a visible effect. Note: Only supported when using the Forward+ rendering method.

DEBUG_DRAW_VOXEL_GI_LIGHTING = 7

Enum: DebugDraw

Objects are displayed with only the lighting value from VoxelGIs. Requires at least one visible VoxelGI node that has been baked to have a visible effect. Note: Only supported when using the Forward+ rendering method.

DEBUG_DRAW_VOXEL_GI_EMISSION = 8

Enum: DebugDraw

Objects are displayed with only the emission color from VoxelGIs. Requires at least one visible VoxelGI node that has been baked to have a visible effect. Note: Only supported when using the Forward+ rendering method.

DEBUG_DRAW_SHADOW_ATLAS = 9

Enum: DebugDraw

Draws the shadow atlas that stores shadows from OmniLight3Ds and SpotLight3Ds in the upper left quadrant of the Viewport.

DEBUG_DRAW_DIRECTIONAL_SHADOW_ATLAS = 10

Enum: DebugDraw

Draws the shadow atlas that stores shadows from DirectionalLight3Ds in the upper left quadrant of the Viewport.

DEBUG_DRAW_SCENE_LUMINANCE = 11

Enum: DebugDraw

Draws the scene luminance buffer (if available) in the upper left quadrant of the Viewport. Note: Only supported when using the Forward+ or Mobile rendering methods.

DEBUG_DRAW_SSAO = 12

Enum: DebugDraw

Draws the screen-space ambient occlusion texture instead of the scene so that you can clearly see how it is affecting objects. In order for this display mode to work, you must have Environment.ssao_enabled set in your WorldEnvironment. Note: Only supported when using the Forward+ rendering method.

DEBUG_DRAW_SSIL = 13

Enum: DebugDraw

Draws the screen-space indirect lighting texture instead of the scene so that you can clearly see how it is affecting objects. In order for this display mode to work, you must have Environment.ssil_enabled set in your WorldEnvironment. Note: Only supported when using the Forward+ rendering method.

DEBUG_DRAW_PSSM_SPLITS = 14

Enum: DebugDraw

Colors each PSSM split for the DirectionalLight3Ds in the scene a different color so you can see where the splits are. In order (from closest to furthest from the camera), they are colored red, green, blue, and yellow. Note: When using this debug draw mode, custom shaders are ignored since all materials in the scene temporarily use a debug material. This means the result from custom shader functions (such as vertex displacement) won't be visible anymore when using this debug draw mode. Note: Only supported when using the Forward+ or Mobile rendering methods.

DEBUG_DRAW_DECAL_ATLAS = 15

Enum: DebugDraw

Draws the decal atlas used by Decals and light projector textures in the upper left quadrant of the Viewport. Note: Only supported when using the Forward+ or Mobile rendering methods.

DEBUG_DRAW_SDFGI = 16

Enum: DebugDraw

Draws the cascades used to render signed distance field global illumination (SDFGI). Does nothing if the current environment's Environment.sdfgi_enabled is false. Note: Only supported when using the Forward+ rendering method.

DEBUG_DRAW_SDFGI_PROBES = 17

Enum: DebugDraw

Draws the probes used for signed distance field global illumination (SDFGI). Does nothing if the current environment's Environment.sdfgi_enabled is false. Note: Only supported when using the Forward+ rendering method.

DEBUG_DRAW_GI_BUFFER = 18

Enum: DebugDraw

Draws the buffer used for global illumination from VoxelGI or SDFGI. Requires VoxelGI (at least one visible baked VoxelGI node) or SDFGI (Environment.sdfgi_enabled) to be enabled to have a visible effect. Note: Only supported when using the Forward+ rendering method.

DEBUG_DRAW_DISABLE_LOD = 19

Enum: DebugDraw

Draws all of the objects at their highest polycount regardless of their distance from the camera. No low level of detail (LOD) is applied.

DEBUG_DRAW_CLUSTER_OMNI_LIGHTS = 20

Enum: DebugDraw

Draws the cluster used by OmniLight3D nodes to optimize light rendering. Note: Only supported when using the Forward+ rendering method.

DEBUG_DRAW_CLUSTER_SPOT_LIGHTS = 21

Enum: DebugDraw

Draws the cluster used by SpotLight3D nodes to optimize light rendering. Note: Only supported when using the Forward+ rendering method.

DEBUG_DRAW_CLUSTER_DECALS = 22

Enum: DebugDraw

Draws the cluster used by Decal nodes to optimize decal rendering. Note: Only supported when using the Forward+ rendering method.

DEBUG_DRAW_CLUSTER_REFLECTION_PROBES = 23

Enum: DebugDraw

Draws the cluster used by ReflectionProbe nodes to optimize reflection probes. Note: Only supported when using the Forward+ rendering method.

DEBUG_DRAW_OCCLUDERS = 24

Enum: DebugDraw

Draws the buffer used for occlusion culling. Note: Only supported when using the Forward+ or Mobile rendering methods.

DEBUG_DRAW_MOTION_VECTORS = 25

Enum: DebugDraw

Draws vector lines over the viewport to indicate the movement of pixels between frames. Note: Only supported when using the Forward+ rendering method.

DEBUG_DRAW_INTERNAL_BUFFER = 26

Enum: DebugDraw

Draws the internal resolution buffer of the scene in linear colorspace before tonemapping or post-processing is applied. Note: Only supported when using the Forward+ or Mobile rendering methods.

DEFAULT_CANVAS_ITEM_TEXTURE_FILTER_NEAREST = 0

Enum: DefaultCanvasItemTextureFilter

The texture filter reads from the nearest pixel only. This makes the texture look pixelated from up close, and grainy from a distance (due to mipmaps not being sampled).

DEFAULT_CANVAS_ITEM_TEXTURE_FILTER_LINEAR = 1

Enum: DefaultCanvasItemTextureFilter

The texture filter blends between the nearest 4 pixels. This makes the texture look smooth from up close, and grainy from a distance (due to mipmaps not being sampled).

DEFAULT_CANVAS_ITEM_TEXTURE_FILTER_LINEAR_WITH_MIPMAPS = 2

Enum: DefaultCanvasItemTextureFilter

The texture filter blends between the nearest 4 pixels and between the nearest 2 mipmaps (or uses the nearest mipmap if ProjectSettings.rendering/textures/default_filters/use_nearest_mipmap_filter is true). This makes the texture look smooth from up close, and smooth from a distance. Use this for non-pixel art textures that may be viewed at a low scale (e.g. due to Camera2D zoom or sprite scaling), as mipmaps are important to smooth out pixels that are smaller than on-screen pixels.

DEFAULT_CANVAS_ITEM_TEXTURE_FILTER_NEAREST_WITH_MIPMAPS = 3

Enum: DefaultCanvasItemTextureFilter

The texture filter reads from the nearest pixel and blends between the nearest 2 mipmaps (or uses the nearest mipmap if ProjectSettings.rendering/textures/default_filters/use_nearest_mipmap_filter is true). This makes the texture look pixelated from up close, and smooth from a distance. Use this for non-pixel art textures that may be viewed at a low scale (e.g. due to Camera2D zoom or sprite scaling), as mipmaps are important to smooth out pixels that are smaller than on-screen pixels.

DEFAULT_CANVAS_ITEM_TEXTURE_REPEAT_DISABLED = 0

Enum: DefaultCanvasItemTextureRepeat

Disables textures repeating. Instead, when reading UVs outside the 0-1 range, the value will be clamped to the edge of the texture, resulting in a stretched out look at the borders of the texture.

DEFAULT_CANVAS_ITEM_TEXTURE_REPEAT_ENABLED = 1

Enum: DefaultCanvasItemTextureRepeat

Enables the texture to repeat when UV coordinates are outside the 0-1 range. If using one of the linear filtering modes, this can result in artifacts at the edges of a texture when the sampler filters across the edges of the texture.

DEFAULT_CANVAS_ITEM_TEXTURE_REPEAT_MIRROR = 2

Enum: DefaultCanvasItemTextureRepeat

Flip the texture when repeating so that the edge lines up instead of abruptly changing.

SDF_OVERSIZE_100_PERCENT = 0

Enum: SDFOversize

The signed distance field only covers the viewport's own rectangle.

SDF_OVERSIZE_120_PERCENT = 1

Enum: SDFOversize

The signed distance field is expanded to cover 20% of the viewport's size around the borders.

SDF_OVERSIZE_150_PERCENT = 2

Enum: SDFOversize

The signed distance field is expanded to cover 50% of the viewport's size around the borders.

SDF_OVERSIZE_200_PERCENT = 3

Enum: SDFOversize

The signed distance field is expanded to cover 100% (double) of the viewport's size around the borders.

SDF_OVERSIZE_MAX = 4

Enum: SDFOversize

Represents the size of the SDFOversize enum.

SDF_SCALE_100_PERCENT = 0

Enum: SDFScale

The signed distance field is rendered at full resolution.

SDF_SCALE_50_PERCENT = 1

Enum: SDFScale

The signed distance field is rendered at half the resolution of this viewport.

SDF_SCALE_25_PERCENT = 2

Enum: SDFScale

The signed distance field is rendered at a quarter the resolution of this viewport.

SDF_SCALE_MAX = 3

Enum: SDFScale

Represents the size of the SDFScale enum.

VRS_DISABLED = 0

Enum: VRSMode

Variable Rate Shading is disabled.

VRS_TEXTURE = 1

Enum: VRSMode

Variable Rate Shading uses a texture. Note, for stereoscopic use a texture atlas with a texture for each view.

VRS_XR = 2

Enum: VRSMode

Variable Rate Shading's texture is supplied by the primary XRInterface.

VRS_MAX = 3

Enum: VRSMode

Represents the size of the VRSMode enum.

VRS_UPDATE_DISABLED = 0

Enum: VRSUpdateMode

The input texture for variable rate shading will not be processed.

VRS_UPDATE_ONCE = 1

Enum: VRSUpdateMode

The input texture for variable rate shading will be processed once.

VRS_UPDATE_ALWAYS = 2

Enum: VRSUpdateMode

The input texture for variable rate shading will be processed each frame.

VRS_UPDATE_MAX = 3

Enum: VRSUpdateMode

Represents the size of the VRSUpdateMode enum.

Tutorials

Source revision 5592dc3a7a61
Connection interrupted. Reload×

Rejoining the server...

Rejoin failed... trying again in seconds.

Failed to rejoin.
Please retry or reload the page.

The session has been paused by the server.

Failed to resume the session.
Please retry or reload the page.