//------------------------------------------------------------------------------ // // This code was generated by a tool. // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //------------------------------------------------------------------------------ using BlendFile.CompatTypes; using System; // Automatically generated by BlenderSharp at 22/01/2025 02:33:14 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; } } }