스터디 3주차 과제에서 getVariable이 한번밖에 적용이 안돼요🤯 #17
Unanswered
ryuyeonkyoung
asked this question in
02. 스터디 질문 게시판
Replies: 2 comments 2 replies
-
composer.setVariable("scoreText", score.text) game.lua에서 위 코드를 작성하신 위치가 score.text에 게임 결과를 적용한 후에 적어주셨는지 체크해주세요. ending.lua에서 |
Beta Was this translation helpful? Give feedback.
0 replies
-
if( score.text == '5') then
score.text = '성공!'
time.alpha = 0
composer.setVariable("scoreText", score.text)
composer.gotoScene("ending")
end 위와 같이 game.lua에서 씬이 넘어가기 직전에 setVariable을 사용하였고, composer.getVariable("scoreText") 위처럼 ending.lua에서 받은 값만 그대로 출력해 보아도 처음의 결과가 계속 반복되는 것 같습니다. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
ending.lua에서 이렇게 코드를 짜고
game.lua에서는
로 scoreText변수를 받았는데 엔딩을 한번 보고 다시하기를 눌렀을 때 변수가 갱신이 안되어서 질문드려요.!
파일이 안올라가서 부분이라도 코드를 올려봐요...
Beta Was this translation helpful? Give feedback.
All reactions