Regenerated all the files

This commit is contained in:
Samuele Lorefice
2025-01-22 20:24:55 +01:00
parent 162f888600
commit bf1eb8201c
939 changed files with 10620 additions and 0 deletions

View File

@@ -11,11 +11,16 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public class bNodeTreeInterface {
[DNAFieldAttribute(0, "bNodeTreeInterfacePanel", "root_panel", 48)]
public bNodeTreeInterfacePanel root_panel;
[DNAFieldAttribute(1, "int", "active_index", 4)]
public int active_index;
[DNAFieldAttribute(2, "int", "next_uid", 4)]
public int next_uid;
[DNAFieldAttribute(3, "bNodeTreeInterfaceRuntimeHandle", "*runtime", 0)]
public bNodeTreeInterfaceRuntimeHandle ptr_runtime;
public bNodeTreeInterface(bNodeTreeInterfacePanel root_panel, int active_index, int next_uid, bNodeTreeInterfaceRuntimeHandle ptr_runtime) {
this.root_panel = root_panel;