tutorial 6: do not allow turning catapult while aiming (#1744)

console-destruction
Maikel de Vries 2016-08-25 19:05:32 +02:00
parent 97c093ea0d
commit 4410e95cc2
1 changed files with 3 additions and 1 deletions

View File

@ -9,5 +9,7 @@ public func Initialize()
return _inherited(...);
}
// Block any turning.
public func ControlLeft(object clonk) { return true; }
public func ControlRight(object clonk) { return true; }
public func ControlRight(object clonk) { return true; }
public func SetDir(int dir) { return; }