トピック「ユーザー定義関数のバグ?」の履歴(ID: 186)

投稿: User icon mini namamonodesu 更新: User icon mini namamonodesu 履歴更新日:2017/03/01 16:17:01

ユーザー定義関数のバグ?

関数がうまく呼び出されないのですが、バグでしょうか?
ゲームID:3365

◆シーン1:関数を2つ定義し、次のシーンへ変更するのみ
def test_func00()
speak("★(test_func00)")
end
def test_func01()
speak("●(test_func01)")
end
changeScene(4284)

◆シーン2
test_func00()
test_func01()
case speakWithSelect(2,"case 0","case 1", "選択")
when 0
test_func00()
test_func01()  ※この関数が呼ばれない
speak("case 0 end")
when 1
test_func00()
test_func01()  ※この関数が呼ばれない
speak("case 1 end")
end



履歴一覧に戻る