Networking bugfixes, underwater scooter, fixed limbs going through walls when flipping the ragdoll

This commit is contained in:
Regalis
2015-11-13 00:52:42 +02:00
parent 9c2aec4c8e
commit 24ed95cd68
26 changed files with 301 additions and 119 deletions
@@ -19,7 +19,7 @@ namespace Barotrauma.Items.Components
protected Vector2 aimPos;
protected bool aimable;
//protected bool aimable;
private bool attachable, attached, attachedByDefault;
private PhysicsBody body;
@@ -35,10 +35,10 @@ namespace Barotrauma.Items.Components
}
[HasDefaultValue(false, false)]
public bool Aimable
public bool ControlPose
{
get { return aimable; }
set { aimable = value; }
get;
set;
}
[HasDefaultValue(false, false)]