-4
루아에서 키를 누를 때 간단한 토글 스위치를 사용하려고합니다.루아 토글 스위치?
코드 :
local soundOn = true
if keys['J'] then
if soundOn then
memory.writebyte(0x0773,04);
soundOn = false
else
memory.writebyte(0x0773,00);
soundOn = true
end;
end;