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,23 +15,23 @@ namespace BlendFile.DNA {
[DNAClassAttribute(914, "ShaderFxData", 104)]
public class ShaderFxData {
[DNAFieldAttribute(0, "ShaderFxData", "*next", "ShaderFxData", 8, true)]
[DNAFieldAttribute(0, "ShaderFxData", "*next", "ShaderFxData", 8, true, 0)]
public ShaderFxData ptr_next;
[DNAFieldAttribute(1, "ShaderFxData", "*prev", "ShaderFxData", 8, true)]
[DNAFieldAttribute(1, "ShaderFxData", "*prev", "ShaderFxData", 8, true, 8)]
public ShaderFxData ptr_prev;
[DNAFieldAttribute(2, "int", "type", "int", 4, false)]
[DNAFieldAttribute(2, "int", "type", "int", 4, false, 16)]
public int type;
[DNAFieldAttribute(3, "int", "mode", "int", 4, false)]
[DNAFieldAttribute(3, "int", "mode", "int", 4, false, 20)]
public int mode;
[DNAFieldAttribute(4, "char", "_pad0[4]", "System.Char[]", 4, false)]
[DNAFieldAttribute(4, "char", "_pad0[4]", "System.Char[]", 4, false, 24)]
public char[] _pad0 = new System.Char[4];
[DNAFieldAttribute(5, "short", "flag", "short", 2, false)]
[DNAFieldAttribute(5, "short", "flag", "short", 2, false, 28)]
public short flag;
[DNAFieldAttribute(6, "short", "ui_expand_flag", "short", 2, false)]
[DNAFieldAttribute(6, "short", "ui_expand_flag", "short", 2, false, 30)]
public short ui_expand_flag;
[DNAFieldAttribute(7, "char", "name[64]", "System.Char[]", 64, false)]
[DNAFieldAttribute(7, "char", "name[64]", "System.Char[]", 64, false, 32)]
public char[] name = new System.Char[64];
[DNAFieldAttribute(8, "char", "*error", "char", 8, true)]
[DNAFieldAttribute(8, "char", "*error", "char", 8, true, 96)]
public char ptr_error;
public ShaderFxData() {
this.ptr_next = default;