Added Type stubbing
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user