Add additional information to the Piece struct that the piece hasn't fully appeared. Use some flag e.g. `ready = false` or `in_preparation = true`. During the spawning phase, make all `ready: false => true` , and spawn 3 new pieces with `ready: false`.
Add additional information to the Piece struct that the piece hasn't fully appeared. Use some flag e.g.
ready = falseorin_preparation = true.During the spawning phase, make all
ready: false => true, and spawn 3 new pieces withready: false.