54 lines
2.6 KiB
C#
54 lines
2.6 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 bPoseChannel_Runtime {
|
|
[DNAFieldAttribute(0, "SessionUID", "session_uid", 8)]
|
|
public SessionUID session_uid;
|
|
[DNAFieldAttribute(1, "DualQuat", "deform_dual_quat", 100)]
|
|
public DualQuat deform_dual_quat;
|
|
[DNAFieldAttribute(2, "int", "bbone_segments", 4)]
|
|
public int bbone_segments;
|
|
[DNAFieldAttribute(3, "float", "bbone_arc_length_reciprocal", 4)]
|
|
public float bbone_arc_length_reciprocal;
|
|
[DNAFieldAttribute(4, "char", "_pad1[4]", 1)]
|
|
public char[] _pad1 = new System.Char[4];
|
|
[DNAFieldAttribute(5, "Mat4", "*bbone_rest_mats", 0)]
|
|
public Mat4 ptr_bbone_rest_mats;
|
|
[DNAFieldAttribute(6, "Mat4", "*bbone_pose_mats", 0)]
|
|
public Mat4 ptr_bbone_pose_mats;
|
|
[DNAFieldAttribute(7, "Mat4", "*bbone_deform_mats", 0)]
|
|
public Mat4 ptr_bbone_deform_mats;
|
|
[DNAFieldAttribute(8, "DualQuat", "*bbone_dual_quats", 100)]
|
|
public DualQuat ptr_bbone_dual_quats;
|
|
[DNAFieldAttribute(9, "bPoseChannel_BBoneSegmentBoundary", "*bbone_segment_boundaries", 32)]
|
|
public bPoseChannel_BBoneSegmentBoundary ptr_bbone_segment_boundaries;
|
|
[DNAFieldAttribute(10, "void", "*_pad", 0)]
|
|
public object ptr__pad;
|
|
public bPoseChannel_Runtime(SessionUID session_uid, DualQuat deform_dual_quat, int bbone_segments, float bbone_arc_length_reciprocal, char[] _pad1, Mat4 ptr_bbone_rest_mats, Mat4 ptr_bbone_pose_mats, Mat4 ptr_bbone_deform_mats, DualQuat ptr_bbone_dual_quats, bPoseChannel_BBoneSegmentBoundary ptr_bbone_segment_boundaries, object ptr__pad) {
|
|
this.session_uid = session_uid;
|
|
this.deform_dual_quat = deform_dual_quat;
|
|
this.bbone_segments = bbone_segments;
|
|
this.bbone_arc_length_reciprocal = bbone_arc_length_reciprocal;
|
|
this._pad1 = _pad1;
|
|
this.ptr_bbone_rest_mats = ptr_bbone_rest_mats;
|
|
this.ptr_bbone_pose_mats = ptr_bbone_pose_mats;
|
|
this.ptr_bbone_deform_mats = ptr_bbone_deform_mats;
|
|
this.ptr_bbone_dual_quats = ptr_bbone_dual_quats;
|
|
this.ptr_bbone_segment_boundaries = ptr_bbone_segment_boundaries;
|
|
this.ptr__pad = ptr__pad;
|
|
}
|
|
}
|
|
}
|