Added count field type argument to the list attribute

This commit is contained in:
Samuele Lorefice
2025-03-06 19:41:37 +01:00
parent e11cd54096
commit bfa185c8e4
12 changed files with 59 additions and 28 deletions

View File

@@ -13,7 +13,7 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
[DNAClassAttribute(18, "IDPropertyUIDataInt", 60)]
[DNAClassAttribute(18, "IDPropertyUIDataInt", 64)]
public class IDPropertyUIDataInt {
[DNAFieldAttribute(16, "IDPropertyUIData", 0, "base", "IDPropertyUIData", false, 0)]
public IDPropertyUIData @base;
@@ -33,7 +33,7 @@ namespace BlendFile.DNA {
public int enum_items_num;
[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, 0)]
[DNAListAttribute(8, "int", "*default_array", 1, "int", "int", "default_array_len", 2, 52, 0)]
public System.Collections.Generic.List<int> default_array;
public IDPropertyUIDataInt() {
this.@base = default;