mirror of
https://git.rip/DMCA_FUCKER/re3.git
synced 2024-12-23 13:20:00 +00:00
more font
This commit is contained in:
parent
8d2aa61f9b
commit
f38ff074c4
|
@ -1512,6 +1512,31 @@ CFont::SetDropColor(CRGBA col)
|
||||||
Details.dropColor.a *= Details.alphaFade / 255.0f;
|
Details.dropColor.a *= Details.alphaFade / 255.0f;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
//--LCS: done
|
||||||
|
void
|
||||||
|
CFont::SetOutlineColor(CRGBA col)
|
||||||
|
{
|
||||||
|
Details.outlineColor = col;
|
||||||
|
if (Details.alphaFade < 255.0f)
|
||||||
|
Details.outlineColor.a *= Details.alphaFade / 255.0f;
|
||||||
|
}
|
||||||
|
|
||||||
|
//--LCS: done
|
||||||
|
void
|
||||||
|
CFont::SetOutlineOn(int on)
|
||||||
|
{
|
||||||
|
Details.bOutlineOn = on;
|
||||||
|
}
|
||||||
|
|
||||||
|
//--LCS: done
|
||||||
|
void
|
||||||
|
CFont::SetNewLineAdd(int line)
|
||||||
|
{
|
||||||
|
Details.line = line;
|
||||||
|
}
|
||||||
|
|
||||||
|
//--LCS: done
|
||||||
void
|
void
|
||||||
CFont::SetDropShadowPosition(int16 pos)
|
CFont::SetDropShadowPosition(int16 pos)
|
||||||
{
|
{
|
||||||
|
@ -1556,14 +1581,3 @@ CFont::character_code(uint8 c)
|
||||||
return c;
|
return c;
|
||||||
return foreign_table[c-128];
|
return foreign_table[c-128];
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
|
||||||
CFont::SetOutlineColor(CRGBA col)
|
|
||||||
{
|
|
||||||
Details.outlineColor = col;
|
|
||||||
if (Details.alphaFade < 255.0f)
|
|
||||||
Details.outlineColor.a *= Details.alphaFade / 255.0f;
|
|
||||||
}
|
|
||||||
|
|
||||||
void CFont::SetOutlineOn(int on) { Details.bOutlineOn = on; }
|
|
||||||
void CFont::SetNewLineAdd(int line) { Details.line = line; }
|
|
||||||
|
|
|
@ -37,10 +37,9 @@ struct CFontDetails
|
||||||
int nFlashTimer;
|
int nFlashTimer;
|
||||||
bool8 anonymous_23;
|
bool8 anonymous_23;
|
||||||
uint32 anonymous_25;
|
uint32 anonymous_25;
|
||||||
uint32 anonymous_26;
|
|
||||||
CRGBA outlineColor;
|
CRGBA outlineColor;
|
||||||
int32 bOutlineOn;
|
int bOutlineOn;
|
||||||
uint32 line;
|
int line;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct CFontRenderState
|
struct CFontRenderState
|
||||||
|
|
Loading…
Reference in a new issue