Button&door sounds, sound looping bugfixes, positional sound bugfixes + low pass filter on distant sounds, submarine collision improvements, controller trigger bugfix, humans walk/run more slowly in water

This commit is contained in:
Regalis
2015-10-04 14:49:05 +03:00
parent 46e862216b
commit 0be4ad4f84
66 changed files with 317 additions and 222 deletions
@@ -123,12 +123,12 @@ namespace Subsurface.Items.Components
GameMain.World.RemoveJoint(stickJoint);
stickJoint = null;
isActive = false;
IsActive = false;
}
}
else
{
isActive = false;
IsActive = false;
}
}
@@ -209,7 +209,7 @@ namespace Subsurface.Items.Components
stickTarget = targetBody;
GameMain.World.AddJoint(stickJoint);
isActive = true;
IsActive = true;
return false;
}