Added memoryOffset value to DNAFieldAttribute, regenerated files.

This commit is contained in:
Samuele Lorefice
2025-02-20 21:00:55 +01:00
parent b171b65aa5
commit f383debd18
939 changed files with 9636 additions and 9605 deletions

View File

@@ -15,21 +15,21 @@ namespace BlendFile.DNA {
[DNAClassAttribute(1038, "VolumeDisplay", 32)]
public struct VolumeDisplay {
[DNAFieldAttribute(0, "float", "density", "float", 4, false)]
[DNAFieldAttribute(0, "float", "density", "float", 4, false, 0)]
public float density;
[DNAFieldAttribute(1, "int", "wireframe_type", "int", 4, false)]
[DNAFieldAttribute(1, "int", "wireframe_type", "int", 4, false, 4)]
public int wireframe_type;
[DNAFieldAttribute(2, "int", "wireframe_detail", "int", 4, false)]
[DNAFieldAttribute(2, "int", "wireframe_detail", "int", 4, false, 8)]
public int wireframe_detail;
[DNAFieldAttribute(3, "int", "interpolation_method", "int", 4, false)]
[DNAFieldAttribute(3, "int", "interpolation_method", "int", 4, false, 12)]
public int interpolation_method;
[DNAFieldAttribute(4, "int", "axis_slice_method", "int", 4, false)]
[DNAFieldAttribute(4, "int", "axis_slice_method", "int", 4, false, 16)]
public int axis_slice_method;
[DNAFieldAttribute(5, "int", "slice_axis", "int", 4, false)]
[DNAFieldAttribute(5, "int", "slice_axis", "int", 4, false, 20)]
public int slice_axis;
[DNAFieldAttribute(6, "float", "slice_depth", "float", 4, false)]
[DNAFieldAttribute(6, "float", "slice_depth", "float", 4, false, 24)]
public float slice_depth;
[DNAFieldAttribute(7, "int", "_pad[1]", "System.Int32[]", 4, false)]
[DNAFieldAttribute(7, "int", "_pad[1]", "System.Int32[]", 4, false, 28)]
public int[] _pad = new System.Int32[1];
public VolumeDisplay() {
this.density = default;