lua使用加载的字体

--加入获奖的名字

--加入获奖的名字

local txt = cc.Label:createWithTTF("hello world","fonts/round_body.ttf",56)

txt:setAnchorPoint(0.5,0.5)

txt:setColor(cc.c3b(255,255,255))

txt:enableOutline(cc.c4b(100,66,7,255), 3) --字体加描边

txt:setPosition(cc.p(0,0))

txt:addTo(parent)

你可能感兴趣的:(lua使用加载的字体)