while i use pad:up down left right , i hope to get the 'one press , and just move one time ' ,
but now while i press a direction button , it do all thelogic things in the scope looply, what should i do ? help !!!! much appreciate !
my code is like this :
if pad ~= oldPad then
if pad:left() then
........
end
oldpad = pad
end
HELP ! about Controls
Moderators: Shine, Insert_witty_name
Re: HELP ! about Controls
Need to change the oldpad = pad to oldPad = pad, captialization is important.justatest wrote:
if pad ~= oldPad then
if pad:left() then
........
end
oldpad = pad
end