Regenerated codefiles
This commit is contained in:
@@ -13,34 +13,30 @@ using System;
|
||||
namespace BlendFile.DNA {
|
||||
using BlendFile;
|
||||
|
||||
[DNAClassAttribute(20, "IDPropertyUIDataFloat", 80)]
|
||||
[DNAClassAttribute(20, "IDPropertyUIDataFloat", 68)]
|
||||
public class IDPropertyUIDataFloat {
|
||||
[DNAFieldAttribute(0, "IDPropertyUIData", "base", "IDPropertyUIData", 16, false, 0)]
|
||||
[DNAFieldAttribute(16, "IDPropertyUIData", 0, "base", "IDPropertyUIData", false, 0)]
|
||||
public IDPropertyUIData @base;
|
||||
[DNAFieldAttribute(1, "double", "*default_array", "double", 8, true, 16)]
|
||||
public double ptr_default_array;
|
||||
[DNAFieldAttribute(2, "int", "default_array_len", "int", 4, false, 24)]
|
||||
public int default_array_len;
|
||||
[DNAFieldAttribute(3, "char", "_pad[4]", "System.Char[]", 4, false, 28)]
|
||||
[DNAFieldAttribute(4, "char", 3, "_pad[4]", "System.Char[]", false, 16)]
|
||||
public char[] _pad = new System.Char[4];
|
||||
[DNAFieldAttribute(4, "float", "step", "float", 4, false, 32)]
|
||||
[DNAFieldAttribute(4, "float", 4, "step", "float", false, 20)]
|
||||
public float step;
|
||||
[DNAFieldAttribute(5, "int", "precision", "int", 4, false, 36)]
|
||||
[DNAFieldAttribute(4, "int", 5, "precision", "int", false, 24)]
|
||||
public int precision;
|
||||
[DNAFieldAttribute(6, "double", "min", "double", 8, false, 40)]
|
||||
[DNAFieldAttribute(8, "double", 6, "min", "double", false, 28)]
|
||||
public double min;
|
||||
[DNAFieldAttribute(7, "double", "max", "double", 8, false, 48)]
|
||||
[DNAFieldAttribute(8, "double", 7, "max", "double", false, 36)]
|
||||
public double max;
|
||||
[DNAFieldAttribute(8, "double", "soft_min", "double", 8, false, 56)]
|
||||
[DNAFieldAttribute(8, "double", 8, "soft_min", "double", false, 44)]
|
||||
public double soft_min;
|
||||
[DNAFieldAttribute(9, "double", "soft_max", "double", 8, false, 64)]
|
||||
[DNAFieldAttribute(8, "double", 9, "soft_max", "double", false, 52)]
|
||||
public double soft_max;
|
||||
[DNAFieldAttribute(10, "double", "default_value", "double", 8, false, 72)]
|
||||
[DNAFieldAttribute(8, "double", 10, "default_value", "double", false, 60)]
|
||||
public double default_value;
|
||||
[DNAListAttribute(8, "double", "*default_array", 1, "double", "default_array_len", 2, 68)]
|
||||
public System.Collections.Generic.List<double> default_array;
|
||||
public IDPropertyUIDataFloat() {
|
||||
this.@base = default;
|
||||
this.ptr_default_array = default;
|
||||
this.default_array_len = default;
|
||||
this._pad = default;
|
||||
this.step = default;
|
||||
this.precision = default;
|
||||
@@ -49,11 +45,10 @@ namespace BlendFile.DNA {
|
||||
this.soft_min = default;
|
||||
this.soft_max = default;
|
||||
this.default_value = default;
|
||||
this.default_array = default;
|
||||
}
|
||||
public IDPropertyUIDataFloat(IDPropertyUIData @base, double ptr_default_array, int default_array_len, char[] _pad, float step, int precision, double min, double max, double soft_min, double soft_max, double default_value) {
|
||||
public IDPropertyUIDataFloat(IDPropertyUIData @base, char[] _pad, float step, int precision, double min, double max, double soft_min, double soft_max, double default_value, System.Collections.Generic.List<double> default_array) {
|
||||
this.@base = @base;
|
||||
this.ptr_default_array = ptr_default_array;
|
||||
this.default_array_len = default_array_len;
|
||||
this._pad = _pad;
|
||||
this.step = step;
|
||||
this.precision = precision;
|
||||
@@ -62,6 +57,7 @@ namespace BlendFile.DNA {
|
||||
this.soft_min = soft_min;
|
||||
this.soft_max = soft_max;
|
||||
this.default_value = default_value;
|
||||
this.default_array = default_array;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user