Added Type stubbing

This commit is contained in:
Samuele Lorefice
2025-01-22 17:56:49 +01:00
parent 2d6159e331
commit 9a949dbeab
112 changed files with 610 additions and 313 deletions

View File

@@ -15,16 +15,16 @@ namespace BlendFile.DNA {
public struct GreasePencilOnionSkinningSettings {
public float opacity;
public int8_t mode;
public uchar flag;
public uchar filter;
public sbyte mode;
public byte flag;
public byte filter;
public char[] _pad = new System.Char[1];
public short num_frames_before;
public short num_frames_after;
public float[] color_before = new System.Single[3];
public float[] color_after = new System.Single[3];
public char[] _pad2 = new System.Char[4];
public GreasePencilOnionSkinningSettings(float opacity, int8_t mode, uchar flag, uchar filter, char[] _pad, short num_frames_before, short num_frames_after, float[] color_before, float[] color_after, char[] _pad2) {
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;
this.flag = flag;