Files
BlenderSharp/BlendFile/DNA/ChannelDriver.cs
Samuele Lorefice 0674e6b136 - Modified DNAClassAttribute to also support usage on structs
- Added auto generation of DNAClass attributes on file generation
- Regenerated all files
2025-01-23 16:15:50 +01:00

46 lines
1.7 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")]
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;
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;
}
}
}