Added Generation Output
This commit is contained in:
36
BlendFile/DNA/FModifier.cs
Normal file
36
BlendFile/DNA/FModifier.cs
Normal file
@@ -0,0 +1,36 @@
|
||||
// Automatically generated by BlenderSharp at 22/01/2025 02:21:57
|
||||
namespace BlendFile.DNA {
|
||||
|
||||
public class FModifier {
|
||||
public FModifier ptr_next;
|
||||
public FModifier ptr_prev;
|
||||
public FCurve ptr_curve;
|
||||
public object ptr_data;
|
||||
public char[] name = new System.Char[64];
|
||||
public short type;
|
||||
public short flag;
|
||||
public short ui_expand_flag;
|
||||
public char[] _pad = new System.Char[6];
|
||||
public float influence;
|
||||
public float sfra;
|
||||
public float efra;
|
||||
public float blendin;
|
||||
public float blendout;
|
||||
public FModifier(FModifier ptr_next, FModifier ptr_prev, FCurve ptr_curve, object ptr_data, char[] name, short type, short flag, short ui_expand_flag, char[] _pad, float influence, float sfra, float efra, float blendin, float blendout) {
|
||||
this.ptr_next = ptr_next;
|
||||
this.ptr_prev = ptr_prev;
|
||||
this.ptr_curve = ptr_curve;
|
||||
this.ptr_data = ptr_data;
|
||||
this.name = name;
|
||||
this.type = type;
|
||||
this.flag = flag;
|
||||
this.ui_expand_flag = ui_expand_flag;
|
||||
this._pad = _pad;
|
||||
this.influence = influence;
|
||||
this.sfra = sfra;
|
||||
this.efra = efra;
|
||||
this.blendin = blendin;
|
||||
this.blendout = blendout;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user