- Added auto generation of DNAClass attributes on file generation - Regenerated all files
37 lines
1.3 KiB
C#
37 lines
1.3 KiB
C#
//------------------------------------------------------------------------------
|
|
// <auto-generated>
|
|
// This code was generated by a tool.
|
|
//
|
|
// Changes to this file may cause incorrect behavior and will be lost if
|
|
// the code is regenerated.
|
|
// </auto-generated>
|
|
//------------------------------------------------------------------------------
|
|
|
|
using System;
|
|
|
|
|
|
namespace BlendFile.DNA {
|
|
using BlendFile;
|
|
|
|
[DNAClassAttribute(334, "Stereo3dFormat")]
|
|
public struct Stereo3dFormat {
|
|
[DNAFieldAttribute(0, "short", "flag", 2)]
|
|
public short flag;
|
|
[DNAFieldAttribute(1, "char", "display_mode", 1)]
|
|
public char display_mode;
|
|
[DNAFieldAttribute(2, "char", "anaglyph_type", 1)]
|
|
public char anaglyph_type;
|
|
[DNAFieldAttribute(3, "char", "interlace_type", 1)]
|
|
public char interlace_type;
|
|
[DNAFieldAttribute(4, "char", "_pad[3]", 1)]
|
|
public char[] _pad = new System.Char[3];
|
|
public Stereo3dFormat(short flag, char display_mode, char anaglyph_type, char interlace_type, char[] _pad) {
|
|
this.flag = flag;
|
|
this.display_mode = display_mode;
|
|
this.anaglyph_type = anaglyph_type;
|
|
this.interlace_type = interlace_type;
|
|
this._pad = _pad;
|
|
}
|
|
}
|
|
}
|