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

@@ -39,6 +39,20 @@ namespace BlendFile.DNA {
public float shadowcolor;
[DNAFieldAttribute(11, "int", "character_weight", 4)]
public int character_weight;
public uiFontStyle() {
this.uifont_id = default;
this._pad1 = default;
this.points = default;
this.italic = default;
this.bold = default;
this.shadow = default;
this.shadx = default;
this.shady = default;
this._pad0 = default;
this.shadowalpha = default;
this.shadowcolor = default;
this.character_weight = default;
}
public uiFontStyle(short uifont_id, char[] _pad1, float points, short italic, short bold, short shadow, short shadx, short shady, char[] _pad0, float shadowalpha, float shadowcolor, int character_weight) {
this.uifont_id = uifont_id;
this._pad1 = _pad1;