- Added auto generation of DNAClass attributes on file generation - Regenerated all files
40 lines
1.4 KiB
C#
40 lines
1.4 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(203, "bObjectSolverConstraint")]
|
|
public class bObjectSolverConstraint {
|
|
[DNAFieldAttribute(0, "MovieClip", "*clip", 2568)]
|
|
public MovieClip ptr_clip;
|
|
[DNAFieldAttribute(1, "int", "flag", 4)]
|
|
public int flag;
|
|
[DNAFieldAttribute(2, "char", "_pad[4]", 1)]
|
|
public char[] _pad = new System.Char[4];
|
|
[DNAFieldAttribute(3, "char", "object[64]", 1)]
|
|
public char[] @object = new System.Char[64];
|
|
[DNAFieldAttribute(4, "float", "invmat[4][4]", 4)]
|
|
public float[,] invmat = new System.Single[4,4];
|
|
[DNAFieldAttribute(5, "Object", "*camera", 1160)]
|
|
public Object ptr_camera;
|
|
public bObjectSolverConstraint(MovieClip ptr_clip, int flag, char[] _pad, char[] @object, float[,] invmat, Object ptr_camera) {
|
|
this.ptr_clip = ptr_clip;
|
|
this.flag = flag;
|
|
this._pad = _pad;
|
|
this.@object = @object;
|
|
this.invmat = invmat;
|
|
this.ptr_camera = ptr_camera;
|
|
}
|
|
}
|
|
}
|