Added Generation Output

This commit is contained in:
Samuele Lorefice
2025-01-22 02:23:29 +01:00
parent 83b207b799
commit fa78292a67
936 changed files with 31758 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
// Automatically generated by BlenderSharp at 22/01/2025 02:21:57
namespace BlendFile.DNA {
public class ImageTile {
public ImageTile ptr_next;
public ImageTile ptr_prev;
public ImageTile_Runtime runtime;
public int tile_number;
public int gen_x;
public int gen_y;
public char gen_type;
public char gen_flag;
public short gen_depth;
public float[] gen_color = new System.Single[4];
public char[] label = new System.Char[64];
public ImageTile(ImageTile ptr_next, ImageTile ptr_prev, ImageTile_Runtime runtime, int tile_number, int gen_x, int gen_y, char gen_type, char gen_flag, short gen_depth, float[] gen_color, char[] label) {
this.ptr_next = ptr_next;
this.ptr_prev = ptr_prev;
this.runtime = runtime;
this.tile_number = tile_number;
this.gen_x = gen_x;
this.gen_y = gen_y;
this.gen_type = gen_type;
this.gen_flag = gen_flag;
this.gen_depth = gen_depth;
this.gen_color = gen_color;
this.label = label;
}
}
}