Files
BlenderSharp/BlendFile/DNA/bPythonConstraint.cs
2025-03-12 19:02:40 +01:00

52 lines
1.9 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(174, "bPythonConstraint", 112)]
public class bPythonConstraint {
[DNAFieldAttribute(8, "Text", 0, "*text", "Text", true, 0)]
public Text text;
[DNAFieldAttribute(8, "IDProperty", 1, "*prop", "IDProperty", true, 8)]
public IDProperty prop;
[DNAFieldAttribute(4, "int", 2, "flag", "int", false, 16)]
public int flag;
[DNAFieldAttribute(4, "int", 3, "tarnum", "int", false, 20)]
public int tarnum;
[DNAFieldAttribute(16, "ListBase", 4, "targets", "ListBase", false, 24)]
public ListBase targets;
[DNAFieldAttribute(8, "Object", 5, "*tar", "Object", true, 40)]
public Object tar;
[DNAArrayAttribute(64, "char", 6, "subtarget[64]", "System.Char[]", 64, false, 48)]
public char[] subtarget = new System.Char[64];
public bPythonConstraint() {
this.text = default;
this.prop = default;
this.flag = default;
this.tarnum = default;
this.targets = default;
this.tar = default;
this.subtarget = default;
}
public bPythonConstraint(Text text, IDProperty prop, int flag, int tarnum, ListBase targets, Object tar, char[] subtarget) {
this.text = text;
this.prop = prop;
this.flag = flag;
this.tarnum = tarnum;
this.targets = targets;
this.tar = tar;
this.subtarget = subtarget;
}
}
}