Generated new code and added initial data handling

This commit is contained in:
mm00
2025-01-27 19:24:50 +01:00
parent ebcc629feb
commit 146a3992ce
940 changed files with 11560 additions and 9 deletions

View File

@@ -35,6 +35,18 @@ namespace BlendFile.DNA {
public float[] color_after = new System.Single[3];
[DNAFieldAttribute(9, "char", "_pad2[4]", 1)]
public char[] _pad2 = new System.Char[4];
public GreasePencilOnionSkinningSettings() {
this.opacity = default;
this.mode = default;
this.flag = default;
this.filter = default;
this._pad = default;
this.num_frames_before = default;
this.num_frames_after = default;
this.color_before = default;
this.color_after = default;
this._pad2 = default;
}
public GreasePencilOnionSkinningSettings(float opacity, sbyte mode, byte flag, byte filter, char[] _pad, short num_frames_before, short num_frames_after, float[] color_before, float[] color_after, char[] _pad2) {
this.opacity = opacity;
this.mode = mode;