Files
BlenderSharp/BlendFile/DNA/bArmature_Runtime.cs

28 lines
978 B
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 BlendFile.CompatTypes;
using System;
// Automatically generated by BlenderSharp at 22/01/2025 02:33:14
namespace BlendFile.DNA {
public class bArmature_Runtime {
public int active_collection_index;
public uchar[] _pad0 = new uchar[4];
public BoneCollection ptr_active_collection;
public bArmature_Runtime(int active_collection_index, uchar[] _pad0, BoneCollection ptr_active_collection) {
this.active_collection_index = active_collection_index;
this._pad0 = _pad0;
this.ptr_active_collection = ptr_active_collection;
}
}
}