Regenerated all the files
This commit is contained in:
@@ -11,17 +11,28 @@ using System;
|
||||
|
||||
|
||||
namespace BlendFile.DNA {
|
||||
using BlendFile;
|
||||
|
||||
public class CurveProfile {
|
||||
[DNAFieldAttribute(0, "short", "path_len", 2)]
|
||||
public short path_len;
|
||||
[DNAFieldAttribute(1, "short", "segments_len", 2)]
|
||||
public short segments_len;
|
||||
[DNAFieldAttribute(2, "int", "preset", 4)]
|
||||
public int preset;
|
||||
[DNAFieldAttribute(3, "CurveProfilePoint", "*path", 40)]
|
||||
public CurveProfilePoint ptr_path;
|
||||
[DNAFieldAttribute(4, "CurveProfilePoint", "*table", 40)]
|
||||
public CurveProfilePoint ptr_table;
|
||||
[DNAFieldAttribute(5, "CurveProfilePoint", "*segments", 40)]
|
||||
public CurveProfilePoint ptr_segments;
|
||||
[DNAFieldAttribute(6, "int", "flag", 4)]
|
||||
public int flag;
|
||||
[DNAFieldAttribute(7, "int", "changed_timestamp", 4)]
|
||||
public int changed_timestamp;
|
||||
[DNAFieldAttribute(8, "rctf", "view_rect", 16)]
|
||||
public rctf view_rect;
|
||||
[DNAFieldAttribute(9, "rctf", "clip_rect", 16)]
|
||||
public rctf clip_rect;
|
||||
public CurveProfile(short path_len, short segments_len, int preset, CurveProfilePoint ptr_path, CurveProfilePoint ptr_table, CurveProfilePoint ptr_segments, int flag, int changed_timestamp, rctf view_rect, rctf clip_rect) {
|
||||
this.path_len = path_len;
|
||||
|
||||
Reference in New Issue
Block a user