Generated new code and added initial data handling

This commit is contained in:
mm00
2025-01-27 19:24:50 +01:00
parent ebcc629feb
commit 146a3992ce
940 changed files with 11560 additions and 9 deletions

View File

@@ -31,6 +31,16 @@ namespace BlendFile.DNA {
public float slice_depth;
[DNAFieldAttribute(7, "int", "_pad[1]", 4)]
public int[] _pad = new System.Int32[1];
public VolumeDisplay() {
this.density = default;
this.wireframe_type = default;
this.wireframe_detail = default;
this.interpolation_method = default;
this.axis_slice_method = default;
this.slice_axis = default;
this.slice_depth = default;
this._pad = default;
}
public VolumeDisplay(float density, int wireframe_type, int wireframe_detail, int interpolation_method, int axis_slice_method, int slice_axis, float slice_depth, int[] _pad) {
this.density = density;
this.wireframe_type = wireframe_type;