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,26 +11,46 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public class TextVars {
[DNAFieldAttribute(0, "char", "text[512]", 1)]
public char[] text = new System.Char[512];
[DNAFieldAttribute(1, "VFont", "*text_font", 1256)]
public VFont ptr_text_font;
[DNAFieldAttribute(2, "int", "text_blf_id", 4)]
public int text_blf_id;
[DNAFieldAttribute(3, "float", "text_size", 4)]
public float text_size;
[DNAFieldAttribute(4, "float", "color[4]", 4)]
public float[] color = new System.Single[4];
[DNAFieldAttribute(5, "float", "shadow_color[4]", 4)]
public float[] shadow_color = new System.Single[4];
[DNAFieldAttribute(6, "float", "box_color[4]", 4)]
public float[] box_color = new System.Single[4];
[DNAFieldAttribute(7, "float", "outline_color[4]", 4)]
public float[] outline_color = new System.Single[4];
[DNAFieldAttribute(8, "float", "loc[2]", 4)]
public float[] loc = new System.Single[2];
[DNAFieldAttribute(9, "float", "wrap_width", 4)]
public float wrap_width;
[DNAFieldAttribute(10, "float", "box_margin", 4)]
public float box_margin;
[DNAFieldAttribute(11, "float", "shadow_angle", 4)]
public float shadow_angle;
[DNAFieldAttribute(12, "float", "shadow_offset", 4)]
public float shadow_offset;
[DNAFieldAttribute(13, "float", "shadow_blur", 4)]
public float shadow_blur;
[DNAFieldAttribute(14, "float", "outline_width", 4)]
public float outline_width;
[DNAFieldAttribute(15, "char", "flag", 1)]
public char flag;
[DNAFieldAttribute(16, "char", "align", 1)]
public char align;
[DNAFieldAttribute(17, "char", "align_y", 1)]
public char align_y;
[DNAFieldAttribute(18, "char", "_pad[5]", 1)]
public char[] _pad = new System.Char[5];
public TextVars(
char[] text,