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,27 +11,48 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public class WarpModifierData {
[DNAFieldAttribute(0, "ModifierData", "modifier", 120)]
public ModifierData modifier;
[DNAFieldAttribute(1, "Tex", "*texture", 488)]
public Tex ptr_texture;
[DNAFieldAttribute(2, "Object", "*map_object", 1160)]
public Object ptr_map_object;
[DNAFieldAttribute(3, "char", "map_bone[64]", 1)]
public char[] map_bone = new System.Char[64];
[DNAFieldAttribute(4, "char", "uvlayer_name[68]", 1)]
public char[] uvlayer_name = new System.Char[68];
[DNAFieldAttribute(5, "char", "_pad1[4]", 1)]
public char[] _pad1 = new System.Char[4];
[DNAFieldAttribute(6, "int", "uvlayer_tmp", 4)]
public int uvlayer_tmp;
[DNAFieldAttribute(7, "int", "texmapping", 4)]
public int texmapping;
[DNAFieldAttribute(8, "Object", "*object_from", 1160)]
public Object ptr_object_from;
[DNAFieldAttribute(9, "Object", "*object_to", 1160)]
public Object ptr_object_to;
[DNAFieldAttribute(10, "char", "bone_from[64]", 1)]
public char[] bone_from = new System.Char[64];
[DNAFieldAttribute(11, "char", "bone_to[64]", 1)]
public char[] bone_to = new System.Char[64];
[DNAFieldAttribute(12, "CurveMapping", "*curfalloff", 424)]
public CurveMapping ptr_curfalloff;
[DNAFieldAttribute(13, "char", "defgrp_name[64]", 1)]
public char[] defgrp_name = new System.Char[64];
[DNAFieldAttribute(14, "float", "strength", 4)]
public float strength;
[DNAFieldAttribute(15, "float", "falloff_radius", 4)]
public float falloff_radius;
[DNAFieldAttribute(16, "char", "flag", 1)]
public char flag;
[DNAFieldAttribute(17, "char", "falloff_type", 1)]
public char falloff_type;
[DNAFieldAttribute(18, "char", "_pad2[6]", 1)]
public char[] _pad2 = new System.Char[6];
[DNAFieldAttribute(19, "void", "*_pad3", 0)]
public object ptr__pad3;
public WarpModifierData(
ModifierData modifier,