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,27 +15,27 @@ namespace BlendFile.DNA {
[DNAClassAttribute(501, "CorrectiveSmoothModifierData", 240)]
public class CorrectiveSmoothModifierData {
[DNAFieldAttribute(0, "ModifierData", "modifier", "ModifierData", 120, false)]
[DNAFieldAttribute(0, "ModifierData", "modifier", "ModifierData", 120, false, 0)]
public ModifierData modifier;
[DNAFieldAttribute(2, "int", "bind_coords_num", "int", 4, false)]
[DNAFieldAttribute(2, "int", "bind_coords_num", "int", 4, false, 120)]
public int bind_coords_num;
[DNAFieldAttribute(3, "float", "lambda", "float", 4, false)]
[DNAFieldAttribute(3, "float", "lambda", "float", 4, false, 124)]
public float lambda;
[DNAFieldAttribute(4, "float", "scale", "float", 4, false)]
[DNAFieldAttribute(4, "float", "scale", "float", 4, false, 128)]
public float scale;
[DNAFieldAttribute(5, "short", "repeat", "short", 2, false)]
[DNAFieldAttribute(5, "short", "repeat", "short", 2, false, 132)]
public short repeat;
[DNAFieldAttribute(6, "short", "flag", "short", 2, false)]
[DNAFieldAttribute(6, "short", "flag", "short", 2, false, 134)]
public short flag;
[DNAFieldAttribute(7, "char", "smooth_type", "char", 1, false)]
[DNAFieldAttribute(7, "char", "smooth_type", "char", 1, false, 136)]
public char smooth_type;
[DNAFieldAttribute(8, "char", "rest_source", "char", 1, false)]
[DNAFieldAttribute(8, "char", "rest_source", "char", 1, false, 137)]
public char rest_source;
[DNAFieldAttribute(9, "char", "_pad[6]", "System.Char[]", 6, false)]
[DNAFieldAttribute(9, "char", "_pad[6]", "System.Char[]", 6, false, 138)]
public char[] _pad = new System.Char[6];
[DNAFieldAttribute(10, "char", "defgrp_name[64]", "System.Char[]", 64, false)]
[DNAFieldAttribute(10, "char", "defgrp_name[64]", "System.Char[]", 64, false, 144)]
public char[] defgrp_name = new System.Char[64];
[DNAFieldAttribute(11, "CorrectiveSmoothDeltaCache", "delta_cache", "CorrectiveSmoothDeltaCache", 32, false)]
[DNAFieldAttribute(11, "CorrectiveSmoothDeltaCache", "delta_cache", "CorrectiveSmoothDeltaCache", 32, false, 208)]
public CorrectiveSmoothDeltaCache delta_cache;
public CorrectiveSmoothModifierData() {
this.modifier = default;