Files
BlenderSharp/BlendFile/DNA/bPythonConstraint.cs
2025-01-22 20:24:55 +01:00

42 lines
1.5 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;
public class bPythonConstraint {
[DNAFieldAttribute(0, "Text", "*text", 280)]
public Text ptr_text;
[DNAFieldAttribute(1, "IDProperty", "*prop", 136)]
public IDProperty ptr_prop;
[DNAFieldAttribute(2, "int", "flag", 4)]
public int flag;
[DNAFieldAttribute(3, "int", "tarnum", 4)]
public int tarnum;
[DNAFieldAttribute(4, "ListBase", "targets", 16)]
public ListBase targets;
[DNAFieldAttribute(5, "Object", "*tar", 1160)]
public Object ptr_tar;
[DNAFieldAttribute(6, "char", "subtarget[64]", 1)]
public char[] subtarget = new System.Char[64];
public bPythonConstraint(Text ptr_text, IDProperty ptr_prop, int flag, int tarnum, ListBase targets, Object ptr_tar, char[] subtarget) {
this.ptr_text = ptr_text;
this.ptr_prop = ptr_prop;
this.flag = flag;
this.tarnum = tarnum;
this.targets = targets;
this.ptr_tar = ptr_tar;
this.subtarget = subtarget;
}
}
}