CompositeFont
From GiderosMobile
Revision as of 11:08, 7 January 2019 by Hgy29 (talk | contribs) (Created page with "__NOTOC__ <languages /> <!-- GIDEROSOBJ:CompositeFont --> '''<translate>Supported platforms</translate>:''' File:Platform android.pngFile:Platform ios.pngFile:Platfo...")
Supported platforms:
Available since: Gideros 2019.1
Inherits from: FontBase
Description
The CompositeFont class is used to define fonts composed from other fonts. It allows to mix a regular font with
an outlined font to create bordered font, and possibly more effects.
Examples
Example
local cf= CompositeFont.new{
{ font=outlinefont, color=0x000000 }, --Outlined font will be rendered in black
{ font=normalfont, x=1,y=2 }, --Normal font is drawn on top, with color coming from textfield and offseted by (1,2) logical coordinates
}
MethodsCompositeFont.new creates a new CompositeFont object |
EventsConstants |