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,17 +15,17 @@ namespace BlendFile.DNA {
[DNAClassAttribute(413, "TexPaintSlot", 40)]
public class TexPaintSlot {
[DNAFieldAttribute(0, "Image", "*ima", "Image", 8, true)]
[DNAFieldAttribute(0, "Image", "*ima", "Image", 8, true, 0)]
public Image ptr_ima;
[DNAFieldAttribute(1, "ImageUser", "*image_user", "ImageUser", 8, true)]
[DNAFieldAttribute(1, "ImageUser", "*image_user", "ImageUser", 8, true, 8)]
public ImageUser ptr_image_user;
[DNAFieldAttribute(2, "char", "*uvname", "char", 8, true)]
[DNAFieldAttribute(2, "char", "*uvname", "char", 8, true, 16)]
public char ptr_uvname;
[DNAFieldAttribute(3, "char", "*attribute_name", "char", 8, true)]
[DNAFieldAttribute(3, "char", "*attribute_name", "char", 8, true, 24)]
public char ptr_attribute_name;
[DNAFieldAttribute(4, "int", "valid", "int", 4, false)]
[DNAFieldAttribute(4, "int", "valid", "int", 4, false, 32)]
public int valid;
[DNAFieldAttribute(5, "int", "interp", "int", 4, false)]
[DNAFieldAttribute(5, "int", "interp", "int", 4, false, 36)]
public int interp;
public TexPaintSlot() {
this.ptr_ima = default;