//------------------------------------------------------------------------------ // // 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 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; } } }