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,37 +15,37 @@ namespace BlendFile.DNA {
[DNAClassAttribute(608, "NodeBlurData", 40)]
public struct NodeBlurData {
[DNAFieldAttribute(0, "short", "sizex", "short", 2, false)]
[DNAFieldAttribute(0, "short", "sizex", "short", 2, false, 0)]
public short sizex;
[DNAFieldAttribute(1, "short", "sizey", "short", 2, false)]
[DNAFieldAttribute(1, "short", "sizey", "short", 2, false, 2)]
public short sizey;
[DNAFieldAttribute(2, "short", "samples", "short", 2, false)]
[DNAFieldAttribute(2, "short", "samples", "short", 2, false, 4)]
public short samples;
[DNAFieldAttribute(3, "short", "maxspeed", "short", 2, false)]
[DNAFieldAttribute(3, "short", "maxspeed", "short", 2, false, 6)]
public short maxspeed;
[DNAFieldAttribute(4, "short", "minspeed", "short", 2, false)]
[DNAFieldAttribute(4, "short", "minspeed", "short", 2, false, 8)]
public short minspeed;
[DNAFieldAttribute(5, "short", "relative", "short", 2, false)]
[DNAFieldAttribute(5, "short", "relative", "short", 2, false, 10)]
public short relative;
[DNAFieldAttribute(6, "short", "aspect", "short", 2, false)]
[DNAFieldAttribute(6, "short", "aspect", "short", 2, false, 12)]
public short aspect;
[DNAFieldAttribute(7, "short", "curved", "short", 2, false)]
[DNAFieldAttribute(7, "short", "curved", "short", 2, false, 14)]
public short curved;
[DNAFieldAttribute(8, "float", "fac", "float", 4, false)]
[DNAFieldAttribute(8, "float", "fac", "float", 4, false, 16)]
public float fac;
[DNAFieldAttribute(9, "float", "percentx", "float", 4, false)]
[DNAFieldAttribute(9, "float", "percentx", "float", 4, false, 20)]
public float percentx;
[DNAFieldAttribute(10, "float", "percenty", "float", 4, false)]
[DNAFieldAttribute(10, "float", "percenty", "float", 4, false, 24)]
public float percenty;
[DNAFieldAttribute(11, "short", "filtertype", "short", 2, false)]
[DNAFieldAttribute(11, "short", "filtertype", "short", 2, false, 28)]
public short filtertype;
[DNAFieldAttribute(12, "char", "bokeh", "char", 1, false)]
[DNAFieldAttribute(12, "char", "bokeh", "char", 1, false, 30)]
public char bokeh;
[DNAFieldAttribute(13, "char", "gamma", "char", 1, false)]
[DNAFieldAttribute(13, "char", "gamma", "char", 1, false, 31)]
public char gamma;
[DNAFieldAttribute(14, "int", "image_in_width", "int", 4, false)]
[DNAFieldAttribute(14, "int", "image_in_width", "int", 4, false, 32)]
public int image_in_width;
[DNAFieldAttribute(15, "int", "image_in_height", "int", 4, false)]
[DNAFieldAttribute(15, "int", "image_in_height", "int", 4, false, 36)]
public int image_in_height;
public NodeBlurData() {
this.sizex = default;