Regenerated all the files

This commit is contained in:
Samuele Lorefice
2025-01-22 20:24:55 +01:00
parent 162f888600
commit bf1eb8201c
939 changed files with 10620 additions and 0 deletions

View File

@@ -11,19 +11,32 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public struct uiFontStyle {
[DNAFieldAttribute(0, "short", "uifont_id", 2)]
public short uifont_id;
[DNAFieldAttribute(1, "char", "_pad1[2]", 1)]
public char[] _pad1 = new System.Char[2];
[DNAFieldAttribute(2, "float", "points", 4)]
public float points;
[DNAFieldAttribute(3, "short", "italic", 2)]
public short italic;
[DNAFieldAttribute(4, "short", "bold", 2)]
public short bold;
[DNAFieldAttribute(5, "short", "shadow", 2)]
public short shadow;
[DNAFieldAttribute(6, "short", "shadx", 2)]
public short shadx;
[DNAFieldAttribute(7, "short", "shady", 2)]
public short shady;
[DNAFieldAttribute(8, "char", "_pad0[2]", 1)]
public char[] _pad0 = new System.Char[2];
[DNAFieldAttribute(9, "float", "shadowalpha", 4)]
public float shadowalpha;
[DNAFieldAttribute(10, "float", "shadowcolor", 4)]
public float shadowcolor;
[DNAFieldAttribute(11, "int", "character_weight", 4)]
public int character_weight;
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;