The bullet hell combat works by following a sequence of attacks. These attacks can be repeatable or not.

In this sequence, we can define a text to be displayed before the sequence starts and a text to be displayed after. Each attack will need to have a SpawnModule and at least one Action. These actions are AttackModules that can be reused in many sequences.

Following the example at the right, both attacks have the same Actions, but, since the SpawnModule is different, the whole pattern changes because of that. Also, following some variables changes, like SequenceWait and RepeatDelay. As presented below:

Deltarune_Combat_SequenceExample.gif

SpawnModules should ALWAYS be made using RectTransforms. So, even the SPAWN_LancerAnim is spawning a prefab that plays an animation on awake. This animation is made by changing the position values of the RectTransform. This way, we’ll always have the same positions no matter the screen.

The heart movement is made by holding and dragging the screen. And the dodge system takes the consideration of the gameobject’s collider Dodge. So, if wanted, the collider can be grown to make the dodge more easier to trigger, or shrinked to make it harder.

By now, the system contains 3 modules: Aim, Move and Spawn.

AIM MODULE:

Constant Aim: If enabled, will keep following the player’s position till the duration of the action is over.

Which, isn’t exactly the duration to trigger the NEXT action, as you can disable Override Attack Duration and play two or more actions. So, the Aim Value, which is the duration of the aiming action, will continue to happen, but the attack duration will already end, resulting in a homing missile type of attack.

If disabled, will grab the player’s position on spawn and aim towards that, which can be or not the current player position.

MOVE MODULE:

Pretty straightforward, will have a speed and a distance that it’ll go. So, if you want, you can change the Move Distance value so it goes just to the middle of the field.

SPAWN MODULE:

Is the most important one, without it, you’ll not spawn anything and so the sequence will not work.

It’ll have:

Untitled

Untitled

Untitled

Untitled