Added memoryOffset value to DNAFieldAttribute, regenerated files.

This commit is contained in:
Samuele Lorefice
2025-02-20 21:00:55 +01:00
parent b171b65aa5
commit f383debd18
939 changed files with 9636 additions and 9605 deletions

View File

@@ -15,35 +15,35 @@ namespace BlendFile.DNA {
[DNAClassAttribute(512, "SurfaceDeformModifierData", 312)]
public class SurfaceDeformModifierData {
[DNAFieldAttribute(0, "ModifierData", "modifier", "ModifierData", 120, false)]
[DNAFieldAttribute(0, "ModifierData", "modifier", "ModifierData", 120, false, 0)]
public ModifierData modifier;
[DNAFieldAttribute(1, "Depsgraph", "*depsgraph", "Depsgraph", 8, true)]
[DNAFieldAttribute(1, "Depsgraph", "*depsgraph", "Depsgraph", 8, true, 120)]
public Depsgraph ptr_depsgraph;
[DNAFieldAttribute(2, "Object", "*target", "Object", 8, true)]
[DNAFieldAttribute(2, "Object", "*target", "Object", 8, true, 128)]
public Object ptr_target;
[DNAFieldAttribute(3, "SDefVert", "*verts", "SDefVert", 8, true)]
[DNAFieldAttribute(3, "SDefVert", "*verts", "SDefVert", 8, true, 136)]
public SDefVert ptr_verts;
[DNAFieldAttribute(4, "void", "*_pad1", "void", 8, true)]
[DNAFieldAttribute(4, "void", "*_pad1", "void", 8, true, 144)]
public object ptr__pad1;
[DNAFieldAttribute(5, "float", "falloff", "float", 4, false)]
[DNAFieldAttribute(5, "float", "falloff", "float", 4, false, 152)]
public float falloff;
[DNAFieldAttribute(6, "int", "num_mesh_verts", "int", 4, false)]
[DNAFieldAttribute(6, "int", "num_mesh_verts", "int", 4, false, 156)]
public int num_mesh_verts;
[DNAFieldAttribute(7, "int", "numverts", "int", 4, false)]
[DNAFieldAttribute(7, "int", "numverts", "int", 4, false, 160)]
public int numverts;
[DNAFieldAttribute(8, "int", "target_verts_num", "int", 4, false)]
[DNAFieldAttribute(8, "int", "target_verts_num", "int", 4, false, 164)]
public int target_verts_num;
[DNAFieldAttribute(9, "int", "numpoly", "int", 4, false)]
[DNAFieldAttribute(9, "int", "numpoly", "int", 4, false, 168)]
public int numpoly;
[DNAFieldAttribute(10, "int", "flags", "int", 4, false)]
[DNAFieldAttribute(10, "int", "flags", "int", 4, false, 172)]
public int flags;
[DNAFieldAttribute(11, "float", "mat[4][4]", "System.Single[,]", 64, false)]
[DNAFieldAttribute(11, "float", "mat[4][4]", "System.Single[,]", 64, false, 176)]
public float[,] mat = new System.Single[4,4];
[DNAFieldAttribute(12, "float", "strength", "float", 4, false)]
[DNAFieldAttribute(12, "float", "strength", "float", 4, false, 240)]
public float strength;
[DNAFieldAttribute(13, "char", "defgrp_name[64]", "System.Char[]", 64, false)]
[DNAFieldAttribute(13, "char", "defgrp_name[64]", "System.Char[]", 64, false, 244)]
public char[] defgrp_name = new System.Char[64];
[DNAFieldAttribute(14, "int", "_pad2", "int", 4, false)]
[DNAFieldAttribute(14, "int", "_pad2", "int", 4, false, 308)]
public int _pad2;
public SurfaceDeformModifierData() {
this.modifier = default;