Files
BlenderSharp/BlendFile/DNA/ChannelDriver.cs
2025-03-11 19:12:04 +01:00

56 lines
2.2 KiB
C#

//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
namespace BlendFile.DNA {
using BlendFile;
[DNAClassAttribute(92, "ChannelDriver", 304)]
public class ChannelDriver {
[DNAFieldAttribute(16, "ListBase", 0, "variables", "ListBase", false, 0)]
public ListBase variables;
[DNAArrayAttribute(256, "char", 1, "expression[256]", "System.Char[]", 256, 16)]
public char[] expression = new System.Char[256];
[DNAFieldAttribute(8, "void", 2, "*expr_comp", "void", true, 272)]
public object expr_comp;
[DNAFieldAttribute(8, "ExprPyLike_Parsed", 3, "*expr_simple", "ExprPyLike_Parsed", true, 280)]
public ExprPyLike_Parsed expr_simple;
[DNAFieldAttribute(4, "float", 4, "curval", "float", false, 288)]
public float curval;
[DNAFieldAttribute(4, "float", 5, "influence", "float", false, 292)]
public float influence;
[DNAFieldAttribute(4, "int", 6, "type", "int", false, 296)]
public int type;
[DNAFieldAttribute(4, "int", 7, "flag", "int", false, 300)]
public int flag;
public ChannelDriver() {
this.variables = default;
this.expression = default;
this.expr_comp = default;
this.expr_simple = default;
this.curval = default;
this.influence = default;
this.type = default;
this.flag = default;
}
public ChannelDriver(ListBase variables, char[] expression, object expr_comp, ExprPyLike_Parsed expr_simple, float curval, float influence, int type, int flag) {
this.variables = variables;
this.expression = expression;
this.expr_comp = expr_comp;
this.expr_simple = expr_simple;
this.curval = curval;
this.influence = influence;
this.type = type;
this.flag = flag;
}
}
}