Regenerated all the files

This commit is contained in:
Samuele Lorefice
2025-01-22 20:24:55 +01:00
parent 162f888600
commit bf1eb8201c
939 changed files with 10620 additions and 0 deletions

View File

@@ -11,19 +11,32 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public class CameraBGImage {
[DNAFieldAttribute(0, "CameraBGImage", "*next", 104)]
public CameraBGImage ptr_next;
[DNAFieldAttribute(1, "CameraBGImage", "*prev", 104)]
public CameraBGImage ptr_prev;
[DNAFieldAttribute(2, "Image", "*ima", 1600)]
public Image ptr_ima;
[DNAFieldAttribute(3, "ImageUser", "iuser", 40)]
public ImageUser iuser;
[DNAFieldAttribute(4, "MovieClip", "*clip", 2568)]
public MovieClip ptr_clip;
[DNAFieldAttribute(5, "MovieClipUser", "cuser", 8)]
public MovieClipUser cuser;
[DNAFieldAttribute(6, "float", "offset[2]", 4)]
public float[] offset = new System.Single[2];
[DNAFieldAttribute(7, "float", "scale", 4)]
public float scale;
[DNAFieldAttribute(8, "float", "rotation", 4)]
public float rotation;
[DNAFieldAttribute(9, "float", "alpha", 4)]
public float alpha;
[DNAFieldAttribute(10, "short", "flag", 2)]
public short flag;
[DNAFieldAttribute(11, "short", "source", 2)]
public short source;
public CameraBGImage(CameraBGImage ptr_next, CameraBGImage ptr_prev, Image ptr_ima, ImageUser iuser, MovieClip ptr_clip, MovieClipUser cuser, float[] offset, float scale, float rotation, float alpha, short flag, short source) {
this.ptr_next = ptr_next;