Add missing RenderInfoType enum to Viewport

This commit is contained in:
A Thousand Ships 2024-03-23 14:02:59 +01:00
parent fe01776f05
commit 8a88e5ea07
No known key found for this signature in database
GPG key ID: 2033189A662F8BD7
3 changed files with 9 additions and 1 deletions

View file

@ -497,10 +497,16 @@
Represents the size of the [enum RenderInfo] enum.
</constant>
<constant name="RENDER_INFO_TYPE_VISIBLE" value="0" enum="RenderInfoType">
Visible render pass (excluding shadows).
</constant>
<constant name="RENDER_INFO_TYPE_SHADOW" value="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.
</constant>
<constant name="RENDER_INFO_TYPE_MAX" value="2" enum="RenderInfoType">
<constant name="RENDER_INFO_TYPE_CANVAS" value="2" enum="RenderInfoType">
Canvas item rendering. This includes all 2D rendering.
</constant>
<constant name="RENDER_INFO_TYPE_MAX" value="3" enum="RenderInfoType">
Represents the size of the [enum RenderInfoType] enum.
</constant>
<constant name="DEBUG_DRAW_DISABLED" value="0" enum="DebugDraw">
Objects are displayed normally.

View file

@ -4843,6 +4843,7 @@ void Viewport::_bind_methods() {
BIND_ENUM_CONSTANT(RENDER_INFO_TYPE_VISIBLE);
BIND_ENUM_CONSTANT(RENDER_INFO_TYPE_SHADOW);
BIND_ENUM_CONSTANT(RENDER_INFO_TYPE_CANVAS);
BIND_ENUM_CONSTANT(RENDER_INFO_TYPE_MAX);
BIND_ENUM_CONSTANT(DEBUG_DRAW_DISABLED);

View file

@ -138,6 +138,7 @@ public:
enum RenderInfoType {
RENDER_INFO_TYPE_VISIBLE,
RENDER_INFO_TYPE_SHADOW,
RENDER_INFO_TYPE_CANVAS,
RENDER_INFO_TYPE_MAX
};