Files
BlenderSharp/BlendFile/DNA/bPoseChannel_Runtime.cs
Samuele Lorefice 0674e6b136 - Modified DNAClassAttribute to also support usage on structs
- Added auto generation of DNAClass attributes on file generation
- Regenerated all files
2025-01-23 16:15:50 +01:00

55 lines
2.7 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(49, "bPoseChannel_Runtime")]
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;
}
}
}