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,13 +11,20 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public class MaskSpaceInfo {
[DNAFieldAttribute(0, "Mask", "*mask", 272)]
public Mask ptr_mask;
[DNAFieldAttribute(1, "char", "draw_flag", 1)]
public char draw_flag;
[DNAFieldAttribute(2, "char", "draw_type", 1)]
public char draw_type;
[DNAFieldAttribute(3, "char", "overlay_mode", 1)]
public char overlay_mode;
[DNAFieldAttribute(4, "char", "_pad3[1]", 1)]
public char[] _pad3 = new System.Char[1];
[DNAFieldAttribute(5, "float", "blend_factor", 4)]
public float blend_factor;
public MaskSpaceInfo(Mask ptr_mask, char draw_flag, char draw_type, char overlay_mode, char[] _pad3, float blend_factor) {
this.ptr_mask = ptr_mask;