papam77 Posted March 25, 2013 Share Posted March 25, 2013 Hello, how can do blinking text ? Link to comment
Castillo Posted March 25, 2013 Share Posted March 25, 2013 You can set the alpha of the text. Link to comment
xXMADEXx Posted March 25, 2013 Share Posted March 25, 2013 Or, if you're using "dxDrawText" you can use "math.random" for the alpha. Link to comment
codeluaeveryday Posted March 25, 2013 Share Posted March 25, 2013 Or, if you're using "dxDrawText" you can use "math.random" for the alpha. Blinking is usually subsequent, using math.random is not needed. If I saw unordered blinking in a server I'd cut my throat. I have a very fast reaction time, I can count in milliseconds, so I would notice this, not sure of others. If it was DX Text, I'd either use a timer to modify an Alpha Variable, or I would add this to the onClientRender: speed = 20 blink = (blink or 0) + 1 if blink == (speed / 2) then alpha = 255 elseif blink == speed then alpha = 0 end You would need to add the alpha value to your DX Text. P.S ( Reason I can count in milliseconds is because I meditate and I also play very time dependent games ) Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now