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.
マーマレードクイックを使用しています。
次の方法で長方形を描くことができます。
local myRectangle = director:createRectangle(x, y, width, height)
myRectangle後で使用するために変数を配列に格納する方法はありますか? または、複数の長方形を作成して、それぞれにアクセスするにはどうすればよいですか?
myRectangle
はい、テーブルを作成できます
myRectangles = {}
長方形が作成されたら、テーブルの最後に長方形を追加します。
myRectangles[#myRectangles+1] = director:createRectangle(x1, y1, width1, height1) myRectangles[#myRectangles+1] = director:createRectangle(x2, y2, width2, height2)