Files
com.misaki.ao-volume/Runtime/Shader/Includes/VolumeData.cs.hlsl
Misaki ef2bdeac98 Added frustum culling;
Added geometry data;

Changed name of VolumeObject to AoVolume;

Removed the capsule type in VolumeType, all volumes are box volume now;
2025-02-19 23:20:38 +09:00

21 lines
451 B
HLSL

//
// This file was automatically generated. Please don't edit by hand. Execute Editor command [ Edit > Rendering > Generate Shader Includes ] instead
//
#ifndef VOLUMEDATA_CS_HLSL
#define VOLUMEDATA_CS_HLSL
// Generated from Misaki.AoVolume.VolumeData
// PackingRules = Exact
struct VolumeData
{
float4x4 worldMatrix;
float4x4 inverseWorldMatrix;
float3 size;
float intensity;
float falloff;
float normalFalloff;
};
#endif