Generated new code and added initial data handling

This commit is contained in:
mm00
2025-01-27 19:24:50 +01:00
parent ebcc629feb
commit 146a3992ce
940 changed files with 11560 additions and 9 deletions

View File

@@ -53,6 +53,27 @@ namespace BlendFile.DNA {
public char align_y;
[DNAFieldAttribute(18, "char", "_pad[5]", 1)]
public char[] _pad = new System.Char[5];
public TextVars() {
this.text = default;
this.ptr_text_font = default;
this.text_blf_id = default;
this.text_size = default;
this.color = default;
this.shadow_color = default;
this.box_color = default;
this.outline_color = default;
this.loc = default;
this.wrap_width = default;
this.box_margin = default;
this.shadow_angle = default;
this.shadow_offset = default;
this.shadow_blur = default;
this.outline_width = default;
this.flag = default;
this.align = default;
this.align_y = default;
this._pad = default;
}
public TextVars(
char[] text,
VFont ptr_text_font,