Regenerated all the files
This commit is contained in:
@@ -11,16 +11,26 @@ using System;
|
||||
|
||||
|
||||
namespace BlendFile.DNA {
|
||||
using BlendFile;
|
||||
|
||||
public struct UnitSettings {
|
||||
[DNAFieldAttribute(0, "float", "scale_length", 4)]
|
||||
public float scale_length;
|
||||
[DNAFieldAttribute(1, "char", "system", 1)]
|
||||
public char system;
|
||||
[DNAFieldAttribute(2, "char", "system_rotation", 1)]
|
||||
public char system_rotation;
|
||||
[DNAFieldAttribute(3, "short", "flag", 2)]
|
||||
public short flag;
|
||||
[DNAFieldAttribute(4, "char", "length_unit", 1)]
|
||||
public char length_unit;
|
||||
[DNAFieldAttribute(5, "char", "mass_unit", 1)]
|
||||
public char mass_unit;
|
||||
[DNAFieldAttribute(6, "char", "time_unit", 1)]
|
||||
public char time_unit;
|
||||
[DNAFieldAttribute(7, "char", "temperature_unit", 1)]
|
||||
public char temperature_unit;
|
||||
[DNAFieldAttribute(8, "char", "_pad[4]", 1)]
|
||||
public char[] _pad = new System.Char[4];
|
||||
public UnitSettings(float scale_length, char system, char system_rotation, short flag, char length_unit, char mass_unit, char time_unit, char temperature_unit, char[] _pad) {
|
||||
this.scale_length = scale_length;
|
||||
|
||||
Reference in New Issue
Block a user