Page 1 of 1

Modified Text/Mana Overlay" setting [SVN#22546]

PostPosted: 11 Jul 2013, 23:11
by spr
Hi,

I have replaced the "Text/Mana Overlay" setting with individual toggle settings for Card Name, P/T and Mana Cost overlays. By default, all settings are on so you will not notice anything different.

Cheers,
Steve

Re: Modified Text/Mana Overlay" setting [SVN#22546]

PostPosted: 12 Jul 2013, 01:12
by Xitax
I don't know if I'd be alone in this, but I'd like to have the mana display while in my hand, but not on the battlefield. Opposite for P/T.

IMHO... while we're talking about it... 8-[

Re: Modified Text/Mana Overlay" setting [SVN#22546]

PostPosted: 12 Jul 2013, 08:35
by spr
Hi Xitax,

Good point! I would omit the mana cost on the battlefield too. I will add it to my ToDo list. To implement I guess you would have two groups of settings - one for the Hand and another for the Battlefield. Is it likely this might be a requirement for any other zones? ie...

Code: Select all
public enum ZoneType {
    Hand(true),
    Library(true),
    Graveyard(false),
    Battlefield(false),
    Exile(false),
    Command(false),
    Stack(false),
    Sideboard(true),
    Ante(false),
    SchemeDeck(true),
    PlanarDeck(true);
    ...
Cheers,
Steve

Re: Modified Text/Mana Overlay" setting [SVN#22546]

PostPosted: 12 Jul 2013, 11:24
by Marek14
Would it be possible to have overlay displaying the number of counters? When there are 4+, the graphic is the same, so a number might be used to distinguish them.

Re: Modified Text/Mana Overlay" setting [SVN#22546]

PostPosted: 12 Jul 2013, 12:54
by Max mtg
spr, no other zones except Hand and Battlefield show cards with CardPanels - so no other zones need special settings

Re: Modified Text/Mana Overlay" setting [SVN#22546]

PostPosted: 13 Jul 2013, 05:23
by moomarc
Max mtg wrote:spr, no other zones except Hand and Battlefield show cards with CardPanels - so no other zones need special settings
Wouldn't ante cards also need seeing as they have their own dock where you can see them?

Re: Modified Text/Mana Overlay" setting [SVN#22546]

PostPosted: 13 Jul 2013, 12:19
by Max mtg
Afair, there are plain images drawn in the ante panel. They aren't supposed to be played, so a single picture seems enough to me.