//------------------------------------------------------------------------------ // // This code was generated by a tool. // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //------------------------------------------------------------------------------ using BlendFile.CompatTypes; using System; // Automatically generated by BlenderSharp at 01/22/2025 16:57:57 namespace BlendFile.DNA { public class DriverTarget { public ID ptr_id; public char ptr_rna_path; public char[] pchan_name = new System.Char[64]; public short transChan; public char rotation_mode; public char[] _pad = new System.Char[5]; public short flag; public short options; public int idtype; public int context_property; public float fallback_value; public DriverTarget(ID ptr_id, char ptr_rna_path, char[] pchan_name, short transChan, char rotation_mode, char[] _pad, short flag, short options, int idtype, int context_property, float fallback_value) { this.ptr_id = ptr_id; this.ptr_rna_path = ptr_rna_path; this.pchan_name = pchan_name; this.transChan = transChan; this.rotation_mode = rotation_mode; this._pad = _pad; this.flag = flag; this.options = options; this.idtype = idtype; this.context_property = context_property; this.fallback_value = fallback_value; } } }