Files
BlenderSharp/BlendFile/DNA/VolumeRender.cs
2025-03-04 18:48:04 +01:00

40 lines
1.3 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", 16)]
public class VolumeRender {
[DNAFieldAttribute(4, "int", 0, "precision", "int", false, 0)]
public int precision;
[DNAFieldAttribute(4, "int", 1, "space", "int", false, 4)]
public int space;
[DNAFieldAttribute(4, "float", 2, "step_size", "float", false, 8)]
public float step_size;
[DNAFieldAttribute(4, "float", 3, "clipping", "float", false, 12)]
public float clipping;
public VolumeRender() {
this.precision = default;
this.space = default;
this.step_size = default;
this.clipping = default;
}
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;
}
}
}