Files
BlenderSharp/BlendFile/DNA/ChannelDriver.cs
2025-01-22 02:23:29 +01:00

25 lines
932 B
C#

// 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;
}
}
}