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 WeightVGMixModifierData {
[DNAFieldAttribute(0, "ModifierData", "modifier", 120)]
public ModifierData modifier;
[DNAFieldAttribute(1, "char", "defgrp_name_a[64]", 1)]
public char[] defgrp_name_a = new System.Char[64];
[DNAFieldAttribute(2, "char", "defgrp_name_b[64]", 1)]
public char[] defgrp_name_b = new System.Char[64];
[DNAFieldAttribute(3, "float", "default_weight_a", 4)]
public float default_weight_a;
[DNAFieldAttribute(4, "float", "default_weight_b", 4)]
public float default_weight_b;
[DNAFieldAttribute(5, "char", "mix_mode", 1)]
public char mix_mode;
[DNAFieldAttribute(6, "char", "mix_set", 1)]
public char mix_set;
[DNAFieldAttribute(7, "char", "_pad0[6]", 1)]
public char[] _pad0 = new System.Char[6];
[DNAFieldAttribute(8, "float", "mask_constant", 4)]
public float mask_constant;
[DNAFieldAttribute(9, "char", "mask_defgrp_name[64]", 1)]
public char[] mask_defgrp_name = new System.Char[64];
[DNAFieldAttribute(10, "int", "mask_tex_use_channel", 4)]
public int mask_tex_use_channel;
[DNAFieldAttribute(11, "Tex", "*mask_texture", 488)]
public Tex ptr_mask_texture;
[DNAFieldAttribute(12, "Object", "*mask_tex_map_obj", 1160)]
public Object ptr_mask_tex_map_obj;
[DNAFieldAttribute(13, "char", "mask_tex_map_bone[64]", 1)]
public char[] mask_tex_map_bone = new System.Char[64];
[DNAFieldAttribute(14, "int", "mask_tex_mapping", 4)]
public int mask_tex_mapping;
[DNAFieldAttribute(15, "char", "mask_tex_uvlayer_name[68]", 1)]
public char[] mask_tex_uvlayer_name = new System.Char[68];
[DNAFieldAttribute(16, "char", "_pad1[4]", 1)]
public char[] _pad1 = new System.Char[4];
[DNAFieldAttribute(17, "char", "flag", 1)]
public char flag;
[DNAFieldAttribute(18, "char", "_pad2[3]", 1)]
public char[] _pad2 = new System.Char[3];
public WeightVGMixModifierData(
ModifierData modifier,