Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Internal/6000.0/staging #8128

Merged
merged 7 commits into from
Jan 28, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,11 @@ To make a Light work with the **Animation window**, when you click on the **Add

<a name="AreaLight"></a>

| **- Flare Tint** | Controls the tint of the flare of the celestial body. |
| **- Flare Multiplier** | Multiplier applied on the flare intensity. |
| **Property** | **Description** |
| ---------------- | ------------------------------------------------------------ |
| **Flare Tint** | Controls the tint of the flare of the celestial body. |
| **Flare Multiplier** | Multiplier applied on the flare intensity. |

HDRP allows you to use a RenderTexture as a light cookie. However, for the sake of performance, if you make any changes to the RenderTexture, HDRP doesn't automatically update the cookie atlas. To notify the system that the RenderTexture content has changed and so make the system upload the change to the cookie atlas, call `IncrementUpdateCount()` on the RenderTexture. If you don't do this, the system doesn't update the cookie.

## Preset
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ The Visual Environment Volume component override specifies the **Sky Type** that

## Using the Visual Environment

The **Visual Environment** uses the [Volume](Volumes.md) framework, so to enable and modify **Visual Environment** properties, you must add a **Visual Environment** override to a [Volume](Volumes.md) in your Scene.
The **Visual Environment** uses the [Volume](volume-component.md) framework, so to enable and modify **Visual Environment** properties, you must add a **Visual Environment** override to a [Volume](volume-component.md) in your Scene.

The **Visual Environment** override comes as default when you create a **Scene Settings** GameObject (Menu: **GameObject** > **Volumes** > **Sky and Fog Global Volume**). You can also manually add a **Visual Environment** override to any [Volume](Volumes.md). To manually add **Visual Environment** to a Volume:
The **Visual Environment** override comes as default when you create a **Scene Settings** GameObject (Menu: **GameObject** > **Volumes** > **Sky and Fog Global Volume**). You can also manually add a **Visual Environment** override to any [Volume](volume-component.md). To manually add **Visual Environment** to a Volume:

1. In the Scene or Hierarchy view, select a GameObject that contains a Volume component to view it in the Inspector.
2. In the Inspector, go to **Add Override** and select **Visual Environment**.
Expand All @@ -25,8 +25,8 @@ You can use the **Visual Environment** override to control the sky and fog for t

