Group Melee
Melee
Spatial Partition
Previously, NPC targeting would be done by colliders, which was implemented by a large sphere enclosing the character, and any other character that enters it would be evaluated for targeting. Conceptually, it functioned like a sonar, but this approach only worked for close range targets and became unmanageable as more NPCs are added all running their individual targeting call, while the sphere radius would have to be increased out of proportion to detect further targets.
So I asked my senior software developer ChatGPT for some ideas and learned about spatial grids, which worked by registering NPCs to a grid cell approximated from their position, and from there, find other NPCs within that grid and neighboring ones to determine their target from a manager class based on closest distance. This solved the problem of performance, where only a single class was responsible for handling targeting logic, instead of per NPC, and organized them into partitioned cells.
This also solved the problem of retargeting which was very apparent in 0.4.0 when multiple gladiators are spawned in the arena, only to bunch up because they all decided to target the same person. As you can see in the video, NPCs would fight their closest target then quickly pivot towards another attacker if they got to close.
Melee has also been further refined, removing a lot of the jitter present in the last version from a short I posted (which for no reason, warning or notification, died suddenly after reaching 500 views two days after it was uploaded). That stutter you feel when attacking is mostly eliminated, and crouching has been reimplemented.
Models
Decoupled Armor
Greave and sleeve armor now have their own specific armor slot, bringing the total apparel slot to 10. This addition is to complement gear degradation, as your armor will lose condition after taking damage, encouraging you to scavenge better ones from fallen foes, a practice often found in games where scarcity is emphasized.
Files
Get Blade Ballad
Blade Ballad
Master dynamic blade combat with precise control, emphasizing skill and timing.
Status | In development |
Author | khiemgluong |
Genre | Fighting, Action |
Tags | First-Person, melee, Procedural Generation, Singleplayer, Swords |
More posts
- The ColosseumDec 23, 2024
- Overhauled IK Combat & DesignSep 06, 2024
- Blade Ballad 0.2.1 - Procedural NPC MovesetMar 14, 2024
- Blade Ballad 0.2.0 - Placeables V2Mar 02, 2024
- Blade Ballad 0.1.2 - Placeables; Kinematics ImprovementFeb 06, 2024
- 0.0.7 release notesNov 05, 2023
- 0.0.5 Projected ChangesOct 05, 2023
- 0.0.3 Projected ChangesSep 28, 2023
Leave a comment
Log in with itch.io to leave a comment.