Minimal mod card scale

it's a minimal graphics mod so it's easier to debug. It's a smaller card
scale of big render so we have more space to view in game.
This commit is contained in:
Anthony Calosa
2016-08-14 14:59:49 +08:00
parent b7307adc10
commit bccb740c45
4 changed files with 50 additions and 22 deletions

View File

@@ -339,8 +339,14 @@ void CardSelector::Render()
active->Render();
if (CardView* card = dynamic_cast<CardView*>(active) )
{
//if(timer > 0)
//card->DrawCard(bigpos, mDrawMode);
if(timer > 0)
card->DrawCard(bigpos, mDrawMode);
{
float modx = 14.f;
Pos npos = Pos(bigpos.x+modx,bigpos.y-4.f,bigpos.zoom-(bigpos.zoom/5),bigpos.t,bigpos.alpha);
card->DrawCard(npos, mDrawMode);
}
}
}
}