//------------------------------------------------------------------------------ // // 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; public struct NodeBoxMask { [DNAFieldAttribute(0, "float", "x", 4)] public float x; [DNAFieldAttribute(1, "float", "y", 4)] public float y; [DNAFieldAttribute(2, "float", "rotation", 4)] public float rotation; [DNAFieldAttribute(3, "float", "height", 4)] public float height; [DNAFieldAttribute(4, "float", "width", 4)] public float width; [DNAFieldAttribute(5, "char", "_pad[4]", 1)] public char[] _pad = new System.Char[4]; public NodeBoxMask(float x, float y, float rotation, float height, float width, char[] _pad) { this.x = x; this.y = y; this.rotation = rotation; this.height = height; this.width = width; this._pad = _pad; } } }