Regenerated all the files
This commit is contained in:
@@ -11,17 +11,28 @@ using System;
|
||||
|
||||
|
||||
namespace BlendFile.DNA {
|
||||
using BlendFile;
|
||||
|
||||
public struct GreasePencilOnionSkinningSettings {
|
||||
[DNAFieldAttribute(0, "float", "opacity", 4)]
|
||||
public float opacity;
|
||||
[DNAFieldAttribute(1, "int8_t", "mode", 1)]
|
||||
public sbyte mode;
|
||||
[DNAFieldAttribute(2, "uchar", "flag", 1)]
|
||||
public byte flag;
|
||||
[DNAFieldAttribute(3, "uchar", "filter", 1)]
|
||||
public byte filter;
|
||||
[DNAFieldAttribute(4, "char", "_pad[1]", 1)]
|
||||
public char[] _pad = new System.Char[1];
|
||||
[DNAFieldAttribute(5, "short", "num_frames_before", 2)]
|
||||
public short num_frames_before;
|
||||
[DNAFieldAttribute(6, "short", "num_frames_after", 2)]
|
||||
public short num_frames_after;
|
||||
[DNAFieldAttribute(7, "float", "color_before[3]", 4)]
|
||||
public float[] color_before = new System.Single[3];
|
||||
[DNAFieldAttribute(8, "float", "color_after[3]", 4)]
|
||||
public float[] color_after = new System.Single[3];
|
||||
[DNAFieldAttribute(9, "char", "_pad2[4]", 1)]
|
||||
public char[] _pad2 = new System.Char[4];
|
||||
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;
|
||||
|
||||
Reference in New Issue
Block a user