ikemen-engine / Ikemen-GO

An open-source fighting game engine that supports MUGEN resources.
https://ikemen-engine.github.io
Other
700 stars 124 forks source link

Super's orbs spawning on top of each other. #1625

Open UrsoManso opened 7 months ago

UrsoManso commented 7 months ago

Describe the bug

Rose's LV2 Soul Satellite has an issue on Ikemen where the orbs are spawned on top of each.

To Reproduce

  1. Download character Rose.zip
  2. Perform qcbx2 + two kicks

Expected behavior

For them to be spawned in the correct positions.

Screenshots / Video

https://github.com/ikemen-engine/Ikemen-GO/assets/77592586/9a8a1609-f27d-4cd7-aa1b-a44b08acbf4d

Ikemen GO Nightly

https://github.com/ikemen-engine/Ikemen-GO/assets/77592586/85dacd9f-789b-4f3a-9af8-1a405667c5f8

MUGEN 1.1

Engine Version (or source code date)

Ikemen GO Nightly

Operating system

Windows

Extra context or search terms

No response

potsmugen commented 7 months ago

This is caused by malformed blocks of code in the char. Several of these:

[State 3415, counter]
type = VarAdd
trigger1 = 1
trigger1 = Facing = 1
fvar(0) = 1.75
var(44) = 1

A VarAdd trying to add to two different variables. Funnily enough Ikemen adds to both variables while Mugen (correctly) only adds to the first one. This ought to be fixed but doesn't seem serious.