SsaoConstants
csharp
public struct SsaoConstantsThe values of Ssao's uniform block, in C# types.
No guide page documents this yet — the page shows what the code says about itself.
Remarks
Field order follows the shader's declaration order, not the block's byte order — the two differ wherever std140 inserted padding, and the writer knows the difference.
Fields and properties (8)
public Matrix4x4 InverseProjectioninverseProjection at byte 0.
public Matrix4x4 Viewview at byte 64.
public Vector2 ProjectionScaleprojectionScale at byte 128.
public Vector2 TexelSizetexelSize at byte 136.
public float Radiusradius at byte 144.
public float Intensityintensity at byte 148.
public float Fallofffalloff at byte 152.
public const int SizeThe block's size in bytes.
Methods (1)
public readonly void Write(Span<byte> buffer)Writes every value into at its baked offset.