Regenerated codefiles

This commit is contained in:
Samuele Lorefice
2025-03-04 18:48:04 +01:00
parent 8bbfb49720
commit 8e4eac0568
937 changed files with 16011 additions and 16181 deletions

View File

@@ -13,34 +13,30 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
[DNAClassAttribute(18, "IDPropertyUIDataInt", 64)]
[DNAClassAttribute(18, "IDPropertyUIDataInt", 52)]
public class IDPropertyUIDataInt {
[DNAFieldAttribute(0, "IDPropertyUIData", "base", "IDPropertyUIData", 16, false, 0)]
[DNAFieldAttribute(16, "IDPropertyUIData", 0, "base", "IDPropertyUIData", false, 0)]
public IDPropertyUIData @base;
[DNAFieldAttribute(1, "int", "*default_array", "int", 8, true, 16)]
public int ptr_default_array;
[DNAFieldAttribute(2, "int", "default_array_len", "int", 4, false, 24)]
public int default_array_len;
[DNAFieldAttribute(3, "int", "min", "int", 4, false, 28)]
[DNAFieldAttribute(4, "int", 3, "min", "int", false, 16)]
public int min;
[DNAFieldAttribute(4, "int", "max", "int", 4, false, 32)]
[DNAFieldAttribute(4, "int", 4, "max", "int", false, 20)]
public int max;
[DNAFieldAttribute(5, "int", "soft_min", "int", 4, false, 36)]
[DNAFieldAttribute(4, "int", 5, "soft_min", "int", false, 24)]
public int soft_min;
[DNAFieldAttribute(6, "int", "soft_max", "int", 4, false, 40)]
[DNAFieldAttribute(4, "int", 6, "soft_max", "int", false, 28)]
public int soft_max;
[DNAFieldAttribute(7, "int", "step", "int", 4, false, 44)]
[DNAFieldAttribute(4, "int", 7, "step", "int", false, 32)]
public int step;
[DNAFieldAttribute(8, "int", "default_value", "int", 4, false, 48)]
[DNAFieldAttribute(4, "int", 8, "default_value", "int", false, 36)]
public int default_value;
[DNAFieldAttribute(9, "int", "enum_items_num", "int", 4, false, 52)]
[DNAFieldAttribute(4, "int", 9, "enum_items_num", "int", false, 40)]
public int enum_items_num;
[DNAFieldAttribute(10, "IDPropertyUIDataEnumItem", "*enum_items", "IDPropertyUIDataEnumItem", 8, true, 56)]
public IDPropertyUIDataEnumItem ptr_enum_items;
[DNAFieldAttribute(8, "IDPropertyUIDataEnumItem", 10, "*enum_items", "IDPropertyUIDataEnumItem", true, 44)]
public IDPropertyUIDataEnumItem enum_items;
[DNAListAttribute(8, "int", "*default_array", 1, "int", "default_array_len", 2, 52)]
public System.Collections.Generic.List<int> default_array;
public IDPropertyUIDataInt() {
this.@base = default;
this.ptr_default_array = default;
this.default_array_len = default;
this.min = default;
this.max = default;
this.soft_min = default;
@@ -48,12 +44,11 @@ namespace BlendFile.DNA {
this.step = default;
this.default_value = default;
this.enum_items_num = default;
this.ptr_enum_items = default;
this.enum_items = default;
this.default_array = default;
}
public IDPropertyUIDataInt(IDPropertyUIData @base, int ptr_default_array, int default_array_len, int min, int max, int soft_min, int soft_max, int step, int default_value, int enum_items_num, IDPropertyUIDataEnumItem ptr_enum_items) {
public IDPropertyUIDataInt(IDPropertyUIData @base, int min, int max, int soft_min, int soft_max, int step, int default_value, int enum_items_num, IDPropertyUIDataEnumItem enum_items, System.Collections.Generic.List<int> default_array) {
this.@base = @base;
this.ptr_default_array = ptr_default_array;
this.default_array_len = default_array_len;
this.min = min;
this.max = max;
this.soft_min = soft_min;
@@ -61,7 +56,8 @@ namespace BlendFile.DNA {
this.step = step;
this.default_value = default_value;
this.enum_items_num = enum_items_num;
this.ptr_enum_items = ptr_enum_items;
this.enum_items = enum_items;
this.default_array = default_array;
}
}
}