31 lines
1.2 KiB
C#
31 lines
1.2 KiB
C#
// 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;
|
|
}
|
|
}
|
|
}
|