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,21 +15,21 @@ namespace BlendFile.DNA {
[DNAClassAttribute(500, "CorrectiveSmoothDeltaCache", 24)]
public class CorrectiveSmoothDeltaCache {
[DNAFieldAttribute(1, "int", "deltas_num", "int", 4, false)]
[DNAFieldAttribute(1, "int", "deltas_num", "int", 4, false, 0)]
public int deltas_num;
[DNAFieldAttribute(2, "float", "lambda", "float", 4, false)]
[DNAFieldAttribute(2, "float", "lambda", "float", 4, false, 4)]
public float lambda;
[DNAFieldAttribute(3, "float", "scale", "float", 4, false)]
[DNAFieldAttribute(3, "float", "scale", "float", 4, false, 8)]
public float scale;
[DNAFieldAttribute(4, "short", "repeat", "short", 2, false)]
[DNAFieldAttribute(4, "short", "repeat", "short", 2, false, 12)]
public short repeat;
[DNAFieldAttribute(5, "short", "flag", "short", 2, false)]
[DNAFieldAttribute(5, "short", "flag", "short", 2, false, 14)]
public short flag;
[DNAFieldAttribute(6, "char", "smooth_type", "char", 1, false)]
[DNAFieldAttribute(6, "char", "smooth_type", "char", 1, false, 16)]
public char smooth_type;
[DNAFieldAttribute(7, "char", "rest_source", "char", 1, false)]
[DNAFieldAttribute(7, "char", "rest_source", "char", 1, false, 17)]
public char rest_source;
[DNAFieldAttribute(8, "char", "_pad[6]", "System.Char[]", 6, false)]
[DNAFieldAttribute(8, "char", "_pad[6]", "System.Char[]", 6, false, 18)]
public char[] _pad = new System.Char[6];
public CorrectiveSmoothDeltaCache() {
this.deltas_num = default;