allow developers to also let airplane face left

stable-6.1
Maikel de Vries 2015-02-23 11:12:53 +01:00
parent d976a4b2a7
commit bd9da84fcb
1 changed files with 6 additions and 0 deletions

View File

@ -290,6 +290,12 @@ public func FaceRight()
RollPlane(1,true);
}
public func FaceLeft()
{
SetR(-90);
RollPlane(0,true);
}
public func IsProjectileTarget(target,shooter) { return true; }
public func Damage()