| **Property** | **Description** |
| ---------------- | ------------------------------------------------------------ |
| **Sky Type** | Use the drop-down to select the type of sky that HDRP renders when this Volume affects a Camera. This list automatically updates when you [create a custom Sky](Creating-a-custom-sky). <br />&#8226; **None**: HDRP doesn't render a sky for Cameras in this Volume.<br />&#8226; [Gradient Sky](Override-Gradient-Sky.md): Renders the top, middle, and bottom sections of the sky using three separate color zones. HDRP controls the size of these color zones using the Gradient Sky’s **Gradient Diffusion** property.<br />&#8226; [HDRI Sky](Override-HDRI-Sky.md): Uses a cubemap texture to represent the entire sky.<br />&#8226; [Physically Based Sky](Override-Physically-Based-Sky.md): Simulates the sky of a spherical planet with a two-part atmosphere which has an exponentially decreasing density with respect to its altitude.<br />&#8226; [Procedural Sky](Override-Procedural-Sky.md): Generates a sky based on properties such as, **Sky Tint**, **Ground Color**, and **Sun Size**. HDRP deprecated **Procedural Sky** in 2019.3 and replaced it with **Physically Based Sky**. To use Procedural Sky for HDRP Projects in Unity 2019.3 or later, follow the instructions on the [Upgrading from 2019.2 to 2019.3 guide](Upgrading-From-2019.2-to-2019.3.md#ProceduralSky).<br /><br />Note: If you select any option that's not **None**, make sure the respective sky [Volume override](Volume-Components.md) exists in a Volume in you Scene. For example, if you select **Gradient Sky**, your Scene must contain a Volume with a [Gradient Sky](Override-Gradient-Sky.md) override. |
| **Background Clouds** | Use the drop-down to select the type of clouds that HDRP renders when this Volume affects a Camera. The options are:<br/>&#8226; **None**: Doesn't render any clouds.<br/>&#8226; **Cloud Layer**: Renders clouds using the [Cloud Layer system](Override-Cloud-Layer.md).<br/>This list automatically updates when you [create custom clouds](Creating-Custom-Clouds.md).<br/>For more information, refer to the [clouds in HDRP documentation](Clouds-In-HDRP.md). |
| **Sky Type** | Use the drop-down to select the type of sky that HDRP renders when this Volume affects a Camera. This list automatically updates when you [create a custom Sky](create-a-custom-sky.md). <br />&#8226; **None**: HDRP doesn't render a sky for Cameras in this Volume.<br />&#8226; [Gradient Sky](gradient-sky-volume-override-reference.md): Renders the top, middle, and bottom sections of the sky using three separate color zones. HDRP controls the size of these color zones using the Gradient Sky’s **Gradient Diffusion** property.<br />&#8226; [HDRI Sky](hdri-sky-volume-override-reference.md): Uses a cubemap texture to represent the entire sky.<br />&#8226; [Physically Based Sky](physically-based-sky-volume-override-reference.md): Simulates the sky of a spherical planet with a two-part atmosphere which has an exponentially decreasing density with respect to its altitude.<br />&#8226; Procedural Sky: Generates a sky based on properties such as, **Sky Tint**, **Ground Color**, and **Sun Size**. HDRP deprecated **Procedural Sky** in 2019.3 and replaced it with **Physically Based Sky**. To use Procedural Sky for HDRP Projects in Unity 2019.3 or later, follow the instructions on the [Upgrading from 2019.2 to 2019.3 guide](Upgrading-From-2019.2-to-2019.3.md#ProceduralSky).<br /><br />Note: If you select any option that's not **None**, make sure the respective sky [Volume override](volume-component.md) exists in a Volume in you Scene. For example, if you select **Gradient Sky**, your Scene must contain a Volume with a [Gradient Sky](gradient-sky-volume-override-reference.md) override. |
| **Background Clouds** | Use the drop-down to select the type of clouds that HDRP renders when this Volume affects a Camera. The options are:<br/>&#8226; **None**: Doesn't render any clouds.<br/>&#8226; **Cloud Layer**: Renders clouds using the [Cloud Layer system](cloud-layer-volume-override-reference.md).<br/>This list automatically updates when you [create custom clouds](create-custom-cloud-effects.md).<br/>For more information, refer to the [clouds in HDRP documentation](clouds.md). |
| **Ambient Mode** | Use the drop-down to select the mode this Volume uses to process ambient light.<br />&#8226; **Static**: Ambient light comes from the baked sky assigned to the **Static Lighting Sky** property in the Lighting window. This light affects both real-time and baked global illumination. For information on how to set up environment lighting, see the [Environment Lighting documentation](Environment-Lighting.md#lighting-environment).<br />&#8226; **Dynamic**: Ambient light comes from the sky that you set in the **Sky** > **Type** property of this override. This means that ambient light can change in real time depending on the current Volume affecting the Camera. If you use baked global illumination, changes to the environment lighting only affect GameObjects exclusively lit using Ambient Probes. If you use real-time global illumination, changes to the environment lighting affect both lightmaps and Ambient Probes. |

### Planet
Expand Down Expand Up @@ -54,6 +54,6 @@ After you have set your **Sky Type**, if you want to override the default settin
* To disable the override, disable the checkbox to the left of the **Procedural Sky** title .
* To remove the override, click the drop-down menu to the right of the title and select **Remove** .

On the [Gradient Sky](Override-Gradient-Sky.md) override itself, you can enable the checkboxes next to each property to override the property with your own values. For example, enable the checkbox next to the **Middle** property and use the color picker to change the color to pink.
On the [Gradient Sky](gradient-sky-volume-override-reference.md) override itself, you can enable the checkboxes next to each property to override the property with your own values. For example, enable the checkbox next to the **Middle** property and use the color picker to change the color to pink.

![](Images/Override-VisualEnvironment2.png)
Original file line number Diff line number Diff line change
Expand Up @@ -323,20 +323,28 @@ SHADOW_TYPE EvaluateShadow_Directional( LightLoopContext lightLoopContext, Posit
}
else if (shadowSplitIndex == int(_CascadeShadowCount) - 1)
{
// float fade = lightLoopContext.shadowContext.fade;
float3 camToPixel = posInput.positionWS - GetPrimaryCameraPosition();
float distanceCamToPixel2 = dot(camToPixel, camToPixel);

HDDirectionalShadowData dsd = lightLoopContext.shadowContext.directionalShadowData;
float fade = saturate(distanceCamToPixel2 * dsd.fadeScale + dsd.fadeBias);
float fade = lightLoopContext.shadowContext.fade;
// In the transition code (both dithering and blend) we use shadow = lerp( shadow, 1.0, fade ) for last transition
// mean if we expend the code we have (shadow * (1 - fade) + fade). Here to make transition with shadow mask
// we will remove fade and add fade * shadowMask which mean we do a lerp with shadow mask
shadow = shadow - fade + fade * shadowMask;
}

