User:Kaladin: Difference between revisions

2,739 edits
No edit summary
No edit summary
Line 32: Line 32:


==MoveCard Notes==
==MoveCard Notes==
* Big issue stems from wikitext being passed through too many templates causing it to break
* Got the actual info to populate the tooltip working, new issue is the tooltip itself.
** To get around this my current thought is resturcturing. Using https://river.me/blog/cargo-list-type-fields/ "Joining through a list-type table" this will allow me to join the properties field on the Glossary table to associate any property with the correct term and thus definitions.  
* It seems in order to have the tooltip overflow a container with ''overflow:hidden'', which I presume the movecard has(?) I will need to make a wrapper for the tooltip that is ''position:absolute''.
** In the template for actually constructing the move card ''AttackDataCargo-UMVC3'' I can instead directly construct the tooltip with the definition and term rather than needing to use the DefineTerm template to pull that info.
** I then have the tooltip be positioned relatively inside of that. The issue is that the wrapper is spawned offset from the actual text we are putting the tooltip over. Making it difficult to impossible to have the tooltip be centered above the text.
** The issue with the above is how to neatly get each term passed into the template? The easy solution is to pass it in then use a Lua function to break the terms apart at the "/" delimiter. But I don't really like this. Maybe instead I can make another Cargo Query ''inside'' the properties section of the ''AttackDataCargo-UMVC3'' template?

Revision as of 16:08, 2 May 2025

Useful Stuff


Grounded Normal Chain/Cancel Table

* L/S/H stands for Launcher, Specials, and Hypers

Normal Chains Into Cancels Into Notes
5L
2L
5M
2M
5H
2H


MoveCard Notes

  • Got the actual info to populate the tooltip working, new issue is the tooltip itself.
  • It seems in order to have the tooltip overflow a container with overflow:hidden, which I presume the movecard has(?) I will need to make a wrapper for the tooltip that is position:absolute.
    • I then have the tooltip be positioned relatively inside of that. The issue is that the wrapper is spawned offset from the actual text we are putting the tooltip over. Making it difficult to impossible to have the tooltip be centered above the text.