- Joined
- Jan 4, 2009
- Messages
- 118
Normally I use this.
Upper Code is no delay,but I want to uses this insteatd.
Upper Code. It's display, but It's delay about 1-2 second before display text.
Suggest and advice me for how to uses TextTag.Plz
Thanks a lot before...
JASS:
local texttag tt
call CreateTextTagPosUnitBJ("HELLO", gg_unit_Harf_0000, 0, 10, 100, 0, 0, 0)
set tt = GetLastCreatedTextTag()
call SetTextTagPermanentBJ(tt, fasle)
Upper Code is no delay,but I want to uses this insteatd.
JASS:
local texttag tt
local real h = TextTagHeight2Size(10)
local unit = gg_unit_Harf_0000
set tt = CreateTextTag()
call SetTextTagText(tt, "HELLO", h)
call SetTextTagPosUnit(tt, GetUnitX(u), GetUnitY(u), 0)
call SetTextTagColor(tt, 255, 0, 0, 0)
call SetTextTagPermanent(tt, false)
Upper Code. It's display, but It's delay about 1-2 second before display text.
Suggest and advice me for how to uses TextTag.Plz
Thanks a lot before...