Added Generation Output

This commit is contained in:
Samuele Lorefice
2025-01-22 02:23:29 +01:00
parent 83b207b799
commit fa78292a67
936 changed files with 31758 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
// Automatically generated by BlenderSharp at 22/01/2025 02:21: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;
}
}
}