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(925, "WaveShaderFxData", 168)]
public struct WaveShaderFxData {
[DNAFieldAttribute(0, "ShaderFxData", "shaderfx", "ShaderFxData", 104, false)]
[DNAFieldAttribute(0, "ShaderFxData", "shaderfx", "ShaderFxData", 104, false, 0)]
public ShaderFxData shaderfx;
[DNAFieldAttribute(1, "float", "amplitude", "float", 4, false)]
[DNAFieldAttribute(1, "float", "amplitude", "float", 4, false, 104)]
public float amplitude;
[DNAFieldAttribute(2, "float", "period", "float", 4, false)]
[DNAFieldAttribute(2, "float", "period", "float", 4, false, 108)]
public float period;
[DNAFieldAttribute(3, "float", "phase", "float", 4, false)]
[DNAFieldAttribute(3, "float", "phase", "float", 4, false, 112)]
public float phase;
[DNAFieldAttribute(4, "int", "orientation", "int", 4, false)]
[DNAFieldAttribute(4, "int", "orientation", "int", 4, false, 116)]
public int orientation;
[DNAFieldAttribute(5, "int", "flag", "int", 4, false)]
[DNAFieldAttribute(5, "int", "flag", "int", 4, false, 120)]
public int flag;
[DNAFieldAttribute(6, "char", "_pad[4]", "System.Char[]", 4, false)]
[DNAFieldAttribute(6, "char", "_pad[4]", "System.Char[]", 4, false, 124)]
public char[] _pad = new System.Char[4];
[DNAFieldAttribute(7, "ShaderFxData_Runtime", "runtime", "ShaderFxData_Runtime", 40, false)]
[DNAFieldAttribute(7, "ShaderFxData_Runtime", "runtime", "ShaderFxData_Runtime", 40, false, 128)]
public ShaderFxData_Runtime runtime;
public WaveShaderFxData() {
this.shaderfx = default;