Added: Arrow Vulcan, skill_animation.txt, Monster Facing
Please adjust the facing for the monster rotation of the Sonic Blow skill.
+// Directions for animation steps; assuming 0 = right, 3 = down, 6 = left, and 9 = up
+int get_direction_for_step(int step) {
+ // Adjust according to your coordinate system
+ switch (step) {
+ case 1: return 0; // Right
+ case 2: return 3; // Down
+ case 3: return 6; // Left
+ case 4: return 9; // Up
+ case 5: return 12; // Right
+ case 6: return 3; // Down
+ case 7: return 6; // Left
+ case 8: return 9; // Up
+ default: return 0; // Default direction if step is invalid
+ }
+}
Video_2024_08_04-7_edit_0 (1).webm
Video_2024_08_04-5_edit_0.webm
sonic blow v3.patch