In this display.newText parameter, what does 16*2 mean? Thanks.
local display_txt=display.newText("Wait",0,0,native.SystemFont,16*2)
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The last argument to display.newText is the size. In this case, the programmer is setting a size of 32 but has chosen to express it as 16*2 for some reason.