Files
BlenderSharp/BlendFile/DNA/EffectorWeights.cs
2025-01-22 02:23:29 +01:00

19 lines
657 B
C#

// Automatically generated by BlenderSharp at 22/01/2025 02:21:57
namespace BlendFile.DNA {
public class EffectorWeights {
public Collection ptr_group;
public float[] weight = new System.Single[14];
public float global_gravity;
public short flag;
public char[] _pad = new System.Char[2];
public EffectorWeights(Collection ptr_group, float[] weight, float global_gravity, short flag, char[] _pad) {
this.ptr_group = ptr_group;
this.weight = weight;
this.global_gravity = global_gravity;
this.flag = flag;
this._pad = _pad;
}
}
}