Skip to content

Commit 71882b1

Browse files
committed
Fix array for soft shape advanced
1 parent f4012a5 commit 71882b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Nodes/VVVV.DX11.Nodes.Bullet/Nodes/Shapes/Create/Soft/BulletGenerivSoftShapeNode.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ protected override bool SubPinsChanged
4141
protected override AbstractSoftShapeDefinition GetShapeDefinition(int slice)
4242
{
4343
Vector3Array p = new Vector3Array(FPosition.SliceCount);
44-
ScalarArray m = new ScalarArray(FMass.SliceCount);
44+
ScalarArray m = new ScalarArray(FPosition.SliceCount);
4545

4646
for (int i = 0; i < FPosition.SliceCount; i++)
4747
{

0 commit comments

Comments
 (0)