Regenerated all the files

This commit is contained in:
Samuele Lorefice
2025-01-22 20:24:55 +01:00
parent 162f888600
commit bf1eb8201c
939 changed files with 10620 additions and 0 deletions

View File

@@ -11,31 +11,56 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public class bTransformConstraint {
[DNAFieldAttribute(0, "Object", "*tar", 1160)]
public Object ptr_tar;
[DNAFieldAttribute(1, "char", "subtarget[64]", 1)]
public char[] subtarget = new System.Char[64];
[DNAFieldAttribute(2, "short", "from", 2)]
public short from;
[DNAFieldAttribute(3, "short", "to", 2)]
public short to;
[DNAFieldAttribute(4, "char", "map[3]", 1)]
public char[] map = new System.Char[3];
[DNAFieldAttribute(5, "char", "expo", 1)]
public char expo;
[DNAFieldAttribute(6, "char", "from_rotation_mode", 1)]
public char from_rotation_mode;
[DNAFieldAttribute(7, "char", "to_euler_order", 1)]
public char to_euler_order;
[DNAFieldAttribute(8, "char", "mix_mode_loc", 1)]
public char mix_mode_loc;
[DNAFieldAttribute(9, "char", "mix_mode_rot", 1)]
public char mix_mode_rot;
[DNAFieldAttribute(10, "char", "mix_mode_scale", 1)]
public char mix_mode_scale;
[DNAFieldAttribute(11, "char", "_pad[3]", 1)]
public char[] _pad = new System.Char[3];
[DNAFieldAttribute(12, "float", "from_min[3]", 4)]
public float[] from_min = new System.Single[3];
[DNAFieldAttribute(13, "float", "from_max[3]", 4)]
public float[] from_max = new System.Single[3];
[DNAFieldAttribute(14, "float", "to_min[3]", 4)]
public float[] to_min = new System.Single[3];
[DNAFieldAttribute(15, "float", "to_max[3]", 4)]
public float[] to_max = new System.Single[3];
[DNAFieldAttribute(16, "float", "from_min_rot[3]", 4)]
public float[] from_min_rot = new System.Single[3];
[DNAFieldAttribute(17, "float", "from_max_rot[3]", 4)]
public float[] from_max_rot = new System.Single[3];
[DNAFieldAttribute(18, "float", "to_min_rot[3]", 4)]
public float[] to_min_rot = new System.Single[3];
[DNAFieldAttribute(19, "float", "to_max_rot[3]", 4)]
public float[] to_max_rot = new System.Single[3];
[DNAFieldAttribute(20, "float", "from_min_scale[3]", 4)]
public float[] from_min_scale = new System.Single[3];
[DNAFieldAttribute(21, "float", "from_max_scale[3]", 4)]
public float[] from_max_scale = new System.Single[3];
[DNAFieldAttribute(22, "float", "to_min_scale[3]", 4)]
public float[] to_min_scale = new System.Single[3];
[DNAFieldAttribute(23, "float", "to_max_scale[3]", 4)]
public float[] to_max_scale = new System.Single[3];
public bTransformConstraint(
Object ptr_tar,