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,15 +11,24 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public class ChannelDriver {
[DNAFieldAttribute(0, "ListBase", "variables", 16)]
public ListBase variables;
[DNAFieldAttribute(1, "char", "expression[256]", 1)]
public char[] expression = new System.Char[256];
[DNAFieldAttribute(2, "void", "*expr_comp", 0)]
public object ptr_expr_comp;
[DNAFieldAttribute(3, "ExprPyLike_Parsed", "*expr_simple", 0)]
public ExprPyLike_Parsed ptr_expr_simple;
[DNAFieldAttribute(4, "float", "curval", 4)]
public float curval;
[DNAFieldAttribute(5, "float", "influence", 4)]
public float influence;
[DNAFieldAttribute(6, "int", "type", 4)]
public int type;
[DNAFieldAttribute(7, "int", "flag", 4)]
public int flag;
public ChannelDriver(ListBase variables, char[] expression, object ptr_expr_comp, ExprPyLike_Parsed ptr_expr_simple, float curval, float influence, int type, int flag) {
this.variables = variables;