LightProbeInfo.generated.cs 406 B

1234567891011121314151617181920
  1. using System;
  2. using System.Runtime.CompilerServices;
  3. using System.Runtime.InteropServices;
  4. namespace BansheeEngine
  5. {
  6. /** @addtogroup Rendering
  7. * @{
  8. */
  9. /// <summary>Information about a single probe in the light probe volume.</summary>
  10. [StructLayout(LayoutKind.Sequential), SerializeObject]
  11. public partial struct LightProbeInfo
  12. {
  13. public uint handle;
  14. public Vector3 position;
  15. }
  16. /** @} */
  17. }