Allow voxel-based aircraft to pitch and roll.

This commit is contained in:
Paul Chote
2020-06-21 10:33:21 +01:00
committed by tovl
parent 43717a89b5
commit 6dcde3af72
5 changed files with 71 additions and 12 deletions

View File

@@ -58,7 +58,7 @@ namespace OpenRA.Mods.Common.Activities
// Fly to the target and wait for it to be locked for pickup
// These activities will be cancelled and replaced by Land once the target has been locked
QueueChild(new Fly(self, Target.FromActor(cargo)));
QueueChild(new FlyIdle(self, tickIdle: false));
QueueChild(new FlyIdle(self, idleTurn: false));
}
}