//------------------------------------------------------------------------------ // // This code was generated by a tool. // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //------------------------------------------------------------------------------ using BlendFile.CompatTypes; using System; // Automatically generated by BlenderSharp at 22/01/2025 02:33:14 namespace BlendFile.DNA { public struct VolumeDisplay { public float density; public int wireframe_type; public int wireframe_detail; public int interpolation_method; public int axis_slice_method; public int slice_axis; public float slice_depth; public int[] _pad = new System.Int32[1]; 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; this.wireframe_detail = wireframe_detail; this.interpolation_method = interpolation_method; this.axis_slice_method = axis_slice_method; this.slice_axis = slice_axis; this.slice_depth = slice_depth; this._pad = _pad; } } }