Added Generation Output

This commit is contained in:
Samuele Lorefice
2025-01-22 02:23:29 +01:00
parent 83b207b799
commit fa78292a67
936 changed files with 31758 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
// Automatically generated by BlenderSharp at 22/01/2025 02:21:57
namespace BlendFile.DNA {
public class ChannelDriver {
public ListBase variables;
public char[] expression = new System.Char[256];
public object ptr_expr_comp;
public ExprPyLike_Parsed ptr_expr_simple;
public float curval;
public float influence;
public int type;
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;
this.expression = expression;
this.ptr_expr_comp = ptr_expr_comp;
this.ptr_expr_simple = ptr_expr_simple;
this.curval = curval;
this.influence = influence;
this.type = type;
this.flag = flag;
}
}
}