Generated new code and added initial data handling
This commit is contained in:
@@ -33,6 +33,17 @@ namespace BlendFile.DNA {
|
||||
public char[] _pad = new System.Char[4];
|
||||
[DNAFieldAttribute(8, "CurveProfile", "*profile", 72)]
|
||||
public CurveProfile ptr_profile;
|
||||
public CurveProfilePoint() {
|
||||
this.x = default;
|
||||
this.y = default;
|
||||
this.flag = default;
|
||||
this.h1 = default;
|
||||
this.h2 = default;
|
||||
this.h1_loc = default;
|
||||
this.h2_loc = default;
|
||||
this._pad = default;
|
||||
this.ptr_profile = default;
|
||||
}
|
||||
public CurveProfilePoint(float x, float y, short flag, char h1, char h2, float[] h1_loc, float[] h2_loc, char[] _pad, CurveProfile ptr_profile) {
|
||||
this.x = x;
|
||||
this.y = y;
|
||||
|
||||
Reference in New Issue
Block a user