Editor/UpgradedShaderGraph/Nodes/BaseNodes/Camera.cs

Editor shader graph node definitions for camera-related inputs. Defines Camera node outputs (world position, direction, near/far planes) and Depth and Linear Depth nodes that sample depth textures using UV input or default position coordinates.

Reflection

namespace Editor.ShaderGraphExtras.Nodes;
/// <summary>
/// Camera position and shit
/// </summary>
[Title( "Camera" ), Category( "Variables" ), Icon( "photo_camera" )]
public sealed class Camera : ShaderNode
{
	[Output( typeof( Vector3 ) ), Title( "Position" )]
	[Hide]
	public static NodeResult.Func WorldPosition => ( GraphCompiler compiler ) => new( 3, "g_vCameraPositionWs" );

	[Output( typeof( Vector3 ) )]
	[Hide]
	public static NodeResult.Func Direction => ( GraphCompiler compiler ) => new( 3, "g_vCameraDirWs" );

	[Output( typeof( float ) )]
	[Hide]
	public static NodeResult.Func NearPlane => ( GraphCompiler compiler ) => new( 1, "g_flNearPlane" );

	[Output( typeof( float ) )]
	[Hide]
	public static NodeResult.Func FarPlane => ( GraphCompiler compiler ) => new( 1, "g_flFarPlane" );
}

/// <summary>
/// Sample depth texture
/// </summary>
[Title( "Depth" ), Category( "Camera" )]
public sealed class Depth : ShaderNode
{
	[Input( typeof( Vector2 ) ), Hide]
	public NodeInput UV { get; set; }

	[Output( typeof( float ) ), Hide]
	public NodeResult.Func Out => ( GraphCompiler compiler ) =>
	{
		var result = UV.IsValid() ? compiler.Result( UV ).Cast( 2 ) :
			compiler.IsVs ? "i.vPositionPs.xy" : "i.vPositionSs.xy";

		return new NodeResult( 1, $"Depth::Get( {result} )" );
	};
}

/// <summary>
/// Sample linear depth, which is absolute coordinates away from the camera
/// </summary>
[Title( "Linear Depth" ), Category( "Camera" )]
public sealed class LinearDepth : ShaderNode
{
	[Input( typeof( Vector2 ) ), Hide]
	public NodeInput UV { get; set; }

	[Output( typeof( float ) ), Hide]
	public NodeResult.Func Out => ( GraphCompiler compiler ) =>
	{
		var result = UV.IsValid() ? compiler.Result( UV ).Cast( 2 ) :
			compiler.IsVs ? "i.vPositionPs.xy" : "i.vPositionSs.xy";

		return new NodeResult( 1, $"Depth::GetLinear( {result} )" );
	};
}