Regenerated codefiles

This commit is contained in:
Samuele Lorefice
2025-03-04 18:48:04 +01:00
parent 8bbfb49720
commit 8e4eac0568
937 changed files with 16011 additions and 16181 deletions

View File

@@ -13,26 +13,18 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
[DNAClassAttribute(328, "ImageTile_Runtime", 24)]
public struct ImageTile_Runtime {
[DNAFieldAttribute(0, "int", "tilearray_layer", "int", 4, false, 0)]
public int tilearray_layer;
[DNAFieldAttribute(1, "int", "_pad", "int", 4, false, 4)]
[DNAClassAttribute(328, "ImageTile_Runtime", 12)]
public class ImageTile_Runtime {
[DNAFieldAttribute(4, "int", 1, "_pad", "int", false, 0)]
public int _pad;
[DNAFieldAttribute(2, "int", "tilearray_offset[2]", "System.Int32[]", 8, false, 8)]
public int[] tilearray_offset = new System.Int32[2];
[DNAFieldAttribute(3, "int", "tilearray_size[2]", "System.Int32[]", 8, false, 16)]
[DNAFieldAttribute(8, "int", 3, "tilearray_size[2]", "System.Int32[]", false, 4)]
public int[] tilearray_size = new System.Int32[2];
public ImageTile_Runtime() {
this.tilearray_layer = default;
this._pad = default;
this.tilearray_offset = default;
this.tilearray_size = default;
}
public ImageTile_Runtime(int tilearray_layer, int _pad, int[] tilearray_offset, int[] tilearray_size) {
this.tilearray_layer = tilearray_layer;
public ImageTile_Runtime(int _pad, int[] tilearray_size) {
this._pad = _pad;
this.tilearray_offset = tilearray_offset;
this.tilearray_size = tilearray_size;
}
}