Provides a base class for different kinds of light nodes. Light3D is the [i]abstract[/i] base class for light nodes. As it can't be instantiated, it shouldn't be used directly. Other types of light nodes inherit from it. Light3D contains the common variables and parameters used for lighting. https://docs.godotengine.org/en/latest/tutorials/3d/lights_and_shadows.html https://godotengine.org/asset-library/asset/678 Returns the value of the specified [enum Light3D.Param] parameter. Sets the value of the specified [enum Light3D.Param] parameter. If [code]true[/code], the light only appears in the editor and will not be visible at runtime. The light's angular size in degrees. Increasing this will make shadows softer at greater distances. Only available for [DirectionalLight3D]s. For reference, the Sun from the Earth is approximately [code]0.5[/code]. The light's bake mode. See [enum BakeMode]. The light's color. An [i]overbright[/i] color can be used to achieve a result equivalent to increasing the light's [member light_energy]. The light will affect objects in the selected layers. The light's strength multiplier (this is not a physical unit). For [OmniLight3D] and [SpotLight3D], changing this value will only change the light color's intensity, not the light's radius. Secondary multiplier used with indirect light (light bounces). Used with [VoxelGI] and SDFGI (see [member Environment.sdfgi_enabled]). [b]Note:[/b] This property is ignored if [member light_energy] is equal to [code]0.0[/code], as the light won't be present at all in the GI shader. If [code]true[/code], the light's effect is reversed, darkening areas and casting bright shadows. [Texture2D] projected by light. [member shadow_enabled] must be on for the projector to work. Light projectors make the light appear as if it is shining through a colored but transparent object, almost like light shining through stained-glass. The size of the light in Godot units. Only available for [OmniLight3D]s and [SpotLight3D]s. Increasing this value will make the light fade out slower and shadows appear blurrier. This can be used to simulate area lights to an extent. The intensity of the specular blob in objects affected by the light. At [code]0[/code], the light becomes a pure diffuse light. When not baking emission, this can be used to avoid unrealistic reflections when placing lights above an emissive surface. Used to adjust shadow appearance. Too small a value results in self-shadowing ("shadow acne"), while too large a value causes shadows to separate from casters ("peter-panning"). Adjust as needed. Blurs the edges of the shadow. Can be used to hide pixel artifacts in low-resolution shadow maps. A high value can impact performance, make shadows appear grainy and can cause other unwanted artifacts. Try to keep as near default as possible. The color of shadows cast by this light. If [code]true[/code], the light will cast shadows. Offsets the lookup into the shadow map by the object's normal. This can be used to reduce self-shadowing artifacts without using [member shadow_bias]. In practice, this value should be tweaked along with [member shadow_bias] to reduce artifacts as much as possible. If [code]true[/code], reverses the backface culling of the mesh. This can be useful when you have a flat mesh that has a light behind it. If you need to cast a shadow on both sides of the mesh, set the mesh to use double-sided shadows with [constant GeometryInstance3D.SHADOW_CASTING_SETTING_DOUBLE_SIDED]. Constant for accessing [member light_energy]. Constant for accessing [member light_indirect_energy]. Constant for accessing [member light_specular]. Constant for accessing [member OmniLight3D.omni_range] or [member SpotLight3D.spot_range]. Constant for accessing [member light_size]. Constant for accessing [member OmniLight3D.omni_attenuation] or [member SpotLight3D.spot_attenuation]. Constant for accessing [member SpotLight3D.spot_angle]. Constant for accessing [member SpotLight3D.spot_angle_attenuation]. Constant for accessing [member DirectionalLight3D.directional_shadow_max_distance]. Constant for accessing [member DirectionalLight3D.directional_shadow_split_1]. Constant for accessing [member DirectionalLight3D.directional_shadow_split_2]. Constant for accessing [member DirectionalLight3D.directional_shadow_split_3]. Constant for accessing [member DirectionalLight3D.directional_shadow_fade_start]. Constant for accessing [member shadow_normal_bias]. Constant for accessing [member shadow_bias]. Constant for accessing [member DirectionalLight3D.directional_shadow_pancake_size]. Constant for accessing [member shadow_blur]. Constant for accessing [member shadow_transmittance_bias]. Represents the size of the [enum Param] enum. Light is ignored when baking. [b]Note:[/b] Hiding a light does [i]not[/i] affect baking.