Faster aircraft animation

starkhorn

Chieftain
Joined
Sep 4, 2012
Messages
29
Hi,

I was wondering if there was a way to have faster aircraft animation? I get a bit bored of the slow AI aircraft.

I have see mods with this feature so I was wondering if it was something that can be enabled by default in this mod?
 
They are compatible, you can use Faster Aircraft Animation with R.E.D. WWII.
 
Love it! :goodjob:
I would like to expand this also to other units (for example artillery). Any suggestion which tables/fileds must be updated?

Spoiler :
Code:
UPDATE ArtDefine_UnitMemberCombats SET MoveRate = 2*MoveRate;
UPDATE ArtDefine_UnitMemberCombats SET TurnRateMin = 2*TurnRateMin WHERE MoveRate > 0;
UPDATE ArtDefine_UnitMemberCombats SET TurnRateMax = 2*TurnRateMax WHERE MoveRate > 0;
 
Top Bottom