Total War: WARHAMMER III

Total War: WARHAMMER III

Ultimate Formations (DISCONTINUED)
泡泡茶壶  [developer] Dec 28, 2023 @ 1:18am
Formation Animation Slots Tips For Modders(mod制作者:兵种阵型对应的动画slot教程)
这是个给mod制作者写的如何制作兵种阵型动画的教程。

阵型代码在unit_special_abilities_tables中的Formation栏位填写

1.空心方阵(对应的阵型代码是square_formation):

KNEEL_READY
(对应的是空心方阵外周士兵站立时的动画,一般直接复制COMBAT_READY即可,或者做自定义新动画)

2.盾墙阵(对应的阵型代码是testudo_formation,若能做自定义举盾动画,可以形成龟甲阵):

WALK_SHIELD_FRONT_3
(盾墙阵第一排士兵站立时的动画,一般直接复制WALK_SHIELD_UP_3即可,或者做自定义新动画)

STEP_RIGHT_SHIELD_FRONT
(盾墙阵第一排士兵行走时的动画,一般直接复制STEP_RIGHT_SHIELD_UP即可,或者做自定义新动画)

WALK_SHIELD_TOP_3
(盾墙阵后排士兵站立时的动画,一般直接复制WALK_SHIELD_UP_3即可,或者做自定义新动画)

STEP_RIGHT_SHIELD_TOP
TURN_LEFT_SHIELD_TOP_180
(盾墙阵后排士兵行走时的动画,一般直接复制STEP_RIGHT_SHIELD_UP即可,或者做自定义新动画)

STEP_LEFT_SHIELD_TOP
(盾墙阵后排士兵行走之后站定时的动画,一般直接复制WALK_SHIELD_UP_3即可,或者做自定义新动画)



This is a tutorial (or tip) about how to make formations for modder.

1. Hollow Square (square_formation):

KNEEL_ READY
(The stand animation of the peripheral units of this formation. You can copy COMBAT_READY, or make your own customized animation)

2. Shield Wall formation (testudo_formation):

WALK_SHIELD_FRONT_3
(The stand animation of the first row of this formation. You can copy WALK-SHIELD_UP_3, or make your own customized animation)

STEP_RIGHT_SHIELD_FRONT
(The walk animation of the first row of this formation. You can copy WALK-SHIELD_UP_3, or make your own customized animation)

WALK_SHIELD_TOP_3
(The stand animation of the back line units of this formation. You can copy WALK-SHIELD_UP_3, or make your own customized animation)

STEP_RIGHT_SHIELD_TOP
TURN_LEFT_SHIELD_TOP_180
(The stand animation of the back line units of this formation. You can copy WALK-SHIELD_UP_3, or make your own customized animation)

STEP_LEFT_SHIELD_TOP
(The walk animation of the first row of this formation. You can copy WALK-SHIELD_UP_3, or make your own customized animation)

if anyone want to make a formation mod, I can help you as possible as I could.
Last edited by 泡泡茶壶; Feb 4, 2024 @ 1:18pm