Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
辞書をインポートする方法、またはコロナ SDK で作成する方法はありますか。ユーザーが基本単語から単語を作成する必要があるゲームがあり、単語が送信されるたびに、それが正しいかどうかを確認する必要があります
Lua テーブルを作成し、辞書に保存する単語を入力します。単語をキーとして使用し、true を値として使用します。
dict = {} dict[word] = true
単語を保存またはチェックする前に、単語を小文字に変換したい場合があります。
word = string.lower(word)
テスト自体は単純に次のとおりです。
if dict[word] then ...