// See comment in EvaluateBSDF_Punctual
shadow = light.nonLightMappedOnly ? min(shadowMask, shadow) : shadow;
if (light.nonLightMappedOnly)
{
shadow = min(shadowMask, shadow);
}
else
{
// Use shadowmask when shadow value ​​cannot be retrieved due to shadow caster culling.
float3 camToPixel = posInput.positionWS - GetPrimaryCameraPosition();
float distanceCamToPixel2 = dot(camToPixel, camToPixel);

HDDirectionalShadowData dsd = lightLoopContext.shadowContext.directionalShadowData;
float alpha = saturate(distanceCamToPixel2 * dsd.fadeScale + dsd.fadeBias);
shadow = min(shadow, lerp(1.0, shadowMask, alpha * alpha));
}
#endif

shadow = lerp(shadowMask.SHADOW_TYPE_REPLICATE, shadow, light.shadowDimmer);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1791,7 +1791,7 @@ IndirectLighting EvaluateBSDF_ScreenSpaceReflection(PositionInputs posInput,
//
// Note that the SSR with clear coat is a binary state, which means we should never enter the if condition if we don't have an active
// clear coat (which is not guaranteed by the HasFlag condition in deferred mode in some cases). We then need to make sure that coatMask is actually non zero.
if (HasFlag(bsdfData.materialFeatures, MATERIALFEATUREFLAGS_LIT_CLEAR_COAT) && bsdfData.coatMask > 0.0)
if (HasFlag(bsdfData.materialFeatures, MATERIALFEATUREFLAGS_LIT_CLEAR_COAT) && bsdfData.coatMask >= 0.0)
{
// We use the coat-traced light according to how similar the base lobe roughness is to the coat roughness
// (we can assume the coat is always smoother):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -152,8 +152,10 @@ void GetSurfaceAndBuiltinData(inout FragInputs input, float3 V, inout PositionIn
GENERIC_ALPHA_TEST(hole, 0.5);
#endif

#ifndef EDITOR_VISUALIZATION
// terrain lightmap uvs are always taken from uv0
input.texCoord1 = input.texCoord2 = input.texCoord0;
#endif

TerrainLitSurfaceData terrainLitSurfaceData;
InitializeTerrainLitSurfaceData(terrainLitSurfaceData);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,9 @@ internal void Cleanup()

CleanupShadingAtlas();

m_ShaderVariablesBuffer?.Release();
m_ShaderVariablesBuffer = null;

m_IsInitialized = false;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -720,7 +720,7 @@ public override void Setup(ScriptableRenderContext context, ref RenderingData re
UpdateCameraHistory(cameraData);

// Gather render pass input requirements
RenderPassInputSummary renderPassInputs = GetRenderPassInputs(cameraData.IsTemporalAAEnabled(), postProcessingData.isEnabled);
RenderPassInputSummary renderPassInputs = GetRenderPassInputs(cameraData.IsTemporalAAEnabled(), postProcessingData.isEnabled, cameraData.isSceneViewCamera);

// Gather render pass require rendering layers event and mask size
bool requiresRenderingLayer = RenderingLayerUtils.RequireRenderingLayers(this, rendererFeatures,
Expand Down Expand Up @@ -753,11 +753,6 @@ public override void Setup(ScriptableRenderContext context, ref RenderingData re
if (renderingLayerProvidesByDepthNormalPass)
renderPassInputs.requiresNormalsTexture = true;

#if UNITY_EDITOR
if (ProbeReferenceVolume.instance.IsProbeSamplingDebugEnabled())
renderPassInputs.requiresNormalsTexture = true;
#endif

// TODO: investigate the order of call, had to change because of requiresRenderingLayer
if (m_DeferredLights != null)
{
Expand Down Expand Up @@ -1719,7 +1714,7 @@ private struct RenderPassInputSummary
internal RenderPassEvent requiresDepthTextureEarliestEvent;
}

private RenderPassInputSummary GetRenderPassInputs(bool isTemporalAAEnabled, bool postProcessingEnabled)
private RenderPassInputSummary GetRenderPassInputs(bool isTemporalAAEnabled, bool postProcessingEnabled, bool isSceneViewCamera)
{
RenderPassInputSummary inputSummary = new RenderPassInputSummary();
inputSummary.requiresDepthNormalAtEvent = RenderPassEvent.BeforeRenderingOpaques;
Expand Down Expand Up @@ -1774,7 +1769,10 @@ private RenderPassInputSummary GetRenderPassInputs(bool isTemporalAAEnabled, boo
inputSummary.requiresDepthTextureEarliestEvent = (RenderPassEvent)Mathf.Min((int)m_MotionVectorPass.renderPassEvent, (int)inputSummary.requiresDepthTextureEarliestEvent);
}


#if UNITY_EDITOR
if (ProbeReferenceVolume.instance.IsProbeSamplingDebugEnabled() && isSceneViewCamera)
inputSummary.requiresNormalsTexture = true;
#endif
return inputSummary;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,7 @@ void CreateRenderGraphCameraRenderTargets(RenderGraph renderGraph, bool isCamera
// Gather render pass history requests and update history textures.
UpdateCameraHistory(cameraData);

RenderPassInputSummary renderPassInputs = GetRenderPassInputs(cameraData.IsTemporalAAEnabled(), postProcessingData.isEnabled);
RenderPassInputSummary renderPassInputs = GetRenderPassInputs(cameraData.IsTemporalAAEnabled(), postProcessingData.isEnabled, cameraData.isSceneViewCamera);

// Enable depth normal prepass if it's needed by rendering layers
if (m_RenderingLayerProvidesByDepthNormalPass)
Expand Down Expand Up @@ -1137,16 +1137,11 @@ private void OnMainRendering(RenderGraph renderGraph, ScriptableRenderContext co

RecordCustomRenderGraphPasses(renderGraph, RenderPassEvent.BeforeRenderingPrePasses);

RenderPassInputSummary renderPassInputs = GetRenderPassInputs(cameraData.IsTemporalAAEnabled(), postProcessingData.isEnabled);
RenderPassInputSummary renderPassInputs = GetRenderPassInputs(cameraData.IsTemporalAAEnabled(), postProcessingData.isEnabled, cameraData.isSceneViewCamera);

if (m_RenderingLayerProvidesByDepthNormalPass)
renderPassInputs.requiresNormalsTexture = true;

#if UNITY_EDITOR
if (ProbeReferenceVolume.instance.IsProbeSamplingDebugEnabled() && cameraData.isSceneViewCamera)
renderPassInputs.requiresNormalsTexture = true;
#endif

bool isDeferred = this.renderingModeActual == RenderingMode.Deferred;

bool requiresDepthPrepass = RequireDepthPrepass(cameraData, ref renderPassInputs);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,7 @@ Shader "Universal Render Pipeline/2D/Sprite-Unlit-Default"
#pragma vertex UnlitVertex
#pragma fragment UnlitFragment

#pragma multi_compile _ SKINNED_SPRITE
#pragma multi_compile_fragment _ DEBUG_DISPLAY

struct Attributes
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* [14 / Unity 2022.2](whats-new-14.md)
* [15 / Unity 2023.1](whats-new-15.md)
* [16 / Unity 2023.2](whats-new-16.md)
* [17 / Unity 2023.3](whats-new-17.md)
* [17 / Unity 6](whats-new-17.md)
* [Getting Started](GettingStarted.md)
* [Visual Effect Graph Assets](VisualEffectGraphAsset.md)
* [Visual Effect Graph Window](VisualEffectGraphWindow.md)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# What's new in version 17 / Unity 2023.3
# What's new in version 17 / Unity 6

This page contains an overview of new features, improvements, and issues resolved in version 17 of the Visual Effect Graph, embedded in Unity 2023.3.
This page contains an overview of new features, improvements, and issues resolved in version 17 of the Visual Effect Graph, embedded in Unity 6.

## Added

The following is a list of features Unity added to version 17 of the Visual Effect Graph embedded in Unity 2023.3. Each entry includes a summary of the feature and a link to any relevant documentation.
The following is a list of features Unity added to version 17 of the Visual Effect Graph embedded in Unity 6. Each entry includes a summary of the feature and a link to any relevant documentation.

### URP Camera Buffer

Expand Down Expand Up @@ -59,7 +59,7 @@ The [Shortcut Manager](https://docs.unity3d.com/2023.3/Documentation/Manual/Shor

<video src="Images/whatnew_17_BlockBanner.mp4" width="700" height="auto" autoplay="true" loop="true" controls></video>

The following is a list of improvements Unity made to the Visual Effect Graph in version 17, embedded in Unity 2023.3. Each entry includes a summary of the improvement and, if relevant, a link to any documentation.
The following is a list of improvements Unity made to the Visual Effect Graph in version 17, embedded in Unity 6. Each entry includes a summary of the improvement and, if relevant, a link to any documentation.

### Collider Shape Blocks:
[Collider blocks](https://docs.unity3d.com/Packages/[email protected]/manual/Block-CollideWithSphere.html) have been combined so that you can easily switch between shapes. Several options have been added, and stability and accuracy have been greatly improved.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ The list of pages is as follows:
- [14 / Unity 2022.2](whats-new-14.md)
- [15 / Unity 2023.1](whats-new-15.md)
- [16 / Unity 2023.2](whats-new-16.md)
- [17 / Unity 2023.3](whats-new-17.md)
- [17 / Unity 6](whats-new-17.md)

Loading