Files
BlenderSharp/BlendFile/DNA/VolumeRender.cs
Samuele Lorefice 0674e6b136 - Modified DNAClassAttribute to also support usage on structs
- Added auto generation of DNAClass attributes on file generation
- Regenerated all files
2025-01-23 16:15:50 +01:00

34 lines
1.1 KiB
C#

//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
namespace BlendFile.DNA {
using BlendFile;
[DNAClassAttribute(1039, "VolumeRender")]
public struct VolumeRender {
[DNAFieldAttribute(0, "int", "precision", 4)]
public int precision;
[DNAFieldAttribute(1, "int", "space", 4)]
public int space;
[DNAFieldAttribute(2, "float", "step_size", 4)]
public float step_size;
[DNAFieldAttribute(3, "float", "clipping", 4)]
public float clipping;
public VolumeRender(int precision, int space, float step_size, float clipping) {
this.precision = precision;
this.space = space;
this.step_size = step_size;
this.clipping = clipping;
}
}
}